blob: 26f100290c0f483c5df4235cfb6c9cd6a3f3ee35 [file] [log] [blame]
wdenkc0218802003-03-27 12:09:35 +00001
2/******************************************************************************
3 Copyright (c) 2002, Infineon Technologies. All rights reserved.
4
wdenk8bde7f72003-06-27 21:31:46 +00005 No Warranty
6 Because the program is licensed free of charge, there is no warranty for
7 the program, to the extent permitted by applicable law. Except when
8 otherwise stated in writing the copyright holders and/or other parties
9 provide the program "as is" without warranty of any kind, either
10 expressed or implied, including, but not limited to, the implied
11 warranties of merchantability and fitness for a particular purpose. The
12 entire risk as to the quality and performance of the program is with
13 you. should the program prove defective, you assume the cost of all
14 necessary servicing, repair or correction.
15
16 In no event unless required by applicable law or agreed to in writing
17 will any copyright holder, or any other party who may modify and/or
18 redistribute the program as permitted above, be liable to you for
19 damages, including any general, special, incidental or consequential
20 damages arising out of the use or inability to use the program
21 (including but not limited to loss of data or data being rendered
22 inaccurate or losses sustained by you or third parties or a failure of
23 the program to operate with any other programs), even if such holder or
24 other party has been advised of the possibility of such damages.
wdenkc0218802003-03-27 12:09:35 +000025******************************************************************************/
wdenk8bde7f72003-06-27 21:31:46 +000026
27
wdenkc0218802003-03-27 12:09:35 +000028/***********************************************************************/
29/* Module : WDT register address and bits */
30/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +000031
wdenk8bde7f72003-06-27 21:31:46 +000032#define INCA_IP_WDT (0xB8000000)
33/***********************************************************************/
34
35
36/***Reset Status Register Power On***/
wdenkc0218802003-03-27 12:09:35 +000037#define INCA_IP_WDT_RST_SR ((volatile u32*)(INCA_IP_WDT+ 0x0014))
wdenk8bde7f72003-06-27 21:31:46 +000038
39/***Reset Request Register***/
wdenkc0218802003-03-27 12:09:35 +000040#define INCA_IP_WDT_RST_REQ ((volatile u32*)(INCA_IP_WDT+ 0x0010))
41#define INCA_IP_WDT_RST_REQ_SWBOOT (1 << 24)
42#define INCA_IP_WDT_RST_REQ_SWCFG (1 << 16)
43#define INCA_IP_WDT_RST_REQ_RRPHY (1 << 5)
44#define INCA_IP_WDT_RST_REQ_RRHSP (1 << 4)
45#define INCA_IP_WDT_RST_REQ_RRFPI (1 << 3)
46#define INCA_IP_WDT_RST_REQ_RREXT (1 << 2)
47#define INCA_IP_WDT_RST_REQ_RRDSP (1 << 1)
48#define INCA_IP_WDT_RST_REQ_RRCPU (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +000049
50/***NMI Status Register***/
wdenkc0218802003-03-27 12:09:35 +000051#define INCA_IP_WDT_NMISR ((volatile u32*)(INCA_IP_WDT+ 0x002C))
52#define INCA_IP_WDT_NMISR_NMIWDT (1 << 2)
53#define INCA_IP_WDT_NMISR_NMIPLL (1 << 1)
54#define INCA_IP_WDT_NMISR_NMIEXT (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +000055
56/***Manufacturer Identification Register***/
wdenkc0218802003-03-27 12:09:35 +000057#define INCA_IP_WDT_MANID ((volatile u32*)(INCA_IP_WDT+ 0x0070))
58#define INCA_IP_WDT_MANID_MANUF (value) (((( 1 << 11) - 1) & (value)) << 5)
wdenk8bde7f72003-06-27 21:31:46 +000059
60/***Chip Identification Register***/
wdenkc0218802003-03-27 12:09:35 +000061#define INCA_IP_WDT_CHIPID ((volatile u32*)(INCA_IP_WDT+ 0x0074))
62#define INCA_IP_WDT_CHIPID_VERSION (value) (((( 1 << 4) - 1) & (value)) << 28)
63#define INCA_IP_WDT_CHIPID_PART_NUMBER (value) (((( 1 << 16) - 1) & (value)) << 12)
64#define INCA_IP_WDT_CHIPID_MANID (value) (((( 1 << 11) - 1) & (value)) << 1)
wdenk8bde7f72003-06-27 21:31:46 +000065
66/***Redesign Tracing Identification Register***/
wdenkc0218802003-03-27 12:09:35 +000067#define INCA_IP_WDT_RTID ((volatile u32*)(INCA_IP_WDT+ 0x0078))
68#define INCA_IP_WDT_RTID_LC (1 << 15)
69#define INCA_IP_WDT_RTID_RIX (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +000070
71/***Watchdog Timer Control Register 0***/
wdenkc0218802003-03-27 12:09:35 +000072#define INCA_IP_WDT_WDT_CON0 ((volatile u32*)(INCA_IP_WDT+ 0x0020))
wdenk8bde7f72003-06-27 21:31:46 +000073
74/***Watchdog Timer Control Register 1***/
wdenkc0218802003-03-27 12:09:35 +000075#define INCA_IP_WDT_WDT_CON1 ((volatile u32*)(INCA_IP_WDT+ 0x0024))
76#define INCA_IP_WDT_WDT_CON1_WDTDR (1 << 3)
77#define INCA_IP_WDT_WDT_CON1_WDTIR (1 << 2)
wdenk8bde7f72003-06-27 21:31:46 +000078
79/***Watchdog Timer Status Register***/
wdenkc0218802003-03-27 12:09:35 +000080#define INCA_IP_WDT_WDT_SR ((volatile u32*)(INCA_IP_WDT+ 0x0028))
81#define INCA_IP_WDT_WDT_SR_WDTTIM (value) (((( 1 << 16) - 1) & (value)) << 16)
82#define INCA_IP_WDT_WDT_SR_WDTPR (1 << 5)
83#define INCA_IP_WDT_WDT_SR_WDTTO (1 << 4)
84#define INCA_IP_WDT_WDT_SR_WDTDS (1 << 3)
85#define INCA_IP_WDT_WDT_SR_WDTIS (1 << 2)
86#define INCA_IP_WDT_WDT_SR_WDTOE (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +000087#define INCA_IP_WDT_WDT_SR_WDTAE (1 << 0)
88
wdenkc0218802003-03-27 12:09:35 +000089/***********************************************************************/
90/* Module : CGU register address and bits */
91/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +000092
wdenk8bde7f72003-06-27 21:31:46 +000093#define INCA_IP_CGU (0xBF107000)
94/***********************************************************************/
95
96
97/***CGU PLL1 Control Register***/
wdenkc0218802003-03-27 12:09:35 +000098#define INCA_IP_CGU_CGU_PLL1CR ((volatile u32*)(INCA_IP_CGU+ 0x0008))
99#define INCA_IP_CGU_CGU_PLL1CR_SWRST (1 << 31)
100#define INCA_IP_CGU_CGU_PLL1CR_EN (1 << 30)
101#define INCA_IP_CGU_CGU_PLL1CR_NDIV (value) (((( 1 << 6) - 1) & (value)) << 16)
102#define INCA_IP_CGU_CGU_PLL1CR_MDIV (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000103
104/***CGU PLL0 Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000105#define INCA_IP_CGU_CGU_PLL0CR ((volatile u32*)(INCA_IP_CGU+ 0x0000))
106#define INCA_IP_CGU_CGU_PLL0CR_SWRST (1 << 31)
107#define INCA_IP_CGU_CGU_PLL0CR_EN (1 << 30)
108#define INCA_IP_CGU_CGU_PLL0CR_NDIV (value) (((( 1 << 6) - 1) & (value)) << 16)
109#define INCA_IP_CGU_CGU_PLL0CR_MDIV (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000110
111/***CGU PLL0 Status Register***/
wdenkc0218802003-03-27 12:09:35 +0000112#define INCA_IP_CGU_CGU_PLL0SR ((volatile u32*)(INCA_IP_CGU+ 0x0004))
113#define INCA_IP_CGU_CGU_PLL0SR_LOCK (1 << 31)
114#define INCA_IP_CGU_CGU_PLL0SR_RCF (1 << 29)
115#define INCA_IP_CGU_CGU_PLL0SR_PLLBYP (1 << 15)
wdenk8bde7f72003-06-27 21:31:46 +0000116
117/***CGU PLL1 Status Register***/
wdenkc0218802003-03-27 12:09:35 +0000118#define INCA_IP_CGU_CGU_PLL1SR ((volatile u32*)(INCA_IP_CGU+ 0x000C))
119#define INCA_IP_CGU_CGU_PLL1SR_LOCK (1 << 31)
120#define INCA_IP_CGU_CGU_PLL1SR_RCF (1 << 29)
121#define INCA_IP_CGU_CGU_PLL1SR_PLLBYP (1 << 15)
wdenk8bde7f72003-06-27 21:31:46 +0000122
123/***CGU Divider Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000124#define INCA_IP_CGU_CGU_DIVCR ((volatile u32*)(INCA_IP_CGU+ 0x0010))
wdenk8bde7f72003-06-27 21:31:46 +0000125
126/***CGU Multiplexer Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000127#define INCA_IP_CGU_CGU_MUXCR ((volatile u32*)(INCA_IP_CGU+ 0x0014))
128#define INCA_IP_CGU_CGU_MUXCR_SWRST (1 << 31)
129#define INCA_IP_CGU_CGU_MUXCR_MUXII (1 << 1)
130#define INCA_IP_CGU_CGU_MUXCR_MUXI (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000131
132/***CGU Fractional Divider Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000133#define INCA_IP_CGU_CGU_FDCR ((volatile u32*)(INCA_IP_CGU+ 0x0018))
134#define INCA_IP_CGU_CGU_FDCR_FDEN (1 << 31)
135#define INCA_IP_CGU_CGU_FDCR_INTEGER (value) (((( 1 << 12) - 1) & (value)) << 16)
wdenk8bde7f72003-06-27 21:31:46 +0000136#define INCA_IP_CGU_CGU_FDCR_FRACTION (value) (((( 1 << 16) - 1) & (value)) << 0)
137
wdenkc0218802003-03-27 12:09:35 +0000138/***********************************************************************/
139/* Module : PMU register address and bits */
140/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000141
wdenk8bde7f72003-06-27 21:31:46 +0000142#define INCA_IP_PMU (0xBF102000)
143/***********************************************************************/
144
145
146/***PM Global Enable Register***/
wdenkc0218802003-03-27 12:09:35 +0000147#define INCA_IP_PMU_PM_GEN ((volatile u32*)(INCA_IP_PMU+ 0x0000))
148#define INCA_IP_PMU_PM_GEN_EN16 (1 << 16)
149#define INCA_IP_PMU_PM_GEN_EN15 (1 << 15)
150#define INCA_IP_PMU_PM_GEN_EN14 (1 << 14)
151#define INCA_IP_PMU_PM_GEN_EN13 (1 << 13)
152#define INCA_IP_PMU_PM_GEN_EN12 (1 << 12)
153#define INCA_IP_PMU_PM_GEN_EN11 (1 << 11)
154#define INCA_IP_PMU_PM_GEN_EN10 (1 << 10)
155#define INCA_IP_PMU_PM_GEN_EN9 (1 << 9)
156#define INCA_IP_PMU_PM_GEN_EN8 (1 << 8)
157#define INCA_IP_PMU_PM_GEN_EN7 (1 << 7)
158#define INCA_IP_PMU_PM_GEN_EN6 (1 << 6)
159#define INCA_IP_PMU_PM_GEN_EN5 (1 << 5)
160#define INCA_IP_PMU_PM_GEN_EN4 (1 << 4)
161#define INCA_IP_PMU_PM_GEN_EN3 (1 << 3)
162#define INCA_IP_PMU_PM_GEN_EN2 (1 << 2)
163#define INCA_IP_PMU_PM_GEN_EN0 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000164
165/***PM Power Down Enable Register***/
wdenkc0218802003-03-27 12:09:35 +0000166#define INCA_IP_PMU_PM_PDEN ((volatile u32*)(INCA_IP_PMU+ 0x0008))
167#define INCA_IP_PMU_PM_PDEN_EN16 (1 << 16)
168#define INCA_IP_PMU_PM_PDEN_EN15 (1 << 15)
169#define INCA_IP_PMU_PM_PDEN_EN14 (1 << 14)
170#define INCA_IP_PMU_PM_PDEN_EN13 (1 << 13)
171#define INCA_IP_PMU_PM_PDEN_EN12 (1 << 12)
172#define INCA_IP_PMU_PM_PDEN_EN11 (1 << 11)
173#define INCA_IP_PMU_PM_PDEN_EN10 (1 << 10)
174#define INCA_IP_PMU_PM_PDEN_EN9 (1 << 9)
175#define INCA_IP_PMU_PM_PDEN_EN8 (1 << 8)
176#define INCA_IP_PMU_PM_PDEN_EN7 (1 << 7)
177#define INCA_IP_PMU_PM_PDEN_EN5 (1 << 5)
178#define INCA_IP_PMU_PM_PDEN_EN4 (1 << 4)
179#define INCA_IP_PMU_PM_PDEN_EN3 (1 << 3)
180#define INCA_IP_PMU_PM_PDEN_EN2 (1 << 2)
181#define INCA_IP_PMU_PM_PDEN_EN0 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000182
183/***PM Wake-Up from Power Down Register***/
wdenkc0218802003-03-27 12:09:35 +0000184#define INCA_IP_PMU_PM_WUP ((volatile u32*)(INCA_IP_PMU+ 0x0010))
185#define INCA_IP_PMU_PM_WUP_WUP16 (1 << 16)
186#define INCA_IP_PMU_PM_WUP_WUP15 (1 << 15)
187#define INCA_IP_PMU_PM_WUP_WUP14 (1 << 14)
188#define INCA_IP_PMU_PM_WUP_WUP13 (1 << 13)
189#define INCA_IP_PMU_PM_WUP_WUP12 (1 << 12)
190#define INCA_IP_PMU_PM_WUP_WUP11 (1 << 11)
191#define INCA_IP_PMU_PM_WUP_WUP10 (1 << 10)
192#define INCA_IP_PMU_PM_WUP_WUP9 (1 << 9)
193#define INCA_IP_PMU_PM_WUP_WUP8 (1 << 8)
194#define INCA_IP_PMU_PM_WUP_WUP7 (1 << 7)
195#define INCA_IP_PMU_PM_WUP_WUP5 (1 << 5)
196#define INCA_IP_PMU_PM_WUP_WUP4 (1 << 4)
197#define INCA_IP_PMU_PM_WUP_WUP3 (1 << 3)
198#define INCA_IP_PMU_PM_WUP_WUP2 (1 << 2)
199#define INCA_IP_PMU_PM_WUP_WUP0 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000200
201/***PM Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000202#define INCA_IP_PMU_PM_CR ((volatile u32*)(INCA_IP_PMU+ 0x0014))
203#define INCA_IP_PMU_PM_CR_AWEN (1 << 31)
204#define INCA_IP_PMU_PM_CR_SWRST (1 << 30)
205#define INCA_IP_PMU_PM_CR_SWCR (1 << 2)
wdenk8bde7f72003-06-27 21:31:46 +0000206#define INCA_IP_PMU_PM_CR_CRD (value) (((( 1 << 2) - 1) & (value)) << 0)
207
wdenkc0218802003-03-27 12:09:35 +0000208/***********************************************************************/
209/* Module : BCU register address and bits */
210/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000211
wdenk8bde7f72003-06-27 21:31:46 +0000212#define INCA_IP_BCU (0xB8000100)
213/***********************************************************************/
214
215
216/***BCU Control Register (0010H)***/
wdenkc0218802003-03-27 12:09:35 +0000217#define INCA_IP_BCU_BCU_CON ((volatile u32*)(INCA_IP_BCU+ 0x0010))
218#define INCA_IP_BCU_BCU_CON_SPC (value) (((( 1 << 8) - 1) & (value)) << 24)
219#define INCA_IP_BCU_BCU_CON_SPE (1 << 19)
220#define INCA_IP_BCU_BCU_CON_PSE (1 << 18)
221#define INCA_IP_BCU_BCU_CON_DBG (1 << 16)
222#define INCA_IP_BCU_BCU_CON_TOUT (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000223
224/***BCU Error Control Capture Register (0020H)***/
wdenkc0218802003-03-27 12:09:35 +0000225#define INCA_IP_BCU_BCU_ECON ((volatile u32*)(INCA_IP_BCU+ 0x0020))
226#define INCA_IP_BCU_BCU_ECON_TAG (value) (((( 1 << 4) - 1) & (value)) << 24)
227#define INCA_IP_BCU_BCU_ECON_RDN (1 << 23)
228#define INCA_IP_BCU_BCU_ECON_WRN (1 << 22)
229#define INCA_IP_BCU_BCU_ECON_SVM (1 << 21)
230#define INCA_IP_BCU_BCU_ECON_ACK (value) (((( 1 << 2) - 1) & (value)) << 19)
231#define INCA_IP_BCU_BCU_ECON_ABT (1 << 18)
232#define INCA_IP_BCU_BCU_ECON_RDY (1 << 17)
233#define INCA_IP_BCU_BCU_ECON_TOUT (1 << 16)
234#define INCA_IP_BCU_BCU_ECON_ERRCNT (value) (((( 1 << 16) - 1) & (value)) << 0)
235#define INCA_IP_BCU_BCU_ECON_OPC (value) (((( 1 << 4) - 1) & (value)) << 28)
wdenk8bde7f72003-06-27 21:31:46 +0000236
237/***BCU Error Address Capture Register (0024 H)***/
wdenkc0218802003-03-27 12:09:35 +0000238#define INCA_IP_BCU_BCU_EADD ((volatile u32*)(INCA_IP_BCU+ 0x0024))
239#define INCA_IP_BCU_BCU_EADD_FPIADR
wdenk8bde7f72003-06-27 21:31:46 +0000240
241/***BCU Error Data Capture Register (0028H)***/
wdenkc0218802003-03-27 12:09:35 +0000242#define INCA_IP_BCU_BCU_EDAT ((volatile u32*)(INCA_IP_BCU+ 0x0028))
wdenk8bde7f72003-06-27 21:31:46 +0000243#define INCA_IP_BCU_BCU_EDAT_FPIDAT
244
wdenkc0218802003-03-27 12:09:35 +0000245/***********************************************************************/
246/* Module : MBC register address and bits */
247/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000248
wdenk8bde7f72003-06-27 21:31:46 +0000249#define INCA_IP_MBC (0xBF103000)
250/***********************************************************************/
251
252
253/***Mailbox CPU Configuration Register***/
wdenkc0218802003-03-27 12:09:35 +0000254#define INCA_IP_MBC_MBC_CFG ((volatile u32*)(INCA_IP_MBC+ 0x0080))
255#define INCA_IP_MBC_MBC_CFG_SWAP (value) (((( 1 << 2) - 1) & (value)) << 6)
256#define INCA_IP_MBC_MBC_CFG_RES (1 << 5)
257#define INCA_IP_MBC_MBC_CFG_FWID (value) (((( 1 << 4) - 1) & (value)) << 1)
258#define INCA_IP_MBC_MBC_CFG_SIZE (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000259
260/***Mailbox CPU Interrupt Status Register***/
wdenkc0218802003-03-27 12:09:35 +0000261#define INCA_IP_MBC_MBC_ISR ((volatile u32*)(INCA_IP_MBC+ 0x0084))
262#define INCA_IP_MBC_MBC_ISR_B3DA (1 << 31)
263#define INCA_IP_MBC_MBC_ISR_B2DA (1 << 30)
264#define INCA_IP_MBC_MBC_ISR_B1E (1 << 29)
265#define INCA_IP_MBC_MBC_ISR_B0E (1 << 28)
266#define INCA_IP_MBC_MBC_ISR_WDT (1 << 27)
267#define INCA_IP_MBC_MBC_ISR_DS260 (value) (((( 1 << 27) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000268
269/***Mailbox CPU Mask Register***/
wdenkc0218802003-03-27 12:09:35 +0000270#define INCA_IP_MBC_MBC_MSK ((volatile u32*)(INCA_IP_MBC+ 0x0088))
271#define INCA_IP_MBC_MBC_MSK_B3DA (1 << 31)
272#define INCA_IP_MBC_MBC_MSK_B2DA (1 << 30)
273#define INCA_IP_MBC_MBC_MSK_B1E (1 << 29)
274#define INCA_IP_MBC_MBC_MSK_B0E (1 << 28)
275#define INCA_IP_MBC_MBC_MSK_WDT (1 << 27)
276#define INCA_IP_MBC_MBC_MSK_DS260 (value) (((( 1 << 27) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000277
278/***Mailbox CPU Mask 01 Register***/
wdenkc0218802003-03-27 12:09:35 +0000279#define INCA_IP_MBC_MBC_MSK01 ((volatile u32*)(INCA_IP_MBC+ 0x008C))
280#define INCA_IP_MBC_MBC_MSK01_B3DA (1 << 31)
281#define INCA_IP_MBC_MBC_MSK01_B2DA (1 << 30)
282#define INCA_IP_MBC_MBC_MSK01_B1E (1 << 29)
283#define INCA_IP_MBC_MBC_MSK01_B0E (1 << 28)
284#define INCA_IP_MBC_MBC_MSK01_WDT (1 << 27)
285#define INCA_IP_MBC_MBC_MSK01_DS260 (value) (((( 1 << 27) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000286
287/***Mailbox CPU Mask 10 Register***/
wdenkc0218802003-03-27 12:09:35 +0000288#define INCA_IP_MBC_MBC_MSK10 ((volatile u32*)(INCA_IP_MBC+ 0x0090))
289#define INCA_IP_MBC_MBC_MSK10_B3DA (1 << 31)
290#define INCA_IP_MBC_MBC_MSK10_B2DA (1 << 30)
291#define INCA_IP_MBC_MBC_MSK10_B1E (1 << 29)
292#define INCA_IP_MBC_MBC_MSK10_B0E (1 << 28)
293#define INCA_IP_MBC_MBC_MSK10_WDT (1 << 27)
294#define INCA_IP_MBC_MBC_MSK10_DS260 (value) (((( 1 << 27) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000295
296/***Mailbox CPU Short Command Register***/
wdenkc0218802003-03-27 12:09:35 +0000297#define INCA_IP_MBC_MBC_CMD ((volatile u32*)(INCA_IP_MBC+ 0x0094))
298#define INCA_IP_MBC_MBC_CMD_CS270 (value) (((( 1 << 28) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000299
300/***Mailbox CPU Input Data of Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000301#define INCA_IP_MBC_MBC_ID0 ((volatile u32*)(INCA_IP_MBC+ 0x0000))
302#define INCA_IP_MBC_MBC_ID0_INDATA
wdenk8bde7f72003-06-27 21:31:46 +0000303
304/***Mailbox CPU Input Data of Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000305#define INCA_IP_MBC_MBC_ID1 ((volatile u32*)(INCA_IP_MBC+ 0x0020))
306#define INCA_IP_MBC_MBC_ID1_INDATA
wdenk8bde7f72003-06-27 21:31:46 +0000307
308/***Mailbox CPU Output Data of Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000309#define INCA_IP_MBC_MBC_OD2 ((volatile u32*)(INCA_IP_MBC+ 0x0040))
310#define INCA_IP_MBC_MBC_OD2_OUTDATA
wdenk8bde7f72003-06-27 21:31:46 +0000311
312/***Mailbox CPU Output Data of Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000313#define INCA_IP_MBC_MBC_OD3 ((volatile u32*)(INCA_IP_MBC+ 0x0060))
314#define INCA_IP_MBC_MBC_OD3_OUTDATA
wdenk8bde7f72003-06-27 21:31:46 +0000315
316/***Mailbox CPU Control Register of Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000317#define INCA_IP_MBC_MBC_CR0 ((volatile u32*)(INCA_IP_MBC+ 0x0004))
318#define INCA_IP_MBC_MBC_CR0_RDYABTFLS (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000319
320/***Mailbox CPU Control Register of Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000321#define INCA_IP_MBC_MBC_CR1 ((volatile u32*)(INCA_IP_MBC+ 0x0024))
322#define INCA_IP_MBC_MBC_CR1_RDYABTFLS (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000323
324/***Mailbox CPU Control Register of Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000325#define INCA_IP_MBC_MBC_CR2 ((volatile u32*)(INCA_IP_MBC+ 0x0044))
326#define INCA_IP_MBC_MBC_CR2_RDYABTFLS (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000327
328/***Mailbox CPU Control Register of Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000329#define INCA_IP_MBC_MBC_CR3 ((volatile u32*)(INCA_IP_MBC+ 0x0064))
330#define INCA_IP_MBC_MBC_CR3_RDYABTFLS (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000331
332/***Mailbox CPU Free Space of Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000333#define INCA_IP_MBC_MBC_FS0 ((volatile u32*)(INCA_IP_MBC+ 0x0008))
334#define INCA_IP_MBC_MBC_FS0_FS
wdenk8bde7f72003-06-27 21:31:46 +0000335
336/***Mailbox CPU Free Space of Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000337#define INCA_IP_MBC_MBC_FS1 ((volatile u32*)(INCA_IP_MBC+ 0x0028))
338#define INCA_IP_MBC_MBC_FS1_FS
wdenk8bde7f72003-06-27 21:31:46 +0000339
340/***Mailbox CPU Free Space of Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000341#define INCA_IP_MBC_MBC_FS2 ((volatile u32*)(INCA_IP_MBC+ 0x0048))
342#define INCA_IP_MBC_MBC_FS2_FS
wdenk8bde7f72003-06-27 21:31:46 +0000343
344/***Mailbox CPU Free Space of Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000345#define INCA_IP_MBC_MBC_FS3 ((volatile u32*)(INCA_IP_MBC+ 0x0068))
346#define INCA_IP_MBC_MBC_FS3_FS
wdenk8bde7f72003-06-27 21:31:46 +0000347
348/***Mailbox CPU Data Available in Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000349#define INCA_IP_MBC_MBC_DA0 ((volatile u32*)(INCA_IP_MBC+ 0x000C))
350#define INCA_IP_MBC_MBC_DA0_DA
wdenk8bde7f72003-06-27 21:31:46 +0000351
352/***Mailbox CPU Data Available in Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000353#define INCA_IP_MBC_MBC_DA1 ((volatile u32*)(INCA_IP_MBC+ 0x002C))
354#define INCA_IP_MBC_MBC_DA1_DA
wdenk8bde7f72003-06-27 21:31:46 +0000355
356/***Mailbox CPU Data Available in Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000357#define INCA_IP_MBC_MBC_DA2 ((volatile u32*)(INCA_IP_MBC+ 0x004C))
358#define INCA_IP_MBC_MBC_DA2_DA
wdenk8bde7f72003-06-27 21:31:46 +0000359
360/***Mailbox CPU Data Available in Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000361#define INCA_IP_MBC_MBC_DA3 ((volatile u32*)(INCA_IP_MBC+ 0x006C))
362#define INCA_IP_MBC_MBC_DA3_DA
wdenk8bde7f72003-06-27 21:31:46 +0000363
364/***Mailbox CPU Input Absolute Pointer of Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000365#define INCA_IP_MBC_MBC_IABS0 ((volatile u32*)(INCA_IP_MBC+ 0x0010))
366#define INCA_IP_MBC_MBC_IABS0_IABS
wdenk8bde7f72003-06-27 21:31:46 +0000367
368/***Mailbox CPU Input Absolute Pointer of Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000369#define INCA_IP_MBC_MBC_IABS1 ((volatile u32*)(INCA_IP_MBC+ 0x0030))
370#define INCA_IP_MBC_MBC_IABS1_IABS
wdenk8bde7f72003-06-27 21:31:46 +0000371
372/***Mailbox CPU Input Absolute Pointer of Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000373#define INCA_IP_MBC_MBC_IABS2 ((volatile u32*)(INCA_IP_MBC+ 0x0050))
374#define INCA_IP_MBC_MBC_IABS2_IABS
wdenk8bde7f72003-06-27 21:31:46 +0000375
376/***Mailbox CPU Input Absolute Pointer of Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000377#define INCA_IP_MBC_MBC_IABS3 ((volatile u32*)(INCA_IP_MBC+ 0x0070))
378#define INCA_IP_MBC_MBC_IABS3_IABS
wdenk8bde7f72003-06-27 21:31:46 +0000379
380/***Mailbox CPU Input Temporary Pointer of Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000381#define INCA_IP_MBC_MBC_ITMP0 ((volatile u32*)(INCA_IP_MBC+ 0x0014))
382#define INCA_IP_MBC_MBC_ITMP0_ITMP
wdenk8bde7f72003-06-27 21:31:46 +0000383
384/***Mailbox CPU Input Temporary Pointer of Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000385#define INCA_IP_MBC_MBC_ITMP1 ((volatile u32*)(INCA_IP_MBC+ 0x0034))
386#define INCA_IP_MBC_MBC_ITMP1_ITMP
wdenk8bde7f72003-06-27 21:31:46 +0000387
388/***Mailbox CPU Input Temporary Pointer of Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000389#define INCA_IP_MBC_MBC_ITMP2 ((volatile u32*)(INCA_IP_MBC+ 0x0054))
390#define INCA_IP_MBC_MBC_ITMP2_ITMP
wdenk8bde7f72003-06-27 21:31:46 +0000391
392/***Mailbox CPU Input Temporary Pointer of Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000393#define INCA_IP_MBC_MBC_ITMP3 ((volatile u32*)(INCA_IP_MBC+ 0x0074))
394#define INCA_IP_MBC_MBC_ITMP3_ITMP
wdenk8bde7f72003-06-27 21:31:46 +0000395
396/***Mailbox CPU Output Absolute Pointer of Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000397#define INCA_IP_MBC_MBC_OABS0 ((volatile u32*)(INCA_IP_MBC+ 0x0018))
398#define INCA_IP_MBC_MBC_OABS0_OABS
wdenk8bde7f72003-06-27 21:31:46 +0000399
400/***Mailbox CPU Output Absolute Pointer of Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000401#define INCA_IP_MBC_MBC_OABS1 ((volatile u32*)(INCA_IP_MBC+ 0x0038))
402#define INCA_IP_MBC_MBC_OABS1_OABS
wdenk8bde7f72003-06-27 21:31:46 +0000403
404/***Mailbox CPU Output Absolute Pointer of Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000405#define INCA_IP_MBC_MBC_OABS2 ((volatile u32*)(INCA_IP_MBC+ 0x0058))
406#define INCA_IP_MBC_MBC_OABS2_OABS
wdenk8bde7f72003-06-27 21:31:46 +0000407
408/***Mailbox CPU Output Absolute Pointer of Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000409#define INCA_IP_MBC_MBC_OABS3 ((volatile u32*)(INCA_IP_MBC+ 0x0078))
410#define INCA_IP_MBC_MBC_OABS3_OABS
wdenk8bde7f72003-06-27 21:31:46 +0000411
412/***Mailbox CPU Output Temporary Pointer of Buffer 0***/
wdenkc0218802003-03-27 12:09:35 +0000413#define INCA_IP_MBC_MBC_OTMP0 ((volatile u32*)(INCA_IP_MBC+ 0x001C))
414#define INCA_IP_MBC_MBC_OTMP0_OTMP
wdenk8bde7f72003-06-27 21:31:46 +0000415
416/***Mailbox CPU Output Temporary Pointer of Buffer 1***/
wdenkc0218802003-03-27 12:09:35 +0000417#define INCA_IP_MBC_MBC_OTMP1 ((volatile u32*)(INCA_IP_MBC+ 0x003C))
418#define INCA_IP_MBC_MBC_OTMP1_OTMP
wdenk8bde7f72003-06-27 21:31:46 +0000419
420/***Mailbox CPU Output Temporary Pointer of Buffer 2***/
wdenkc0218802003-03-27 12:09:35 +0000421#define INCA_IP_MBC_MBC_OTMP2 ((volatile u32*)(INCA_IP_MBC+ 0x005C))
422#define INCA_IP_MBC_MBC_OTMP2_OTMP
wdenk8bde7f72003-06-27 21:31:46 +0000423
424/***Mailbox CPU Output Temporary Pointer of Buffer 3***/
wdenkc0218802003-03-27 12:09:35 +0000425#define INCA_IP_MBC_MBC_OTMP3 ((volatile u32*)(INCA_IP_MBC+ 0x007C))
426#define INCA_IP_MBC_MBC_OTMP3_OTMP
wdenk8bde7f72003-06-27 21:31:46 +0000427
428/***DSP Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000429#define INCA_IP_MBC_DCTRL ((volatile u32*)(INCA_IP_MBC+ 0x00A0))
430#define INCA_IP_MBC_DCTRL_BA (1 << 0)
431#define INCA_IP_MBC_DCTRL_BMOD (value) (((( 1 << 3) - 1) & (value)) << 1)
432#define INCA_IP_MBC_DCTRL_IDL (1 << 4)
433#define INCA_IP_MBC_DCTRL_RES (1 << 15)
wdenk8bde7f72003-06-27 21:31:46 +0000434
435/***DSP Status Register***/
wdenkc0218802003-03-27 12:09:35 +0000436#define INCA_IP_MBC_DSTA ((volatile u32*)(INCA_IP_MBC+ 0x00A4))
437#define INCA_IP_MBC_DSTA_IDLE (1 << 0)
438#define INCA_IP_MBC_DSTA_PD (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +0000439
440/***DSP Test 1 Register***/
wdenkc0218802003-03-27 12:09:35 +0000441#define INCA_IP_MBC_DTST1 ((volatile u32*)(INCA_IP_MBC+ 0x00A8))
442#define INCA_IP_MBC_DTST1_ABORT (1 << 0)
443#define INCA_IP_MBC_DTST1_HWF32 (1 << 1)
444#define INCA_IP_MBC_DTST1_HWF4M (1 << 2)
wdenk8bde7f72003-06-27 21:31:46 +0000445#define INCA_IP_MBC_DTST1_HWFOP (1 << 3)
446
wdenkc0218802003-03-27 12:09:35 +0000447/***********************************************************************/
448/* Module : Switch register address and bits */
449/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000450
wdenk8bde7f72003-06-27 21:31:46 +0000451#define INCA_IP_Switch (0xBF104000)
452/***********************************************************************/
453
454
455/***Unknown Destination Register***/
wdenkc0218802003-03-27 12:09:35 +0000456#define INCA_IP_Switch_UN_DEST ((volatile u32*)(INCA_IP_Switch+ 0x0000))
457#define INCA_IP_Switch_UN_DEST_CB (1 << 8)
458#define INCA_IP_Switch_UN_DEST_LB (1 << 7)
459#define INCA_IP_Switch_UN_DEST_PB (1 << 6)
460#define INCA_IP_Switch_UN_DEST_CM (1 << 5)
461#define INCA_IP_Switch_UN_DEST_LM (1 << 4)
462#define INCA_IP_Switch_UN_DEST_PM (1 << 3)
463#define INCA_IP_Switch_UN_DEST_CU (1 << 2)
464#define INCA_IP_Switch_UN_DEST_LU (1 << 1)
465#define INCA_IP_Switch_UN_DEST_PU (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000466
467/***VLAN Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000468#define INCA_IP_Switch_VLAN_CTRL ((volatile u32*)(INCA_IP_Switch+ 0x0004))
469#define INCA_IP_Switch_VLAN_CTRL_SC (1 << 6)
470#define INCA_IP_Switch_VLAN_CTRL_SL (1 << 5)
471#define INCA_IP_Switch_VLAN_CTRL_SP (1 << 4)
472#define INCA_IP_Switch_VLAN_CTRL_TC (1 << 3)
473#define INCA_IP_Switch_VLAN_CTRL_TL (1 << 2)
474#define INCA_IP_Switch_VLAN_CTRL_TP (1 << 1)
475#define INCA_IP_Switch_VLAN_CTRL_VA (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000476
477/***PC VLAN Configuration Register***/
wdenkc0218802003-03-27 12:09:35 +0000478#define INCA_IP_Switch_PC_VLAN ((volatile u32*)(INCA_IP_Switch+ 0x0008))
479#define INCA_IP_Switch_PC_VLAN_PRI (value) (((( 1 << 3) - 1) & (value)) << 12)
480#define INCA_IP_Switch_PC_VLAN_VLAN_ID (value) (((( 1 << 12) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000481
482/***LAN VLAN Configuration Register***/
wdenkc0218802003-03-27 12:09:35 +0000483#define INCA_IP_Switch_LAN_VLAN ((volatile u32*)(INCA_IP_Switch+ 0x000C))
484#define INCA_IP_Switch_LAN_VLAN_PRI (value) (((( 1 << 3) - 1) & (value)) << 12)
485#define INCA_IP_Switch_LAN_VLAN_VLAN_ID (value) (((( 1 << 12) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000486
487/***CPU VLAN Configuration Register***/
wdenkc0218802003-03-27 12:09:35 +0000488#define INCA_IP_Switch_CPU_VLAN ((volatile u32*)(INCA_IP_Switch+ 0x0010))
489#define INCA_IP_Switch_CPU_VLAN_PRI (value) (((( 1 << 3) - 1) & (value)) << 12)
490#define INCA_IP_Switch_CPU_VLAN_VLAN_ID (value) (((( 1 << 12) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000491
492/***Priority CoS Mapping Register***/
wdenkc0218802003-03-27 12:09:35 +0000493#define INCA_IP_Switch_PRI_CoS ((volatile u32*)(INCA_IP_Switch+ 0x0014))
494#define INCA_IP_Switch_PRI_CoS_P7 (1 << 7)
495#define INCA_IP_Switch_PRI_CoS_P6 (1 << 6)
496#define INCA_IP_Switch_PRI_CoS_P5 (1 << 5)
497#define INCA_IP_Switch_PRI_CoS_P4 (1 << 4)
498#define INCA_IP_Switch_PRI_CoS_P3 (1 << 3)
499#define INCA_IP_Switch_PRI_CoS_P2 (1 << 2)
500#define INCA_IP_Switch_PRI_CoS_P1 (1 << 1)
501#define INCA_IP_Switch_PRI_CoS_P0 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000502
503/***Spanning Tree Port Status Register***/
wdenkc0218802003-03-27 12:09:35 +0000504#define INCA_IP_Switch_ST_PT ((volatile u32*)(INCA_IP_Switch+ 0x0018))
505#define INCA_IP_Switch_ST_PT_CPS (value) (((( 1 << 2) - 1) & (value)) << 4)
506#define INCA_IP_Switch_ST_PT_LPS (value) (((( 1 << 2) - 1) & (value)) << 2)
507#define INCA_IP_Switch_ST_PT_PPS (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000508
509/***ARL Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000510#define INCA_IP_Switch_ARL_CTL ((volatile u32*)(INCA_IP_Switch+ 0x001C))
511#define INCA_IP_Switch_ARL_CTL_CHCC (1 << 15)
512#define INCA_IP_Switch_ARL_CTL_CHCL (1 << 14)
513#define INCA_IP_Switch_ARL_CTL_CHCP (1 << 13)
514#define INCA_IP_Switch_ARL_CTL_CC (1 << 12)
515#define INCA_IP_Switch_ARL_CTL_CL (1 << 11)
516#define INCA_IP_Switch_ARL_CTL_CP (1 << 10)
517#define INCA_IP_Switch_ARL_CTL_CG (1 << 9)
518#define INCA_IP_Switch_ARL_CTL_PS (1 << 8)
519#define INCA_IP_Switch_ARL_CTL_MRO (1 << 7)
520#define INCA_IP_Switch_ARL_CTL_SRC (1 << 6)
521#define INCA_IP_Switch_ARL_CTL_ATS (1 << 5)
522#define INCA_IP_Switch_ARL_CTL_AGE_TICK_SEL (value) (((( 1 << 3) - 1) & (value)) << 2)
523#define INCA_IP_Switch_ARL_CTL_MAF (1 << 1)
524#define INCA_IP_Switch_ARL_CTL_ENL (1 << 0)
525#define INCA_IP_Switch_ARL_CTL_Res (value) (((( 1 << 19) - 1) & (value)) << 13)
wdenk8bde7f72003-06-27 21:31:46 +0000526
527/***CPU Access Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000528#define INCA_IP_Switch_CPU_ACTL ((volatile u32*)(INCA_IP_Switch+ 0x0020))
529#define INCA_IP_Switch_CPU_ACTL_RA (1 << 31)
530#define INCA_IP_Switch_CPU_ACTL_RW (1 << 30)
531#define INCA_IP_Switch_CPU_ACTL_Res (value) (((( 1 << 21) - 1) & (value)) << 9)
532#define INCA_IP_Switch_CPU_ACTL_AVA (1 << 8)
533#define INCA_IP_Switch_CPU_ACTL_IDX (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000534
535/***CPU Access Data Register 1***/
wdenkc0218802003-03-27 12:09:35 +0000536#define INCA_IP_Switch_DATA1 ((volatile u32*)(INCA_IP_Switch+ 0x0024))
537#define INCA_IP_Switch_DATA1_Data (value) (((( 1 << 24) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000538
539/***CPU Access Data Register 2***/
wdenkc0218802003-03-27 12:09:35 +0000540#define INCA_IP_Switch_DATA2 ((volatile u32*)(INCA_IP_Switch+ 0x0028))
541#define INCA_IP_Switch_DATA2_Data
wdenk8bde7f72003-06-27 21:31:46 +0000542
543/***CPU Port Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000544#define INCA_IP_Switch_CPU_PCTL ((volatile u32*)(INCA_IP_Switch+ 0x002C))
545#define INCA_IP_Switch_CPU_PCTL_DA_PORTS (value) (((( 1 << 3) - 1) & (value)) << 11)
546#define INCA_IP_Switch_CPU_PCTL_DAC (1 << 10)
547#define INCA_IP_Switch_CPU_PCTL_MA_STATE (value) (((( 1 << 3) - 1) & (value)) << 7)
548#define INCA_IP_Switch_CPU_PCTL_MAM (1 << 6)
549#define INCA_IP_Switch_CPU_PCTL_MA_Ports (value) (((( 1 << 3) - 1) & (value)) << 3)
550#define INCA_IP_Switch_CPU_PCTL_MAC (1 << 2)
551#define INCA_IP_Switch_CPU_PCTL_EML (1 << 1)
552#define INCA_IP_Switch_CPU_PCTL_EDL (1 << 0)
553#define INCA_IP_Switch_CPU_PCTL_Res (value) (((( 1 << 18) - 1) & (value)) << 14)
wdenk8bde7f72003-06-27 21:31:46 +0000554
555/***DSCP CoS Mapping Register 1***/
wdenkc0218802003-03-27 12:09:35 +0000556#define INCA_IP_Switch_DSCP_COS1 ((volatile u32*)(INCA_IP_Switch+ 0x0030))
557#define INCA_IP_Switch_DSCP_COS1_DSCP
wdenk8bde7f72003-06-27 21:31:46 +0000558
559/***DSCP CoS Mapping Register 1***/
wdenkc0218802003-03-27 12:09:35 +0000560#define INCA_IP_Switch_DSCP_COS2 ((volatile u32*)(INCA_IP_Switch+ 0x0034))
561#define INCA_IP_Switch_DSCP_COS2_DSCP
wdenk8bde7f72003-06-27 21:31:46 +0000562
563/***PC WFQ Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000564#define INCA_IP_Switch_PC_WFQ_CTL ((volatile u32*)(INCA_IP_Switch+ 0x0080))
565#define INCA_IP_Switch_PC_WFQ_CTL_P1 (1 << 9)
566#define INCA_IP_Switch_PC_WFQ_CTL_P0 (1 << 8)
567#define INCA_IP_Switch_PC_WFQ_CTL_WT1 (value) (((( 1 << 3) - 1) & (value)) << 5)
568#define INCA_IP_Switch_PC_WFQ_CTL_WT0 (value) (((( 1 << 3) - 1) & (value)) << 2)
569#define INCA_IP_Switch_PC_WFQ_CTL_SCH_SEL (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000570
571/***PC TX Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000572#define INCA_IP_Switch_PC_TX_CTL ((volatile u32*)(INCA_IP_Switch+ 0x0084))
573#define INCA_IP_Switch_PC_TX_CTL_ELR (1 << 1)
574#define INCA_IP_Switch_PC_TX_CTL_EER (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000575
576/***LAN WFQ Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000577#define INCA_IP_Switch_LAN_WFQ_CTL ((volatile u32*)(INCA_IP_Switch+ 0x0100))
578#define INCA_IP_Switch_LAN_WFQ_CTL_P1 (1 << 9)
579#define INCA_IP_Switch_LAN_WFQ_CTL_P0 (1 << 8)
580#define INCA_IP_Switch_LAN_WFQ_CTL_WT1 (value) (((( 1 << 3) - 1) & (value)) << 5)
581#define INCA_IP_Switch_LAN_WFQ_CTL_WT0 (value) (((( 1 << 3) - 1) & (value)) << 2)
582#define INCA_IP_Switch_LAN_WFQ_CTL_SCH_SEL (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000583
584/***LAN TX Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000585#define INCA_IP_Switch_LAN_TX_CTL ((volatile u32*)(INCA_IP_Switch+ 0x0104))
586#define INCA_IP_Switch_LAN_TX_CTL_ELR (1 << 1)
587#define INCA_IP_Switch_LAN_TX_CTL_EER (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000588
589/***CPU WFQ Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000590#define INCA_IP_Switch_CPU_WFQ_CTL ((volatile u32*)(INCA_IP_Switch+ 0x0180))
591#define INCA_IP_Switch_CPU_WFQ_CTL_P1 (1 << 9)
592#define INCA_IP_Switch_CPU_WFQ_CTL_P0 (1 << 8)
593#define INCA_IP_Switch_CPU_WFQ_CTL_WT1 (value) (((( 1 << 3) - 1) & (value)) << 5)
594#define INCA_IP_Switch_CPU_WFQ_CTL_WT0 (value) (((( 1 << 3) - 1) & (value)) << 2)
595#define INCA_IP_Switch_CPU_WFQ_CTL_SCH_SEL (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000596
597/***PM PC RX Watermark Register***/
wdenkc0218802003-03-27 12:09:35 +0000598#define INCA_IP_Switch_PC_WM ((volatile u32*)(INCA_IP_Switch+ 0x0200))
599#define INCA_IP_Switch_PC_WM_RX_WM1 (value) (((( 1 << 8) - 1) & (value)) << 24)
600#define INCA_IP_Switch_PC_WM_RX_WM2 (value) (((( 1 << 8) - 1) & (value)) << 16)
601#define INCA_IP_Switch_PC_WM_RX_WM3 (value) (((( 1 << 8) - 1) & (value)) << 8)
602#define INCA_IP_Switch_PC_WM_RX_WM4 (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000603
604/***PM LAN RX Watermark Register***/
wdenkc0218802003-03-27 12:09:35 +0000605#define INCA_IP_Switch_LAN_WM ((volatile u32*)(INCA_IP_Switch+ 0x0204))
606#define INCA_IP_Switch_LAN_WM_RX_WM1 (value) (((( 1 << 8) - 1) & (value)) << 24)
607#define INCA_IP_Switch_LAN_WM_RX_WM2 (value) (((( 1 << 8) - 1) & (value)) << 16)
608#define INCA_IP_Switch_LAN_WM_RX_WM3 (value) (((( 1 << 8) - 1) & (value)) << 8)
609#define INCA_IP_Switch_LAN_WM_RX_WM4 (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000610
611/***PM CPU RX Watermark Register***/
wdenkc0218802003-03-27 12:09:35 +0000612#define INCA_IP_Switch_CPU_WM ((volatile u32*)(INCA_IP_Switch+ 0x0208))
613#define INCA_IP_Switch_CPU_WM_RX_WM1 (value) (((( 1 << 8) - 1) & (value)) << 24)
614#define INCA_IP_Switch_CPU_WM_RX_WM2 (value) (((( 1 << 8) - 1) & (value)) << 16)
615#define INCA_IP_Switch_CPU_WM_RX_WM3 (value) (((( 1 << 8) - 1) & (value)) << 8)
616#define INCA_IP_Switch_CPU_WM_RX_WM4 (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000617
618/***PM CPU RX Watermark Register***/
wdenkc0218802003-03-27 12:09:35 +0000619#define INCA_IP_Switch_GBL_WM ((volatile u32*)(INCA_IP_Switch+ 0x020C))
620#define INCA_IP_Switch_GBL_WM_GBL_RX_WM1 (value) (((( 1 << 8) - 1) & (value)) << 24)
621#define INCA_IP_Switch_GBL_WM_GBL_RX_WM2 (value) (((( 1 << 8) - 1) & (value)) << 16)
622#define INCA_IP_Switch_GBL_WM_GBL_RX_WM3 (value) (((( 1 << 8) - 1) & (value)) << 8)
623#define INCA_IP_Switch_GBL_WM_GBL_RX_WM4 (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000624
625/***PM Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000626#define INCA_IP_Switch_PM_CTL ((volatile u32*)(INCA_IP_Switch+ 0x0210))
627#define INCA_IP_Switch_PM_CTL_GDN (1 << 3)
628#define INCA_IP_Switch_PM_CTL_CDN (1 << 2)
629#define INCA_IP_Switch_PM_CTL_LDN (1 << 1)
630#define INCA_IP_Switch_PM_CTL_PDN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000631
632/***PM Header Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000633#define INCA_IP_Switch_PMAC_HD_CTL ((volatile u32*)(INCA_IP_Switch+ 0x0280))
634#define INCA_IP_Switch_PMAC_HD_CTL_RL2 (1 << 21)
635#define INCA_IP_Switch_PMAC_HD_CTL_RC (1 << 20)
636#define INCA_IP_Switch_PMAC_HD_CTL_CM (1 << 19)
637#define INCA_IP_Switch_PMAC_HD_CTL_CV (1 << 18)
638#define INCA_IP_Switch_PMAC_HD_CTL_TYPE_LEN (value) (((( 1 << 16) - 1) & (value)) << 2)
639#define INCA_IP_Switch_PMAC_HD_CTL_TAG (1 << 1)
640#define INCA_IP_Switch_PMAC_HD_CTL_ADD (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000641
642/***PM Source Address Register 1***/
wdenkc0218802003-03-27 12:09:35 +0000643#define INCA_IP_Switch_PMAC_SA1 ((volatile u32*)(INCA_IP_Switch+ 0x0284))
644#define INCA_IP_Switch_PMAC_SA1_SA_47_32 (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000645
646/***PM Source Address Register 2***/
wdenkc0218802003-03-27 12:09:35 +0000647#define INCA_IP_Switch_PMAC_SA2 ((volatile u32*)(INCA_IP_Switch+ 0x0288))
648#define INCA_IP_Switch_PMAC_SA2_SA_31_0
wdenk8bde7f72003-06-27 21:31:46 +0000649
650/***PM Dest Address Register 1***/
wdenkc0218802003-03-27 12:09:35 +0000651#define INCA_IP_Switch_PMAC_DA1 ((volatile u32*)(INCA_IP_Switch+ 0x028C))
652#define INCA_IP_Switch_PMAC_DA1_DA_47_32 (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000653
654/***PM Dest Address Register 2***/
wdenkc0218802003-03-27 12:09:35 +0000655#define INCA_IP_Switch_PMAC_DA2 ((volatile u32*)(INCA_IP_Switch+ 0x0290))
656#define INCA_IP_Switch_PMAC_DA2_DA_31_0
wdenk8bde7f72003-06-27 21:31:46 +0000657
658/***PM VLAN Register***/
wdenkc0218802003-03-27 12:09:35 +0000659#define INCA_IP_Switch_PMAC_VLAN ((volatile u32*)(INCA_IP_Switch+ 0x0294))
660#define INCA_IP_Switch_PMAC_VLAN_PRI (value) (((( 1 << 3) - 1) & (value)) << 13)
661#define INCA_IP_Switch_PMAC_VLAN_CFI (1 << 12)
662#define INCA_IP_Switch_PMAC_VLAN_VLANID (value) (((( 1 << 12) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000663
664/***PM TX IPG Counter Register***/
wdenkc0218802003-03-27 12:09:35 +0000665#define INCA_IP_Switch_PMAC_TX_IPG ((volatile u32*)(INCA_IP_Switch+ 0x0298))
666#define INCA_IP_Switch_PMAC_TX_IPG_IPGCNT (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000667
668/***PM RX IPG Counter Register***/
wdenkc0218802003-03-27 12:09:35 +0000669#define INCA_IP_Switch_PMAC_RX_IPG ((volatile u32*)(INCA_IP_Switch+ 0x029C))
670#define INCA_IP_Switch_PMAC_RX_IPG_IPGCNT (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000671
672/***Mirror Register***/
wdenkc0218802003-03-27 12:09:35 +0000673#define INCA_IP_Switch_MRR ((volatile u32*)(INCA_IP_Switch+ 0x0300))
674#define INCA_IP_Switch_MRR_MRR (value) (((( 1 << 2) - 1) & (value)) << 6)
675#define INCA_IP_Switch_MRR_EC (1 << 5)
676#define INCA_IP_Switch_MRR_EL (1 << 4)
677#define INCA_IP_Switch_MRR_EP (1 << 3)
678#define INCA_IP_Switch_MRR_IC (1 << 2)
679#define INCA_IP_Switch_MRR_IL (1 << 1)
680#define INCA_IP_Switch_MRR_IP (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000681
682/***Packet Length Register***/
wdenkc0218802003-03-27 12:09:35 +0000683#define INCA_IP_Switch_PKT_LEN ((volatile u32*)(INCA_IP_Switch+ 0x0304))
684#define INCA_IP_Switch_PKT_LEN_ADD (1 << 11)
685#define INCA_IP_Switch_PKT_LEN_MAX_PKT_LEN (value) (((( 1 << 11) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000686
687/***MDIO Access Register***/
wdenkc0218802003-03-27 12:09:35 +0000688#define INCA_IP_Switch_MDIO_ACC ((volatile u32*)(INCA_IP_Switch+ 0x0480))
689#define INCA_IP_Switch_MDIO_ACC_RA (1 << 31)
690#define INCA_IP_Switch_MDIO_ACC_RW (1 << 30)
691#define INCA_IP_Switch_MDIO_ACC_PHY_ADDR (value) (((( 1 << 5) - 1) & (value)) << 21)
692#define INCA_IP_Switch_MDIO_ACC_REG_ADDR (value) (((( 1 << 5) - 1) & (value)) << 16)
693#define INCA_IP_Switch_MDIO_ACC_PHY_DATA (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000694
695/***Ethernet PHY Register***/
wdenkc0218802003-03-27 12:09:35 +0000696#define INCA_IP_Switch_EPHY ((volatile u32*)(INCA_IP_Switch+ 0x0484))
697#define INCA_IP_Switch_EPHY_SL (1 << 7)
698#define INCA_IP_Switch_EPHY_SP (1 << 6)
699#define INCA_IP_Switch_EPHY_LL (1 << 5)
700#define INCA_IP_Switch_EPHY_LP (1 << 4)
701#define INCA_IP_Switch_EPHY_DL (1 << 3)
702#define INCA_IP_Switch_EPHY_DP (1 << 2)
703#define INCA_IP_Switch_EPHY_PL (1 << 1)
704#define INCA_IP_Switch_EPHY_PP (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000705
706/***Pause Write Enable Register***/
wdenkc0218802003-03-27 12:09:35 +0000707#define INCA_IP_Switch_PWR_EN ((volatile u32*)(INCA_IP_Switch+ 0x0488))
708#define INCA_IP_Switch_PWR_EN_PL (1 << 1)
709#define INCA_IP_Switch_PWR_EN_PP (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000710
711/***MDIO Configuration Register***/
wdenkc0218802003-03-27 12:09:35 +0000712#define INCA_IP_Switch_MDIO_CFG ((volatile u32*)(INCA_IP_Switch+ 0x048C))
713#define INCA_IP_Switch_MDIO_CFG_MDS (value) (((( 1 << 2) - 1) & (value)) << 14)
714#define INCA_IP_Switch_MDIO_CFG_PHY_LAN_ADDR (value) (((( 1 << 5) - 1) & (value)) << 9)
715#define INCA_IP_Switch_MDIO_CFG_PHY_PC_ADDR (value) (((( 1 << 5) - 1) & (value)) << 4)
716#define INCA_IP_Switch_MDIO_CFG_UEP (1 << 3)
717#define INCA_IP_Switch_MDIO_CFG_PS (1 << 2)
718#define INCA_IP_Switch_MDIO_CFG_PT (1 << 1)
719#define INCA_IP_Switch_MDIO_CFG_UMM (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000720
721/***Clock Configuration Register***/
wdenkc0218802003-03-27 12:09:35 +0000722#define INCA_IP_Switch_CLK_CFG ((volatile u32*)(INCA_IP_Switch+ 0x0500))
723#define INCA_IP_Switch_CLK_CFG_ARL_ID (1 << 9)
724#define INCA_IP_Switch_CLK_CFG_CPU_ID (1 << 8)
725#define INCA_IP_Switch_CLK_CFG_LAN_ID (1 << 7)
726#define INCA_IP_Switch_CLK_CFG_PC_ID (1 << 6)
wdenk8bde7f72003-06-27 21:31:46 +0000727#define INCA_IP_Switch_CLK_CFG_SE_ID (1 << 5)
728
wdenkc0218802003-03-27 12:09:35 +0000729/***********************************************************************/
730/* Module : SSC1 register address and bits */
731/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000732
wdenk8bde7f72003-06-27 21:31:46 +0000733#define INCA_IP_SSC1 (0xB8000500)
734/***********************************************************************/
735
736
737/***Control Register (Programming Mode)***/
wdenkc0218802003-03-27 12:09:35 +0000738#define INCA_IP_SSC1_SCC_CON_PRG ((volatile u32*)(INCA_IP_SSC1+ 0x0010))
739#define INCA_IP_SSC1_SCC_CON_PRG_EN (1 << 15)
740#define INCA_IP_SSC1_SCC_CON_PRG_MS (1 << 14)
741#define INCA_IP_SSC1_SCC_CON_PRG_AREN (1 << 12)
742#define INCA_IP_SSC1_SCC_CON_PRG_BEN (1 << 11)
743#define INCA_IP_SSC1_SCC_CON_PRG_PEN (1 << 10)
744#define INCA_IP_SSC1_SCC_CON_PRG_REN (1 << 9)
745#define INCA_IP_SSC1_SCC_CON_PRG_TEN (1 << 8)
746#define INCA_IP_SSC1_SCC_CON_PRG_LB (1 << 7)
747#define INCA_IP_SSC1_SCC_CON_PRG_PO (1 << 6)
748#define INCA_IP_SSC1_SCC_CON_PRG_PH (1 << 5)
749#define INCA_IP_SSC1_SCC_CON_PRG_HB (1 << 4)
750#define INCA_IP_SSC1_SCC_CON_PRG_BM (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000751
752/***SCC Control Register (Operating Mode)***/
wdenkc0218802003-03-27 12:09:35 +0000753#define INCA_IP_SSC1_SCC_CON_OPR ((volatile u32*)(INCA_IP_SSC1+ 0x0010))
754#define INCA_IP_SSC1_SCC_CON_OPR_EN (1 << 15)
755#define INCA_IP_SSC1_SCC_CON_OPR_MS (1 << 14)
756#define INCA_IP_SSC1_SCC_CON_OPR_BSY (1 << 12)
757#define INCA_IP_SSC1_SCC_CON_OPR_BE (1 << 11)
758#define INCA_IP_SSC1_SCC_CON_OPR_PE (1 << 10)
759#define INCA_IP_SSC1_SCC_CON_OPR_RE (1 << 9)
760#define INCA_IP_SSC1_SCC_CON_OPR_TE (1 << 8)
761#define INCA_IP_SSC1_SCC_CON_OPR_BC (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000762
763/***SSC Write Hardware Modified Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000764#define INCA_IP_SSC1_SSC_WHBCON ((volatile u32*)(INCA_IP_SSC1+ 0x0040))
765#define INCA_IP_SSC1_SSC_WHBCON_SETBE (1 << 15)
766#define INCA_IP_SSC1_SSC_WHBCON_SETPE (1 << 14)
767#define INCA_IP_SSC1_SSC_WHBCON_SETRE (1 << 13)
768#define INCA_IP_SSC1_SSC_WHBCON_SETTE (1 << 12)
769#define INCA_IP_SSC1_SSC_WHBCON_CLRBE (1 << 11)
770#define INCA_IP_SSC1_SSC_WHBCON_CLRPE (1 << 10)
771#define INCA_IP_SSC1_SSC_WHBCON_CLRRE (1 << 9)
772#define INCA_IP_SSC1_SSC_WHBCON_CLRTE (1 << 8)
wdenk8bde7f72003-06-27 21:31:46 +0000773
774/***SSC Baudrate Timer Reload Register***/
wdenkc0218802003-03-27 12:09:35 +0000775#define INCA_IP_SSC1_SSC_BR ((volatile u32*)(INCA_IP_SSC1+ 0x0014))
776#define INCA_IP_SSC1_SSC_BR_BR_VALUE (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000777
778/***SSC Transmitter Buffer Register***/
wdenkc0218802003-03-27 12:09:35 +0000779#define INCA_IP_SSC1_SSC_TB ((volatile u32*)(INCA_IP_SSC1+ 0x0020))
780#define INCA_IP_SSC1_SSC_TB_TB_VALUE (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000781
782/***SSC Receiver Buffer Register***/
wdenkc0218802003-03-27 12:09:35 +0000783#define INCA_IP_SSC1_SSC_RB ((volatile u32*)(INCA_IP_SSC1+ 0x0024))
784#define INCA_IP_SSC1_SSC_RB_RB_VALUE (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000785
786/***SSC Receive FIFO Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000787#define INCA_IP_SSC1_SSC_RXFCON ((volatile u32*)(INCA_IP_SSC1+ 0x0030))
788#define INCA_IP_SSC1_SSC_RXFCON_RXFITL (value) (((( 1 << 6) - 1) & (value)) << 8)
789#define INCA_IP_SSC1_SSC_RXFCON_RXTMEN (1 << 2)
790#define INCA_IP_SSC1_SSC_RXFCON_RXFLU (1 << 1)
791#define INCA_IP_SSC1_SSC_RXFCON_RXFEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000792
793/***SSC Transmit FIFO Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000794#define INCA_IP_SSC1_SSC_TXFCON ((volatile u32*)(INCA_IP_SSC1+ 0x0034))
795#define INCA_IP_SSC1_SSC_TXFCON_RXFITL (value) (((( 1 << 6) - 1) & (value)) << 8)
796#define INCA_IP_SSC1_SSC_TXFCON_TXTMEN (1 << 2)
797#define INCA_IP_SSC1_SSC_TXFCON_TXFLU (1 << 1)
798#define INCA_IP_SSC1_SSC_TXFCON_TXFEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000799
800/***SSC FIFO Status Register***/
wdenkc0218802003-03-27 12:09:35 +0000801#define INCA_IP_SSC1_SSC_FSTAT ((volatile u32*)(INCA_IP_SSC1+ 0x0038))
802#define INCA_IP_SSC1_SSC_FSTAT_TXFFL (value) (((( 1 << 6) - 1) & (value)) << 8)
803#define INCA_IP_SSC1_SSC_FSTAT_RXFFL (value) (((( 1 << 6) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000804
805/***SSC Clock Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000806#define INCA_IP_SSC1_SSC_CLC ((volatile u32*)(INCA_IP_SSC1+ 0x0000))
807#define INCA_IP_SSC1_SSC_CLC_RMC (value) (((( 1 << 8) - 1) & (value)) << 8)
808#define INCA_IP_SSC1_SSC_CLC_DISS (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +0000809#define INCA_IP_SSC1_SSC_CLC_DISR (1 << 0)
810
wdenkc0218802003-03-27 12:09:35 +0000811/***********************************************************************/
812/* Module : SSC2 register address and bits */
813/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000814
wdenk8bde7f72003-06-27 21:31:46 +0000815#define INCA_IP_SSC2 (0xB8000600)
816/***********************************************************************/
817
818
819/***Control Register (Programming Mode)***/
wdenkc0218802003-03-27 12:09:35 +0000820#define INCA_IP_SSC2_SCC_CON_PRG ((volatile u32*)(INCA_IP_SSC2+ 0x0010))
821#define INCA_IP_SSC2_SCC_CON_PRG_EN (1 << 15)
822#define INCA_IP_SSC2_SCC_CON_PRG_MS (1 << 14)
823#define INCA_IP_SSC2_SCC_CON_PRG_AREN (1 << 12)
824#define INCA_IP_SSC2_SCC_CON_PRG_BEN (1 << 11)
825#define INCA_IP_SSC2_SCC_CON_PRG_PEN (1 << 10)
826#define INCA_IP_SSC2_SCC_CON_PRG_REN (1 << 9)
827#define INCA_IP_SSC2_SCC_CON_PRG_TEN (1 << 8)
828#define INCA_IP_SSC2_SCC_CON_PRG_LB (1 << 7)
829#define INCA_IP_SSC2_SCC_CON_PRG_PO (1 << 6)
830#define INCA_IP_SSC2_SCC_CON_PRG_PH (1 << 5)
831#define INCA_IP_SSC2_SCC_CON_PRG_HB (1 << 4)
832#define INCA_IP_SSC2_SCC_CON_PRG_BM (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000833
834/***SCC Control Register (Operating Mode)***/
wdenkc0218802003-03-27 12:09:35 +0000835#define INCA_IP_SSC2_SCC_CON_OPR ((volatile u32*)(INCA_IP_SSC2+ 0x0010))
836#define INCA_IP_SSC2_SCC_CON_OPR_EN (1 << 15)
837#define INCA_IP_SSC2_SCC_CON_OPR_MS (1 << 14)
838#define INCA_IP_SSC2_SCC_CON_OPR_BSY (1 << 12)
839#define INCA_IP_SSC2_SCC_CON_OPR_BE (1 << 11)
840#define INCA_IP_SSC2_SCC_CON_OPR_PE (1 << 10)
841#define INCA_IP_SSC2_SCC_CON_OPR_RE (1 << 9)
842#define INCA_IP_SSC2_SCC_CON_OPR_TE (1 << 8)
843#define INCA_IP_SSC2_SCC_CON_OPR_BC (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000844
845/***SSC Write Hardware Modified Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000846#define INCA_IP_SSC2_SSC_WHBCON ((volatile u32*)(INCA_IP_SSC2+ 0x0040))
847#define INCA_IP_SSC2_SSC_WHBCON_SETBE (1 << 15)
848#define INCA_IP_SSC2_SSC_WHBCON_SETPE (1 << 14)
849#define INCA_IP_SSC2_SSC_WHBCON_SETRE (1 << 13)
850#define INCA_IP_SSC2_SSC_WHBCON_SETTE (1 << 12)
851#define INCA_IP_SSC2_SSC_WHBCON_CLRBE (1 << 11)
852#define INCA_IP_SSC2_SSC_WHBCON_CLRPE (1 << 10)
853#define INCA_IP_SSC2_SSC_WHBCON_CLRRE (1 << 9)
854#define INCA_IP_SSC2_SSC_WHBCON_CLRTE (1 << 8)
wdenk8bde7f72003-06-27 21:31:46 +0000855
856/***SSC Baudrate Timer Reload Register***/
wdenkc0218802003-03-27 12:09:35 +0000857#define INCA_IP_SSC2_SSC_BR ((volatile u32*)(INCA_IP_SSC2+ 0x0014))
858#define INCA_IP_SSC2_SSC_BR_BR_VALUE (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000859
860/***SSC Transmitter Buffer Register***/
wdenkc0218802003-03-27 12:09:35 +0000861#define INCA_IP_SSC2_SSC_TB ((volatile u32*)(INCA_IP_SSC2+ 0x0020))
862#define INCA_IP_SSC2_SSC_TB_TB_VALUE (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000863
864/***SSC Receiver Buffer Register***/
wdenkc0218802003-03-27 12:09:35 +0000865#define INCA_IP_SSC2_SSC_RB ((volatile u32*)(INCA_IP_SSC2+ 0x0024))
866#define INCA_IP_SSC2_SSC_RB_RB_VALUE (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000867
868/***SSC Receive FIFO Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000869#define INCA_IP_SSC2_SSC_RXFCON ((volatile u32*)(INCA_IP_SSC2+ 0x0030))
870#define INCA_IP_SSC2_SSC_RXFCON_RXFITL (value) (((( 1 << 6) - 1) & (value)) << 8)
871#define INCA_IP_SSC2_SSC_RXFCON_RXTMEN (1 << 2)
872#define INCA_IP_SSC2_SSC_RXFCON_RXFLU (1 << 1)
873#define INCA_IP_SSC2_SSC_RXFCON_RXFEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000874
875/***SSC Transmit FIFO Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000876#define INCA_IP_SSC2_SSC_TXFCON ((volatile u32*)(INCA_IP_SSC2+ 0x0034))
877#define INCA_IP_SSC2_SSC_TXFCON_RXFITL (value) (((( 1 << 6) - 1) & (value)) << 8)
878#define INCA_IP_SSC2_SSC_TXFCON_TXTMEN (1 << 2)
879#define INCA_IP_SSC2_SSC_TXFCON_TXFLU (1 << 1)
880#define INCA_IP_SSC2_SSC_TXFCON_TXFEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000881
882/***SSC FIFO Status Register***/
wdenkc0218802003-03-27 12:09:35 +0000883#define INCA_IP_SSC2_SSC_FSTAT ((volatile u32*)(INCA_IP_SSC2+ 0x0038))
884#define INCA_IP_SSC2_SSC_FSTAT_TXFFL (value) (((( 1 << 6) - 1) & (value)) << 8)
885#define INCA_IP_SSC2_SSC_FSTAT_RXFFL (value) (((( 1 << 6) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000886
887/***SSC Clock Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000888#define INCA_IP_SSC2_SSC_CLC ((volatile u32*)(INCA_IP_SSC2+ 0x0000))
889#define INCA_IP_SSC2_SSC_CLC_RMC (value) (((( 1 << 8) - 1) & (value)) << 8)
890#define INCA_IP_SSC2_SSC_CLC_DISS (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +0000891#define INCA_IP_SSC2_SSC_CLC_DISR (1 << 0)
892
wdenkc0218802003-03-27 12:09:35 +0000893/***********************************************************************/
894/* Module : EBU register address and bits */
895/***********************************************************************/
wdenk8bde7f72003-06-27 21:31:46 +0000896
wdenkc0218802003-03-27 12:09:35 +0000897#define INCA_IP_EBU (0xB8000200)
wdenk8bde7f72003-06-27 21:31:46 +0000898/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000899
wdenk8bde7f72003-06-27 21:31:46 +0000900
901/***EBU Clock Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000902#define INCA_IP_EBU_EBU_CLC ((volatile u32*)(INCA_IP_EBU+ 0x0000))
903#define INCA_IP_EBU_EBU_CLC_DISS (1 << 1)
904#define INCA_IP_EBU_EBU_CLC_DISR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000905
906/***EBU Global Control Register***/
wdenkc0218802003-03-27 12:09:35 +0000907#define INCA_IP_EBU_EBU_CON ((volatile u32*)(INCA_IP_EBU+ 0x0010))
908#define INCA_IP_EBU_EBU_CON_DTACS (value) (((( 1 << 3) - 1) & (value)) << 20)
909#define INCA_IP_EBU_EBU_CON_DTARW (value) (((( 1 << 3) - 1) & (value)) << 16)
910#define INCA_IP_EBU_EBU_CON_TOUTC (value) (((( 1 << 8) - 1) & (value)) << 8)
911#define INCA_IP_EBU_EBU_CON_ARBMODE (value) (((( 1 << 2) - 1) & (value)) << 6)
912#define INCA_IP_EBU_EBU_CON_ARBSYNC (1 << 5)
913#define INCA_IP_EBU_EBU_CON_1 (1 << 3)
wdenk8bde7f72003-06-27 21:31:46 +0000914
915/***EBU Address Select Register 0***/
wdenkc0218802003-03-27 12:09:35 +0000916#define INCA_IP_EBU_EBU_ADDSEL0 ((volatile u32*)(INCA_IP_EBU+ 0x0020))
917#define INCA_IP_EBU_EBU_ADDSEL0_BASE (value) (((( 1 << 20) - 1) & (value)) << 12)
918#define INCA_IP_EBU_EBU_ADDSEL0_MASK (value) (((( 1 << 4) - 1) & (value)) << 4)
919#define INCA_IP_EBU_EBU_ADDSEL0_MIRRORE (1 << 1)
920#define INCA_IP_EBU_EBU_ADDSEL0_REGEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000921
922/***EBU Address Select Register 1***/
wdenkc0218802003-03-27 12:09:35 +0000923#define INCA_IP_EBU_EBU_ADDSEL1 ((volatile u32*)(INCA_IP_EBU+ 0x0024))
924#define INCA_IP_EBU_EBU_ADDSEL1_BASE (value) (((( 1 << 20) - 1) & (value)) << 12)
925#define INCA_IP_EBU_EBU_ADDSEL1_MASK (value) (((( 1 << 4) - 1) & (value)) << 4)
926#define INCA_IP_EBU_EBU_ADDSEL1_MIRRORE (1 << 1)
927#define INCA_IP_EBU_EBU_ADDSEL1_REGEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000928
929/***EBU Address Select Register 2***/
wdenkc0218802003-03-27 12:09:35 +0000930#define INCA_IP_EBU_EBU_ADDSEL2 ((volatile u32*)(INCA_IP_EBU+ 0x0028))
931#define INCA_IP_EBU_EBU_ADDSEL2_BASE (value) (((( 1 << 20) - 1) & (value)) << 12)
932#define INCA_IP_EBU_EBU_ADDSEL2_MASK (value) (((( 1 << 4) - 1) & (value)) << 4)
933#define INCA_IP_EBU_EBU_ADDSEL2_MIRRORE (1 << 1)
934#define INCA_IP_EBU_EBU_ADDSEL2_REGEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000935
936/***EBU Bus Configuration Register 0***/
wdenkc0218802003-03-27 12:09:35 +0000937#define INCA_IP_EBU_EBU_BUSCON0 ((volatile u32*)(INCA_IP_EBU+ 0x0060))
938#define INCA_IP_EBU_EBU_BUSCON0_WRDIS (1 << 31)
939#define INCA_IP_EBU_EBU_BUSCON0_ALEC (value) (((( 1 << 2) - 1) & (value)) << 29)
940#define INCA_IP_EBU_EBU_BUSCON0_BCGEN (value) (((( 1 << 2) - 1) & (value)) << 27)
941#define INCA_IP_EBU_EBU_BUSCON0_AGEN (value) (((( 1 << 2) - 1) & (value)) << 24)
942#define INCA_IP_EBU_EBU_BUSCON0_CMULTR (value) (((( 1 << 2) - 1) & (value)) << 22)
943#define INCA_IP_EBU_EBU_BUSCON0_WAIT (value) (((( 1 << 2) - 1) & (value)) << 20)
944#define INCA_IP_EBU_EBU_BUSCON0_WAITINV (1 << 19)
945#define INCA_IP_EBU_EBU_BUSCON0_SETUP (1 << 18)
946#define INCA_IP_EBU_EBU_BUSCON0_PORTW (value) (((( 1 << 2) - 1) & (value)) << 16)
947#define INCA_IP_EBU_EBU_BUSCON0_WAITRDC (value) (((( 1 << 7) - 1) & (value)) << 9)
948#define INCA_IP_EBU_EBU_BUSCON0_WAITWRC (value) (((( 1 << 3) - 1) & (value)) << 6)
949#define INCA_IP_EBU_EBU_BUSCON0_HOLDC (value) (((( 1 << 2) - 1) & (value)) << 4)
950#define INCA_IP_EBU_EBU_BUSCON0_RECOVC (value) (((( 1 << 2) - 1) & (value)) << 2)
951#define INCA_IP_EBU_EBU_BUSCON0_CMULT (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000952
953/***EBU Bus Configuration Register 1***/
wdenkc0218802003-03-27 12:09:35 +0000954#define INCA_IP_EBU_EBU_BUSCON1 ((volatile u32*)(INCA_IP_EBU+ 0x0064))
955#define INCA_IP_EBU_EBU_BUSCON1_WRDIS (1 << 31)
956#define INCA_IP_EBU_EBU_BUSCON1_ALEC (value) (((( 1 << 2) - 1) & (value)) << 29)
957#define INCA_IP_EBU_EBU_BUSCON1_BCGEN (value) (((( 1 << 2) - 1) & (value)) << 27)
958#define INCA_IP_EBU_EBU_BUSCON1_AGEN (value) (((( 1 << 2) - 1) & (value)) << 24)
959#define INCA_IP_EBU_EBU_BUSCON1_CMULTR (value) (((( 1 << 2) - 1) & (value)) << 22)
960#define INCA_IP_EBU_EBU_BUSCON1_WAIT (value) (((( 1 << 2) - 1) & (value)) << 20)
961#define INCA_IP_EBU_EBU_BUSCON1_WAITINV (1 << 19)
962#define INCA_IP_EBU_EBU_BUSCON1_SETUP (1 << 18)
963#define INCA_IP_EBU_EBU_BUSCON1_PORTW (value) (((( 1 << 2) - 1) & (value)) << 16)
964#define INCA_IP_EBU_EBU_BUSCON1_WAITRDC (value) (((( 1 << 7) - 1) & (value)) << 9)
965#define INCA_IP_EBU_EBU_BUSCON1_WAITWRC (value) (((( 1 << 3) - 1) & (value)) << 6)
966#define INCA_IP_EBU_EBU_BUSCON1_HOLDC (value) (((( 1 << 2) - 1) & (value)) << 4)
967#define INCA_IP_EBU_EBU_BUSCON1_RECOVC (value) (((( 1 << 2) - 1) & (value)) << 2)
968#define INCA_IP_EBU_EBU_BUSCON1_CMULT (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +0000969
970/***EBU Bus Configuration Register 2***/
wdenkc0218802003-03-27 12:09:35 +0000971#define INCA_IP_EBU_EBU_BUSCON2 ((volatile u32*)(INCA_IP_EBU+ 0x0068))
972#define INCA_IP_EBU_EBU_BUSCON2_WRDIS (1 << 31)
973#define INCA_IP_EBU_EBU_BUSCON2_ALEC (value) (((( 1 << 2) - 1) & (value)) << 29)
974#define INCA_IP_EBU_EBU_BUSCON2_BCGEN (value) (((( 1 << 2) - 1) & (value)) << 27)
975#define INCA_IP_EBU_EBU_BUSCON2_AGEN (value) (((( 1 << 2) - 1) & (value)) << 24)
976#define INCA_IP_EBU_EBU_BUSCON2_CMULTR (value) (((( 1 << 2) - 1) & (value)) << 22)
977#define INCA_IP_EBU_EBU_BUSCON2_WAIT (value) (((( 1 << 2) - 1) & (value)) << 20)
978#define INCA_IP_EBU_EBU_BUSCON2_WAITINV (1 << 19)
979#define INCA_IP_EBU_EBU_BUSCON2_SETUP (1 << 18)
980#define INCA_IP_EBU_EBU_BUSCON2_PORTW (value) (((( 1 << 2) - 1) & (value)) << 16)
981#define INCA_IP_EBU_EBU_BUSCON2_WAITRDC (value) (((( 1 << 7) - 1) & (value)) << 9)
982#define INCA_IP_EBU_EBU_BUSCON2_WAITWRC (value) (((( 1 << 3) - 1) & (value)) << 6)
983#define INCA_IP_EBU_EBU_BUSCON2_HOLDC (value) (((( 1 << 2) - 1) & (value)) << 4)
984#define INCA_IP_EBU_EBU_BUSCON2_RECOVC (value) (((( 1 << 2) - 1) & (value)) << 2)
wdenk8bde7f72003-06-27 21:31:46 +0000985#define INCA_IP_EBU_EBU_BUSCON2_CMULT (value) (((( 1 << 2) - 1) & (value)) << 0)
986
wdenkc0218802003-03-27 12:09:35 +0000987/***********************************************************************/
988/* Module : SDRAM register address and bits */
989/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +0000990
wdenk8bde7f72003-06-27 21:31:46 +0000991#define INCA_IP_SDRAM (0xBF800000)
992/***********************************************************************/
993
994
995/***MC Access Error Cause Register***/
wdenkc0218802003-03-27 12:09:35 +0000996#define INCA_IP_SDRAM_MC_ERRCAUSE ((volatile u32*)(INCA_IP_SDRAM+ 0x0100))
997#define INCA_IP_SDRAM_MC_ERRCAUSE_ERR (1 << 31)
998#define INCA_IP_SDRAM_MC_ERRCAUSE_PORT (value) (((( 1 << 4) - 1) & (value)) << 16)
999#define INCA_IP_SDRAM_MC_ERRCAUSE_CAUSE (value) (((( 1 << 2) - 1) & (value)) << 0)
1000#define INCA_IP_SDRAM_MC_ERRCAUSE_Res (value) (((( 1 << NaN) - 1) & (value)) << NaN)
wdenk8bde7f72003-06-27 21:31:46 +00001001
1002/***MC Access Error Address Register***/
wdenkc0218802003-03-27 12:09:35 +00001003#define INCA_IP_SDRAM_MC_ERRADDR ((volatile u32*)(INCA_IP_SDRAM+ 0x0108))
1004#define INCA_IP_SDRAM_MC_ERRADDR_ADDR
wdenk8bde7f72003-06-27 21:31:46 +00001005
1006/***MC I/O General Purpose Register***/
wdenkc0218802003-03-27 12:09:35 +00001007#define INCA_IP_SDRAM_MC_IOGP ((volatile u32*)(INCA_IP_SDRAM+ 0x0800))
1008#define INCA_IP_SDRAM_MC_IOGP_GPR6 (value) (((( 1 << 4) - 1) & (value)) << 28)
1009#define INCA_IP_SDRAM_MC_IOGP_GPR5 (value) (((( 1 << 4) - 1) & (value)) << 24)
1010#define INCA_IP_SDRAM_MC_IOGP_GPR4 (value) (((( 1 << 4) - 1) & (value)) << 20)
1011#define INCA_IP_SDRAM_MC_IOGP_GPR3 (value) (((( 1 << 4) - 1) & (value)) << 16)
1012#define INCA_IP_SDRAM_MC_IOGP_GPR2 (value) (((( 1 << 4) - 1) & (value)) << 12)
1013#define INCA_IP_SDRAM_MC_IOGP_CPS (1 << 11)
1014#define INCA_IP_SDRAM_MC_IOGP_CLKDELAY (value) (((( 1 << 3) - 1) & (value)) << 8)
1015#define INCA_IP_SDRAM_MC_IOGP_CLKRAT (value) (((( 1 << 4) - 1) & (value)) << 4)
1016#define INCA_IP_SDRAM_MC_IOGP_RDDEL (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001017
1018/***MC Self Refresh Register***/
wdenkc0218802003-03-27 12:09:35 +00001019#define INCA_IP_SDRAM_MC_SELFRFSH ((volatile u32*)(INCA_IP_SDRAM+ 0x0A00))
1020#define INCA_IP_SDRAM_MC_SELFRFSH_PWDS (1 << 1)
1021#define INCA_IP_SDRAM_MC_SELFRFSH_PWD (1 << 0)
1022#define INCA_IP_SDRAM_MC_SELFRFSH_Res (value) (((( 1 << 30) - 1) & (value)) << 2)
wdenk8bde7f72003-06-27 21:31:46 +00001023
1024/***MC Enable Register***/
wdenkc0218802003-03-27 12:09:35 +00001025#define INCA_IP_SDRAM_MC_CTRLENA ((volatile u32*)(INCA_IP_SDRAM+ 0x1000))
1026#define INCA_IP_SDRAM_MC_CTRLENA_ENA (1 << 0)
1027#define INCA_IP_SDRAM_MC_CTRLENA_Res (value) (((( 1 << 31) - 1) & (value)) << 1)
wdenk8bde7f72003-06-27 21:31:46 +00001028
1029/***MC Mode Register Setup Code***/
wdenkc0218802003-03-27 12:09:35 +00001030#define INCA_IP_SDRAM_MC_MRSCODE ((volatile u32*)(INCA_IP_SDRAM+ 0x1008))
1031#define INCA_IP_SDRAM_MC_MRSCODE_UMC (value) (((( 1 << 5) - 1) & (value)) << 7)
1032#define INCA_IP_SDRAM_MC_MRSCODE_CL (value) (((( 1 << 3) - 1) & (value)) << 4)
1033#define INCA_IP_SDRAM_MC_MRSCODE_WT (1 << 3)
1034#define INCA_IP_SDRAM_MC_MRSCODE_BL (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001035
1036/***MC Configuration Data-word Width Register***/
wdenkc0218802003-03-27 12:09:35 +00001037#define INCA_IP_SDRAM_MC_CFGDW ((volatile u32*)(INCA_IP_SDRAM+ 0x1010))
1038#define INCA_IP_SDRAM_MC_CFGDW_DW (value) (((( 1 << 4) - 1) & (value)) << 0)
1039#define INCA_IP_SDRAM_MC_CFGDW_Res (value) (((( 1 << 28) - 1) & (value)) << 4)
wdenk8bde7f72003-06-27 21:31:46 +00001040
1041/***MC Configuration Physical Bank 0 Register***/
wdenkc0218802003-03-27 12:09:35 +00001042#define INCA_IP_SDRAM_MC_CFGPB0 ((volatile u32*)(INCA_IP_SDRAM+ 0x1018))
1043#define INCA_IP_SDRAM_MC_CFGPB0_MCSEN0 (value) (((( 1 << 4) - 1) & (value)) << 12)
1044#define INCA_IP_SDRAM_MC_CFGPB0_BANKN0 (value) (((( 1 << 4) - 1) & (value)) << 8)
1045#define INCA_IP_SDRAM_MC_CFGPB0_ROWW0 (value) (((( 1 << 4) - 1) & (value)) << 4)
1046#define INCA_IP_SDRAM_MC_CFGPB0_COLW0 (value) (((( 1 << 4) - 1) & (value)) << 0)
1047#define INCA_IP_SDRAM_MC_CFGPB0_Res (value) (((( 1 << 16) - 1) & (value)) << 16)
wdenk8bde7f72003-06-27 21:31:46 +00001048
1049/***MC Latency Register***/
wdenkc0218802003-03-27 12:09:35 +00001050#define INCA_IP_SDRAM_MC_LATENCY ((volatile u32*)(INCA_IP_SDRAM+ 0x1038))
1051#define INCA_IP_SDRAM_MC_LATENCY_TRP (value) (((( 1 << 4) - 1) & (value)) << 16)
1052#define INCA_IP_SDRAM_MC_LATENCY_TRAS (value) (((( 1 << 4) - 1) & (value)) << 12)
1053#define INCA_IP_SDRAM_MC_LATENCY_TRCD (value) (((( 1 << 4) - 1) & (value)) << 8)
1054#define INCA_IP_SDRAM_MC_LATENCY_TDPL (value) (((( 1 << 4) - 1) & (value)) << 4)
1055#define INCA_IP_SDRAM_MC_LATENCY_TDAL (value) (((( 1 << 4) - 1) & (value)) << 0)
1056#define INCA_IP_SDRAM_MC_LATENCY_Res (value) (((( 1 << 12) - 1) & (value)) << 20)
wdenk8bde7f72003-06-27 21:31:46 +00001057
1058/***MC Refresh Cycle Time Register***/
wdenkc0218802003-03-27 12:09:35 +00001059#define INCA_IP_SDRAM_MC_TREFRESH ((volatile u32*)(INCA_IP_SDRAM+ 0x1040))
1060#define INCA_IP_SDRAM_MC_TREFRESH_TREF (value) (((( 1 << 13) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001061#define INCA_IP_SDRAM_MC_TREFRESH_Res (value) (((( 1 << 19) - 1) & (value)) << 13)
1062
wdenkc0218802003-03-27 12:09:35 +00001063/***********************************************************************/
1064/* Module : GPTU register address and bits */
1065/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001066
wdenk8bde7f72003-06-27 21:31:46 +00001067#define INCA_IP_GPTU (0xB8000300)
1068/***********************************************************************/
1069
1070
1071/***GPT Clock Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001072#define INCA_IP_GPTU_GPT_CLC ((volatile u32*)(INCA_IP_GPTU+ 0x0000))
1073#define INCA_IP_GPTU_GPT_CLC_RMC (value) (((( 1 << 8) - 1) & (value)) << 8)
1074#define INCA_IP_GPTU_GPT_CLC_DISS (1 << 1)
1075#define INCA_IP_GPTU_GPT_CLC_DISR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001076
1077/***GPT Timer 3 Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001078#define INCA_IP_GPTU_GPT_T3CON ((volatile u32*)(INCA_IP_GPTU+ 0x0014))
1079#define INCA_IP_GPTU_GPT_T3CON_T3RDIR (1 << 15)
1080#define INCA_IP_GPTU_GPT_T3CON_T3CHDIR (1 << 14)
1081#define INCA_IP_GPTU_GPT_T3CON_T3EDGE (1 << 13)
1082#define INCA_IP_GPTU_GPT_T3CON_BPS1 (value) (((( 1 << 2) - 1) & (value)) << 11)
1083#define INCA_IP_GPTU_GPT_T3CON_T3OTL (1 << 10)
1084#define INCA_IP_GPTU_GPT_T3CON_T3UD (1 << 7)
1085#define INCA_IP_GPTU_GPT_T3CON_T3R (1 << 6)
1086#define INCA_IP_GPTU_GPT_T3CON_T3M (value) (((( 1 << 3) - 1) & (value)) << 3)
1087#define INCA_IP_GPTU_GPT_T3CON_T3I (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001088
1089/***GPT Write Hardware Modified Timer 3 Control Register
wdenkc0218802003-03-27 12:09:35 +00001090If set and clear bit are written concurrently with 1, the associated bit is not changed.***/
1091#define INCA_IP_GPTU_GPT_WHBT3CON ((volatile u32*)(INCA_IP_GPTU+ 0x004C))
1092#define INCA_IP_GPTU_GPT_WHBT3CON_SETT3CHDIR (1 << 15)
1093#define INCA_IP_GPTU_GPT_WHBT3CON_CLRT3CHDIR (1 << 14)
1094#define INCA_IP_GPTU_GPT_WHBT3CON_SETT3EDGE (1 << 13)
1095#define INCA_IP_GPTU_GPT_WHBT3CON_CLRT3EDGE (1 << 12)
1096#define INCA_IP_GPTU_GPT_WHBT3CON_SETT3OTL (1 << 11)
1097#define INCA_IP_GPTU_GPT_WHBT3CON_CLRT3OTL (1 << 10)
wdenk8bde7f72003-06-27 21:31:46 +00001098
1099/***GPT Timer 2 Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001100#define INCA_IP_GPTU_GPT_T2CON ((volatile u32*)(INCA_IP_GPTU+ 0x0010))
1101#define INCA_IP_GPTU_GPT_T2CON_TxRDIR (1 << 15)
1102#define INCA_IP_GPTU_GPT_T2CON_TxCHDIR (1 << 14)
1103#define INCA_IP_GPTU_GPT_T2CON_TxEDGE (1 << 13)
1104#define INCA_IP_GPTU_GPT_T2CON_TxIRDIS (1 << 12)
1105#define INCA_IP_GPTU_GPT_T2CON_TxRC (1 << 9)
1106#define INCA_IP_GPTU_GPT_T2CON_TxUD (1 << 7)
1107#define INCA_IP_GPTU_GPT_T2CON_TxR (1 << 6)
1108#define INCA_IP_GPTU_GPT_T2CON_TxM (value) (((( 1 << 3) - 1) & (value)) << 3)
1109#define INCA_IP_GPTU_GPT_T2CON_TxI (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001110
1111/***GPT Timer 4 Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001112#define INCA_IP_GPTU_GPT_T4CON ((volatile u32*)(INCA_IP_GPTU+ 0x0018))
1113#define INCA_IP_GPTU_GPT_T4CON_TxRDIR (1 << 15)
1114#define INCA_IP_GPTU_GPT_T4CON_TxCHDIR (1 << 14)
1115#define INCA_IP_GPTU_GPT_T4CON_TxEDGE (1 << 13)
1116#define INCA_IP_GPTU_GPT_T4CON_TxIRDIS (1 << 12)
1117#define INCA_IP_GPTU_GPT_T4CON_TxRC (1 << 9)
1118#define INCA_IP_GPTU_GPT_T4CON_TxUD (1 << 7)
1119#define INCA_IP_GPTU_GPT_T4CON_TxR (1 << 6)
1120#define INCA_IP_GPTU_GPT_T4CON_TxM (value) (((( 1 << 3) - 1) & (value)) << 3)
1121#define INCA_IP_GPTU_GPT_T4CON_TxI (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001122
wdenkc0218802003-03-27 12:09:35 +00001123/***GPT Write HW Modified Timer 2 Control Register If set
1124 and clear bit are written concurrently with 1, the associated bit is not changed.***/
1125#define INCA_IP_GPTU_GPT_WHBT2CON ((volatile u32*)(INCA_IP_GPTU+ 0x0048))
1126#define INCA_IP_GPTU_GPT_WHBT2CON_SETTxCHDIR (1 << 15)
1127#define INCA_IP_GPTU_GPT_WHBT2CON_CLRTxCHDIR (1 << 14)
1128#define INCA_IP_GPTU_GPT_WHBT2CON_SETTxEDGE (1 << 13)
1129#define INCA_IP_GPTU_GPT_WHBT2CON_CLRTxEDGE (1 << 12)
wdenk8bde7f72003-06-27 21:31:46 +00001130
wdenkc0218802003-03-27 12:09:35 +00001131/***GPT Write HW Modified Timer 4 Control Register If set
1132 and clear bit are written concurrently with 1, the associated bit is not changed.***/
1133#define INCA_IP_GPTU_GPT_WHBT4CON ((volatile u32*)(INCA_IP_GPTU+ 0x0050))
1134#define INCA_IP_GPTU_GPT_WHBT4CON_SETTxCHDIR (1 << 15)
1135#define INCA_IP_GPTU_GPT_WHBT4CON_CLRTxCHDIR (1 << 14)
1136#define INCA_IP_GPTU_GPT_WHBT4CON_SETTxEDGE (1 << 13)
1137#define INCA_IP_GPTU_GPT_WHBT4CON_CLRTxEDGE (1 << 12)
wdenk8bde7f72003-06-27 21:31:46 +00001138
1139/***GPT Capture Reload Register***/
wdenkc0218802003-03-27 12:09:35 +00001140#define INCA_IP_GPTU_GPT_CAPREL ((volatile u32*)(INCA_IP_GPTU+ 0x0030))
1141#define INCA_IP_GPTU_GPT_CAPREL_CAPREL (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001142
1143/***GPT Timer 2 Register***/
wdenkc0218802003-03-27 12:09:35 +00001144#define INCA_IP_GPTU_GPT_T2 ((volatile u32*)(INCA_IP_GPTU+ 0x0034))
1145#define INCA_IP_GPTU_GPT_T2_TVAL (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001146
1147/***GPT Timer 3 Register***/
wdenkc0218802003-03-27 12:09:35 +00001148#define INCA_IP_GPTU_GPT_T3 ((volatile u32*)(INCA_IP_GPTU+ 0x0038))
1149#define INCA_IP_GPTU_GPT_T3_TVAL (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001150
1151/***GPT Timer 4 Register***/
wdenkc0218802003-03-27 12:09:35 +00001152#define INCA_IP_GPTU_GPT_T4 ((volatile u32*)(INCA_IP_GPTU+ 0x003C))
1153#define INCA_IP_GPTU_GPT_T4_TVAL (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001154
1155/***GPT Timer 5 Register***/
wdenkc0218802003-03-27 12:09:35 +00001156#define INCA_IP_GPTU_GPT_T5 ((volatile u32*)(INCA_IP_GPTU+ 0x0040))
1157#define INCA_IP_GPTU_GPT_T5_TVAL (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001158
1159/***GPT Timer 6 Register***/
wdenkc0218802003-03-27 12:09:35 +00001160#define INCA_IP_GPTU_GPT_T6 ((volatile u32*)(INCA_IP_GPTU+ 0x0044))
1161#define INCA_IP_GPTU_GPT_T6_TVAL (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001162
1163/***GPT Timer 6 Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001164#define INCA_IP_GPTU_GPT_T6CON ((volatile u32*)(INCA_IP_GPTU+ 0x0020))
1165#define INCA_IP_GPTU_GPT_T6CON_T6SR (1 << 15)
1166#define INCA_IP_GPTU_GPT_T6CON_T6CLR (1 << 14)
1167#define INCA_IP_GPTU_GPT_T6CON_BPS2 (value) (((( 1 << 2) - 1) & (value)) << 11)
1168#define INCA_IP_GPTU_GPT_T6CON_T6OTL (1 << 10)
1169#define INCA_IP_GPTU_GPT_T6CON_T6UD (1 << 7)
1170#define INCA_IP_GPTU_GPT_T6CON_T6R (1 << 6)
1171#define INCA_IP_GPTU_GPT_T6CON_T6M (value) (((( 1 << 3) - 1) & (value)) << 3)
1172#define INCA_IP_GPTU_GPT_T6CON_T6I (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001173
wdenkc0218802003-03-27 12:09:35 +00001174/***GPT Write HW Modified Timer 6 Control Register If set
1175 and clear bit are written concurrently with 1, the associated bit is not changed.***/
1176#define INCA_IP_GPTU_GPT_WHBT6CON ((volatile u32*)(INCA_IP_GPTU+ 0x0054))
1177#define INCA_IP_GPTU_GPT_WHBT6CON_SETT6OTL (1 << 11)
1178#define INCA_IP_GPTU_GPT_WHBT6CON_CLRT6OTL (1 << 10)
wdenk8bde7f72003-06-27 21:31:46 +00001179
1180/***GPT Timer 5 Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001181#define INCA_IP_GPTU_GPT_T5CON ((volatile u32*)(INCA_IP_GPTU+ 0x001C))
1182#define INCA_IP_GPTU_GPT_T5CON_T5SC (1 << 15)
1183#define INCA_IP_GPTU_GPT_T5CON_T5CLR (1 << 14)
1184#define INCA_IP_GPTU_GPT_T5CON_CI (value) (((( 1 << 2) - 1) & (value)) << 12)
1185#define INCA_IP_GPTU_GPT_T5CON_T5CC (1 << 11)
1186#define INCA_IP_GPTU_GPT_T5CON_CT3 (1 << 10)
1187#define INCA_IP_GPTU_GPT_T5CON_T5RC (1 << 9)
1188#define INCA_IP_GPTU_GPT_T5CON_T5UDE (1 << 8)
1189#define INCA_IP_GPTU_GPT_T5CON_T5UD (1 << 7)
1190#define INCA_IP_GPTU_GPT_T5CON_T5R (1 << 6)
1191#define INCA_IP_GPTU_GPT_T5CON_T5M (value) (((( 1 << 3) - 1) & (value)) << 3)
wdenk8bde7f72003-06-27 21:31:46 +00001192#define INCA_IP_GPTU_GPT_T5CON_T5I (value) (((( 1 << 3) - 1) & (value)) << 0)
1193
wdenkc0218802003-03-27 12:09:35 +00001194/***********************************************************************/
1195/* Module : IOM register address and bits */
1196/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001197
wdenk8bde7f72003-06-27 21:31:46 +00001198#define INCA_IP_IOM (0xBF105000)
1199/***********************************************************************/
1200
1201
1202/***Receive FIFO***/
wdenkc0218802003-03-27 12:09:35 +00001203#define INCA_IP_IOM_RFIFO ((volatile u32*)(INCA_IP_IOM+ 0x0000))
1204#define INCA_IP_IOM_RFIFO_RXD (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001205
1206/***Transmit FIFO***/
wdenkc0218802003-03-27 12:09:35 +00001207#define INCA_IP_IOM_XFIFO ((volatile u32*)(INCA_IP_IOM+ 0x0000))
1208#define INCA_IP_IOM_XFIFO_TXD (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001209
1210/***Interrupt Status Register HDLC***/
wdenkc0218802003-03-27 12:09:35 +00001211#define INCA_IP_IOM_ISTAH ((volatile u32*)(INCA_IP_IOM+ 0x0080))
1212#define INCA_IP_IOM_ISTAH_RME (1 << 7)
1213#define INCA_IP_IOM_ISTAH_RPF (1 << 6)
1214#define INCA_IP_IOM_ISTAH_RFO (1 << 5)
1215#define INCA_IP_IOM_ISTAH_XPR (1 << 4)
1216#define INCA_IP_IOM_ISTAH_XMR (1 << 3)
1217#define INCA_IP_IOM_ISTAH_XDU (1 << 2)
wdenk8bde7f72003-06-27 21:31:46 +00001218
1219/***Interrupt Mask Register HDLC***/
wdenkc0218802003-03-27 12:09:35 +00001220#define INCA_IP_IOM_MASKH ((volatile u32*)(INCA_IP_IOM+ 0x0080))
1221#define INCA_IP_IOM_MASKH_RME (1 << 7)
1222#define INCA_IP_IOM_MASKH_RPF (1 << 6)
1223#define INCA_IP_IOM_MASKH_RFO (1 << 5)
1224#define INCA_IP_IOM_MASKH_XPR (1 << 4)
1225#define INCA_IP_IOM_MASKH_XMR (1 << 3)
1226#define INCA_IP_IOM_MASKH_XDU (1 << 2)
wdenk8bde7f72003-06-27 21:31:46 +00001227
1228/***Status Register***/
wdenkc0218802003-03-27 12:09:35 +00001229#define INCA_IP_IOM_STAR ((volatile u32*)(INCA_IP_IOM+ 0x0084))
1230#define INCA_IP_IOM_STAR_XDOV (1 << 7)
1231#define INCA_IP_IOM_STAR_XFW (1 << 6)
1232#define INCA_IP_IOM_STAR_RACI (1 << 3)
1233#define INCA_IP_IOM_STAR_XACI (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +00001234
1235/***Command Register***/
wdenkc0218802003-03-27 12:09:35 +00001236#define INCA_IP_IOM_CMDR ((volatile u32*)(INCA_IP_IOM+ 0x0084))
1237#define INCA_IP_IOM_CMDR_RMC (1 << 7)
1238#define INCA_IP_IOM_CMDR_RRES (1 << 6)
1239#define INCA_IP_IOM_CMDR_XTF (1 << 3)
1240#define INCA_IP_IOM_CMDR_XME (1 << 1)
1241#define INCA_IP_IOM_CMDR_XRES (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001242
1243/***Mode Register***/
wdenkc0218802003-03-27 12:09:35 +00001244#define INCA_IP_IOM_MODEH ((volatile u32*)(INCA_IP_IOM+ 0x0088))
1245#define INCA_IP_IOM_MODEH_MDS2 (1 << 7)
1246#define INCA_IP_IOM_MODEH_MDS1 (1 << 6)
1247#define INCA_IP_IOM_MODEH_MDS0 (1 << 5)
1248#define INCA_IP_IOM_MODEH_RAC (1 << 3)
1249#define INCA_IP_IOM_MODEH_DIM2 (1 << 2)
1250#define INCA_IP_IOM_MODEH_DIM1 (1 << 1)
1251#define INCA_IP_IOM_MODEH_DIM0 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001252
1253/***Extended Mode Register***/
wdenkc0218802003-03-27 12:09:35 +00001254#define INCA_IP_IOM_EXMR ((volatile u32*)(INCA_IP_IOM+ 0x008C))
1255#define INCA_IP_IOM_EXMR_XFBS (1 << 7)
1256#define INCA_IP_IOM_EXMR_RFBS (value) (((( 1 << 2) - 1) & (value)) << 5)
1257#define INCA_IP_IOM_EXMR_SRA (1 << 4)
1258#define INCA_IP_IOM_EXMR_XCRC (1 << 3)
1259#define INCA_IP_IOM_EXMR_RCRC (1 << 2)
1260#define INCA_IP_IOM_EXMR_ITF (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001261
1262/***SAPI1 Register***/
wdenkc0218802003-03-27 12:09:35 +00001263#define INCA_IP_IOM_SAP1 ((volatile u32*)(INCA_IP_IOM+ 0x0094))
1264#define INCA_IP_IOM_SAP1_SAPI1 (value) (((( 1 << 6) - 1) & (value)) << 2)
1265#define INCA_IP_IOM_SAP1_MHA (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001266
1267/***Receive Frame Byte Count Low***/
wdenkc0218802003-03-27 12:09:35 +00001268#define INCA_IP_IOM_RBCL ((volatile u32*)(INCA_IP_IOM+ 0x0098))
1269#define INCA_IP_IOM_RBCL_RBC(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001270
1271
1272/***SAPI2 Register***/
wdenkc0218802003-03-27 12:09:35 +00001273#define INCA_IP_IOM_SAP2 ((volatile u32*)(INCA_IP_IOM+ 0x0098))
1274#define INCA_IP_IOM_SAP2_SAPI2 (value) (((( 1 << 6) - 1) & (value)) << 2)
1275#define INCA_IP_IOM_SAP2_MLA (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001276
1277/***Receive Frame Byte Count High***/
wdenkc0218802003-03-27 12:09:35 +00001278#define INCA_IP_IOM_RBCH ((volatile u32*)(INCA_IP_IOM+ 0x009C))
1279#define INCA_IP_IOM_RBCH_OV (1 << 4)
1280#define INCA_IP_IOM_RBCH_RBC11 (1 << 3)
1281#define INCA_IP_IOM_RBCH_RBC10 (1 << 2)
1282#define INCA_IP_IOM_RBCH_RBC9 (1 << 1)
1283#define INCA_IP_IOM_RBCH_RBC8 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001284
1285/***TEI1 Register 1***/
wdenkc0218802003-03-27 12:09:35 +00001286#define INCA_IP_IOM_TEI1 ((volatile u32*)(INCA_IP_IOM+ 0x009C))
1287#define INCA_IP_IOM_TEI1_TEI1 (value) (((( 1 << 7) - 1) & (value)) << 1)
1288#define INCA_IP_IOM_TEI1_EA (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001289
1290/***Receive Status Register***/
wdenkc0218802003-03-27 12:09:35 +00001291#define INCA_IP_IOM_RSTA ((volatile u32*)(INCA_IP_IOM+ 0x00A0))
1292#define INCA_IP_IOM_RSTA_VFR (1 << 7)
1293#define INCA_IP_IOM_RSTA_RDO (1 << 6)
1294#define INCA_IP_IOM_RSTA_CRC (1 << 5)
1295#define INCA_IP_IOM_RSTA_RAB (1 << 4)
1296#define INCA_IP_IOM_RSTA_SA1 (1 << 3)
1297#define INCA_IP_IOM_RSTA_SA0 (1 << 2)
1298#define INCA_IP_IOM_RSTA_TA (1 << 0)
1299#define INCA_IP_IOM_RSTA_CR (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +00001300
1301/***TEI2 Register***/
wdenkc0218802003-03-27 12:09:35 +00001302#define INCA_IP_IOM_TEI2 ((volatile u32*)(INCA_IP_IOM+ 0x00A0))
1303#define INCA_IP_IOM_TEI2_TEI2 (value) (((( 1 << 7) - 1) & (value)) << 1)
1304#define INCA_IP_IOM_TEI2_EA (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001305
1306/***Test Mode Register HDLC***/
wdenkc0218802003-03-27 12:09:35 +00001307#define INCA_IP_IOM_TMH ((volatile u32*)(INCA_IP_IOM+ 0x00A4))
1308#define INCA_IP_IOM_TMH_TLP (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001309
1310/***Command/Indication Receive 0***/
wdenkc0218802003-03-27 12:09:35 +00001311#define INCA_IP_IOM_CIR0 ((volatile u32*)(INCA_IP_IOM+ 0x00B8))
1312#define INCA_IP_IOM_CIR0_CODR0 (value) (((( 1 << 4) - 1) & (value)) << 4)
1313#define INCA_IP_IOM_CIR0_CIC0 (1 << 3)
1314#define INCA_IP_IOM_CIR0_CIC1 (1 << 2)
1315#define INCA_IP_IOM_CIR0_SG (1 << 1)
1316#define INCA_IP_IOM_CIR0_BAS (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001317
1318/***Command/Indication Transmit 0***/
wdenkc0218802003-03-27 12:09:35 +00001319#define INCA_IP_IOM_CIX0 ((volatile u32*)(INCA_IP_IOM+ 0x00B8))
1320#define INCA_IP_IOM_CIX0_CODX0 (value) (((( 1 << 4) - 1) & (value)) << 4)
1321#define INCA_IP_IOM_CIX0_TBA2 (1 << 3)
1322#define INCA_IP_IOM_CIX0_TBA1 (1 << 2)
1323#define INCA_IP_IOM_CIX0_TBA0 (1 << 1)
1324#define INCA_IP_IOM_CIX0_BAC (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001325
1326/***Command/Indication Receive 1***/
wdenkc0218802003-03-27 12:09:35 +00001327#define INCA_IP_IOM_CIR1 ((volatile u32*)(INCA_IP_IOM+ 0x00BC))
1328#define INCA_IP_IOM_CIR1_CODR1 (value) (((( 1 << 6) - 1) & (value)) << 2)
wdenk8bde7f72003-06-27 21:31:46 +00001329
1330/***Command/Indication Transmit 1***/
wdenkc0218802003-03-27 12:09:35 +00001331#define INCA_IP_IOM_CIX1 ((volatile u32*)(INCA_IP_IOM+ 0x00BC))
1332#define INCA_IP_IOM_CIX1_CODX1 (value) (((( 1 << 6) - 1) & (value)) << 2)
1333#define INCA_IP_IOM_CIX1_CICW (1 << 1)
1334#define INCA_IP_IOM_CIX1_CI1E (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001335
1336/***Controller Data Access Reg. (CH10)***/
wdenkc0218802003-03-27 12:09:35 +00001337#define INCA_IP_IOM_CDA10 ((volatile u32*)(INCA_IP_IOM+ 0x0100))
1338#define INCA_IP_IOM_CDA10_CDA (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001339
1340/***Controller Data Access Reg. (CH11)***/
wdenkc0218802003-03-27 12:09:35 +00001341#define INCA_IP_IOM_CDA11 ((volatile u32*)(INCA_IP_IOM+ 0x0104))
1342#define INCA_IP_IOM_CDA11_CDA (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001343
1344/***Controller Data Access Reg. (CH20)***/
wdenkc0218802003-03-27 12:09:35 +00001345#define INCA_IP_IOM_CDA20 ((volatile u32*)(INCA_IP_IOM+ 0x0108))
1346#define INCA_IP_IOM_CDA20_CDA (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001347
1348/***Controller Data Access Reg. (CH21)***/
wdenkc0218802003-03-27 12:09:35 +00001349#define INCA_IP_IOM_CDA21 ((volatile u32*)(INCA_IP_IOM+ 0x010C))
1350#define INCA_IP_IOM_CDA21_CDA (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001351
1352/***Time Slot and Data Port Sel. (CH10)***/
wdenkc0218802003-03-27 12:09:35 +00001353#define INCA_IP_IOM_CDA_TSDP10 ((volatile u32*)(INCA_IP_IOM+ 0x0110))
1354#define INCA_IP_IOM_CDA_TSDP10_DPS (1 << 7)
1355#define INCA_IP_IOM_CDA_TSDP10_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001356
1357/***Time Slot and Data Port Sel. (CH11)***/
wdenkc0218802003-03-27 12:09:35 +00001358#define INCA_IP_IOM_CDA_TSDP11 ((volatile u32*)(INCA_IP_IOM+ 0x0114))
1359#define INCA_IP_IOM_CDA_TSDP11_DPS (1 << 7)
1360#define INCA_IP_IOM_CDA_TSDP11_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001361
1362/***Time Slot and Data Port Sel. (CH20)***/
wdenkc0218802003-03-27 12:09:35 +00001363#define INCA_IP_IOM_CDA_TSDP20 ((volatile u32*)(INCA_IP_IOM+ 0x0118))
1364#define INCA_IP_IOM_CDA_TSDP20_DPS (1 << 7)
1365#define INCA_IP_IOM_CDA_TSDP20_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001366
1367/***Time Slot and Data Port Sel. (CH21)***/
wdenkc0218802003-03-27 12:09:35 +00001368#define INCA_IP_IOM_CDA_TSDP21 ((volatile u32*)(INCA_IP_IOM+ 0x011C))
1369#define INCA_IP_IOM_CDA_TSDP21_DPS (1 << 7)
1370#define INCA_IP_IOM_CDA_TSDP21_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001371
1372/***Time Slot and Data Port Sel. (CH10)***/
wdenkc0218802003-03-27 12:09:35 +00001373#define INCA_IP_IOM_CO_TSDP10 ((volatile u32*)(INCA_IP_IOM+ 0x0120))
1374#define INCA_IP_IOM_CO_TSDP10_DPS (1 << 7)
1375#define INCA_IP_IOM_CO_TSDP10_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001376
1377/***Time Slot and Data Port Sel. (CH11)***/
wdenkc0218802003-03-27 12:09:35 +00001378#define INCA_IP_IOM_CO_TSDP11 ((volatile u32*)(INCA_IP_IOM+ 0x0124))
1379#define INCA_IP_IOM_CO_TSDP11_DPS (1 << 7)
1380#define INCA_IP_IOM_CO_TSDP11_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001381
1382/***Time Slot and Data Port Sel. (CH20)***/
wdenkc0218802003-03-27 12:09:35 +00001383#define INCA_IP_IOM_CO_TSDP20 ((volatile u32*)(INCA_IP_IOM+ 0x0128))
1384#define INCA_IP_IOM_CO_TSDP20_DPS (1 << 7)
1385#define INCA_IP_IOM_CO_TSDP20_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001386
1387/***Time Slot and Data Port Sel. (CH21)***/
wdenkc0218802003-03-27 12:09:35 +00001388#define INCA_IP_IOM_CO_TSDP21 ((volatile u32*)(INCA_IP_IOM+ 0x012C))
1389#define INCA_IP_IOM_CO_TSDP21_DPS (1 << 7)
1390#define INCA_IP_IOM_CO_TSDP21_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001391
1392/***Ctrl. Reg. Contr. Data Access CH1x***/
wdenkc0218802003-03-27 12:09:35 +00001393#define INCA_IP_IOM_CDA1_CR ((volatile u32*)(INCA_IP_IOM+ 0x0138))
1394#define INCA_IP_IOM_CDA1_CR_EN_TBM (1 << 5)
1395#define INCA_IP_IOM_CDA1_CR_EN_I1 (1 << 4)
1396#define INCA_IP_IOM_CDA1_CR_EN_I0 (1 << 3)
1397#define INCA_IP_IOM_CDA1_CR_EN_O1 (1 << 2)
1398#define INCA_IP_IOM_CDA1_CR_EN_O0 (1 << 1)
1399#define INCA_IP_IOM_CDA1_CR_SWAP (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001400
1401/***Ctrl. Reg. Contr. Data Access CH1x***/
wdenkc0218802003-03-27 12:09:35 +00001402#define INCA_IP_IOM_CDA2_CR ((volatile u32*)(INCA_IP_IOM+ 0x013C))
1403#define INCA_IP_IOM_CDA2_CR_EN_TBM (1 << 5)
1404#define INCA_IP_IOM_CDA2_CR_EN_I1 (1 << 4)
1405#define INCA_IP_IOM_CDA2_CR_EN_I0 (1 << 3)
1406#define INCA_IP_IOM_CDA2_CR_EN_O1 (1 << 2)
1407#define INCA_IP_IOM_CDA2_CR_EN_O0 (1 << 1)
1408#define INCA_IP_IOM_CDA2_CR_SWAP (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001409
1410/***Control Register B-Channel Data***/
wdenkc0218802003-03-27 12:09:35 +00001411#define INCA_IP_IOM_BCHA_CR ((volatile u32*)(INCA_IP_IOM+ 0x0144))
1412#define INCA_IP_IOM_BCHA_CR_EN_BC2 (1 << 4)
1413#define INCA_IP_IOM_BCHA_CR_EN_BC1 (1 << 3)
wdenk8bde7f72003-06-27 21:31:46 +00001414
1415/***Control Register B-Channel Data***/
wdenkc0218802003-03-27 12:09:35 +00001416#define INCA_IP_IOM_BCHB_CR ((volatile u32*)(INCA_IP_IOM+ 0x0148))
1417#define INCA_IP_IOM_BCHB_CR_EN_BC2 (1 << 4)
1418#define INCA_IP_IOM_BCHB_CR_EN_BC1 (1 << 3)
wdenk8bde7f72003-06-27 21:31:46 +00001419
1420/***Control Reg. for HDLC and CI1 Data***/
wdenkc0218802003-03-27 12:09:35 +00001421#define INCA_IP_IOM_DCI_CR ((volatile u32*)(INCA_IP_IOM+ 0x014C))
1422#define INCA_IP_IOM_DCI_CR_DPS_CI1 (1 << 7)
1423#define INCA_IP_IOM_DCI_CR_EN_CI1 (1 << 6)
1424#define INCA_IP_IOM_DCI_CR_EN_D (1 << 5)
wdenk8bde7f72003-06-27 21:31:46 +00001425
1426/***Control Reg. for HDLC and CI1 Data***/
wdenkc0218802003-03-27 12:09:35 +00001427#define INCA_IP_IOM_DCIC_CR ((volatile u32*)(INCA_IP_IOM+ 0x014C))
1428#define INCA_IP_IOM_DCIC_CR_DPS_CI0 (1 << 7)
1429#define INCA_IP_IOM_DCIC_CR_EN_CI0 (1 << 6)
1430#define INCA_IP_IOM_DCIC_CR_DPS_D (1 << 5)
wdenk8bde7f72003-06-27 21:31:46 +00001431
1432/***Control Reg. Serial Data Strobe x***/
wdenkc0218802003-03-27 12:09:35 +00001433#define INCA_IP_IOM_SDS_CR ((volatile u32*)(INCA_IP_IOM+ 0x0154))
1434#define INCA_IP_IOM_SDS_CR_ENS_TSS (1 << 7)
1435#define INCA_IP_IOM_SDS_CR_ENS_TSS_1 (1 << 6)
1436#define INCA_IP_IOM_SDS_CR_ENS_TSS_3 (1 << 5)
1437#define INCA_IP_IOM_SDS_CR_TSS (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001438
1439/***Control Register IOM Data***/
wdenkc0218802003-03-27 12:09:35 +00001440#define INCA_IP_IOM_IOM_CR ((volatile u32*)(INCA_IP_IOM+ 0x015C))
1441#define INCA_IP_IOM_IOM_CR_SPU (1 << 7)
1442#define INCA_IP_IOM_IOM_CR_CI_CS (1 << 5)
1443#define INCA_IP_IOM_IOM_CR_TIC_DIS (1 << 4)
1444#define INCA_IP_IOM_IOM_CR_EN_BCL (1 << 3)
1445#define INCA_IP_IOM_IOM_CR_CLKM (1 << 2)
1446#define INCA_IP_IOM_IOM_CR_Res (1 << 1)
1447#define INCA_IP_IOM_IOM_CR_DIS_IOM (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001448
1449/***Synchronous Transfer Interrupt***/
wdenkc0218802003-03-27 12:09:35 +00001450#define INCA_IP_IOM_STI ((volatile u32*)(INCA_IP_IOM+ 0x0160))
1451#define INCA_IP_IOM_STI_STOV21 (1 << 7)
1452#define INCA_IP_IOM_STI_STOV20 (1 << 6)
1453#define INCA_IP_IOM_STI_STOV11 (1 << 5)
1454#define INCA_IP_IOM_STI_STOV10 (1 << 4)
1455#define INCA_IP_IOM_STI_STI21 (1 << 3)
1456#define INCA_IP_IOM_STI_STI20 (1 << 2)
1457#define INCA_IP_IOM_STI_STI11 (1 << 1)
1458#define INCA_IP_IOM_STI_STI10 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001459
1460/***Acknowledge Synchronous Transfer Interrupt***/
wdenkc0218802003-03-27 12:09:35 +00001461#define INCA_IP_IOM_ASTI ((volatile u32*)(INCA_IP_IOM+ 0x0160))
1462#define INCA_IP_IOM_ASTI_ACK21 (1 << 3)
1463#define INCA_IP_IOM_ASTI_ACK20 (1 << 2)
1464#define INCA_IP_IOM_ASTI_ACK11 (1 << 1)
1465#define INCA_IP_IOM_ASTI_ACK10 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001466
1467/***Mask Synchronous Transfer Interrupt***/
wdenkc0218802003-03-27 12:09:35 +00001468#define INCA_IP_IOM_MSTI ((volatile u32*)(INCA_IP_IOM+ 0x0164))
1469#define INCA_IP_IOM_MSTI_STOV21 (1 << 7)
1470#define INCA_IP_IOM_MSTI_STOV20 (1 << 6)
1471#define INCA_IP_IOM_MSTI_STOV11 (1 << 5)
1472#define INCA_IP_IOM_MSTI_STOV10 (1 << 4)
1473#define INCA_IP_IOM_MSTI_STI21 (1 << 3)
1474#define INCA_IP_IOM_MSTI_STI20 (1 << 2)
1475#define INCA_IP_IOM_MSTI_STI11 (1 << 1)
1476#define INCA_IP_IOM_MSTI_STI10 (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001477
1478/***Configuration Register for Serial Data Strobes***/
wdenkc0218802003-03-27 12:09:35 +00001479#define INCA_IP_IOM_SDS_CONF ((volatile u32*)(INCA_IP_IOM+ 0x0168))
1480#define INCA_IP_IOM_SDS_CONF_SDS_BCL (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001481
1482/***Monitoring CDA Bits***/
wdenkc0218802003-03-27 12:09:35 +00001483#define INCA_IP_IOM_MCDA ((volatile u32*)(INCA_IP_IOM+ 0x016C))
1484#define INCA_IP_IOM_MCDA_MCDA21 (value) (((( 1 << 2) - 1) & (value)) << 6)
1485#define INCA_IP_IOM_MCDA_MCDA20 (value) (((( 1 << 2) - 1) & (value)) << 4)
1486#define INCA_IP_IOM_MCDA_MCDA11 (value) (((( 1 << 2) - 1) & (value)) << 2)
wdenk8bde7f72003-06-27 21:31:46 +00001487#define INCA_IP_IOM_MCDA_MCDA10 (value) (((( 1 << 2) - 1) & (value)) << 0)
1488
wdenkc0218802003-03-27 12:09:35 +00001489/***********************************************************************/
1490/* Module : ASC register address and bits */
1491/***********************************************************************/
wdenk8bde7f72003-06-27 21:31:46 +00001492
wdenkc0218802003-03-27 12:09:35 +00001493#define INCA_IP_ASC (0xB8000400)
wdenk8bde7f72003-06-27 21:31:46 +00001494/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001495
wdenk8bde7f72003-06-27 21:31:46 +00001496
1497/***ASC Port Input Select Register***/
wdenkc0218802003-03-27 12:09:35 +00001498#define INCA_IP_ASC_ASC_PISEL ((volatile u32*)(INCA_IP_ASC+ 0x0004))
1499#define INCA_IP_ASC_ASC_PISEL_RIS (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001500
1501/***ASC Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001502#define INCA_IP_ASC_ASC_CON ((volatile u32*)(INCA_IP_ASC+ 0x0010))
1503#define INCA_IP_ASC_ASC_CON_R (1 << 15)
1504#define INCA_IP_ASC_ASC_CON_LB (1 << 14)
1505#define INCA_IP_ASC_ASC_CON_BRS (1 << 13)
1506#define INCA_IP_ASC_ASC_CON_ODD (1 << 12)
1507#define INCA_IP_ASC_ASC_CON_FDE (1 << 11)
1508#define INCA_IP_ASC_ASC_CON_OE (1 << 10)
1509#define INCA_IP_ASC_ASC_CON_FE (1 << 9)
1510#define INCA_IP_ASC_ASC_CON_PE (1 << 8)
1511#define INCA_IP_ASC_ASC_CON_OEN (1 << 7)
1512#define INCA_IP_ASC_ASC_CON_FEN (1 << 6)
1513#define INCA_IP_ASC_ASC_CON_PENRXDI (1 << 5)
1514#define INCA_IP_ASC_ASC_CON_REN (1 << 4)
1515#define INCA_IP_ASC_ASC_CON_STP (1 << 3)
1516#define INCA_IP_ASC_ASC_CON_M (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001517
1518/***ASC Write Hardware Modified Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001519#define INCA_IP_ASC_ASC_WHBCON ((volatile u32*)(INCA_IP_ASC+ 0x0050))
1520#define INCA_IP_ASC_ASC_WHBCON_SETOE (1 << 13)
1521#define INCA_IP_ASC_ASC_WHBCON_SETFE (1 << 12)
1522#define INCA_IP_ASC_ASC_WHBCON_SETPE (1 << 11)
1523#define INCA_IP_ASC_ASC_WHBCON_CLROE (1 << 10)
1524#define INCA_IP_ASC_ASC_WHBCON_CLRFE (1 << 9)
1525#define INCA_IP_ASC_ASC_WHBCON_CLRPE (1 << 8)
1526#define INCA_IP_ASC_ASC_WHBCON_SETREN (1 << 5)
1527#define INCA_IP_ASC_ASC_WHBCON_CLRREN (1 << 4)
wdenk8bde7f72003-06-27 21:31:46 +00001528
1529/***ASC Baudrate Timer/Reload Register***/
wdenkc0218802003-03-27 12:09:35 +00001530#define INCA_IP_ASC_ASC_BTR ((volatile u32*)(INCA_IP_ASC+ 0x0014))
1531#define INCA_IP_ASC_ASC_BTR_BR_VALUE (value) (((( 1 << 13) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001532
1533/***ASC Fractional Divider Register***/
wdenkc0218802003-03-27 12:09:35 +00001534#define INCA_IP_ASC_ASC_FDV ((volatile u32*)(INCA_IP_ASC+ 0x0018))
1535#define INCA_IP_ASC_ASC_FDV_FD_VALUE (value) (((( 1 << 9) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001536
1537/***ASC IrDA Pulse Mode/Width Register***/
wdenkc0218802003-03-27 12:09:35 +00001538#define INCA_IP_ASC_ASC_PMW ((volatile u32*)(INCA_IP_ASC+ 0x001C))
1539#define INCA_IP_ASC_ASC_PMW_IRPW (1 << 8)
1540#define INCA_IP_ASC_ASC_PMW_PW_VALUE (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001541
1542/***ASC Transmit Buffer Register***/
wdenkc0218802003-03-27 12:09:35 +00001543#define INCA_IP_ASC_ASC_TBUF ((volatile u32*)(INCA_IP_ASC+ 0x0020))
1544#define INCA_IP_ASC_ASC_TBUF_TD_VALUE (value) (((( 1 << 9) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001545
1546/***ASC Receive Buffer Register***/
wdenkc0218802003-03-27 12:09:35 +00001547#define INCA_IP_ASC_ASC_RBUF ((volatile u32*)(INCA_IP_ASC+ 0x0024))
1548#define INCA_IP_ASC_ASC_RBUF_RD_VALUE (value) (((( 1 << 9) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001549
1550/***ASC Autobaud Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001551#define INCA_IP_ASC_ASC_ABCON ((volatile u32*)(INCA_IP_ASC+ 0x0030))
1552#define INCA_IP_ASC_ASC_ABCON_RXINV (1 << 11)
1553#define INCA_IP_ASC_ASC_ABCON_TXINV (1 << 10)
1554#define INCA_IP_ASC_ASC_ABCON_ABEM (value) (((( 1 << 2) - 1) & (value)) << 8)
1555#define INCA_IP_ASC_ASC_ABCON_FCDETEN (1 << 4)
1556#define INCA_IP_ASC_ASC_ABCON_ABDETEN (1 << 3)
1557#define INCA_IP_ASC_ASC_ABCON_ABSTEN (1 << 2)
1558#define INCA_IP_ASC_ASC_ABCON_AUREN (1 << 1)
1559#define INCA_IP_ASC_ASC_ABCON_ABEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001560
1561/***Receive FIFO Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001562#define INCA_IP_ASC_RXFCON ((volatile u32*)(INCA_IP_ASC+ 0x0040))
1563#define INCA_IP_ASC_RXFCON_RXFITL (value) (((( 1 << 6) - 1) & (value)) << 8)
1564#define INCA_IP_ASC_RXFCON_RXTMEN (1 << 2)
1565#define INCA_IP_ASC_RXFCON_RXFFLU (1 << 1)
1566#define INCA_IP_ASC_RXFCON_RXFEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001567
1568/***Transmit FIFO Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001569#define INCA_IP_ASC_TXFCON ((volatile u32*)(INCA_IP_ASC+ 0x0044))
1570#define INCA_IP_ASC_TXFCON_TXFITL (value) (((( 1 << 6) - 1) & (value)) << 8)
1571#define INCA_IP_ASC_TXFCON_TXTMEN (1 << 2)
1572#define INCA_IP_ASC_TXFCON_TXFFLU (1 << 1)
1573#define INCA_IP_ASC_TXFCON_TXFEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001574
1575/***FIFO Status Register***/
wdenkc0218802003-03-27 12:09:35 +00001576#define INCA_IP_ASC_FSTAT ((volatile u32*)(INCA_IP_ASC+ 0x0048))
1577#define INCA_IP_ASC_FSTAT_TXFFL (value) (((( 1 << 6) - 1) & (value)) << 8)
1578#define INCA_IP_ASC_FSTAT_RXFFL (value) (((( 1 << 6) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001579
1580/***ASC Write HW Modified Autobaud Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001581#define INCA_IP_ASC_ASC_WHBABCON ((volatile u32*)(INCA_IP_ASC+ 0x0054))
1582#define INCA_IP_ASC_ASC_WHBABCON_SETABEN (1 << 1)
1583#define INCA_IP_ASC_ASC_WHBABCON_CLRABEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001584
1585/***ASC Autobaud Status Register***/
wdenkc0218802003-03-27 12:09:35 +00001586#define INCA_IP_ASC_ASC_ABSTAT ((volatile u32*)(INCA_IP_ASC+ 0x0034))
1587#define INCA_IP_ASC_ASC_ABSTAT_DETWAIT (1 << 4)
1588#define INCA_IP_ASC_ASC_ABSTAT_SCCDET (1 << 3)
1589#define INCA_IP_ASC_ASC_ABSTAT_SCSDET (1 << 2)
1590#define INCA_IP_ASC_ASC_ABSTAT_FCCDET (1 << 1)
1591#define INCA_IP_ASC_ASC_ABSTAT_FCSDET (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001592
1593/***ASC Write HW Modified Autobaud Status Register***/
wdenkc0218802003-03-27 12:09:35 +00001594#define INCA_IP_ASC_ASC_WHBABSTAT ((volatile u32*)(INCA_IP_ASC+ 0x0058))
1595#define INCA_IP_ASC_ASC_WHBABSTAT_SETDETWAIT (1 << 9)
1596#define INCA_IP_ASC_ASC_WHBABSTAT_CLRDETWAIT (1 << 8)
1597#define INCA_IP_ASC_ASC_WHBABSTAT_SETSCCDET (1 << 7)
1598#define INCA_IP_ASC_ASC_WHBABSTAT_CLRSCCDET (1 << 6)
1599#define INCA_IP_ASC_ASC_WHBABSTAT_SETSCSDET (1 << 5)
1600#define INCA_IP_ASC_ASC_WHBABSTAT_CLRSCSDET (1 << 4)
1601#define INCA_IP_ASC_ASC_WHBABSTAT_SETFCCDET (1 << 3)
1602#define INCA_IP_ASC_ASC_WHBABSTAT_CLRFCCDET (1 << 2)
1603#define INCA_IP_ASC_ASC_WHBABSTAT_SETFCSDET (1 << 1)
1604#define INCA_IP_ASC_ASC_WHBABSTAT_CLRFCSDET (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001605
1606/***ASC Clock Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001607#define INCA_IP_ASC_ASC_CLC ((volatile u32*)(INCA_IP_ASC+ 0x0000))
1608#define INCA_IP_ASC_ASC_CLC_RMC (value) (((( 1 << 8) - 1) & (value)) << 8)
1609#define INCA_IP_ASC_ASC_CLC_DISS (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +00001610#define INCA_IP_ASC_ASC_CLC_DISR (1 << 0)
1611
wdenkc0218802003-03-27 12:09:35 +00001612/***********************************************************************/
1613/* Module : DMA register address and bits */
1614/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001615
wdenk8bde7f72003-06-27 21:31:46 +00001616#define INCA_IP_DMA (0xBF108000)
1617/***********************************************************************/
1618
1619
1620/***DMA RX Channel 0 Command Register***/
wdenkc0218802003-03-27 12:09:35 +00001621#define INCA_IP_DMA_DMA_RXCCR0 ((volatile u32*)(INCA_IP_DMA+ 0x0800))
1622#define INCA_IP_DMA_DMA_RXCCR0_LBE (1 << 31)
1623#define INCA_IP_DMA_DMA_RXCCR0_HPEN (1 << 30)
1624#define INCA_IP_DMA_DMA_RXCCR0_INIT (1 << 2)
1625#define INCA_IP_DMA_DMA_RXCCR0_OFF (1 << 1)
1626#define INCA_IP_DMA_DMA_RXCCR0_HR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001627
1628/***DMA RX Channel 1 Command Register***/
wdenkc0218802003-03-27 12:09:35 +00001629#define INCA_IP_DMA_DMA_RXCCR1 ((volatile u32*)(INCA_IP_DMA+ 0x0804))
1630#define INCA_IP_DMA_DMA_RXCCR1_LBE (1 << 31)
1631#define INCA_IP_DMA_DMA_RXCCR1_HPEN (1 << 30)
1632#define INCA_IP_DMA_DMA_RXCCR1_INIT (1 << 2)
1633#define INCA_IP_DMA_DMA_RXCCR1_OFF (1 << 1)
1634#define INCA_IP_DMA_DMA_RXCCR1_HR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001635
1636/***DMA Receive Interrupt Status Register***/
wdenkc0218802003-03-27 12:09:35 +00001637#define INCA_IP_DMA_DMA_RXISR ((volatile u32*)(INCA_IP_DMA+ 0x0808))
1638#define INCA_IP_DMA_DMA_RXISR_RDERRx (value) (((( 1 << 2) - 1) & (value)) << 8)
1639#define INCA_IP_DMA_DMA_RXISR_CMDCPTx (value) (((( 1 << 2) - 1) & (value)) << 6)
1640#define INCA_IP_DMA_DMA_RXISR_EOPx (value) (((( 1 << 2) - 1) & (value)) << 4)
1641#define INCA_IP_DMA_DMA_RXISR_CPTx (value) (((( 1 << 2) - 1) & (value)) << 2)
1642#define INCA_IP_DMA_DMA_RXISR_HLDx (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001643
1644/***DMA Receive Interrupt Mask Register***/
wdenkc0218802003-03-27 12:09:35 +00001645#define INCA_IP_DMA_DMA_RXIMR ((volatile u32*)(INCA_IP_DMA+ 0x080C))
1646#define INCA_IP_DMA_DMA_RXIMR_RDERRx (value) (((( 1 << 2) - 1) & (value)) << 8)
1647#define INCA_IP_DMA_DMA_RXIMR_CMDCPTx (value) (((( 1 << 2) - 1) & (value)) << 6)
1648#define INCA_IP_DMA_DMA_RXIMR_EOPx (value) (((( 1 << 2) - 1) & (value)) << 4)
1649#define INCA_IP_DMA_DMA_RXIMR_CPTx (value) (((( 1 << 2) - 1) & (value)) << 2)
1650#define INCA_IP_DMA_DMA_RXIMR_HLDx (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001651
wdenkc0218802003-03-27 12:09:35 +00001652/***DMA First Receive Descriptor Addr. for Rx Channel 0
1653***/
1654#define INCA_IP_DMA_DMA_RXFRDA0 ((volatile u32*)(INCA_IP_DMA+ 0x0810))
1655#define INCA_IP_DMA_DMA_RXFRDA0_RXFRDA (value) (((( 1 << 28) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001656
wdenkc0218802003-03-27 12:09:35 +00001657/***DMA First Receive Descriptor Addr. for Rx Channel 1
1658***/
1659#define INCA_IP_DMA_DMA_RXFRDA1 ((volatile u32*)(INCA_IP_DMA+ 0x0814))
1660#define INCA_IP_DMA_DMA_RXFRDA1_RXFRDA (value) (((( 1 << 28) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001661
1662/***DMA Receive Channel Polling Time***/
wdenkc0218802003-03-27 12:09:35 +00001663#define INCA_IP_DMA_DMA_RXPOLL ((volatile u32*)(INCA_IP_DMA+ 0x0818))
1664#define INCA_IP_DMA_DMA_RXPOLL_BSZ1 (value) (((( 1 << 2) - 1) & (value)) << 30)
1665#define INCA_IP_DMA_DMA_RXPOLL_BSZ0 (value) (((( 1 << 2) - 1) & (value)) << 28)
1666#define INCA_IP_DMA_DMA_RXPOLL_RXPOLLTIME (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001667
1668/***DMA TX Channel 0 Command Register (Voice Port)***/
wdenkc0218802003-03-27 12:09:35 +00001669#define INCA_IP_DMA_DMA_TXCCR0 ((volatile u32*)(INCA_IP_DMA+ 0x0880))
1670#define INCA_IP_DMA_DMA_TXCCR0_LBE (1 << 31)
1671#define INCA_IP_DMA_DMA_TXCCR0_HPEN (1 << 30)
1672#define INCA_IP_DMA_DMA_TXCCR0_HR (1 << 2)
1673#define INCA_IP_DMA_DMA_TXCCR0_OFF (1 << 1)
1674#define INCA_IP_DMA_DMA_TXCCR0_INIT (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001675
1676/***DMA TX Channel 1 Command Register (Mangmt Port)***/
wdenkc0218802003-03-27 12:09:35 +00001677#define INCA_IP_DMA_DMA_TXCCR1 ((volatile u32*)(INCA_IP_DMA+ 0x0884))
1678#define INCA_IP_DMA_DMA_TXCCR1_LBE (1 << 31)
1679#define INCA_IP_DMA_DMA_TXCCR1_HPEN (1 << 30)
1680#define INCA_IP_DMA_DMA_TXCCR1_HR (1 << 2)
1681#define INCA_IP_DMA_DMA_TXCCR1_OFF (1 << 1)
1682#define INCA_IP_DMA_DMA_TXCCR1_INIT (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001683
1684/***DMA TX Channel 2 Command Register (SSC Port)***/
wdenkc0218802003-03-27 12:09:35 +00001685#define INCA_IP_DMA_DMA_TXCCR2 ((volatile u32*)(INCA_IP_DMA+ 0x0888))
1686#define INCA_IP_DMA_DMA_TXCCR2_LBE (1 << 31)
1687#define INCA_IP_DMA_DMA_TXCCR2_HPEN (1 << 30)
1688#define INCA_IP_DMA_DMA_TXCCR2_HBF (1 << 29)
1689#define INCA_IP_DMA_DMA_TXCCR2_HR (1 << 2)
1690#define INCA_IP_DMA_DMA_TXCCR2_OFF (1 << 1)
1691#define INCA_IP_DMA_DMA_TXCCR2_INIT (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001692
wdenkc0218802003-03-27 12:09:35 +00001693/***DMA First Receive Descriptor Addr. for Tx Channel 0
1694***/
1695#define INCA_IP_DMA_DMA_TXFRDA0 ((volatile u32*)(INCA_IP_DMA+ 0x08A0))
1696#define INCA_IP_DMA_DMA_TXFRDA0_TXFRDA (value) (((( 1 << 28) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001697
wdenkc0218802003-03-27 12:09:35 +00001698/***DMA First Receive Descriptor Addr. for Tx Channel 1
1699***/
1700#define INCA_IP_DMA_DMA_TXFRDA1 ((volatile u32*)(INCA_IP_DMA+ 0x08A4))
1701#define INCA_IP_DMA_DMA_TXFRDA1_TXFRDA (value) (((( 1 << 28) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001702
wdenkc0218802003-03-27 12:09:35 +00001703/***DMA First Receive Descriptor Addr. for Tx Channel 2
1704***/
1705#define INCA_IP_DMA_DMA_TXFRDA2 ((volatile u32*)(INCA_IP_DMA+ 0x08A8))
1706#define INCA_IP_DMA_DMA_TXFRDA2_TXFRDA (value) (((( 1 << 28) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001707
1708/***DMA Transmit Channel Arbitration Register***/
wdenkc0218802003-03-27 12:09:35 +00001709#define INCA_IP_DMA_DMA_TXWGT ((volatile u32*)(INCA_IP_DMA+ 0x08C0))
1710#define INCA_IP_DMA_DMA_TXWGT_TX2PR (value) (((( 1 << 2) - 1) & (value)) << 4)
1711#define INCA_IP_DMA_DMA_TXWGT_TX1PRI (value) (((( 1 << 2) - 1) & (value)) << 2)
1712#define INCA_IP_DMA_DMA_TXWGT_TX0PRI (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001713
1714/***DMA Transmit Channel Polling Time***/
wdenkc0218802003-03-27 12:09:35 +00001715#define INCA_IP_DMA_DMA_TXPOLL ((volatile u32*)(INCA_IP_DMA+ 0x08C4))
1716#define INCA_IP_DMA_DMA_TXPOLL_BSZ2 (value) (((( 1 << 2) - 1) & (value)) << 30)
1717#define INCA_IP_DMA_DMA_TXPOLL_BSZ1 (value) (((( 1 << 2) - 1) & (value)) << 28)
1718#define INCA_IP_DMA_DMA_TXPOLL_BSZ0 (value) (((( 1 << 2) - 1) & (value)) << 26)
1719#define INCA_IP_DMA_DMA_TXPOLL_TXPOLLTIME (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001720
1721/***DMA Transmit Interrupt Status Register***/
wdenkc0218802003-03-27 12:09:35 +00001722#define INCA_IP_DMA_DMA_TXISR ((volatile u32*)(INCA_IP_DMA+ 0x08C8))
1723#define INCA_IP_DMA_DMA_TXISR_RDERRx (value) (((( 1 << 3) - 1) & (value)) << 12)
1724#define INCA_IP_DMA_DMA_TXISR_HLDx (value) (((( 1 << 3) - 1) & (value)) << 9)
1725#define INCA_IP_DMA_DMA_TXISR_CPTx (value) (((( 1 << 3) - 1) & (value)) << 6)
1726#define INCA_IP_DMA_DMA_TXISR_EOPx (value) (((( 1 << 3) - 1) & (value)) << 3)
1727#define INCA_IP_DMA_DMA_TXISR_CMDCPTx (value) (((( 1 << 3) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001728
1729/***DMA Transmit Interrupt Mask Register***/
wdenkc0218802003-03-27 12:09:35 +00001730#define INCA_IP_DMA_DMA_TXIMR ((volatile u32*)(INCA_IP_DMA+ 0x08CC))
1731#define INCA_IP_DMA_DMA_TXIMR_RDERRx (value) (((( 1 << 3) - 1) & (value)) << 12)
1732#define INCA_IP_DMA_DMA_TXIMR_HLDx (value) (((( 1 << 3) - 1) & (value)) << 9)
1733#define INCA_IP_DMA_DMA_TXIMR_CPTx (value) (((( 1 << 3) - 1) & (value)) << 6)
1734#define INCA_IP_DMA_DMA_TXIMR_EOPx (value) (((( 1 << 3) - 1) & (value)) << 3)
wdenk8bde7f72003-06-27 21:31:46 +00001735#define INCA_IP_DMA_DMA_TXIMR_CMDCPTx (value) (((( 1 << 3) - 1) & (value)) << 0)
1736
wdenkc0218802003-03-27 12:09:35 +00001737/***********************************************************************/
1738/* Module : Debug register address and bits */
1739/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001740
wdenk8bde7f72003-06-27 21:31:46 +00001741#define INCA_IP_Debug (0xBF106000)
1742/***********************************************************************/
1743
1744
1745/***MCD Break Bus Switch Register***/
wdenkc0218802003-03-27 12:09:35 +00001746#define INCA_IP_Debug_MCD_BBS ((volatile u32*)(INCA_IP_Debug+ 0x0000))
1747#define INCA_IP_Debug_MCD_BBS_BTP1 (1 << 19)
1748#define INCA_IP_Debug_MCD_BBS_BTP0 (1 << 18)
1749#define INCA_IP_Debug_MCD_BBS_BSP1 (1 << 17)
1750#define INCA_IP_Debug_MCD_BBS_BSP0 (1 << 16)
1751#define INCA_IP_Debug_MCD_BBS_BT5EN (1 << 15)
1752#define INCA_IP_Debug_MCD_BBS_BT4EN (1 << 14)
1753#define INCA_IP_Debug_MCD_BBS_BT5 (1 << 13)
1754#define INCA_IP_Debug_MCD_BBS_BT4 (1 << 12)
1755#define INCA_IP_Debug_MCD_BBS_BS5EN (1 << 7)
1756#define INCA_IP_Debug_MCD_BBS_BS4EN (1 << 6)
1757#define INCA_IP_Debug_MCD_BBS_BS5 (1 << 5)
1758#define INCA_IP_Debug_MCD_BBS_BS4 (1 << 4)
wdenk8bde7f72003-06-27 21:31:46 +00001759
1760/***MCD Multiplexer Control Register***/
wdenkc0218802003-03-27 12:09:35 +00001761#define INCA_IP_Debug_MCD_MCR ((volatile u32*)(INCA_IP_Debug+ 0x0008))
1762#define INCA_IP_Debug_MCD_MCR_MUX5 (1 << 4)
1763#define INCA_IP_Debug_MCD_MCR_MUX4 (1 << 3)
wdenk8bde7f72003-06-27 21:31:46 +00001764#define INCA_IP_Debug_MCD_MCR_MUX1 (1 << 0)
1765
wdenkc0218802003-03-27 12:09:35 +00001766/***********************************************************************/
1767/* Module : TSF register address and bits */
1768/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001769
wdenk8bde7f72003-06-27 21:31:46 +00001770#define INCA_IP_TSF (0xB8000900)
1771/***********************************************************************/
1772
1773
1774/***TSF Configuration Register (0000H)***/
wdenkc0218802003-03-27 12:09:35 +00001775#define INCA_IP_TSF_TSF_CONF ((volatile u32*)(INCA_IP_TSF+ 0x0000))
1776#define INCA_IP_TSF_TSF_CONF_PWMEN (1 << 2)
1777#define INCA_IP_TSF_TSF_CONF_LEDEN (1 << 1)
1778#define INCA_IP_TSF_TSF_CONF_KEYEN (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001779
1780/***Key scan Configuration Register (0004H)***/
wdenkc0218802003-03-27 12:09:35 +00001781#define INCA_IP_TSF_KEY_CONF ((volatile u32*)(INCA_IP_TSF+ 0x0004))
1782#define INCA_IP_TSF_KEY_CONF_SL (value) (((( 1 << 4) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001783
1784/***Scan Register Line 0 and 1 (0008H)***/
wdenkc0218802003-03-27 12:09:35 +00001785#define INCA_IP_TSF_SREG01 ((volatile u32*)(INCA_IP_TSF+ 0x0008))
1786#define INCA_IP_TSF_SREG01_RES1x (value) (((( 1 << 12) - 1) & (value)) << 16)
1787#define INCA_IP_TSF_SREG01_RES0x (value) (((( 1 << 13) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001788
1789/***Scan Register Line 2 and 3 (000CH)***/
wdenkc0218802003-03-27 12:09:35 +00001790#define INCA_IP_TSF_SREG23 ((volatile u32*)(INCA_IP_TSF+ 0x000C))
1791#define INCA_IP_TSF_SREG23_RES3x (value) (((( 1 << 10) - 1) & (value)) << 16)
1792#define INCA_IP_TSF_SREG23_RES2x (value) (((( 1 << 11) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001793
1794/***Scan Register Line 4, 5 and 6 (0010H)***/
wdenkc0218802003-03-27 12:09:35 +00001795#define INCA_IP_TSF_SREG456 ((volatile u32*)(INCA_IP_TSF+ 0x0010))
1796#define INCA_IP_TSF_SREG456_RES6x (value) (((( 1 << 7) - 1) & (value)) << 24)
1797#define INCA_IP_TSF_SREG456_RES5x (value) (((( 1 << 8) - 1) & (value)) << 16)
1798#define INCA_IP_TSF_SREG456_RES4x (value) (((( 1 << 9) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001799
1800/***Scan Register Line 7 to 12 (0014H)***/
wdenkc0218802003-03-27 12:09:35 +00001801#define INCA_IP_TSF_SREG7to12 ((volatile u32*)(INCA_IP_TSF+ 0x0014))
1802#define INCA_IP_TSF_SREG7to12_RES12x (1 << 28)
1803#define INCA_IP_TSF_SREG7to12_RES11x (value) (((( 1 << 2) - 1) & (value)) << 24)
1804#define INCA_IP_TSF_SREG7to12_RES10x (value) (((( 1 << 3) - 1) & (value)) << 20)
1805#define INCA_IP_TSF_SREG7to12_RES9x (value) (((( 1 << 4) - 1) & (value)) << 16)
1806#define INCA_IP_TSF_SREG7to12_RES8x (value) (((( 1 << 5) - 1) & (value)) << 8)
1807#define INCA_IP_TSF_SREG7to12_RES7x (value) (((( 1 << 6) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001808
1809/***LEDMUX Configuration Register (0018H)***/
wdenkc0218802003-03-27 12:09:35 +00001810#define INCA_IP_TSF_LEDMUX_CONF ((volatile u32*)(INCA_IP_TSF+ 0x0018))
1811#define INCA_IP_TSF_LEDMUX_CONF_ETL1 (1 << 25)
1812#define INCA_IP_TSF_LEDMUX_CONF_ESTA1 (1 << 24)
1813#define INCA_IP_TSF_LEDMUX_CONF_EDPX1 (1 << 23)
1814#define INCA_IP_TSF_LEDMUX_CONF_EACT1 (1 << 22)
1815#define INCA_IP_TSF_LEDMUX_CONF_ESPD1 (1 << 21)
1816#define INCA_IP_TSF_LEDMUX_CONF_ETL0 (1 << 20)
1817#define INCA_IP_TSF_LEDMUX_CONF_ESTA0 (1 << 19)
1818#define INCA_IP_TSF_LEDMUX_CONF_EDPX0 (1 << 18)
1819#define INCA_IP_TSF_LEDMUX_CONF_EACT0 (1 << 17)
1820#define INCA_IP_TSF_LEDMUX_CONF_ESPD0 (1 << 16)
1821#define INCA_IP_TSF_LEDMUX_CONF_INV (1 << 1)
1822#define INCA_IP_TSF_LEDMUX_CONF_NCOL (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001823
1824/***LED Register (001CH)***/
wdenkc0218802003-03-27 12:09:35 +00001825#define INCA_IP_TSF_LED_REG ((volatile u32*)(INCA_IP_TSF+ 0x001C))
1826#define INCA_IP_TSF_LED_REG_Lxy (value) (((( 1 << 24) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001827
1828/***Pulse Width Modulator 1 and 2 Register (0020H)***/
wdenkc0218802003-03-27 12:09:35 +00001829#define INCA_IP_TSF_PWM12 ((volatile u32*)(INCA_IP_TSF+ 0x0020))
wdenk8bde7f72003-06-27 21:31:46 +00001830#define INCA_IP_TSF_PWM12_PW2PW1 (value) (((( 1 << NaN) - 1) & (value)) << NaN)
1831
wdenkc0218802003-03-27 12:09:35 +00001832/***********************************************************************/
1833/* Module : Ports register address and bits */
1834/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001835
wdenk8bde7f72003-06-27 21:31:46 +00001836#define INCA_IP_Ports (0xB8000A00)
1837/***********************************************************************/
1838
1839
1840/***Port 1 Data Output Register (0020H)***/
wdenkc0218802003-03-27 12:09:35 +00001841#define INCA_IP_Ports_P1_OUT ((volatile u32*)(INCA_IP_Ports+ 0x0020))
1842#define INCA_IP_Ports_P1_OUT_P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001843
1844
1845/***Port 2 Data Output Register (0040H)***/
wdenkc0218802003-03-27 12:09:35 +00001846#define INCA_IP_Ports_P2_OUT ((volatile u32*)(INCA_IP_Ports+ 0x0040))
1847#define INCA_IP_Ports_P2_OUT_P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001848
1849
1850/***Port 1 Data Input Register (0024H)***/
wdenkc0218802003-03-27 12:09:35 +00001851#define INCA_IP_Ports_P1_IN ((volatile u32*)(INCA_IP_Ports+ 0x0024))
1852#define INCA_IP_Ports_P1_IN_P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001853
1854
1855/***Port 2 Data Input Register (0044H)***/
wdenkc0218802003-03-27 12:09:35 +00001856#define INCA_IP_Ports_P2_IN ((volatile u32*)(INCA_IP_Ports+ 0x0044))
1857#define INCA_IP_Ports_P2_IN_P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001858
1859
1860/***Port 1 Direction Register (0028H)***/
wdenkc0218802003-03-27 12:09:35 +00001861#define INCA_IP_Ports_P1_DIR ((volatile u32*)(INCA_IP_Ports+ 0x0028))
1862#define INCA_IP_Ports_P1_DIR_Port1P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001863
wdenkc0218802003-03-27 12:09:35 +00001864#define INCA_IP_Ports_P1_DIR_Port2Pn (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001865
1866/***Port 2 Direction Register (0048H)***/
wdenkc0218802003-03-27 12:09:35 +00001867#define INCA_IP_Ports_P2_DIR ((volatile u32*)(INCA_IP_Ports+ 0x0048))
1868#define INCA_IP_Ports_P2_DIR_Port1P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001869
wdenkc0218802003-03-27 12:09:35 +00001870#define INCA_IP_Ports_P2_DIR_Port2Pn (value) (((( 1 << 16) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00001871
wdenkc0218802003-03-27 12:09:35 +00001872/***Port 0 Alternate Function Select Register 0 (000C H)
1873***/
1874#define INCA_IP_Ports_P0_ALTSEL ((volatile u32*)(INCA_IP_Ports+ 0x000C))
1875#define INCA_IP_Ports_P0_ALTSEL_Port0P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001876
1877
wdenkc0218802003-03-27 12:09:35 +00001878/***Port 1 Alternate Function Select Register 0 (002C H)
1879***/
1880#define INCA_IP_Ports_P1_ALTSEL ((volatile u32*)(INCA_IP_Ports+ 0x002C))
1881#define INCA_IP_Ports_P1_ALTSEL_Port1P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001882
wdenkc0218802003-03-27 12:09:35 +00001883#define INCA_IP_Ports_P1_ALTSEL_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001884
1885
wdenkc0218802003-03-27 12:09:35 +00001886/***Port 2 Alternate Function Select Register 0 (004C H)
1887***/
1888#define INCA_IP_Ports_P2_ALTSEL ((volatile u32*)(INCA_IP_Ports+ 0x004C))
1889#define INCA_IP_Ports_P2_ALTSEL_Port1P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001890
wdenkc0218802003-03-27 12:09:35 +00001891#define INCA_IP_Ports_P2_ALTSEL_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001892
1893
wdenkc0218802003-03-27 12:09:35 +00001894/***Port 0 Input Schmitt-Trigger Off Register (0010 H)
1895***/
1896#define INCA_IP_Ports_P0_STOFF ((volatile u32*)(INCA_IP_Ports+ 0x0010))
1897#define INCA_IP_Ports_P0_STOFF_Port0P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001898
1899
wdenkc0218802003-03-27 12:09:35 +00001900/***Port 1 Input Schmitt-Trigger Off Register (0030 H)
1901***/
1902#define INCA_IP_Ports_P1_STOFF ((volatile u32*)(INCA_IP_Ports+ 0x0030))
1903#define INCA_IP_Ports_P1_STOFF_Port1P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001904
wdenkc0218802003-03-27 12:09:35 +00001905#define INCA_IP_Ports_P1_STOFF_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001906
1907
wdenkc0218802003-03-27 12:09:35 +00001908/***Port 2 Input Schmitt-Trigger Off Register (0050 H)
1909***/
1910#define INCA_IP_Ports_P2_STOFF ((volatile u32*)(INCA_IP_Ports+ 0x0050))
1911#define INCA_IP_Ports_P2_STOFF_Port1P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001912
wdenkc0218802003-03-27 12:09:35 +00001913#define INCA_IP_Ports_P2_STOFF_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001914
1915
1916/***Port 2 Open Drain Control Register (0054H)***/
wdenkc0218802003-03-27 12:09:35 +00001917#define INCA_IP_Ports_P2_OD ((volatile u32*)(INCA_IP_Ports+ 0x0054))
1918#define INCA_IP_Ports_P2_OD_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001919
1920
1921/***Port 0 Pull Up Device Enable Register (0018 H)***/
wdenkc0218802003-03-27 12:09:35 +00001922#define INCA_IP_Ports_P0_PUDEN ((volatile u32*)(INCA_IP_Ports+ 0x0018))
1923#define INCA_IP_Ports_P0_PUDEN_Port0P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001924
1925
1926/***Port 2 Pull Up Device Enable Register (0058 H)***/
wdenkc0218802003-03-27 12:09:35 +00001927#define INCA_IP_Ports_P2_PUDEN ((volatile u32*)(INCA_IP_Ports+ 0x0058))
1928#define INCA_IP_Ports_P2_PUDEN_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001929
wdenkc0218802003-03-27 12:09:35 +00001930#define INCA_IP_Ports_P2_PUDEN_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001931
1932
1933/***Port 0 Pull Up/Pull Down Select Register (001C H)***/
wdenkc0218802003-03-27 12:09:35 +00001934#define INCA_IP_Ports_P0_PUDSEL ((volatile u32*)(INCA_IP_Ports+ 0x001C))
1935#define INCA_IP_Ports_P0_PUDSEL_Port0P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001936
1937
1938/***Port 2 Pull Up/Pull Down Select Register (005C H)***/
wdenkc0218802003-03-27 12:09:35 +00001939#define INCA_IP_Ports_P2_PUDSEL ((volatile u32*)(INCA_IP_Ports+ 0x005C))
1940#define INCA_IP_Ports_P2_PUDSEL_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001941
wdenkc0218802003-03-27 12:09:35 +00001942#define INCA_IP_Ports_P2_PUDSEL_Port2P(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001943
1944
wdenkc0218802003-03-27 12:09:35 +00001945/***********************************************************************/
1946/* Module : DES/3DES register address and bits */
1947/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00001948
wdenk8bde7f72003-06-27 21:31:46 +00001949#define INCA_IP_DES_3DES (0xB8000800)
1950/***********************************************************************/
1951
1952
1953/***DES Input Data High Register***/
wdenkc0218802003-03-27 12:09:35 +00001954#define INCA_IP_DES_3DES_DES_IHR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0000))
1955#define INCA_IP_DES_3DES_DES_IHR_IH(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001956
1957
1958/***DES Input Data Low Register***/
wdenkc0218802003-03-27 12:09:35 +00001959#define INCA_IP_DES_3DES_DES_ILR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0004))
1960#define INCA_IP_DES_3DES_DES_ILR_IL(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001961
1962
1963/***DES Key #1 High Register***/
wdenkc0218802003-03-27 12:09:35 +00001964#define INCA_IP_DES_3DES_DES_K1HR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0008))
1965#define INCA_IP_DES_3DES_DES_K1HR_K1H(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001966
1967
1968/***DES Key #1 Low Register***/
wdenkc0218802003-03-27 12:09:35 +00001969#define INCA_IP_DES_3DES_DES_K1LR ((volatile u32*)(INCA_IP_DES_3DES+ 0x000C))
1970#define INCA_IP_DES_3DES_DES_K1LR_K1L(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001971
1972
1973/***DES Key #2 High Register***/
wdenkc0218802003-03-27 12:09:35 +00001974#define INCA_IP_DES_3DES_DES_K2HR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0010))
1975#define INCA_IP_DES_3DES_DES_K2HR_K2H(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001976
1977
1978/***DES Key #2 Low Register***/
wdenkc0218802003-03-27 12:09:35 +00001979#define INCA_IP_DES_3DES_DES_K2LR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0014))
1980#define INCA_IP_DES_3DES_DES_K2LR_K2L(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001981
1982
1983/***DES Key #3 High Register***/
wdenkc0218802003-03-27 12:09:35 +00001984#define INCA_IP_DES_3DES_DES_K3HR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0018))
1985#define INCA_IP_DES_3DES_DES_K3HR_K3H(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001986
1987
1988/***DES Key #3 Low Register***/
wdenkc0218802003-03-27 12:09:35 +00001989#define INCA_IP_DES_3DES_DES_K3LR ((volatile u32*)(INCA_IP_DES_3DES+ 0x001C))
1990#define INCA_IP_DES_3DES_DES_K3LR_K3L(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001991
1992
1993/***DES Initialization Vector High Register***/
wdenkc0218802003-03-27 12:09:35 +00001994#define INCA_IP_DES_3DES_DES_IVHR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0020))
1995#define INCA_IP_DES_3DES_DES_IVHR_IVH(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00001996
1997
1998/***DES Initialization Vector Low Register***/
wdenkc0218802003-03-27 12:09:35 +00001999#define INCA_IP_DES_3DES_DES_IVLR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0024))
2000#define INCA_IP_DES_3DES_DES_IVLR_IVL(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002001
2002
2003/***DES Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002004#define INCA_IP_DES_3DES_DES_CONTROLR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0028))
2005#define INCA_IP_DES_3DES_DES_CONTROLR_KRE (1 << 31)
2006#define INCA_IP_DES_3DES_DES_CONTROLR_DAU (1 << 16)
2007#define INCA_IP_DES_3DES_DES_CONTROLR_F(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002008
wdenkc0218802003-03-27 12:09:35 +00002009#define INCA_IP_DES_3DES_DES_CONTROLR_O(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002010
wdenkc0218802003-03-27 12:09:35 +00002011#define INCA_IP_DES_3DES_DES_CONTROLR_GO (1 << 8)
2012#define INCA_IP_DES_3DES_DES_CONTROLR_STP (1 << 7)
2013#define INCA_IP_DES_3DES_DES_CONTROLR_IEN (1 << 6)
2014#define INCA_IP_DES_3DES_DES_CONTROLR_BUS (1 << 5)
2015#define INCA_IP_DES_3DES_DES_CONTROLR_SM (1 << 4)
2016#define INCA_IP_DES_3DES_DES_CONTROLR_E_D (1 << 3)
2017#define INCA_IP_DES_3DES_DES_CONTROLR_M(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002018
2019
2020/***DES Output Data High Register***/
wdenkc0218802003-03-27 12:09:35 +00002021#define INCA_IP_DES_3DES_DES_OHR ((volatile u32*)(INCA_IP_DES_3DES+ 0x002C))
2022#define INCA_IP_DES_3DES_DES_OHR_OH(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002023
2024
2025/***DES Output Data Low Register***/
wdenkc0218802003-03-27 12:09:35 +00002026#define INCA_IP_DES_3DES_DES_OLR ((volatile u32*)(INCA_IP_DES_3DES+ 0x0030))
2027#define INCA_IP_DES_3DES_DES_OLR_OL(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002028
2029
wdenkc0218802003-03-27 12:09:35 +00002030/***********************************************************************/
2031/* Module : AES register address and bits */
2032/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00002033
wdenk8bde7f72003-06-27 21:31:46 +00002034#define INCA_IP_AES (0xB8000880)
2035/***********************************************************************/
2036
2037
2038/***AES Input Data 3 Register***/
wdenkc0218802003-03-27 12:09:35 +00002039#define INCA_IP_AES_AES_ID3R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2040#define INCA_IP_AES_AES_ID3R_I(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002041
2042
2043/***AES Input Data 2 Register***/
wdenkc0218802003-03-27 12:09:35 +00002044#define INCA_IP_AES_AES_ID2R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2045#define INCA_IP_AES_AES_ID2R_I(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002046
2047
2048/***AES Input Data 1 Register***/
wdenkc0218802003-03-27 12:09:35 +00002049#define INCA_IP_AES_AES_ID1R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2050#define INCA_IP_AES_AES_ID1R_I(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002051
2052
2053/***AES Input Data 0 Register***/
wdenkc0218802003-03-27 12:09:35 +00002054#define INCA_IP_AES_AES_ID0R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2055#define INCA_IP_AES_AES_ID0R_I(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002056
2057
2058/***AES Output Data 3 Register***/
wdenkc0218802003-03-27 12:09:35 +00002059#define INCA_IP_AES_AES_OD3R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2060#define INCA_IP_AES_AES_OD3R_O(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002061
2062
2063/***AES Output Data 2 Register***/
wdenkc0218802003-03-27 12:09:35 +00002064#define INCA_IP_AES_AES_OD2R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2065#define INCA_IP_AES_AES_OD2R_O(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002066
2067
2068/***AES Output Data 1 Register***/
wdenkc0218802003-03-27 12:09:35 +00002069#define INCA_IP_AES_AES_OD1R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2070#define INCA_IP_AES_AES_OD1R_O(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002071
2072
2073/***AES Output Data 0 Register***/
wdenkc0218802003-03-27 12:09:35 +00002074#define INCA_IP_AES_AES_OD0R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2075#define INCA_IP_AES_AES_OD0R_O(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002076
2077
2078/***AES Key 7 Register***/
wdenkc0218802003-03-27 12:09:35 +00002079#define INCA_IP_AES_AES_K7R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2080#define INCA_IP_AES_AES_K7R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002081
2082
2083/***AES Key 6 Register***/
wdenkc0218802003-03-27 12:09:35 +00002084#define INCA_IP_AES_AES_K6R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2085#define INCA_IP_AES_AES_K6R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002086
2087
2088/***AES Key 5 Register***/
wdenkc0218802003-03-27 12:09:35 +00002089#define INCA_IP_AES_AES_K5R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2090#define INCA_IP_AES_AES_K5R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002091
2092
2093/***AES Key 4 Register***/
wdenkc0218802003-03-27 12:09:35 +00002094#define INCA_IP_AES_AES_K4R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2095#define INCA_IP_AES_AES_K4R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002096
2097
2098/***AES Key 3 Register***/
wdenkc0218802003-03-27 12:09:35 +00002099#define INCA_IP_AES_AES_K3R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2100#define INCA_IP_AES_AES_K3R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002101
2102
2103/***AES Key 2 Register***/
wdenkc0218802003-03-27 12:09:35 +00002104#define INCA_IP_AES_AES_K2R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2105#define INCA_IP_AES_AES_K2R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002106
2107
2108/***AES Key 1 Register***/
wdenkc0218802003-03-27 12:09:35 +00002109#define INCA_IP_AES_AES_K1R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2110#define INCA_IP_AES_AES_K1R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002111
2112
2113/***AES Key 0 Register***/
wdenkc0218802003-03-27 12:09:35 +00002114#define INCA_IP_AES_AES_K0R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2115#define INCA_IP_AES_AES_K0R_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002116
2117
2118/***AES Initialization Vector 3 Register***/
wdenkc0218802003-03-27 12:09:35 +00002119#define INCA_IP_AES_AES_IV3R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2120#define INCA_IP_AES_AES_IV3R_IV(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002121
2122
2123/***AES Initialization Vector 2 Register***/
wdenkc0218802003-03-27 12:09:35 +00002124#define INCA_IP_AES_AES_IV2R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2125#define INCA_IP_AES_AES_IV2R_IV(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002126
2127
2128/***AES Initialization Vector 1 Register***/
wdenkc0218802003-03-27 12:09:35 +00002129#define INCA_IP_AES_AES_IV1R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2130#define INCA_IP_AES_AES_IV1R_IV(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002131
2132
2133/***AES Initialization Vector 0 Register***/
wdenkc0218802003-03-27 12:09:35 +00002134#define INCA_IP_AES_AES_IV0R ((volatile u32*)(INCA_IP_AES+ 0x0000))
2135#define INCA_IP_AES_AES_IV0R_IV (value) (((( 1 << 32) - 1) &(value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002136
2137/***AES Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002138#define INCA_IP_AES_AES_CONTROLR ((volatile u32*)(INCA_IP_AES+ 0x0000))
2139#define INCA_IP_AES_AES_CONTROLR_KRE (1 << 31)
2140#define INCA_IP_AES_AES_CONTROLR_DAU (1 << 16)
2141#define INCA_IP_AES_AES_CONTROLR_PNK (1 << 15)
2142#define INCA_IP_AES_AES_CONTROLR_F(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002143
wdenkc0218802003-03-27 12:09:35 +00002144#define INCA_IP_AES_AES_CONTROLR_O(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002145
wdenkc0218802003-03-27 12:09:35 +00002146#define INCA_IP_AES_AES_CONTROLR_GO (1 << 8)
2147#define INCA_IP_AES_AES_CONTROLR_STP (1 << 7)
2148#define INCA_IP_AES_AES_CONTROLR_IEN (1 << 6)
2149#define INCA_IP_AES_AES_CONTROLR_BUS (1 << 5)
2150#define INCA_IP_AES_AES_CONTROLR_SM (1 << 4)
2151#define INCA_IP_AES_AES_CONTROLR_E_D (1 << 3)
2152#define INCA_IP_AES_AES_CONTROLR_KV (1 << 2)
2153#define INCA_IP_AES_AES_CONTROLR_K(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002154
2155
wdenkc0218802003-03-27 12:09:35 +00002156/***********************************************************************/
2157/* Module : I²C register address and bits */
2158/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00002159
wdenk8bde7f72003-06-27 21:31:46 +00002160#define INCA_IP_IIC (0xB8000700)
2161/***********************************************************************/
2162
2163
2164/***I²C Port Input Select Register***/
wdenkc0218802003-03-27 12:09:35 +00002165#define INCA_IP_IIC_IIC_PISEL ((volatile u32*)(INCA_IP_IIC+ 0x0004))
2166#define INCA_IP_IIC_IIC_PISEL_SDAIS(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002167
wdenkc0218802003-03-27 12:09:35 +00002168#define INCA_IP_IIC_IIC_PISEL_SCLIS(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002169
2170
2171/***I²C Clock Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002172#define INCA_IP_IIC_IIC_CLC ((volatile u32*)(INCA_IP_IIC+ 0x0000))
2173#define INCA_IP_IIC_IIC_CLC_RMC (value) (((( 1 << 8) - 1) & (value)) << 8)
2174#define INCA_IP_IIC_IIC_CLC_DISS (1 << 1)
2175#define INCA_IP_IIC_IIC_CLC_DISR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002176
2177/***I²C System Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002178#define INCA_IP_IIC_IIC_SYSCON_0 ((volatile u32*)(INCA_IP_IIC+ 0x0010))
2179#define INCA_IP_IIC_IIC_SYSCON_0_WMEN (1 << 31)
2180#define INCA_IP_IIC_IIC_SYSCON_0_CI (value) (((( 1 << 2) - 1) & (value)) << 26)
2181#define INCA_IP_IIC_IIC_SYSCON_0_STP (1 << 25)
2182#define INCA_IP_IIC_IIC_SYSCON_0_IGE (1 << 24)
2183#define INCA_IP_IIC_IIC_SYSCON_0_TRX (1 << 23)
2184#define INCA_IP_IIC_IIC_SYSCON_0_INT (1 << 22)
2185#define INCA_IP_IIC_IIC_SYSCON_0_ACKDIS (1 << 21)
2186#define INCA_IP_IIC_IIC_SYSCON_0_BUM (1 << 20)
2187#define INCA_IP_IIC_IIC_SYSCON_0_MOD (value) (((( 1 << 2) - 1) & (value)) << 18)
2188#define INCA_IP_IIC_IIC_SYSCON_0_RSC (1 << 17)
2189#define INCA_IP_IIC_IIC_SYSCON_0_M10 (1 << 16)
2190#define INCA_IP_IIC_IIC_SYSCON_0_RMEN (1 << 15)
2191#define INCA_IP_IIC_IIC_SYSCON_0_CO (value) (((( 1 << 3) - 1) & (value)) << 8)
2192#define INCA_IP_IIC_IIC_SYSCON_0_IRQE (1 << 7)
2193#define INCA_IP_IIC_IIC_SYSCON_0_IRQP (1 << 6)
2194#define INCA_IP_IIC_IIC_SYSCON_0_IRQD (1 << 5)
2195#define INCA_IP_IIC_IIC_SYSCON_0_BB (1 << 4)
2196#define INCA_IP_IIC_IIC_SYSCON_0_LRB (1 << 3)
2197#define INCA_IP_IIC_IIC_SYSCON_0_SLA (1 << 2)
2198#define INCA_IP_IIC_IIC_SYSCON_0_AL (1 << 1)
2199#define INCA_IP_IIC_IIC_SYSCON_0_ADR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002200
2201/***I²C System Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002202#define INCA_IP_IIC_IIC_SYSCON_1 ((volatile u32*)(INCA_IP_IIC+ 0x0010))
2203#define INCA_IP_IIC_IIC_SYSCON_1_RM (value) (((( 1 << 8) - 1) & (value)) << 24)
2204#define INCA_IP_IIC_IIC_SYSCON_1_TRX (1 << 23)
2205#define INCA_IP_IIC_IIC_SYSCON_1_INT (1 << 22)
2206#define INCA_IP_IIC_IIC_SYSCON_1_ACKDIS (1 << 21)
2207#define INCA_IP_IIC_IIC_SYSCON_1_BUM (1 << 20)
2208#define INCA_IP_IIC_IIC_SYSCON_1_MOD (value) (((( 1 << 2) - 1) & (value)) << 18)
2209#define INCA_IP_IIC_IIC_SYSCON_1_RSC (1 << 17)
2210#define INCA_IP_IIC_IIC_SYSCON_1_M10 (1 << 16)
2211#define INCA_IP_IIC_IIC_SYSCON_1_RMEN (1 << 15)
2212#define INCA_IP_IIC_IIC_SYSCON_1_CO (value) (((( 1 << 3) - 1) & (value)) << 8)
2213#define INCA_IP_IIC_IIC_SYSCON_1_IRQE (1 << 7)
2214#define INCA_IP_IIC_IIC_SYSCON_1_IRQP (1 << 6)
2215#define INCA_IP_IIC_IIC_SYSCON_1_IRQD (1 << 5)
2216#define INCA_IP_IIC_IIC_SYSCON_1_BB (1 << 4)
2217#define INCA_IP_IIC_IIC_SYSCON_1_LRB (1 << 3)
2218#define INCA_IP_IIC_IIC_SYSCON_1_SLA (1 << 2)
2219#define INCA_IP_IIC_IIC_SYSCON_1_AL (1 << 1)
2220#define INCA_IP_IIC_IIC_SYSCON_1_ADR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002221
2222/***I²C System Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002223#define INCA_IP_IIC_IIC_SYSCON_2 ((volatile u32*)(INCA_IP_IIC+ 0x0010))
2224#define INCA_IP_IIC_IIC_SYSCON_2_WMEN (1 << 31)
2225#define INCA_IP_IIC_IIC_SYSCON_2_CI (value) (((( 1 << 2) - 1) & (value)) << 26)
2226#define INCA_IP_IIC_IIC_SYSCON_2_STP (1 << 25)
2227#define INCA_IP_IIC_IIC_SYSCON_2_IGE (1 << 24)
2228#define INCA_IP_IIC_IIC_SYSCON_2_TRX (1 << 23)
2229#define INCA_IP_IIC_IIC_SYSCON_2_INT (1 << 22)
2230#define INCA_IP_IIC_IIC_SYSCON_2_ACKDIS (1 << 21)
2231#define INCA_IP_IIC_IIC_SYSCON_2_BUM (1 << 20)
2232#define INCA_IP_IIC_IIC_SYSCON_2_MOD (value) (((( 1 << 2) - 1) & (value)) << 18)
2233#define INCA_IP_IIC_IIC_SYSCON_2_RSC (1 << 17)
2234#define INCA_IP_IIC_IIC_SYSCON_2_M10 (1 << 16)
2235#define INCA_IP_IIC_IIC_SYSCON_2_WM (value) (((( 1 << 8) - 1) & (value)) << 8)
2236#define INCA_IP_IIC_IIC_SYSCON_2_IRQE (1 << 7)
2237#define INCA_IP_IIC_IIC_SYSCON_2_IRQP (1 << 6)
2238#define INCA_IP_IIC_IIC_SYSCON_2_IRQD (1 << 5)
2239#define INCA_IP_IIC_IIC_SYSCON_2_BB (1 << 4)
2240#define INCA_IP_IIC_IIC_SYSCON_2_LRB (1 << 3)
2241#define INCA_IP_IIC_IIC_SYSCON_2_SLA (1 << 2)
2242#define INCA_IP_IIC_IIC_SYSCON_2_AL (1 << 1)
2243#define INCA_IP_IIC_IIC_SYSCON_2_ADR (1 << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002244
wdenkc0218802003-03-27 12:09:35 +00002245/***I²C Write Hardware Modified System Control Register
2246***/
2247#define INCA_IP_IIC_IIC_WHBSYSCON ((volatile u32*)(INCA_IP_IIC+ 0x0020))
2248#define INCA_IP_IIC_IIC_WHBSYSCON_CLRWMEN (1 << 31)
2249#define INCA_IP_IIC_IIC_WHBSYSCON_SETWMEN (1 << 30)
2250#define INCA_IP_IIC_IIC_WHBSYSCON_SETSTP (1 << 26)
2251#define INCA_IP_IIC_IIC_WHBSYSCON_CLRSTP (1 << 25)
2252#define INCA_IP_IIC_IIC_WHBSYSCON_SETTRX (1 << 24)
2253#define INCA_IP_IIC_IIC_WHBSYSCON_CLRTRX (1 << 23)
2254#define INCA_IP_IIC_IIC_WHBSYSCON_SETACKDIS (1 << 22)
2255#define INCA_IP_IIC_IIC_WHBSYSCON_CLRACKDIS (1 << 21)
2256#define INCA_IP_IIC_IIC_WHBSYSCON_SETBUM (1 << 20)
2257#define INCA_IP_IIC_IIC_WHBSYSCON_CLRBUM (1 << 19)
2258#define INCA_IP_IIC_IIC_WHBSYSCON_SETRSC (1 << 17)
2259#define INCA_IP_IIC_IIC_WHBSYSCON_CLRRSC (1 << 16)
2260#define INCA_IP_IIC_IIC_WHBSYSCON_SETRMEN (1 << 15)
2261#define INCA_IP_IIC_IIC_WHBSYSCON_CLRRMEN (1 << 14)
2262#define INCA_IP_IIC_IIC_WHBSYSCON_SETIRQE (1 << 10)
2263#define INCA_IP_IIC_IIC_WHBSYSCON_SETIRQP (1 << 9)
2264#define INCA_IP_IIC_IIC_WHBSYSCON_SETIRQD (1 << 8)
2265#define INCA_IP_IIC_IIC_WHBSYSCON_CLRIRQE (1 << 7)
2266#define INCA_IP_IIC_IIC_WHBSYSCON_CLRIRQP (1 << 6)
2267#define INCA_IP_IIC_IIC_WHBSYSCON_CLRIRQD (1 << 5)
2268#define INCA_IP_IIC_IIC_WHBSYSCON_SETAL (1 << 2)
2269#define INCA_IP_IIC_IIC_WHBSYSCON_CLRAL (1 << 1)
wdenk8bde7f72003-06-27 21:31:46 +00002270
2271/***I²C Bus Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002272#define INCA_IP_IIC_IIC_BUSCON_0 ((volatile u32*)(INCA_IP_IIC+ 0x0014))
2273#define INCA_IP_IIC_IIC_BUSCON_0_BRPMOD (1 << 31)
2274#define INCA_IP_IIC_IIC_BUSCON_0_PREDIV (value) (((( 1 << 2) - 1) & (value)) << 29)
2275#define INCA_IP_IIC_IIC_BUSCON_0_ICA9_0 (value) (((( 1 << 10) - 1) & (value)) << 16)
2276#define INCA_IP_IIC_IIC_BUSCON_0_BRP (value) (((( 1 << 8) - 1) & (value)) << 8)
2277#define INCA_IP_IIC_IIC_BUSCON_0_SCLEN(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002278
wdenkc0218802003-03-27 12:09:35 +00002279#define INCA_IP_IIC_IIC_BUSCON_0_SDAEN(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002280
2281
2282/***I²C Bus Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002283#define INCA_IP_IIC_IIC_BUSCON_1 ((volatile u32*)(INCA_IP_IIC+ 0x0014))
2284#define INCA_IP_IIC_IIC_BUSCON_1_BRPMOD (1 << 31)
2285#define INCA_IP_IIC_IIC_BUSCON_1_PREDIV (value) (((( 1 << 2) - 1) & (value)) << 29)
2286#define INCA_IP_IIC_IIC_BUSCON_1_ICA7_1 (value) (((( 1 << 7) - 1) & (value)) << 17)
2287#define INCA_IP_IIC_IIC_BUSCON_1_BRP (value) (((( 1 << 8) - 1) & (value)) << 8)
2288#define INCA_IP_IIC_IIC_BUSCON_1_SCLEN(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002289
wdenkc0218802003-03-27 12:09:35 +00002290#define INCA_IP_IIC_IIC_BUSCON_1_SDAEN(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002291
2292
2293/***I²C Receive Transmit Buffer***/
wdenkc0218802003-03-27 12:09:35 +00002294#define INCA_IP_IIC_IIC_RTB ((volatile u32*)(INCA_IP_IIC+ 0x0018))
2295#define INCA_IP_IIC_IIC_RTB_RTB(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002296
2297
wdenkc0218802003-03-27 12:09:35 +00002298/***********************************************************************/
2299/* Module : FB register address and bits */
2300/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00002301
wdenk8bde7f72003-06-27 21:31:46 +00002302#define INCA_IP_FB (0xBF880000)
2303/***********************************************************************/
2304
2305
2306/***FB Access Error Cause Register***/
wdenkc0218802003-03-27 12:09:35 +00002307#define INCA_IP_FB_FB_ERRCAUSE ((volatile u32*)(INCA_IP_FB+ 0x0100))
2308#define INCA_IP_FB_FB_ERRCAUSE_ERR (1 << 31)
2309#define INCA_IP_FB_FB_ERRCAUSE_PORT (value) (((( 1 << 4) - 1) & (value)) << 16)
2310#define INCA_IP_FB_FB_ERRCAUSE_CAUSE (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002311
2312/***FB Access Error Address Register***/
wdenkc0218802003-03-27 12:09:35 +00002313#define INCA_IP_FB_FB_ERRADDR ((volatile u32*)(INCA_IP_FB+ 0x0108))
2314#define INCA_IP_FB_FB_ERRADDR_ADDR
wdenk8bde7f72003-06-27 21:31:46 +00002315
2316/***FB Configuration Register***/
wdenkc0218802003-03-27 12:09:35 +00002317#define INCA_IP_FB_FB_CFG ((volatile u32*)(INCA_IP_FB+ 0x0800))
wdenk8bde7f72003-06-27 21:31:46 +00002318#define INCA_IP_FB_FB_CFG_SVM (1 << 0)
2319
wdenkc0218802003-03-27 12:09:35 +00002320/***********************************************************************/
2321/* Module : SRAM register address and bits */
2322/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00002323
wdenk8bde7f72003-06-27 21:31:46 +00002324#define INCA_IP_SRAM (0xBF980000)
2325/***********************************************************************/
2326
2327
2328/***SRAM Size Register***/
wdenkc0218802003-03-27 12:09:35 +00002329#define INCA_IP_SRAM_SRAM_SIZE ((volatile u32*)(INCA_IP_SRAM+ 0x0800))
wdenk8bde7f72003-06-27 21:31:46 +00002330#define INCA_IP_SRAM_SRAM_SIZE_SIZE (value) (((( 1 << 23) - 1) & (value)) << 0)
2331
wdenkc0218802003-03-27 12:09:35 +00002332/***********************************************************************/
2333/* Module : BIU register address and bits */
2334/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00002335
wdenk8bde7f72003-06-27 21:31:46 +00002336#define INCA_IP_BIU (0xBFA80000)
2337/***********************************************************************/
2338
2339
2340/***BIU Identification Register***/
wdenkc0218802003-03-27 12:09:35 +00002341#define INCA_IP_BIU_BIU_ID ((volatile u32*)(INCA_IP_BIU+ 0x0000))
2342#define INCA_IP_BIU_BIU_ID_ARCH (1 << 16)
2343#define INCA_IP_BIU_BIU_ID_ID (value) (((( 1 << 8) - 1) & (value)) << 8)
2344#define INCA_IP_BIU_BIU_ID_REV (value) (((( 1 << 8) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002345
2346/***BIU Access Error Cause Register***/
wdenkc0218802003-03-27 12:09:35 +00002347#define INCA_IP_BIU_BIU_ERRCAUSE ((volatile u32*)(INCA_IP_BIU+ 0x0100))
2348#define INCA_IP_BIU_BIU_ERRCAUSE_ERR (1 << 31)
2349#define INCA_IP_BIU_BIU_ERRCAUSE_PORT (value) (((( 1 << 4) - 1) & (value)) << 16)
2350#define INCA_IP_BIU_BIU_ERRCAUSE_CAUSE (value) (((( 1 << 2) - 1) & (value)) << 0)
wdenk8bde7f72003-06-27 21:31:46 +00002351
2352/***BIU Access Error Address Register***/
wdenkc0218802003-03-27 12:09:35 +00002353#define INCA_IP_BIU_BIU_ERRADDR ((volatile u32*)(INCA_IP_BIU+ 0x0108))
wdenk8bde7f72003-06-27 21:31:46 +00002354#define INCA_IP_BIU_BIU_ERRADDR_ADDR
2355
wdenkc0218802003-03-27 12:09:35 +00002356/***********************************************************************/
2357/* Module : ICU register address and bits */
2358/***********************************************************************/
wdenkc0218802003-03-27 12:09:35 +00002359
wdenk8bde7f72003-06-27 21:31:46 +00002360#define INCA_IP_ICU (0xBF101000)
2361/***********************************************************************/
2362
2363
2364/***IM0 Interrupt Status Register***/
wdenkc0218802003-03-27 12:09:35 +00002365#define INCA_IP_ICU_IM0_ISR ((volatile u32*)(INCA_IP_ICU+ 0x0000))
2366#define INCA_IP_ICU_IM0_ISR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002367
2368
2369/***IM1 Interrupt Status Register***/
wdenkc0218802003-03-27 12:09:35 +00002370#define INCA_IP_ICU_IM1_ISR ((volatile u32*)(INCA_IP_ICU+ 0x0200))
2371#define INCA_IP_ICU_IM1_ISR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002372
2373
2374/***IM2 Interrupt Status Register***/
wdenkc0218802003-03-27 12:09:35 +00002375#define INCA_IP_ICU_IM2_ISR ((volatile u32*)(INCA_IP_ICU+ 0x0400))
2376#define INCA_IP_ICU_IM2_ISR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002377
2378
2379/***IM0 Interrupt Enable Register***/
wdenkc0218802003-03-27 12:09:35 +00002380#define INCA_IP_ICU_IM0_IER ((volatile u32*)(INCA_IP_ICU+ 0x0008))
2381#define INCA_IP_ICU_IM0_IER_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002382
2383
2384/***IM1 Interrupt Enable Register***/
wdenkc0218802003-03-27 12:09:35 +00002385#define INCA_IP_ICU_IM1_IER ((volatile u32*)(INCA_IP_ICU+ 0x0208))
2386#define INCA_IP_ICU_IM1_IER_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002387
2388
2389/***IM2 Interrupt Enable Register***/
wdenkc0218802003-03-27 12:09:35 +00002390#define INCA_IP_ICU_IM2_IER ((volatile u32*)(INCA_IP_ICU+ 0x0408))
2391#define INCA_IP_ICU_IM2_IER_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002392
2393
2394/***IM0 Interrupt Output Status Register***/
wdenkc0218802003-03-27 12:09:35 +00002395#define INCA_IP_ICU_IM0_IOSR ((volatile u32*)(INCA_IP_ICU+ 0x0010))
2396#define INCA_IP_ICU_IM0_IOSR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002397
2398
2399/***IM1 Interrupt Output Status Register***/
wdenkc0218802003-03-27 12:09:35 +00002400#define INCA_IP_ICU_IM1_IOSR ((volatile u32*)(INCA_IP_ICU+ 0x0210))
2401#define INCA_IP_ICU_IM1_IOSR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002402
2403
2404/***IM2 Interrupt Output Status Register***/
wdenkc0218802003-03-27 12:09:35 +00002405#define INCA_IP_ICU_IM2_IOSR ((volatile u32*)(INCA_IP_ICU+ 0x0410))
2406#define INCA_IP_ICU_IM2_IOSR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002407
2408
2409/***IM0 Interrupt Request Set Register***/
wdenkc0218802003-03-27 12:09:35 +00002410#define INCA_IP_ICU_IM0_IRSR ((volatile u32*)(INCA_IP_ICU+ 0x0018))
2411#define INCA_IP_ICU_IM0_IRSR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002412
2413
2414/***IM1 Interrupt Request Set Register***/
wdenkc0218802003-03-27 12:09:35 +00002415#define INCA_IP_ICU_IM1_IRSR ((volatile u32*)(INCA_IP_ICU+ 0x0218))
2416#define INCA_IP_ICU_IM1_IRSR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002417
2418
2419/***IM2 Interrupt Request Set Register***/
wdenkc0218802003-03-27 12:09:35 +00002420#define INCA_IP_ICU_IM2_IRSR ((volatile u32*)(INCA_IP_ICU+ 0x0418))
2421#define INCA_IP_ICU_IM2_IRSR_IR(value) (1 << value)
wdenk8bde7f72003-06-27 21:31:46 +00002422
2423
2424/***External Interrupt Control Register***/
wdenkc0218802003-03-27 12:09:35 +00002425#define INCA_IP_ICU_ICU_EICR ((volatile u32*)(INCA_IP_ICU+ 0x0B00))
2426#define INCA_IP_ICU_ICU_EICR_EII5 (value) (((( 1 << 3) - 1) & (value)) << 20)
2427#define INCA_IP_ICU_ICU_EICR_EII4 (value) (((( 1 << 3) - 1) & (value)) << 16)
2428#define INCA_IP_ICU_ICU_EICR_EII3 (value) (((( 1 << 3) - 1) & (value)) << 12)
2429#define INCA_IP_ICU_ICU_EICR_EII2 (value) (((( 1 << 3) - 1) & (value)) << 8)
2430#define INCA_IP_ICU_ICU_EICR_EII1 (value) (((( 1 << 3) - 1) & (value)) << 4)
2431#define INCA_IP_ICU_ICU_EICR_EII0 (value) (((( 1 << 3) - 1) & (value)) << 0)