Home
last modified time | relevance | path

Searched refs:read_fn (Results 1 – 14 of 14) sorted by relevance

/Linux-v6.6/arch/microblaze/kernel/
Dtimer.c48 static unsigned int (*read_fn)(void __iomem *); variable
73 write_fn(read_fn(timer_baseaddr + TCSR0) & ~TCSR_ENT, in xilinx_timer0_stop()
153 write_fn(read_fn(timer_baseaddr + TCSR0), timer_baseaddr + TCSR0); in timer_ack()
183 return read_fn(timer_baseaddr + TCR1); in xilinx_clock_read()
237 write_fn(read_fn(timer_baseaddr + TCSR1) & ~TCSR_ENT, in xilinx_clocksource_init()
270 read_fn = timer_read32; in xilinx_timer_init()
273 if (!(read_fn(timer_baseaddr + TCSR0) & TCSR_MDT)) { in xilinx_timer_init()
275 read_fn = timer_read32_be; in xilinx_timer_init()
/Linux-v6.6/drivers/spi/
Dspi-xilinx.c92 unsigned int (*read_fn)(void __iomem *); member
143 u32 data = xspi->read_fn(xspi->regs + XSPI_RXD_OFFSET); in xilinx_spi_rx()
199 cr = xspi->read_fn(xspi->regs + XSPI_CR_OFFSET) & ~XSPI_CR_MODE_MASK; in xilinx_spi_chipselect()
256 cr = xspi->read_fn(xspi->regs + XSPI_CR_OFFSET); in xilinx_spi_txrx_bufs()
260 isr = xspi->read_fn(xspi->regs + XIPIF_V123B_IISR_OFFSET); in xilinx_spi_txrx_bufs()
298 sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET); in xilinx_spi_txrx_bufs()
319 sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET); in xilinx_spi_txrx_bufs()
349 ipif_isr = xspi->read_fn(xspi->regs + XIPIF_V123B_IISR_OFFSET); in xilinx_spi_irq()
375 sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET); in xilinx_spi_find_buffer_size()
458 xspi->read_fn = xspi_read32; in xilinx_spi_probe()
[all …]
/Linux-v6.6/drivers/usb/gadget/udc/
Dudc-xilinx.c193 unsigned int (*read_fn)(void __iomem *reg); member
264 epcfgreg = udc->read_fn(udc->addr + ep0->offset)| in xudc_wrstatus()
339 reg = udc->read_fn(udc->addr + XUSB_DMA_STATUS_OFFSET); in xudc_start_dma()
355 if ((udc->read_fn(udc->addr + XUSB_DMA_STATUS_OFFSET) & in xudc_start_dma()
606 count = udc->read_fn(udc->addr + ep->offset + bufoffset); in xudc_read_fifo()
778 epcfgreg = udc->read_fn(udc->addr + ep->offset); in xudc_ep_set_halt()
783 epcfgreg = udc->read_fn(udc->addr + ep->offset); in xudc_ep_set_halt()
788 epcfgreg = udc->read_fn(ep->udc->addr + ep->offset); in xudc_ep_set_halt()
861 epcfg = udc->read_fn(udc->addr + ep->offset); in __xudc_ep_enable()
868 ier = udc->read_fn(udc->addr + XUSB_IER_OFFSET); in __xudc_ep_enable()
[all …]
/Linux-v6.6/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
Ddebug.c51 int (*read_fn)(struct seq_file *seq, void *data)) in brcmf_debugfs_add_entry()
55 drvr->wiphy->debugfsdir, read_fn); in brcmf_debugfs_add_entry()
Ddebug.h123 int (*read_fn)(struct seq_file *seq, void *data));
133 int (*read_fn)(struct seq_file *seq, void *data)) in brcmf_debugfs_add_entry()
/Linux-v6.6/tools/testing/selftests/bpf/progs/
Drefcounted_kptr.c302 #define INSERT_DOUBLE_READ_AND_DEL(read_fn, read_root, desc) \ argument
306 long insert_double_##read_fn##_and_del_##read_root(void *ctx) \
314 err = read_fn(&read_root, &lock, true); \
320 err = read_fn(&read_root, &lock, true); \
/Linux-v6.6/Documentation/translations/zh_CN/filesystems/
Ddebugfs.rst181 int (*read_fn)(struct seq_file *s,
184 “dev”参数是与此debugfs文件相关的设备,并且“read_fn”是一个函数指针,这个函数在
/Linux-v6.6/Documentation/translations/zh_TW/filesystems/
Ddebugfs.rst183 int (*read_fn)(struct seq_file *s,
186 「dev」參數是與此debugfs文件相關的設備,並且「read_fn」是一個函數指針,這個函數在
/Linux-v6.6/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
Ddebug.c191 int (*read_fn)(struct seq_file *seq, void *data)) in brcms_debugfs_add_entry()
201 entry->read = read_fn; in brcms_debugfs_add_entry()
/Linux-v6.6/include/linux/
Ddebugfs.h161 int (*read_fn)(struct seq_file *s, void *data));
355 int (*read_fn)(struct seq_file *s,
/Linux-v6.6/tools/lib/bpf/
Dbpf_core_read.h316 #define ___read(read_fn, dst, src_type, src, accessor) \ argument
317 read_fn((void *)(dst), sizeof(*(dst)), &((src_type)(src))->accessor)
/Linux-v6.6/Documentation/filesystems/
Ddebugfs.rst205 int (*read_fn)(struct seq_file *s,
209 the "read_fn" is a function pointer which to be called to print the
/Linux-v6.6/fs/debugfs/
Dfile.c1250 int (*read_fn)(struct seq_file *s, void *data)) in debugfs_create_devm_seqfile()
1261 entry->read = read_fn; in debugfs_create_devm_seqfile()
/Linux-v6.6/drivers/gpio/
Dgpiolib-cdev.c62 typedef ssize_t (*read_fn)(struct file *, char __user *, typedef
93 struct gpio_device *gdev, read_fn func) in call_read_locked()