123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
- * All rights reserved.
- *
- * This software is supplied "AS IS" without any warranties.
- * RDA assumes no responsibility or liability for the use of the software,
- * conveys no license or title under any patent, copyright, or mask work
- * right to the product. RDA reserves the right to make changes in the
- * software without notification. RDA also make no representation or
- * warranty that such application will be suitable for the specified use
- * without further testing or modification.
- */
- #ifndef _AON_IFC_H_
- #define _AON_IFC_H_
- // Auto generated by dtools(see dtools.txt for its version).
- // Don't edit it manually!
- #define AON_NB_BITS_ADDR (32)
- #define AON_IFC_ADDR_ALIGN (0)
- #define AON_IFC_TC_LEN (23)
- #define AON_IFC_STD_CHAN_NB (6)
- #define AON_IFC_RFSPI_CHAN (0)
- #define AON_IFC_AIF_CHAN (2)
- #define AON_IFC_DBG_CHAN (1)
- #define AON_APB1_IFC_AHB_MAXSPACE (20)
- #define AON_APB1_IFC_ADDR_ALIGN (2)
- typedef enum
- {
- DMA_ID_TX_UART2 = 0,
- DMA_ID_RX_UART2 = 1,
- DMA_ID_TX_UART3 = 2,
- DMA_ID_RX_UART3 = 3,
- DMA_ID_TX_DBG_UART = 4,
- DMA_ID_RX_DBG_UART = 5,
- } AON_IFC_REQUEST_IDS_T;
- #define REG_AON_IFC_BASE (0x5140e000)
- typedef volatile struct
- {
- uint32_t get_ch; // 0x00000000
- uint32_t dma_status; // 0x00000004
- uint32_t debug_status; // 0x00000008
- uint32_t ifc_sec; // 0x0000000c
- struct // 0x00000010
- { //
- uint32_t control; // 0x00000000
- uint32_t status; // 0x00000004
- uint32_t start_addr; // 0x00000008
- uint32_t tc; // 0x0000000c
- uint32_t tc_threshold; // 0x00000010
- } std_ch[6]; //
- } HWP_AON_IFC_T;
- #define hwp_aonIfc ((HWP_AON_IFC_T *)REG_ACCESS_ADDRESS(REG_AON_IFC_BASE))
- typedef volatile struct
- {
- struct // 0x00000000
- { //
- uint32_t control; // 0x00000000
- uint32_t status; // 0x00000004
- uint32_t start_addr; // 0x00000008
- uint32_t fifo_size; // 0x0000000c
- uint32_t __16[1]; // 0x00000010
- uint32_t int_mask; // 0x00000014
- uint32_t int_clear; // 0x00000018
- uint32_t cur_ahb_addr; // 0x0000001c
- } ch[2]; //
- } HWP_AUDIO_IFC_T;
- // get_ch
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t ch_to_use : 5; // [4:0], read only
- uint32_t __31_5 : 27; // [31:5]
- } b;
- } REG_AON_IFC_GET_CH_T;
- // dma_status
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t ch_enable : 6; // [5:0], read only
- uint32_t __15_6 : 10; // [15:6]
- uint32_t ch_busy : 6; // [21:16], read only
- uint32_t __31_22 : 10; // [31:22]
- } b;
- } REG_AON_IFC_DMA_STATUS_T;
- // debug_status
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t dbg_status : 1; // [0], read only
- uint32_t __31_1 : 31; // [31:1]
- } b;
- } REG_AON_IFC_DEBUG_STATUS_T;
- // ifc_sec
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t std_ch_reg_sec : 6; // [5:0]
- uint32_t aif_ch_reg_sec : 2; // [7:6]
- uint32_t __15_8 : 8; // [15:8]
- uint32_t std_ch_dma_sec : 6; // [21:16]
- uint32_t aif_ch_dma_sec : 2; // [23:22]
- uint32_t dbg_ch_dma_sec : 1; // [24]
- uint32_t __31_25 : 7; // [31:25]
- } b;
- } REG_AON_IFC_IFC_SEC_T;
- // control
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t enable : 1; // [0]
- uint32_t disable : 1; // [1]
- uint32_t ch_rd_hw_exch : 1; // [2]
- uint32_t ch_wr_hw_exch : 1; // [3]
- uint32_t autodisable : 1; // [4]
- uint32_t size : 1; // [5]
- uint32_t __7_6 : 2; // [7:6]
- uint32_t req_src : 5; // [12:8]
- uint32_t __15_13 : 3; // [15:13]
- uint32_t flush : 1; // [16]
- uint32_t max_burst_length : 2; // [18:17]
- uint32_t __31_19 : 13; // [31:19]
- } b;
- } REG_AON_IFC_CONTROL_T;
- // status
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t enable : 1; // [0], read only
- uint32_t __3_1 : 3; // [3:1]
- uint32_t fifo_empty : 1; // [4], read only
- uint32_t __31_5 : 27; // [31:5]
- } b;
- } REG_AON_IFC_STATUS_T;
- // tc
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t tc : 23; // [22:0]
- uint32_t __31_23 : 9; // [31:23]
- } b;
- } REG_AON_IFC_TC_T;
- // tc_threshold
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t tc_threshold : 23; // [22:0]
- uint32_t __31_23 : 9; // [31:23]
- } b;
- } REG_AON_IFC_TC_THRESHOLD_T;
- // control
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t enable : 1; // [0]
- uint32_t disable : 1; // [1]
- uint32_t __3_2 : 2; // [3:2]
- uint32_t auto_disable : 1; // [4]
- uint32_t __31_5 : 27; // [31:5]
- } b;
- } REG_AUDIO_IFC_CONTROL_T;
- // status
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t enable : 1; // [0], read only
- uint32_t __3_1 : 3; // [3:1]
- uint32_t fifo_empty : 1; // [4], read only
- uint32_t __7_5 : 3; // [7:5]
- uint32_t cause_ief : 1; // [8], read only
- uint32_t cause_ihf : 1; // [9], read only
- uint32_t cause_i4f : 1; // [10], read only
- uint32_t cause_i3_4f : 1; // [11], read only
- uint32_t cause_ahb_error : 1; // [12], read only
- uint32_t __15_13 : 3; // [15:13]
- uint32_t ief : 1; // [16], read only
- uint32_t ihf : 1; // [17], read only
- uint32_t i4f : 1; // [18], read only
- uint32_t i3_4f : 1; // [19], read only
- uint32_t ahb_error : 1; // [20], read only
- uint32_t ch_idle : 1; // [21], read only
- uint32_t __31_22 : 10; // [31:22]
- } b;
- } REG_AUDIO_IFC_STATUS_T;
- // start_addr
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t __1_0 : 2; // [1:0]
- uint32_t start_addr : 30; // [31:2]
- } b;
- } REG_AUDIO_IFC_START_ADDR_T;
- // fifo_size
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t __3_0 : 4; // [3:0]
- uint32_t fifo_size : 16; // [19:4]
- uint32_t __31_20 : 12; // [31:20]
- } b;
- } REG_AUDIO_IFC_FIFO_SIZE_T;
- // int_mask
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t __7_0 : 8; // [7:0]
- uint32_t end_fifo : 1; // [8]
- uint32_t half_fifo : 1; // [9]
- uint32_t quarter_fifo : 1; // [10]
- uint32_t three_quarter_fifo : 1; // [11]
- uint32_t ahb_error : 1; // [12]
- uint32_t __31_13 : 19; // [31:13]
- } b;
- } REG_AUDIO_IFC_INT_MASK_T;
- // int_clear
- typedef union {
- uint32_t v;
- struct
- {
- uint32_t __7_0 : 8; // [7:0]
- uint32_t end_fifo : 1; // [8], write clear
- uint32_t half_fifo : 1; // [9], write clear
- uint32_t quarter_fifo : 1; // [10], write clear
- uint32_t three_quarter_fifo : 1; // [11], write clear
- uint32_t ahb_error : 1; // [12], write clear
- uint32_t __31_13 : 19; // [31:13]
- } b;
- } REG_AUDIO_IFC_INT_CLEAR_T;
- // get_ch
- #define AON_IFC_CH_TO_USE(n) (((n)&0x1f) << 0)
- // dma_status
- #define AON_IFC_CH_ENABLE(n) (((n)&0x3f) << 0)
- #define AON_IFC_CH_BUSY(n) (((n)&0x3f) << 16)
- // debug_status
- #define AON_IFC_DBG_STATUS (1 << 0)
- // ifc_sec
- #define AON_IFC_STD_CH_REG_SEC(n) (((n)&0x3f) << 0)
- #define AON_IFC_AIF_CH_REG_SEC(n) (((n)&0x3) << 6)
- #define AON_IFC_STD_CH_DMA_SEC(n) (((n)&0x3f) << 16)
- #define AON_IFC_AIF_CH_DMA_SEC(n) (((n)&0x3) << 22)
- #define AON_IFC_DBG_CH_DMA_SEC (1 << 24)
- // control
- #define AON_IFC_ENABLE (1 << 0)
- #define AON_IFC_DISABLE (1 << 1)
- #define AON_IFC_CH_RD_HW_EXCH (1 << 2)
- #define AON_IFC_CH_WR_HW_EXCH (1 << 3)
- #define AON_IFC_AUTODISABLE (1 << 4)
- #define AON_IFC_SIZE (1 << 5)
- #define AON_IFC_REQ_SRC(n) (((n)&0x1f) << 8)
- #define AON_IFC_REQ_SRC_DMA_ID_TX_UART2 (0 << 8)
- #define AON_IFC_REQ_SRC_DMA_ID_RX_UART2 (1 << 8)
- #define AON_IFC_REQ_SRC_DMA_ID_TX_UART3 (2 << 8)
- #define AON_IFC_REQ_SRC_DMA_ID_RX_UART3 (3 << 8)
- #define AON_IFC_REQ_SRC_DMA_ID_TX_DBG_UART (4 << 8)
- #define AON_IFC_REQ_SRC_DMA_ID_RX_DBG_UART (5 << 8)
- #define AON_IFC_FLUSH (1 << 16)
- #define AON_IFC_MAX_BURST_LENGTH(n) (((n)&0x3) << 17)
- #define AON_IFC_REQ_SRC_V_DMA_ID_TX_UART2 (0)
- #define AON_IFC_REQ_SRC_V_DMA_ID_RX_UART2 (1)
- #define AON_IFC_REQ_SRC_V_DMA_ID_TX_UART3 (2)
- #define AON_IFC_REQ_SRC_V_DMA_ID_RX_UART3 (3)
- #define AON_IFC_REQ_SRC_V_DMA_ID_TX_DBG_UART (4)
- #define AON_IFC_REQ_SRC_V_DMA_ID_RX_DBG_UART (5)
- // status
- #define AON_IFC_ENABLE (1 << 0)
- #define AON_IFC_FIFO_EMPTY (1 << 4)
- // start_addr
- #define AON_IFC_START_ADDR(n) (((n)&0xffffffff) << 0)
- // tc
- #define AON_IFC_TC(n) (((n)&0x7fffff) << 0)
- // tc_threshold
- #define AON_IFC_TC_THRESHOLD(n) (((n)&0x7fffff) << 0)
- // control
- #define AUDIO_IFC_ENABLE (1 << 0)
- #define AUDIO_IFC_DISABLE (1 << 1)
- #define AUDIO_IFC_AUTO_DISABLE (1 << 4)
- // status
- #define AUDIO_IFC_ENABLE (1 << 0)
- #define AUDIO_IFC_FIFO_EMPTY (1 << 4)
- #define AUDIO_IFC_CAUSE_IEF (1 << 8)
- #define AUDIO_IFC_CAUSE_IHF (1 << 9)
- #define AUDIO_IFC_CAUSE_I4F (1 << 10)
- #define AUDIO_IFC_CAUSE_I3_4F (1 << 11)
- #define AUDIO_IFC_CAUSE_AHB_ERROR (1 << 12)
- #define AUDIO_IFC_IEF (1 << 16)
- #define AUDIO_IFC_IHF (1 << 17)
- #define AUDIO_IFC_I4F (1 << 18)
- #define AUDIO_IFC_I3_4F (1 << 19)
- #define AUDIO_IFC_STATUS_AHB_ERROR (1 << 20)
- #define AUDIO_IFC_CH_IDLE (1 << 21)
- // start_addr
- #define AUDIO_IFC_START_ADDR(n) (((n)&0x3fffffff) << 2)
- // fifo_size
- #define AUDIO_IFC_FIFO_SIZE(n) (((n)&0xffff) << 4)
- // int_mask
- #define AUDIO_IFC_END_FIFO (1 << 8)
- #define AUDIO_IFC_HALF_FIFO (1 << 9)
- #define AUDIO_IFC_QUARTER_FIFO (1 << 10)
- #define AUDIO_IFC_THREE_QUARTER_FIFO (1 << 11)
- #define AUDIO_IFC_INT_MASK_AHB_ERROR (1 << 12)
- // int_clear
- #define AUDIO_IFC_END_FIFO (1 << 8)
- #define AUDIO_IFC_HALF_FIFO (1 << 9)
- #define AUDIO_IFC_QUARTER_FIFO (1 << 10)
- #define AUDIO_IFC_THREE_QUARTER_FIFO (1 << 11)
- #define AUDIO_IFC_INT_CLEAR_AHB_ERROR (1 << 12)
- // cur_ahb_addr
- #define AUDIO_IFC_CUR_AHB_ADDR(n) (((n)&0xffffffff) << 0)
- #endif // _AON_IFC_H_
|