/Linux-v4.19/drivers/net/wan/ |
D | hd64570.c | 87 static inline u16 next_desc(port_t *port, u16 desc, int transmit) in next_desc() argument 89 return (desc + 1) % (transmit ? port_to_card(port)->tx_ring_buffers in next_desc() 94 static inline u16 desc_abs_number(port_t *port, u16 desc, int transmit) in desc_abs_number() argument 99 desc %= (transmit ? tx_buffs : rx_buffs); // called with "X + 1" etc. in desc_abs_number() 101 transmit * rx_buffs + desc; in desc_abs_number() 105 static inline u16 desc_offset(port_t *port, u16 desc, int transmit) in desc_offset() argument 108 return desc_abs_number(port, desc, transmit) * sizeof(pkt_desc); in desc_offset() 113 int transmit) in desc_address() argument 117 + desc_offset(port, desc, transmit)); in desc_address() 120 + desc_offset(port, desc, transmit)); in desc_address() [all …]
|
D | hd64572.c | 78 static inline u16 desc_abs_number(port_t *port, u16 desc, int transmit) in desc_abs_number() argument 83 desc %= (transmit ? tx_buffs : rx_buffs); // called with "X + 1" etc. in desc_abs_number() 84 return port->chan * (rx_buffs + tx_buffs) + transmit * rx_buffs + desc; in desc_abs_number() 88 static inline u16 desc_offset(port_t *port, u16 desc, int transmit) in desc_offset() argument 91 return desc_abs_number(port, desc, transmit) * sizeof(pkt_desc); in desc_offset() 96 int transmit) in desc_address() argument 99 desc_offset(port, desc, transmit)); in desc_address() 103 static inline u32 buffer_offset(port_t *port, u16 desc, int transmit) in buffer_offset() argument 106 desc_abs_number(port, desc, transmit) * (u32)HDLC_MAX_MRU; in buffer_offset() 132 int transmit, i; in sca_init_port() local [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/ata/ |
D | imx-sata.txt | 18 - fsl,transmit-level-mV : transmit voltage level, in millivolts. 19 - fsl,transmit-boost-mdB : transmit boost level, in milli-decibels 20 - fsl,transmit-atten-16ths : transmit attenuation, in 16ths
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-class-net-queues | 24 Indicates the number of transmit timeout events seen by this 25 network interface transmit queue. 42 network device transmit queue. Possible vaules depend on the 52 network device transmit queue. Possible values depend on the 62 of this particular network device transmit queue. 71 network device transmit queue. 79 on this network device transmit queue. This value is clamped 88 queued on this network device transmit queue. See 97 queued on this network device transmit queue. Default value is
|
/Linux-v4.19/Documentation/media/uapi/cec/ |
D | cec-ioc-receive.rst | 13 CEC_RECEIVE, CEC_TRANSMIT - Receive or transmit a CEC message 50 2. the result of an earlier non-blocking transmit (the ``sequence`` field will 56 ``CEC_CAP_TRANSMIT`` is set. If there is no more room in the transmit 58 The transmit queue has enough room for 18 messages (about 1 second worth 61 idea to fully fill up the transmit queue. 63 If the file descriptor is in non-blocking mode then the transmit will 64 return 0 and the result of the transmit will be available via 65 :ref:`ioctl CEC_RECEIVE <CEC_RECEIVE>` once the transmit has finished 68 The ``sequence`` field is filled in for every transmit and this can be 69 checked against the received messages to find the corresponding transmit [all …]
|
/Linux-v4.19/drivers/usb/musb/ |
D | musbhsdma.c | 66 u8 transmit; member 104 struct musb_hw_ep *hw_ep, u8 transmit) in dma_channel_allocate() argument 119 musb_channel->transmit = transmit; in dma_channel_allocate() 125 channel->desired_mode = transmit; in dma_channel_allocate() 172 | (musb_channel->transmit in configure_channel() 196 musb_channel->transmit ? "Tx" : "Rx", in dma_channel_program() 236 if (musb_channel->transmit) { in dma_channel_abort() 350 && (musb_channel->transmit) in dma_controller_irq() 375 musb_channel->transmit); in dma_controller_irq()
|
D | cppi_dma.c | 162 controller->tx[i].transmit = true; in cppi_controller_start() 166 controller->rx[i].transmit = false; in cppi_controller_start() 282 struct musb_hw_ep *ep, u8 transmit) in cppi_channel_allocate() argument 300 if (transmit) { in cppi_channel_allocate() 320 index, transmit ? 'T' : 'R', cppi_ch); in cppi_channel_allocate() 325 musb_dbg(musb, "Allocate CPPI%d %cX", index, transmit ? 'T' : 'R'); in cppi_channel_allocate() 342 else if (!c->transmit) in cppi_channel_release() 964 cppi_ch->transmit ? 'T' : 'R', in cppi_channel_program() 970 cppi_ch->transmit ? 'T' : 'R', in cppi_channel_program() 976 cppi_ch->transmit ? 'T' : 'R', in cppi_channel_program() [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/interrupt-controller/ |
D | cirrus,clps711x-intc.txt | 24 12: UTXINT1 UART1 transmit FIFO half empty 30 18: SS2TX SSI2 transmit FIFO less than half empty 31 28: UTXINT2 UART2 transmit FIFO half empty
|
/Linux-v4.19/net/caif/ |
D | cfveil.c | 34 vei->layer.transmit = cfvei_transmit; in cfvei_create() 84 caif_assert(layr->dn->transmit != NULL); in cfvei_transmit() 97 return layr->dn->transmit(layr->dn, pkt); in cfvei_transmit()
|
D | cfutill.c | 35 util->layer.transmit = cfutill_transmit; in cfutill_create() 86 caif_assert(layr->dn->transmit != NULL); in cfutill_transmit() 103 return layr->dn->transmit(layr->dn, pkt); in cfutill_transmit()
|
D | cfdbgl.c | 28 dbg->layer.transmit = cfdbgl_transmit; in cfdbgl_create() 54 return layr->dn->transmit(layr->dn, pkt); in cfdbgl_transmit()
|
D | cfvidl.c | 31 vid->layer.transmit = cfvidl_transmit; in cfvidl_create() 64 return layr->dn->transmit(layr->dn, pkt); in cfvidl_transmit()
|
/Linux-v4.19/Documentation/networking/ |
D | vxge.txt | 45 Checksum offload (TCP/UDP/IP) on transmit and receive paths 46 TCP Segmentation Offload (TSO) on transmit path 64 Up to 17 hardware based transmit and receive data channels, with 65 multiple steering options (transmit multiqueue enabled by default).
|
D | scaling.txt | 23 Contemporary NICs support multiple receive and transmit descriptor queues 368 which transmit queue to use when transmitting a packet on a multi-queue 371 to hardware transmit queue(s). 376 exclusively to a subset of CPUs, where the transmit completions for 381 transmit queue). Secondly, cache miss rate on transmit completion is 387 This mapping is used to pick transmit queue based on the receive 389 queues can be mapped to a set of transmit queues (many:many), although 391 on the same queue associations for transmit and receive. This is useful for 397 transmit queue corresponding to the associated receive queue has benefits 401 application cleans up the packets during the busy poll, transmit completion [all …]
|
D | ppp_generic.txt | 34 responsible for splitting datagrams on transmit and recombining them 86 (e.g. an ioctl) to transmit this back to user-space, as user-space 148 that it buffers in the transmit direction. It maintains a queue of 149 transmit packets for the PPP unit (network interface device) plus a 150 queue of transmit packets for each attached channel. Normally the 151 transmit queue for the unit will contain at most one packet; the 155 called netif_stop_queue(), which only happens on a transmit timeout. 157 is asked to transmit. 159 Transmit packets are dequeued from the PPP unit transmit queue and 181 to transmit. The channel may still refuse a fragment; in this case [all …]
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | imx6q-dms-ba16.dts | 114 fsl,transmit-atten-16ths = <12>; 115 fsl,transmit-boost-mdB = <3330>; 116 fsl,transmit-level-mV = <1133>;
|
D | imx6q-hummingboard-som-v15.dts | 56 fsl,transmit-level-mV = <1025>; 57 fsl,transmit-boost-mdB = <3330>; 58 fsl,transmit-atten-16ths = <9>;
|
D | imx6q-hummingboard.dts | 56 fsl,transmit-level-mV = <1025>; 57 fsl,transmit-boost-mdB = <3330>; 58 fsl,transmit-atten-16ths = <9>;
|
D | imx6q-cubox-i-emmc-som-v15.dts | 56 fsl,transmit-level-mV = <1104>; 57 fsl,transmit-boost-mdB = <0>; 58 fsl,transmit-atten-16ths = <9>;
|
D | imx6q-cubox-i-som-v15.dts | 55 fsl,transmit-level-mV = <1104>; 56 fsl,transmit-boost-mdB = <0>; 57 fsl,transmit-atten-16ths = <9>;
|
D | imx6q-cubox-i.dts | 55 fsl,transmit-level-mV = <1104>; 56 fsl,transmit-boost-mdB = <0>; 57 fsl,transmit-atten-16ths = <9>;
|
/Linux-v4.19/Documentation/media/uapi/rc/ |
D | lirc-set-send-duty-cycle.rst | 13 IR transmit. 35 Get/set the duty cycle of the carrier signal for IR transmit.
|
D | lirc-get-send-mode.rst | 13 LIRC_GET_SEND_MODE/LIRC_SET_SEND_MODE - Get/set current transmit mode. 37 Get/set current transmit mode.
|
/Linux-v4.19/net/bluetooth/cmtp/ |
D | core.c | 223 while ((skb = skb_dequeue(&session->transmit))) { in cmtp_process_transmit() 238 skb_queue_head(&session->transmit, skb); in cmtp_process_transmit() 262 skb_queue_head(&session->transmit, skb); in cmtp_process_transmit() 373 skb_queue_head_init(&session->transmit); in cmtp_add_connection() 429 skb_queue_purge(&session->transmit); in cmtp_del_connection()
|
/Linux-v4.19/Documentation/devicetree/bindings/spi/ |
D | microchip,spi-pic32.txt | 7 of <fault-irq>, <receive-irq>, <transmit-irq>. 18 named "spi-tx" for transmit and named "spi-rx" for receive.
|