1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright 2015-2016 Freescale Semiconductor, Inc. 4 * Copyright 2017 NXP 5 */ 6 7 #ifndef _HIF_NOCPY_H_ 8 #define _HIF_NOCPY_H_ 9 10 #define HIF_NOCPY_VERSION (HIF_NOCPY_BASE_ADDR + 0x00) 11 #define HIF_NOCPY_TX_CTRL (HIF_NOCPY_BASE_ADDR + 0x04) 12 #define HIF_NOCPY_TX_CURR_BD_ADDR (HIF_NOCPY_BASE_ADDR + 0x08) 13 #define HIF_NOCPY_TX_ALLOC (HIF_NOCPY_BASE_ADDR + 0x0c) 14 #define HIF_NOCPY_TX_BDP_ADDR (HIF_NOCPY_BASE_ADDR + 0x10) 15 #define HIF_NOCPY_TX_STATUS (HIF_NOCPY_BASE_ADDR + 0x14) 16 #define HIF_NOCPY_RX_CTRL (HIF_NOCPY_BASE_ADDR + 0x20) 17 #define HIF_NOCPY_RX_BDP_ADDR (HIF_NOCPY_BASE_ADDR + 0x24) 18 #define HIF_NOCPY_RX_STATUS (HIF_NOCPY_BASE_ADDR + 0x30) 19 #define HIF_NOCPY_INT_SRC (HIF_NOCPY_BASE_ADDR + 0x34) 20 #define HIF_NOCPY_INT_ENABLE (HIF_NOCPY_BASE_ADDR + 0x38) 21 #define HIF_NOCPY_POLL_CTRL (HIF_NOCPY_BASE_ADDR + 0x3c) 22 #define HIF_NOCPY_RX_CURR_BD_ADDR (HIF_NOCPY_BASE_ADDR + 0x40) 23 #define HIF_NOCPY_RX_ALLOC (HIF_NOCPY_BASE_ADDR + 0x44) 24 #define HIF_NOCPY_TX_DMA_STATUS (HIF_NOCPY_BASE_ADDR + 0x48) 25 #define HIF_NOCPY_RX_DMA_STATUS (HIF_NOCPY_BASE_ADDR + 0x4c) 26 #define HIF_NOCPY_RX_INQ0_PKTPTR (HIF_NOCPY_BASE_ADDR + 0x50) 27 #define HIF_NOCPY_RX_INQ1_PKTPTR (HIF_NOCPY_BASE_ADDR + 0x54) 28 #define HIF_NOCPY_TX_PORT_NO (HIF_NOCPY_BASE_ADDR + 0x60) 29 #define HIF_NOCPY_LMEM_ALLOC_ADDR (HIF_NOCPY_BASE_ADDR + 0x64) 30 #define HIF_NOCPY_CLASS_ADDR (HIF_NOCPY_BASE_ADDR + 0x68) 31 #define HIF_NOCPY_TMU_PORT0_ADDR (HIF_NOCPY_BASE_ADDR + 0x70) 32 #define HIF_NOCPY_TMU_PORT1_ADDR (HIF_NOCPY_BASE_ADDR + 0x74) 33 #define HIF_NOCPY_TMU_PORT2_ADDR (HIF_NOCPY_BASE_ADDR + 0x7c) 34 #define HIF_NOCPY_TMU_PORT3_ADDR (HIF_NOCPY_BASE_ADDR + 0x80) 35 #define HIF_NOCPY_TMU_PORT4_ADDR (HIF_NOCPY_BASE_ADDR + 0x84) 36 #define HIF_NOCPY_INT_COAL (HIF_NOCPY_BASE_ADDR + 0x90) 37 #define HIF_NOCPY_AXI_CTRL (HIF_NOCPY_BASE_ADDR + 0x94) 38 39 #endif /* _HIF_NOCPY_H_ */ 40