/openbmc/linux/drivers/spi/ |
H A D | spi-rockchip-sfc.c | 187 static int rockchip_sfc_reset(struct rockchip_sfc *sfc) in rockchip_sfc_reset() argument 192 writel_relaxed(SFC_RCVR_RESET, sfc->regbase + SFC_RCVR); in rockchip_sfc_reset() 194 err = readl_poll_timeout(sfc->regbase + SFC_RCVR, status, in rockchip_sfc_reset() 198 dev_err(sfc->dev, "SFC reset never finished\n"); in rockchip_sfc_reset() 201 writel_relaxed(0xFFFFFFFF, sfc->regbase + SFC_ICLR); in rockchip_sfc_reset() 203 dev_dbg(sfc->dev, "reset\n"); in rockchip_sfc_reset() 208 static u16 rockchip_sfc_get_version(struct rockchip_sfc *sfc) in rockchip_sfc_get_version() argument 210 return (u16)(readl(sfc->regbase + SFC_VER) & 0xffff); in rockchip_sfc_get_version() 213 static u32 rockchip_sfc_get_max_iosize(struct rockchip_sfc *sfc) in rockchip_sfc_get_max_iosize() argument 218 static void rockchip_sfc_irq_unmask(struct rockchip_sfc *sfc, u32 mask) in rockchip_sfc_irq_unmask() argument [all …]
|
/openbmc/linux/arch/m68k/include/asm/ |
H A D | sun3mmu.h | 75 unsigned char sfc, c; in sun3_get_buserr() local 77 GET_SFC (sfc); in sun3_get_buserr() 80 SET_SFC (sfc); in sun3_get_buserr() 89 unsigned char c, sfc; in sun3_get_segmap() local 91 GET_SFC (sfc); in sun3_get_segmap() 94 SET_SFC (sfc); in sun3_get_segmap() 103 unsigned char sfc; in sun3_put_segmap() local 105 GET_DFC (sfc); in sun3_put_segmap() 108 SET_DFC (sfc); in sun3_put_segmap() 117 unsigned char sfc; in sun3_get_pte() local [all …]
|
/openbmc/linux/sound/soc/tegra/ |
H A D | tegra210_sfc.c | 3062 struct tegra210_sfc *sfc = dev_get_drvdata(dev); in tegra210_sfc_runtime_suspend() local 3064 regcache_cache_only(sfc->regmap, true); in tegra210_sfc_runtime_suspend() 3065 regcache_mark_dirty(sfc->regmap); in tegra210_sfc_runtime_suspend() 3072 struct tegra210_sfc *sfc = dev_get_drvdata(dev); in tegra210_sfc_runtime_resume() local 3074 regcache_cache_only(sfc->regmap, false); in tegra210_sfc_runtime_resume() 3075 regcache_sync(sfc->regmap); in tegra210_sfc_runtime_resume() 3096 struct tegra210_sfc *sfc = dev_get_drvdata(cmpnt->dev); in tegra210_sfc_write_coeff_ram() local 3100 if (sfc->srate_in == sfc->srate_out) in tegra210_sfc_write_coeff_ram() 3103 coeff_ram = coef_addr_table[sfc->srate_in][sfc->srate_out]; in tegra210_sfc_write_coeff_ram() 3107 sfc->srate_in, sfc->srate_out); in tegra210_sfc_write_coeff_ram() [all …]
|
H A D | Makefile | 18 snd-soc-tegra210-sfc-objs := tegra210_sfc.o 38 obj-$(CONFIG_SND_SOC_TEGRA210_SFC) += snd-soc-tegra210-sfc.o
|
/openbmc/linux/sound/firewire/oxfw/ |
H A D | oxfw-command.c | 115 unsigned int sfc; in avc_general_inquiry_sig_fmt() local 119 for (sfc = 0; sfc < CIP_SFC_COUNT; sfc++) { in avc_general_inquiry_sig_fmt() 120 if (amdtp_rate_table[sfc] == rate) in avc_general_inquiry_sig_fmt() 123 if (sfc == CIP_SFC_COUNT) in avc_general_inquiry_sig_fmt() 138 buf[5] = 0x07 & sfc; /* FDF-hi. AM824, frequency */ in avc_general_inquiry_sig_fmt()
|
/openbmc/linux/sound/firewire/ |
H A D | fcp.c | 32 unsigned int sfc; in avc_general_set_sig_fmt() local 38 for (sfc = 0; sfc < CIP_SFC_COUNT; sfc++) { in avc_general_set_sig_fmt() 39 if (amdtp_rate_table[sfc] == rate) { in avc_general_set_sig_fmt() 59 buf[5] = 0x07 & sfc; /* FDF-hi. AM824, frequency */ in avc_general_set_sig_fmt() 88 unsigned int sfc; in avc_general_get_sig_fmt() local 125 sfc = 0x07 & buf[5]; in avc_general_get_sig_fmt() 126 if (sfc >= CIP_SFC_COUNT) { in avc_general_get_sig_fmt() 131 *rate = amdtp_rate_table[sfc]; in avc_general_get_sig_fmt()
|
H A D | amdtp-stream.c | 289 unsigned int sfc; in amdtp_stream_set_parameters() local 291 for (sfc = 0; sfc < ARRAY_SIZE(amdtp_rate_table); ++sfc) { in amdtp_stream_set_parameters() 292 if (amdtp_rate_table[sfc] == rate) in amdtp_stream_set_parameters() 295 if (sfc == ARRAY_SIZE(amdtp_rate_table)) in amdtp_stream_set_parameters() 298 s->sfc = sfc; in amdtp_stream_set_parameters() 300 s->syt_interval = amdtp_syt_intervals[sfc]; in amdtp_stream_set_parameters() 387 const enum cip_sfc sfc = s->sfc; in pool_ideal_nonblocking_data_blocks() local 394 if (!cip_sfc_is_base_44100(sfc)) { in pool_ideal_nonblocking_data_blocks() 408 if (sfc == CIP_SFC_44100) in pool_ideal_nonblocking_data_blocks() 413 desc->data_blocks = 11 * (sfc >> 1) + (phase == 0); in pool_ideal_nonblocking_data_blocks() [all …]
|
H A D | amdtp-stream.h | 189 enum cip_sfc sfc; member 297 static inline bool cip_sfc_is_base_44100(enum cip_sfc sfc) in cip_sfc_is_base_44100() argument 299 return sfc & 1; in cip_sfc_is_base_44100()
|
/openbmc/linux/drivers/net/ethernet/sfc/siena/ |
H A D | Makefile | 2 sfc-siena-y += farch.o siena.o \ 8 sfc-siena-$(CONFIG_SFC_SIENA_MTD) += mtd.o 9 sfc-siena-$(CONFIG_SFC_SIENA_SRIOV) += siena_sriov.o 11 obj-$(CONFIG_SFC_SIENA) += sfc-siena.o
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
H A D | batch.py | 23 lambda sfc: sfc.write_to_png(filename)), 24 "pdf": (lambda w, h: cairo.PDFSurface(filename, w, h), lambda sfc: 0), 25 "svg": (lambda w, h: cairo.SVGSurface(filename, w, h), lambda sfc: 0)
|
/openbmc/linux/drivers/net/ethernet/sfc/ |
H A D | Makefile | 2 sfc-y += efx.o efx_common.o efx_channels.o nic.o \ 11 sfc-$(CONFIG_SFC_MTD) += mtd.o 12 sfc-$(CONFIG_SFC_SRIOV) += sriov.o ef10_sriov.o ef100_sriov.o ef100_rep.o \ 16 obj-$(CONFIG_SFC) += sfc.o
|
H A D | Kconfig | 34 will be called sfc. 69 source "drivers/net/ethernet/sfc/falcon/Kconfig" 70 source "drivers/net/ethernet/sfc/siena/Kconfig"
|
/openbmc/linux/drivers/net/ethernet/sfc/falcon/ |
H A D | Makefile | 2 sfc-falcon-y += efx.o nic.o farch.o falcon.o tx.o rx.o selftest.o \ 6 sfc-falcon-$(CONFIG_SFC_FALCON_MTD) += mtd.o 7 obj-$(CONFIG_SFC_FALCON) += sfc-falcon.o
|
H A D | Kconfig | 14 will be called sfc-falcon.
|
/openbmc/linux/Documentation/networking/devlink/ |
H A D | sfc.rst | 4 sfc devlink support 7 This document describes the devlink features implemented by the ``sfc`` 13 The ``sfc`` driver reports the following versions
|
/openbmc/linux/sound/firewire/fireface/ |
H A D | ff-stream.c | 12 int snd_ff_stream_get_multiplier_mode(enum cip_sfc sfc, in snd_ff_stream_get_multiplier_mode() argument 25 if (sfc >= CIP_SFC_COUNT) in snd_ff_stream_get_multiplier_mode() 28 *mode = modes[sfc]; in snd_ff_stream_get_multiplier_mode()
|
/openbmc/linux/sound/firewire/motu/ |
H A D | motu-command-dsp-message-parser.c | 49 int snd_motu_command_dsp_message_parser_init(struct snd_motu *motu, enum cip_sfc sfc) in snd_motu_command_dsp_message_parser_init() argument 56 switch (sfc) { in snd_motu_command_dsp_message_parser_init()
|
/openbmc/u-boot/arch/arm/dts/ |
H A D | rv1108.dtsi | 23 spi0 = &sfc; 251 sfc: sfc@301c0000 { label 252 compatible = "rockchip,sfc"; 458 sfc { 459 sfc_pins: sfc-pins {
|
H A D | rv1108-evb.dts | 45 &sfc {
|
/openbmc/linux/drivers/mtd/spi-nor/controllers/ |
H A D | Makefile | 2 obj-$(CONFIG_SPI_HISI_SFC) += hisi-sfc.o
|
/openbmc/linux/arch/m68k/ifpsp060/ |
H A D | iskeleton.S | 204 | load sfc/dfc 212 movec.l %d0,%sfc 226 | restore sfc/dfc 228 movec.l %d2,%sfc
|
/openbmc/linux/arch/arm/boot/dts/rockchip/ |
H A D | rv1108.dtsi | 536 sfc: spi@301c0000 { label 537 compatible = "rockchip,sfc"; 715 sfc { 716 sfc_bus4: sfc-bus4 { 724 sfc_bus2: sfc-bus2 { 730 sfc_cs0: sfc-cs0 { 735 sfc_clk: sfc-clk {
|
/openbmc/qemu/target/m68k/ |
H A D | monitor.c | 47 { "sfc", offsetof(CPUM68KState, sfc) },
|
/openbmc/linux/arch/m68k/kernel/ |
H A D | sun3-head.S | 41 movec %d0, %sfc
|
/openbmc/linux/sound/firewire/digi00x/ |
H A D | amdtp-dot.c | 130 s->ctx_data.rx.fdf = AMDTP_FDF_AM824 | s->sfc; in amdtp_dot_set_parameters() 245 p->midi_fifo_used[port] += amdtp_rate_table[s->sfc] * count; in midi_use_bytes()
|