| /Linux-v5.15/drivers/spi/ |
| 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 …]
|
| D | Makefile | 59 obj-$(CONFIG_SPI_HISI_SFC_V3XX) += spi-hisi-sfc-v3xx.o 98 obj-$(CONFIG_SPI_ROCKCHIP_SFC) += spi-rockchip-sfc.o
|
| /Linux-v5.15/arch/m68k/include/asm/ |
| 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 …]
|
| /Linux-v5.15/sound/firewire/oxfw/ |
| 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()
|
| /Linux-v5.15/sound/firewire/ |
| 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()
|
| D | amdtp-stream.c | 281 unsigned int sfc; in amdtp_stream_set_parameters() local 283 for (sfc = 0; sfc < ARRAY_SIZE(amdtp_rate_table); ++sfc) { in amdtp_stream_set_parameters() 284 if (amdtp_rate_table[sfc] == rate) in amdtp_stream_set_parameters() 287 if (sfc == ARRAY_SIZE(amdtp_rate_table)) in amdtp_stream_set_parameters() 290 s->sfc = sfc; in amdtp_stream_set_parameters() 292 s->syt_interval = amdtp_syt_intervals[sfc]; in amdtp_stream_set_parameters() 374 const enum cip_sfc sfc = s->sfc; in pool_ideal_nonblocking_data_blocks() local 381 if (!cip_sfc_is_base_44100(sfc)) { in pool_ideal_nonblocking_data_blocks() 395 if (sfc == CIP_SFC_44100) in pool_ideal_nonblocking_data_blocks() 400 desc->data_blocks = 11 * (sfc >> 1) + (phase == 0); in pool_ideal_nonblocking_data_blocks() [all …]
|
| D | amdtp-stream.h | 184 enum cip_sfc sfc; member 280 static inline bool cip_sfc_is_base_44100(enum cip_sfc sfc) in cip_sfc_is_base_44100() argument 282 return sfc & 1; in cip_sfc_is_base_44100()
|
| D | amdtp-am824.c | 86 s->ctx_data.rx.fdf = AMDTP_FDF_AM824 | s->sfc; in amdtp_am824_set_parameters() 294 p->midi_fifo_used[port] += amdtp_rate_table[s->sfc]; in midi_rate_use_one_byte()
|
| /Linux-v5.15/drivers/net/ethernet/sfc/ |
| D | Makefile | 2 sfc-y += efx.o efx_common.o efx_channels.o nic.o \ 10 sfc-$(CONFIG_SFC_MTD) += mtd.o 11 sfc-$(CONFIG_SFC_SRIOV) += sriov.o siena_sriov.o ef10_sriov.o 13 obj-$(CONFIG_SFC) += sfc.o
|
| D | Kconfig | 33 will be called sfc. 67 source "drivers/net/ethernet/sfc/falcon/Kconfig"
|
| /Linux-v5.15/drivers/net/ethernet/sfc/falcon/ |
| 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
|
| D | Kconfig | 14 will be called sfc-falcon.
|
| /Linux-v5.15/sound/firewire/fireface/ |
| 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()
|
| D | ff.h | 142 int snd_ff_stream_get_multiplier_mode(enum cip_sfc sfc,
|
| D | ff-pcm.c | 185 rate = amdtp_rate_table[ff->rx_stream.sfc]; in pcm_open()
|
| /Linux-v5.15/drivers/mtd/spi-nor/controllers/ |
| D | Makefile | 3 obj-$(CONFIG_SPI_HISI_SFC) += hisi-sfc.o
|
| /Linux-v5.15/arch/m68k/ifpsp060/ |
| D | iskeleton.S | 204 | load sfc/dfc 212 movec.l %d0,%sfc 226 | restore sfc/dfc 228 movec.l %d2,%sfc
|
| /Linux-v5.15/arch/arm/boot/dts/ |
| D | rv1108.dtsi | 549 sfc: spi@301c0000 { label 550 compatible = "rockchip,sfc"; 728 sfc { 729 sfc_bus4: sfc-bus4 { 737 sfc_bus2: sfc-bus2 { 743 sfc_cs0: sfc-cs0 { 748 sfc_clk: sfc-clk {
|
| /Linux-v5.15/arch/m68k/kernel/ |
| D | sun3-head.S | 41 movec %d0, %sfc
|
| D | entry.S | 338 movec %sfc,%d0 426 movec %a0,%sfc
|
| /Linux-v5.15/sound/firewire/digi00x/ |
| 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()
|
| /Linux-v5.15/drivers/net/phy/ |
| D | at803x.c | 955 int sfc; in at803x_read_status() local 957 sfc = phy_read(phydev, AT803X_SPECIFIC_FUNCTION_CONTROL); in at803x_read_status() 958 if (sfc < 0) in at803x_read_status() 959 return sfc; in at803x_read_status() 982 switch (FIELD_GET(AT803X_SFC_MDI_CROSSOVER_MODE_M, sfc)) { in at803x_read_status()
|
| /Linux-v5.15/drivers/net/ethernet/ |
| D | Makefile | 84 obj-$(CONFIG_NET_VENDOR_SOLARFLARE) += sfc/
|
| D | Kconfig | 171 source "drivers/net/ethernet/sfc/Kconfig"
|
| /Linux-v5.15/drivers/mmc/core/ |
| D | sd.c | 1184 u16 sfc, offset, ext = *next_ext_addr; in sd_parse_ext_reg() local 1196 memcpy(&sfc, &gen_info_buf[ext], 2); in sd_parse_ext_reg() 1221 if (sfc == 0x1) in sd_parse_ext_reg() 1225 if (sfc == 0x2) in sd_parse_ext_reg()
|