/Linux-v4.19/samples/kfifo/ |
D | inttype-example.c | 21 #define FIFO_SIZE 32 macro 44 static DEFINE_KFIFO(test, int, FIFO_SIZE); 47 static const int expected_result[FIFO_SIZE] = { 152 ret = kfifo_alloc(&test, FIFO_SIZE, GFP_KERNEL); in example_init()
|
D | bytestream-example.c | 21 #define FIFO_SIZE 32 macro 44 static DECLARE_KFIFO(test, unsigned char, FIFO_SIZE); 47 static const unsigned char expected_result[FIFO_SIZE] = { 159 ret = kfifo_alloc(&test, FIFO_SIZE, GFP_KERNEL); in example_init()
|
D | dma-example.c | 19 #define FIFO_SIZE 32 macro 32 if (kfifo_alloc(&fifo, FIFO_SIZE, GFP_KERNEL)) { in example_init() 65 nents = kfifo_dma_in_prepare(&fifo, sg, ARRAY_SIZE(sg), FIFO_SIZE); in example_init()
|
D | record-example.c | 21 #define FIFO_SIZE 128 macro 53 typedef STRUCT_KFIFO_REC_1(FIFO_SIZE) mytest; 166 ret = kfifo_alloc(&test, FIFO_SIZE, GFP_KERNEL); in example_init()
|
/Linux-v4.19/drivers/i2c/busses/ |
D | i2c-sh7760.c | 79 #define FIFO_SIZE 16 macro 188 len = (msg->len >= FIFO_SIZE) ? FIFO_SIZE - 1 in sh7760_i2c_irq() 208 while (msg->len && (IN32(id, I2CTFDR) < FIFO_SIZE)) { in sh7760_i2c_irq() 217 len = (msg->len >= FIFO_SIZE) ? 2 : 0; in sh7760_i2c_irq() 251 if (id->msg->len >= FIFO_SIZE) in sh7760_i2c_mrecv() 252 len = FIFO_SIZE - 1; /* trigger at fifo full */ in sh7760_i2c_mrecv() 277 if (id->msg->len >= FIFO_SIZE) in sh7760_i2c_msend() 285 while (id->msg->len && IN32(id, I2CTFDR) < FIFO_SIZE) { in sh7760_i2c_msend()
|
D | i2c-axxia.c | 27 #define FIFO_SIZE 8 macro 264 size_t tx_fifo_avail = FIFO_SIZE - readl(idev->base + MST_TX_FIFO); in axxia_i2c_fill_tx_fifo()
|
/Linux-v4.19/drivers/staging/pi433/ |
D | pi433_if.c | 131 device->free_in_fifo = FIFO_SIZE; in DIO0_irq_handler() 151 device->free_in_fifo = FIFO_SIZE; in DIO1_irq_handler() 156 device->free_in_fifo = FIFO_SIZE - FIFO_THRESHOLD - 1; in DIO1_irq_handler() 398 retval = rf69_set_fifo_threshold(dev->spi, FIFO_SIZE - FIFO_THRESHOLD); in pi433_start_rx() 438 dev->free_in_fifo = FIFO_SIZE; in pi433_receive() 492 dev->free_in_fifo < FIFO_SIZE); in pi433_receive() 513 dev->free_in_fifo < FIFO_SIZE); in pi433_receive() 526 dev->free_in_fifo < FIFO_SIZE); in pi433_receive() 539 if (bytes_to_read > FIFO_SIZE - dev->free_in_fifo) in pi433_receive() 540 bytes_to_read = FIFO_SIZE - dev->free_in_fifo; in pi433_receive() [all …]
|
D | rf69.c | 33 #define FIFO_SIZE 66 /* in byte */ macro 823 u8 local_buffer[FIFO_SIZE + 1]; in rf69_read_fifo() 826 if (size > FIFO_SIZE) { in rf69_read_fifo() 857 u8 local_buffer[FIFO_SIZE + 1]; in rf69_write_fifo() 859 if (size > FIFO_SIZE) { in rf69_write_fifo()
|
D | rf69.h | 27 #define FIFO_SIZE 66 /* bytes */ macro
|
/Linux-v4.19/drivers/spi/ |
D | spi-st-ssc4.c | 54 #define FIFO_SIZE 8 macro 77 if (spi_st->words_remaining > FIFO_SIZE) in ssc_write_tx_fifo() 78 count = FIFO_SIZE; in ssc_write_tx_fifo() 101 if (spi_st->words_remaining > FIFO_SIZE) in ssc_read_rx_fifo() 102 count = FIFO_SIZE; in ssc_read_rx_fifo()
|
/Linux-v4.19/sound/pci/au88x0/ |
D | au8820.h | 154 #define FIFO_SIZE (1<<FIFO_SIZE_BITS) // 0x20 macro 155 #define FIFO_MASK (FIFO_SIZE-1) //0x1f /* at shift left 0xc */
|
D | au8810.h | 163 #define FIFO_SIZE (1<<FIFO_SIZE_BITS) // 0x20 macro 164 #define FIFO_MASK (FIFO_SIZE-1) //0x1f /* at shift left 0xc */
|
D | au8830.h | 183 #define FIFO_SIZE (1<<(FIFO_SIZE_BITS)) // 0x40 macro 184 #define FIFO_MASK (FIFO_SIZE-1) //0x3f /* at shift left 0xc */
|
D | au88x0_core.c | 790 vortex_fifo_clearadbdata(vortex, fifo, FIFO_SIZE); 834 vortex_fifo_clearadbdata(vortex, fifo, FIFO_SIZE); // this_4 in vortex_fifo_setadbctrl() 872 vortex_fifo_clearadbdata(vortex, fifo, FIFO_SIZE); in vortex_fifo_setadbctrl() 891 vortex_fifo_clearwtdata(vortex, fifo, FIFO_SIZE); in vortex_fifo_wtinitialize() 927 vortex_fifo_clearwtdata(vortex, fifo, FIFO_SIZE); // this_4 in vortex_fifo_setwtctrl() 965 vortex_fifo_clearwtdata(vortex, fifo, FIFO_SIZE); in vortex_fifo_setwtctrl() 1047 vortex_fifo_clearadbdata(vortex, x, FIFO_SIZE); in vortex_fifo_init() 1060 vortex_fifo_clearwtdata(vortex, x, FIFO_SIZE); in vortex_fifo_init()
|
/Linux-v4.19/drivers/net/ethernet/ |
D | ec_bhf.c | 117 #define FIFO_SIZE 64 macro 410 FIFO_SIZE * sizeof(struct rx_desc)); in ec_bhf_open() 418 FIFO_SIZE * sizeof(struct tx_desc)); in ec_bhf_open()
|
/Linux-v4.19/drivers/media/pci/netup_unidvb/ |
D | netup_unidvb_i2c.c | 51 #define FIFO_SIZE 16 macro 143 u32 fifo_space = FIFO_SIZE - in netup_i2c_fifo_tx()
|
/Linux-v4.19/drivers/tty/serial/ |
D | rp2.c | 48 #define FIFO_SIZE 512 macro 434 u16 max_tx = FIFO_SIZE - readw(up->base + RP2_TX_FIFO_COUNT); in rp2_tx_chars() 699 p->fifosize = FIFO_SIZE; in rp2_fw_cb()
|
D | ioc3_serial.c | 58 #define FIFO_SIZE (MAX_CHARS-1) /* it's a uchar */ macro 995 the_port->fifosize = FIFO_SIZE; in ioc3_change_speed() 1941 the_port->fifosize = FIFO_SIZE; in ioc3_serial_core_attach()
|
/Linux-v4.19/drivers/block/ |
D | ps3vram.c | 32 #define FIFO_SIZE (64 * 1024) macro 37 #define CACHE_PAGE_COUNT ((XDR_BUF_SIZE - FIFO_SIZE) / CACHE_PAGE_SIZE) 220 FIFO_SIZE - 1024) { in ps3vram_fire_ring()
|
/Linux-v4.19/drivers/mmc/core/ |
D | sdio_uart.c | 51 #define FIFO_SIZE PAGE_SIZE macro 96 if (kfifo_alloc(&port->xmit_fifo, FIFO_SIZE, GFP_KERNEL)) in sdio_uart_add_port() 807 return FIFO_SIZE - kfifo_len(&port->xmit_fifo); in sdio_uart_write_room()
|
/Linux-v4.19/drivers/staging/comedi/drivers/ |
D | das1800.c | 84 #define FIFO_SIZE 1024 /* 1024 sample fifo */ macro 343 unsigned int nsamples = comedi_nsamples_left(s, FIFO_SIZE / 2); in das1800_handle_fifo_half_full() 1232 devpriv->fifo_buf = kmalloc_array(FIFO_SIZE, in das1800_attach()
|
/Linux-v4.19/drivers/net/ethernet/tehuti/ |
D | tehuti.h | 80 #define FIFO_SIZE 4096 macro
|
D | tehuti.c | 157 u16 memsz = FIFO_SIZE * (1 << fsz_type); in bdx_fifo_init() 1431 int memsz = FIFO_SIZE * (1 << (sz_type + 1)); in bdx_tx_db_init() 2248 return (FIFO_SIZE * (1 << rx_size)) / sizeof(struct rxf_desc); in bdx_rx_fifo_size_to_packets() 2254 return (FIFO_SIZE * (1 << tx_size)) / BDX_TXF_DESC_SZ; in bdx_tx_fifo_size_to_packets()
|
/Linux-v4.19/drivers/ata/ |
D | pata_arasan_cf.c | 174 #define FIFO_SIZE 0x200u macro 474 dma_len = min(xfer_cnt, FIFO_SIZE); in sg_xfer()
|
/Linux-v4.19/drivers/usb/gadget/udc/ |
D | dummy_hcd.c | 223 #define FIFO_SIZE 64 macro 271 u8 fifo_buf[FIFO_SIZE]; 734 _req->length <= FIFO_SIZE) { in dummy_queue()
|