Lines Matching +full:fifo +full:- +full:enable
1 /* SPDX-License-Identifier: Apache-2.0 */
16 REG_GIE = 0x01C, /* Global Interrupt Enable */
18 REG_IER = 0x028, /* Interrupt Enable */
22 REG_TX_FIFO = 0x108, /* Transmit FIFO */
23 REG_RX_FIFO = 0x10C, /* Receive FIFO */
25 REG_TX_FIFO_OCY = 0x114, /* Transmit FIFO Occupancy */
26 REG_RX_FIFO_OCY = 0x118, /* Receive FIFO Occupancy */
28 REG_RX_FIFO_PIRQ = 0x120, /* Receive FIFO Programmable Depth Interrupt */
41 /* Global Interrupt Enable */
46 /* Interrupt Status/Interrupt Enable */
48 ISR_TX_HALF_EMPTY = BIT(7), /* Transmit FIFO Half Empty */
52 ISR_RX_FIFO_FULL = BIT(3), /* Receive FIFO Full */
53 ISR_TX_FIFO_EMPTY = BIT(2), /* Transmit FIFO Empty */
65 CR_GC_EN = BIT(6), /* General Call Enable */
67 CR_TXAK = BIT(4), /* Transmit Acknowledge Enable */
70 CR_TX_FIFO_RST = BIT(1), /* Transmit FIFO Reset */
71 CR_EN = BIT(0), /* AXI IIC Enable */
76 SR_TX_FIFO_EMPTY = BIT(7), /* Transmit FIFO empty */
77 SR_RX_FIFO_EMPTY = BIT(6), /* Receive FIFO empty */
78 SR_RX_FIFO_FULL = BIT(5), /* Receive FIFO full */
79 SR_TX_FIFO_FULL = BIT(4), /* Transmit FIFO full */
86 /* TX FIFO */
92 /* RX FIFO */
109 /* Size of RX/TX FIFO */