blob: 2b2693c32ffcfa02d1e7057634f1b9a9f0d01710 [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
2 * MPC8349 Internal Memory Map
3 * Copyright (c) 2004 Freescale Semiconductor.
4 * Eran Liberty (liberty@freescale.com)
Jon Loeligerde1d0a62005-08-01 13:20:47 -05005 *
Eran Libertyf046ccd2005-07-28 10:08:46 -05006 * based on:
7 * - MPC8260 Internal Memory Map
8 * Copyright (c) 1999 Dan Malek (dmalek@jlc.net)
9 * - MPC85xx Internal Memory Map
10 * Copyright(c) 2002,2003 Motorola Inc.
11 * Xianghua Xiao (x.xiao@motorola.com)
12 */
13#ifndef __IMMAP_8349__
14#define __IMMAP_8349__
15
16#include <asm/types.h>
17#include <asm/i2c.h>
18
Jon Loeligerde1d0a62005-08-01 13:20:47 -050019/*
Eran Libertyf046ccd2005-07-28 10:08:46 -050020 * Local Access Window.
21 */
22typedef struct law8349 {
23 u32 bar; /* LBIU local access window base address register */
Jon Loeligerde1d0a62005-08-01 13:20:47 -050024/* Identifies the 20 most-significant address bits of the base of local
25 * access window n. The specified base address should be aligned to the
26 * window size, as defined by LBLAWARn[SIZE].
27 */
28#define LAWBAR_BAR 0xFFFFF000
Eran Libertyf046ccd2005-07-28 10:08:46 -050029#define LAWBAR_RES ~(LAWBAR_BAR)
30 u32 ar; /* LBIU local access window attribute register */
Eran Libertyf046ccd2005-07-28 10:08:46 -050031} law8349_t;
32
Jon Loeligerde1d0a62005-08-01 13:20:47 -050033/*
Eran Libertyf046ccd2005-07-28 10:08:46 -050034 * System configuration registers.
35 */
36typedef struct sysconf8349 {
37 u32 immrbar; /* Internal memory map base address register */
38 u8 res0[0x04];
39 u32 altcbar; /* Alternate configuration base address register */
Jon Loeligerde1d0a62005-08-01 13:20:47 -050040/* Identifies the12 most significant address bits of an alternate base
41 * address used for boot sequencer configuration accesses.
42 */
43#define ALTCBAR_BASE_ADDR 0xFFF00000
Eran Libertyf046ccd2005-07-28 10:08:46 -050044#define ALTCBAR_RES ~(ALTCBAR_BASE_ADDR) /* Reserved. Write has no effect, read returns 0. */
45 u8 res1[0x14];
46 law8349_t lblaw[4]; /* LBIU local access window */
47 u8 res2[0x20];
48 law8349_t pcilaw[2]; /* PCI local access window */
49 u8 res3[0x30];
50 law8349_t ddrlaw[2]; /* DDR local access window */
51 u8 res4[0x50];
52 u32 sgprl; /* System General Purpose Register Low */
53 u32 sgprh; /* System General Purpose Register High */
54 u32 spridr; /* System Part and Revision ID Register */
55#define SPRIDR_PARTID 0xFFFF0000 /* Part Identification. */
56#define SPRIDR_REVID 0x0000FFFF /* Revision Identification. */
57 u8 res5[0x04];
Jon Loeligerde1d0a62005-08-01 13:20:47 -050058 u32 spcr; /* System Priority Configuration Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -050059#define SPCR_PCIHPE 0x10000000 /* PCI Highest Priority Enable. */
60#define SPCR_PCIPR 0x03000000 /* PCI bridge system bus request priority. */
61#define SPCR_TBEN 0x00400000 /* E300 PowerPC core time base unit enable. */
62#define SPCR_COREPR 0x00300000 /* E300 PowerPC Core system bus request priority. */
63#define SPCR_TSEC1DP 0x00003000 /* TSEC1 data priority. */
64#define SPCR_TSEC1BDP 0x00000C00 /* TSEC1 buffer descriptor priority. */
65#define SPCR_TSEC1EP 0x00000300 /* TSEC1 emergency priority. */
66#define SPCR_TSEC2DP 0x00000030 /* TSEC2 data priority. */
67#define SPCR_TSEC2BDP 0x0000000C /* TSEC2 buffer descriptor priority. */
68#define SPCR_TSEC2EP 0x00000003 /* TSEC2 emergency priority. */
Jon Loeligerde1d0a62005-08-01 13:20:47 -050069#define SPCR_RES ~(SPCR_PCIHPE | SPCR_PCIPR | SPCR_TBEN | SPCR_COREPR \
70 | SPCR_TSEC1DP | SPCR_TSEC1BDP | SPCR_TSEC1EP \
71 | SPCR_TSEC2DP | SPCR_TSEC2BDP | SPCR_TSEC2EP)
Eran Libertyf046ccd2005-07-28 10:08:46 -050072 u32 sicrl; /* System General Purpose Register Low */
73#define SICRL_LDP_A 0x80000000
Kumar Galab9704802006-01-23 16:22:57 -060074#define SICRL_USB1 0x40000000
75#define SICRL_USB0 0x20000000
Eran Libertyf046ccd2005-07-28 10:08:46 -050076#define SICRL_UART 0x0C000000
77#define SICRL_GPIO1_A 0x02000000
78#define SICRL_GPIO1_B 0x01000000
79#define SICRL_GPIO1_C 0x00800000
80#define SICRL_GPIO1_D 0x00400000
81#define SICRL_GPIO1_E 0x00200000
82#define SICRL_GPIO1_F 0x00180000
83#define SICRL_GPIO1_G 0x00040000
84#define SICRL_GPIO1_H 0x00020000
85#define SICRL_GPIO1_I 0x00010000
86#define SICRL_GPIO1_J 0x00008000
87#define SICRL_GPIO1_K 0x00004000
88#define SICRL_GPIO1_L 0x00003000
Jon Loeligerde1d0a62005-08-01 13:20:47 -050089#define SICRL_RES ~(SICRL_LDP_A | SICRL_USB0 | SICRL_USB1 | SICRL_UART \
90 | SICRL_GPIO1_A | SICRL_GPIO1_B | SICRL_GPIO1_C \
91 | SICRL_GPIO1_D | SICRL_GPIO1_E | SICRL_GPIO1_F \
92 | SICRL_GPIO1_G | SICRL_GPIO1_H | SICRL_GPIO1_I \
93 | SICRL_GPIO1_J | SICRL_GPIO1_K | SICRL_GPIO1_L )
Eran Libertyf046ccd2005-07-28 10:08:46 -050094 u32 sicrh; /* System General Purpose Register High */
95#define SICRH_DDR 0x80000000
96#define SICRH_TSEC1_A 0x10000000
97#define SICRH_TSEC1_B 0x08000000
98#define SICRH_TSEC1_C 0x04000000
99#define SICRH_TSEC1_D 0x02000000
100#define SICRH_TSEC1_E 0x01000000
101#define SICRH_TSEC1_F 0x00800000
102#define SICRH_TSEC2_A 0x00400000
103#define SICRH_TSEC2_B 0x00200000
104#define SICRH_TSEC2_C 0x00100000
105#define SICRH_TSEC2_D 0x00080000
106#define SICRH_TSEC2_E 0x00040000
107#define SICRH_TSEC2_F 0x00020000
108#define SICRH_TSEC2_G 0x00010000
109#define SICRH_TSEC2_H 0x00008000
110#define SICRH_GPIO2_A 0x00004000
111#define SICRH_GPIO2_B 0x00002000
112#define SICRH_GPIO2_C 0x00001000
113#define SICRH_GPIO2_D 0x00000800
114#define SICRH_GPIO2_E 0x00000400
115#define SICRH_GPIO2_F 0x00000200
116#define SICRH_GPIO2_G 0x00000180
117#define SICRH_GPIO2_H 0x00000060
118#define SICRH_TSOBI1 0x00000002
119#define SICRH_TSOBI2 0x00000001
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500120#define SICRh_RES ~( SICRH_DDR | SICRH_TSEC1_A | SICRH_TSEC1_B \
121 | SICRH_TSEC1_C | SICRH_TSEC1_D | SICRH_TSEC1_E \
122 | SICRH_TSEC1_F | SICRH_TSEC2_A | SICRH_TSEC2_B \
123 | SICRH_TSEC2_C | SICRH_TSEC2_D | SICRH_TSEC2_E \
124 | SICRH_TSEC2_F | SICRH_TSEC2_G | SICRH_TSEC2_H \
125 | SICRH_GPIO2_A | SICRH_GPIO2_B | SICRH_GPIO2_C \
126 | SICRH_GPIO2_D | SICRH_GPIO2_E | SICRH_GPIO2_F \
127 | SICRH_GPIO2_G | SICRH_GPIO2_H | SICRH_TSOBI1 \
128 | SICRH_TSOBI2)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500129 u8 res6[0xE4];
130} sysconf8349_t;
131
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500132/*
Eran Libertyf046ccd2005-07-28 10:08:46 -0500133 * Watch Dog Timer (WDT) Registers
134 */
135typedef struct wdt8349 {
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500136 u8 res0[4];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500137 u32 swcrr; /* System watchdog control register */
138 u32 swcnr; /* System watchdog count register */
139#define SWCNR_SWCN 0x0000FFFF Software Watchdog Count Field.
140#define SWCNR_RES ~(SWCNR_SWCN)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500141 u8 res1[2];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500142 u16 swsrr; /* System watchdog service register */
143 u8 res2[0xF0];
144} wdt8349_t;
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500145
Eran Libertyf046ccd2005-07-28 10:08:46 -0500146/*
147 * RTC/PIT Module Registers
148 */
149typedef struct rtclk8349 {
150 u32 cnr; /* control register */
151#define CNR_CLEN 0x00000080 /* Clock Enable Control Bit */
152#define CNR_CLIN 0x00000040 /* Input Clock Control Bit */
153#define CNR_AIM 0x00000002 /* Alarm Interrupt Mask Bit */
154#define CNR_SIM 0x00000001 /* Second Interrupt Mask Bit */
155#define CNR_RES ~(CNR_CLEN | CNR_CLIN | CNR_AIM | CNR_SIM)
156 u32 ldr; /* load register */
157 u32 psr; /* prescale register */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500158 u32 ctr; /* register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500159 u32 evr; /* event register */
160#define RTEVR_SIF 0x00000001 /* Second Interrupt Flag Bit */
161#define RTEVR_AIF 0x00000002 /* Alarm Interrupt Flag Bit */
162#define RTEVR_RES ~(EVR_SIF | EVR_AIF)
163 u32 alr; /* alarm register */
164 u8 res0[0xE8];
165} rtclk8349_t;
166
167/*
168 * Global timper module
169 */
170
171typedef struct gtm8349 {
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500172 u8 cfr1; /* Timer1/2 Configuration */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500173#define CFR1_PCAS 0x80 /* Pair Cascade mode */
174#define CFR1_BCM 0x40 /* Backward compatible mode */
175#define CFR1_STP2 0x20 /* Stop timer */
176#define CFR1_RST2 0x10 /* Reset timer */
177#define CFR1_GM2 0x08 /* Gate mode for pin 2 */
178#define CFR1_GM1 0x04 /* Gate mode for pin 1 */
179#define CFR1_STP1 0x02 /* Stop timer */
180#define CFR1_RST1 0x01 /* Reset timer */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500181 u8 res0[3];
182 u8 cfr2; /* Timer3/4 Configuration */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500183#define CFR2_PCAS 0x80 /* Pair Cascade mode */
184#define CFR2_SCAS 0x40 /* Super Cascade mode */
185#define CFR2_STP4 0x20 /* Stop timer */
186#define CFR2_RST4 0x10 /* Reset timer */
187#define CFR2_GM4 0x08 /* Gate mode for pin 4 */
188#define CFR2_GM3 0x04 /* Gate mode for pin 3 */
189#define CFR2_STP3 0x02 /* Stop timer */
190#define CFR2_RST3 0x01 /* Reset timer */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500191 u8 res1[10];
192 u16 mdr1; /* Timer1 Mode Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500193#define MDR_SPS 0xff00 /* Secondary Prescaler value */
194#define MDR_CE 0x00c0 /* Capture edge and enable interrupt */
195#define MDR_OM 0x0020 /* Output mode */
196#define MDR_ORI 0x0010 /* Output reference interrupt enable */
197#define MDR_FRR 0x0008 /* Free run/restart */
198#define MDR_ICLK 0x0006 /* Input clock source for the timer */
199#define MDR_GE 0x0001 /* Gate enable */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500200 u16 mdr2; /* Timer2 Mode Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500201 u16 rfr1; /* Timer1 Reference Register */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500202 u16 rfr2; /* Timer2 Reference Register */
203 u16 cpr1; /* Timer1 Capture Register */
204 u16 cpr2; /* Timer2 Capture Register */
205 u16 cnr1; /* Timer1 Counter Register */
206 u16 cnr2; /* Timer2 Counter Register */
207 u16 mdr3; /* Timer3 Mode Register */
208 u16 mdr4; /* Timer4 Mode Register */
209 u16 rfr3; /* Timer3 Reference Register */
210 u16 rfr4; /* Timer4 Reference Register */
211 u16 cpr3; /* Timer3 Capture Register */
212 u16 cpr4; /* Timer4 Capture Register */
213 u16 cnr3; /* Timer3 Counter Register */
214 u16 cnr4; /* Timer4 Counter Register */
215 u16 evr1; /* Timer1 Event Register */
216 u16 evr2; /* Timer2 Event Register */
217 u16 evr3; /* Timer3 Event Register */
218 u16 evr4; /* Timer4 Event Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500219#define GTEVR_REF 0x0002 /* Output reference event */
220#define GTEVR_CAP 0x0001 /* Counter Capture event */
221#define GTEVR_RES ~(EVR_CAP|EVR_REF)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500222 u16 psr1; /* Timer1 Prescaler Register */
223 u16 psr2; /* Timer2 Prescaler Register */
224 u16 psr3; /* Timer3 Prescaler Register */
225 u16 psr4; /* Timer4 Prescaler Register */
226 u8 res[0xC0];
227} gtm8349_t;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500228
229/*
230 * Integrated Programmable Interrupt Controller
231 */
232typedef struct ipic8349 {
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500233 u32 sicfr; /* System Global Interrupt Configuration Register (SICFR) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500234#define SICFR_HPI 0x7f000000 /* Highest Priority Interrupt */
235#define SICFR_MPSB 0x00400000 /* Mixed interrupts Priority Scheme for group B */
236#define SICFR_MPSA 0x00200000 /* Mixed interrupts Priority Scheme for group A */
237#define SICFR_IPSD 0x00080000 /* Internal interrupts Priority Scheme for group D */
238#define SICFR_IPSA 0x00010000 /* Internal interrupts Priority Scheme for group A */
239#define SICFR_HPIT 0x00000300 /* HPI priority position IPIC output interrupt Type */
240#define SICFR_RES ~(SICFR_HPI|SICFR_MPSB|SICFR_MPSA|SICFR_IPSD|SICFR_IPSA|SICFR_HPIT)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500241 u32 sivcr; /* System Global Interrupt Vector Register (SIVCR) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500242#define SICVR_IVECX 0xfc000000 /* Interrupt vector (for CE compatibility purpose only not used in 8349 IPIC implementation) */
243#define SICVR_IVEC 0x0000007f /* Interrupt vector */
244#define SICVR_RES ~(SICVR_IVECX|SICVR_IVEC)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500245 u32 sipnr_h; /* System Internal Interrupt Pending Register - High (SIPNR_H) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500246#define SIIH_TSEC1TX 0x80000000 /* TSEC1 Tx interrupt */
247#define SIIH_TSEC1RX 0x40000000 /* TSEC1 Rx interrupt */
248#define SIIH_TSEC1ER 0x20000000 /* TSEC1 Eror interrupt */
249#define SIIH_TSEC2TX 0x10000000 /* TSEC2 Tx interrupt */
250#define SIIH_TSEC2RX 0x08000000 /* TSEC2 Rx interrupt */
251#define SIIH_TSEC2ER 0x04000000 /* TSEC2 Eror interrupt */
252#define SIIH_USB2DR 0x02000000 /* USB2 DR interrupt */
253#define SIIH_USB2MPH 0x01000000 /* USB2 MPH interrupt */
254#define SIIH_UART1 0x00000080 /* UART1 interrupt */
255#define SIIH_UART2 0x00000040 /* UART2 interrupt */
256#define SIIH_SEC 0x00000020 /* SEC interrupt */
257#define SIIH_I2C1 0x00000004 /* I2C1 interrupt */
258#define SIIH_I2C2 0x00000002 /* I2C1 interrupt */
259#define SIIH_SPI 0x00000001 /* SPI interrupt */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500260#define SIIH_RES ~(SIIH_TSEC1TX | SIIH_TSEC1RX | SIIH_TSEC1ER \
261 | SIIH_TSEC2TX | SIIH_TSEC2RX | SIIH_TSEC2ER \
262 | SIIH_USB2DR | SIIH_USB2MPH | SIIH_UART1 \
263 | SIIH_UART2 | SIIH_SEC | SIIH_I2C1 \
264 | SIIH_I2C2 | SIIH_SPI)
265 u32 sipnr_l; /* System Internal Interrupt Pending Register - Low (SIPNR_L) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500266#define SIIL_RTCS 0x80000000 /* RTC SECOND interrupt */
267#define SIIL_PIT 0x40000000 /* PIT interrupt */
268#define SIIL_PCI1 0x20000000 /* PCI1 interrupt */
269#define SIIL_PCI2 0x10000000 /* PCI2 interrupt */
270#define SIIL_RTCA 0x08000000 /* RTC ALARM interrupt */
271#define SIIL_MU 0x04000000 /* Message Unit interrupt */
272#define SIIL_SBA 0x02000000 /* System Bus Arbiter interrupt */
273#define SIIL_DMA 0x01000000 /* DMA interrupt */
274#define SIIL_GTM4 0x00800000 /* GTM4 interrupt */
275#define SIIL_GTM8 0x00400000 /* GTM8 interrupt */
276#define SIIL_GPIO1 0x00200000 /* GPIO1 interrupt */
277#define SIIL_GPIO2 0x00100000 /* GPIO2 interrupt */
278#define SIIL_DDR 0x00080000 /* DDR interrupt */
279#define SIIL_LBC 0x00040000 /* LBC interrupt */
280#define SIIL_GTM2 0x00020000 /* GTM2 interrupt */
281#define SIIL_GTM6 0x00010000 /* GTM6 interrupt */
282#define SIIL_PMC 0x00008000 /* PMC interrupt */
283#define SIIL_GTM3 0x00000800 /* GTM3 interrupt */
284#define SIIL_GTM7 0x00000400 /* GTM7 interrupt */
285#define SIIL_GTM1 0x00000020 /* GTM1 interrupt */
286#define SIIL_GTM5 0x00000010 /* GTM5 interrupt */
287#define SIIL_DPTC 0x00000001 /* DPTC interrupt (!!! Invisible for user !!!) */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500288#define SIIL_RES ~(SIIL_RTCS | SIIL_PIT | SIIL_PCI1 | SIIL_PCI2 \
289 | SIIL_RTCA | SIIL_MU | SIIL_SBA | SIIL_DMA \
290 | SIIL_GTM4 | SIIL_GTM8 | SIIL_GPIO1 | SIIL_GPIO2 \
291 | SIIL_DDR | SIIL_LBC | SIIL_GTM2 | SIIL_GTM6 \
292 | SIIL_PMC |SIIL_GTM3 | SIIL_GTM7 | SIIL_GTM1 \
293 | SIIL_GTM5 |SIIL_DPTC )
294 u32 siprr_a; /* System Internal Interrupt Group A Priority Register (PRR) */
295 u8 res0[8];
296 u32 siprr_d; /* System Internal Interrupt Group D Priority Register (PRR) */
297 u32 simsr_h; /* System Internal Interrupt Mask Register - High (SIIH) */
298 u32 simsr_l; /* System Internal Interrupt Mask Register - Low (SIIL) */
299 u8 res1[4];
300 u32 sepnr; /* System External Interrupt Pending Register (SEI) */
301 u32 smprr_a; /* System Mixed Interrupt Group A Priority Register (PRR) */
302 u32 smprr_b; /* System Mixed Interrupt Group B Priority Register (PRR) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500303#define PRR_0 0xe0000000 /* Priority Register, Position 0 programming */
304#define PRR_1 0x1c000000 /* Priority Register, Position 1 programming */
305#define PRR_2 0x03800000 /* Priority Register, Position 2 programming */
306#define PRR_3 0x00700000 /* Priority Register, Position 3 programming */
307#define PRR_4 0x0000e000 /* Priority Register, Position 4 programming */
308#define PRR_5 0x00001c00 /* Priority Register, Position 5 programming */
309#define PRR_6 0x00000380 /* Priority Register, Position 6 programming */
310#define PRR_7 0x00000070 /* Priority Register, Position 7 programming */
311#define PRR_RES ~(PRR_0|PRR_1|PRR_2|PRR_3|PRR_4|PRR_5|PRR_6|PRR_7)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500312 u32 semsr; /* System External Interrupt Mask Register (SEI) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500313#define SEI_IRQ0 0x80000000 /* IRQ0 external interrupt */
314#define SEI_IRQ1 0x40000000 /* IRQ1 external interrupt */
315#define SEI_IRQ2 0x20000000 /* IRQ2 external interrupt */
316#define SEI_IRQ3 0x10000000 /* IRQ3 external interrupt */
317#define SEI_IRQ4 0x08000000 /* IRQ4 external interrupt */
318#define SEI_IRQ5 0x04000000 /* IRQ5 external interrupt */
319#define SEI_IRQ6 0x02000000 /* IRQ6 external interrupt */
320#define SEI_IRQ7 0x01000000 /* IRQ7 external interrupt */
321#define SEI_SIRQ0 0x00008000 /* SIRQ0 external interrupt */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500322#define SEI_RES ~( SEI_IRQ0 | SEI_IRQ1 | SEI_IRQ2 | SEI_IRQ3 \
323 | SEI_IRQ4 | SEI_IRQ5 | SEI_IRQ6 | SEI_IRQ7 \
324 | SEI_SIRQ0)
325 u32 secnr; /* System External Interrupt Control Register (SECNR) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500326#define SECNR_MIXB0T 0xc0000000 /* MIXB0 priority position IPIC output interrupt type */
327#define SECNR_MIXB1T 0x30000000 /* MIXB1 priority position IPIC output interrupt type */
328#define SECNR_MIXA0T 0x00c00000 /* MIXA0 priority position IPIC output interrupt type */
329#define SECNR_SYSA1T 0x00300000 /* MIXA1 priority position IPIC output interrupt type */
330#define SECNR_EDI0 0x00008000 /* IRQ0 external interrupt edge/level detect */
331#define SECNR_EDI1 0x00004000 /* IRQ1 external interrupt edge/level detect */
332#define SECNR_EDI2 0x00002000 /* IRQ2 external interrupt edge/level detect */
333#define SECNR_EDI3 0x00001000 /* IRQ3 external interrupt edge/level detect */
334#define SECNR_EDI4 0x00000800 /* IRQ4 external interrupt edge/level detect */
335#define SECNR_EDI5 0x00000400 /* IRQ5 external interrupt edge/level detect */
336#define SECNR_EDI6 0x00000200 /* IRQ6 external interrupt edge/level detect */
337#define SECNR_EDI7 0x00000100 /* IRQ7 external interrupt edge/level detect */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500338#define SECNR_RES ~( SECNR_MIXB0T | SECNR_MIXB1T | SECNR_MIXA0T \
339 | SECNR_SYSA1T | SECNR_EDI0 | SECNR_EDI1 \
340 | SECNR_EDI2 | SECNR_EDI3 | SECNR_EDI4 \
341 | SECNR_EDI5 | SECNR_EDI6 | SECNR_EDI7)
342 u32 sersr; /* System Error Status Register (SERR) */
343 u32 sermr; /* System Error Mask Register (SERR) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500344#define SERR_IRQ0 0x80000000 /* IRQ0 MCP request */
345#define SERR_WDT 0x40000000 /* WDT MCP request */
346#define SERR_SBA 0x20000000 /* SBA MCP request */
347#define SERR_DDR 0x10000000 /* DDR MCP request */
348#define SERR_LBC 0x08000000 /* LBC MCP request */
349#define SERR_PCI1 0x04000000 /* PCI1 MCP request */
350#define SERR_PCI2 0x02000000 /* PCI2 MCP request */
351#define SERR_MU 0x01000000 /* MU MCP request */
352#define SERR_RNC 0x00010000 /* MU MCP request (!!! Non-visible for users !!!) */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500353#define SERR_RES ~( SERR_IRQ0 | SERR_WDT | SERR_SBA | SERR_DDR \
354 |SERR_LBC | SERR_PCI1 | SERR_PCI2 | SERR_MU \
355 |SERR_RNC )
356 u32 sercr; /* System Error Control Register (SERCR) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500357#define SERCR_MCPR 0x00000001 /* MCP Route */
358#define SERCR_RES ~(SERCR_MCPR)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500359 u8 res2[4];
360 u32 sifcr_h; /* System Internal Interrupt Force Register - High (SIIH) */
361 u32 sifcr_l; /* System Internal Interrupt Force Register - Low (SIIL) */
362 u32 sefcr; /* System External Interrupt Force Register (SEI) */
363 u32 serfr; /* System Error Force Register (SERR) */
364 u8 res3[0xA0];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500365} ipic8349_t;
366
367/*
368 * System Arbiter Registers
369 */
370typedef struct arbiter8349 {
371 u32 acr; /* Arbiter Configuration Register */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500372#define ACR_COREDIS 0x10000000 /* Core disable. */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500373#define ACR_PIPE_DEP 0x00070000 /* Pipeline depth (number of outstanding transactions). */
374#define ACR_PCI_RPTCNT 0x00007000 /* PCI repeat count. */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500375#define ACR_RPTCNT 0x00000700 /* Repeat count. */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500376#define ACR_APARK 0x00000030 /* Address parking. */
377#define ACR_PARKM 0x0000000F /* Parking master. */
378#define ACR_RES ~(ACR_COREDIS|ACR_PIPE_DEP|ACR_PCI_RPTCNT|ACR_RPTCNT|ACR_APARK|ACR_PARKM)
379 u32 atr; /* Arbiter Timers Register */
380#define ATR_DTO 0x00FF0000 /* Data time out. */
381#define ATR_ATO 0x000000FF /* Address time out. */
382#define ATR_RES ~(ATR_DTO|ATR_ATO)
383 u8 res[4];
384 u32 aer; /* Arbiter Event Register (AE)*/
385 u32 aidr; /* Arbiter Interrupt Definition Register (AE) */
386 u32 amr; /* Arbiter Mask Register (AE) */
387 u32 aeatr; /* Arbiter Event Attributes Register */
388#define AEATR_EVENT 0x07000000 /* Event type. */
389#define AEATR_MSTR_ID 0x001F0000 /* Master Id. */
390#define AEATR_TBST 0x00000800 /* Transfer burst. */
391#define AEATR_TSIZE 0x00000700 /* Transfer Size. */
392#define AEATR_TTYPE 0x0000001F /* Transfer Type. */
393#define AEATR_RES ~(AEATR_EVENT|AEATR_MSTR_ID|AEATR_TBST|AEATR_TSIZE|AEATR_TTYPE)
394 u32 aeadr; /* Arbiter Event Address Register */
395 u32 aerr; /* Arbiter Event Response Register (AE)*/
396#define AE_ETEA 0x00000020 /* Transfer error. */
397#define AE_RES_ 0x00000010 /* Reserved transfer type. */
398#define AE_ECW 0x00000008 /* External control word transfer type. */
399#define AE_AO 0x00000004 /* Address Only transfer type. */
400#define AE_DTO 0x00000002 /* Data time out. */
401#define AE_ATO 0x00000001 /* Address time out. */
402#define AE_RSRV ~(AE_ETEA|AE_RES_|AE_ECW|AE_AO|AE_DTO|AE_ATO)
403 u8 res1[0xDC];
404} arbiter8349_t;
405
406/*
407 * Reset Module
408 */
409typedef struct reset8349 {
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500410 u32 rcwl; /* RCWL Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500411#define RCWL_LBIUCM 0x80000000 /* LBIUCM */
412#define RCWL_LBIUCM_SHIFT 31
413#define RCWL_DDRCM 0x40000000 /* DDRCM */
414#define RCWL_DDRCM_SHIFT 30
415#define RCWL_SVCOD 0x30000000 /* SVCOD */
416#define RCWL_SPMF 0x0f000000 /* SPMF */
417#define RCWL_SPMF_SHIFT 24
418#define RCWL_COREPLL 0x007F0000 /* COREPLL */
419#define RCWL_COREPLL_SHIFT 16
420#define RCWL_CEVCOD 0x000000C0 /* CEVCOD */
421#define RCWL_CEPDF 0x00000020 /* CEPDF */
422#define RCWL_CEPMF 0x0000001F /* CEPMF */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500423#define RCWL_RES ~(RCWL_BIUCM|RCWL_DDRCM|RCWL_SVCOD|RCWL_SPMF|RCWL_COREPLL|RCWL_CEVCOD|RCWL_CEPDF|RCWL_CEPMF)
424 u32 rcwh; /* RCHL Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500425#define RCWH_PCIHOST 0x80000000 /* PCIHOST */
426#define RCWH_PCIHOST_SHIFT 31
427#define RCWH_PCI64 0x40000000 /* PCI64 */
428#define RCWH_PCI1ARB 0x20000000 /* PCI1ARB */
429#define RCWH_PCI2ARB 0x10000000 /* PCI2ARB */
430#define RCWH_COREDIS 0x08000000 /* COREDIS */
431#define RCWH_BMS 0x04000000 /* BMS */
432#define RCWH_BOOTSEQ 0x03000000 /* BOOTSEQ */
433#define RCWH_SWEN 0x00800000 /* SWEN */
434#define RCWH_ROMLOC 0x00700000 /* ROMLOC */
435#define RCWH_TSEC1M 0x0000c000 /* TSEC1M */
436#define RCWH_TSEC2M 0x00003000 /* TSEC2M */
437#define RCWH_TPR 0x00000100 /* TPR */
438#define RCWH_TLE 0x00000008 /* TLE */
439#define RCWH_LALE 0x00000004 /* LALE */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500440#define RCWH_RES ~(RCWH_PCIHOST | RCWH_PCI64 | RCWH_PCI1ARB \
441 | RCWH_PCI2ARB | RCWH_COREDIS | RCWH_BMS \
442 | RCWH_BOOTSEQ | RCWH_SWEN | RCWH_ROMLOC \
443 | RCWH_TSEC1M | RCWH_TSEC2M | RCWH_TPR \
444 | RCWH_TLE | RCWH_LALE)
445 u8 res0[8];
446 u32 rsr; /* Reset status Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500447#define RSR_RSTSRC 0xE0000000 /* Reset source */
448#define RSR_RSTSRC_SHIFT 29
449#define RSR_BSF 0x00010000 /* Boot seq. fail */
450#define RSR_BSF_SHIFT 16
451#define RSR_SWSR 0x00002000 /* software soft reset */
452#define RSR_SWSR_SHIFT 13
453#define RSR_SWHR 0x00001000 /* software hard reset */
454#define RSR_SWHR_SHIFT 12
455#define RSR_JHRS 0x00000200 /* jtag hreset */
456#define RSR_JHRS_SHIFT 9
457#define RSR_JSRS 0x00000100 /* jtag sreset status */
458#define RSR_JSRS_SHIFT 8
459#define RSR_CSHR 0x00000010 /* checkstop reset status */
460#define RSR_CSHR_SHIFT 4
461#define RSR_SWRS 0x00000008 /* software watchdog reset status */
462#define RSR_SWRS_SHIFT 3
463#define RSR_BMRS 0x00000004 /* bus monitop reset status */
464#define RSR_BMRS_SHIFT 2
465#define RSR_SRS 0x00000002 /* soft reset status */
466#define RSR_SRS_SHIFT 1
467#define RSR_HRS 0x00000001 /* hard reset status */
468#define RSR_HRS_SHIFT 0
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500469#define RSR_RES ~(RSR_RSTSRC | RSR_BSF | RSR_SWSR | RSR_SWHR | RSR_JHRS | RSR_JSRS | RSR_CSHR | RSR_SWRS | RSR_BMRS | RSR_SRS | RSR_HRS)
470 u32 rmr; /* Reset mode Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500471#define RMR_CSRE 0x00000001 /* checkstop reset enable */
472#define RMR_CSRE_SHIFT 0
473#define RMR_RES ~(RMR_CSRE)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500474 u32 rpr; /* Reset protection Register */
475 u32 rcr; /* Reset Control Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500476#define RCR_SWHR 0x00000002 /* software hard reset */
477#define RCR_SWSR 0x00000001 /* software soft reset */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500478#define RCR_RES ~(RCR_SWHR | RCR_SWSR)
479 u32 rcer; /* Reset Control Enable Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500480#define RCER_CRE 0x00000001 /* software hard reset */
481#define RCER_RES ~(RCER_CRE)
482 u8 res1[0xDC];
483} reset8349_t;
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500484
Eran Libertyf046ccd2005-07-28 10:08:46 -0500485typedef struct clk8349 {
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500486 u32 spmr; /* system PLL mode Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500487#define SPMR_LBIUCM 0x80000000 /* LBIUCM */
488#define SPMR_DDRCM 0x40000000 /* DDRCM */
489#define SPMR_SVCOD 0x30000000 /* SVCOD */
490#define SPMR_SPMF 0x0F000000 /* SPMF */
491#define SPMR_CKID 0x00800000 /* CKID */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500492#define SPMR_CKID_SHIFT 23
Eran Libertyf046ccd2005-07-28 10:08:46 -0500493#define SPMR_COREPLL 0x007F0000 /* COREPLL */
494#define SPMR_CEVCOD 0x000000C0 /* CEVCOD */
495#define SPMR_CEPDF 0x00000020 /* CEPDF */
496#define SPMR_CEPMF 0x0000001F /* CEPMF */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500497#define SPMR_RES ~(SPMR_LBIUCM | SPMR_DDRCM | SPMR_SVCOD \
498 | SPMR_SPMF | SPMR_CKID | SPMR_COREPLL \
499 | SPMR_CEVCOD | SPMR_CEPDF | SPMR_CEPMF)
500 u32 occr; /* output clock control Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500501#define OCCR_PCICOE0 0x80000000 /* PCICOE0 */
502#define OCCR_PCICOE1 0x40000000 /* PCICOE1 */
503#define OCCR_PCICOE2 0x20000000 /* PCICOE2 */
504#define OCCR_PCICOE3 0x10000000 /* PCICOE3 */
505#define OCCR_PCICOE4 0x08000000 /* PCICOE4 */
506#define OCCR_PCICOE5 0x04000000 /* PCICOE5 */
507#define OCCR_PCICOE6 0x02000000 /* PCICOE6 */
508#define OCCR_PCICOE7 0x01000000 /* PCICOE7 */
509#define OCCR_PCICD0 0x00800000 /* PCICD0 */
510#define OCCR_PCICD1 0x00400000 /* PCICD1 */
511#define OCCR_PCICD2 0x00200000 /* PCICD2 */
512#define OCCR_PCICD3 0x00100000 /* PCICD3 */
513#define OCCR_PCICD4 0x00080000 /* PCICD4 */
514#define OCCR_PCICD5 0x00040000 /* PCICD5 */
515#define OCCR_PCICD6 0x00020000 /* PCICD6 */
516#define OCCR_PCICD7 0x00010000 /* PCICD7 */
517#define OCCR_PCI1CR 0x00000002 /* PCI1CR */
518#define OCCR_PCI2CR 0x00000001 /* PCI2CR */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500519#define OCCR_RES ~(OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2 \
520 | OCCR_PCICOE3 | OCCR_PCICOE4 | OCCR_PCICOE5 \
521 | OCCR_PCICOE6 | OCCR_PCICOE7 | OCCR_PCICD0 \
522 | OCCR_PCICD1 | OCCR_PCICD2 | OCCR_PCICD3 \
523 | OCCR_PCICD4 | OCCR_PCICD5 | OCCR_PCICD6 \
524 | OCCR_PCICD7 | OCCR_PCI1CR | OCCR_PCI2CR )
525 u32 sccr; /* system clock control Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500526#define SCCR_TSEC1CM 0xc0000000 /* TSEC1CM */
527#define SCCR_TSEC1CM_SHIFT 30
528#define SCCR_TSEC2CM 0x30000000 /* TSEC2CM */
529#define SCCR_TSEC2CM_SHIFT 28
530#define SCCR_ENCCM 0x03000000 /* ENCCM */
531#define SCCR_ENCCM_SHIFT 24
532#define SCCR_USBMPHCM 0x00c00000 /* USBMPHCM */
533#define SCCR_USBMPHCM_SHIFT 22
534#define SCCR_USBDRCM 0x00300000 /* USBDRCM */
535#define SCCR_USBDRCM_SHIFT 20
536#define SCCR_PCICM 0x00010000 /* PCICM */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500537#define SCCR_RES ~( SCCR_TSEC1CM | SCCR_TSEC2CM | SCCR_ENCCM \
538 | SCCR_USBMPHCM | SCCR_USBDRCM | SCCR_PCICM)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500539 u8 res0[0xF4];
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500540} clk8349_t;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500541
542/*
543 * Power Management Control Module
544 */
545typedef struct pmc8349 {
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500546 u32 pmccr; /* PMC Configuration Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500547#define PMCCR_SLPEN 0x00000001 /* System Low Power Enable */
548#define PMCCR_DLPEN 0x00000002 /* DDR SDRAM Low Power Enable */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500549#define PMCCR_RES ~(PMCCR_SLPEN | PMCCR_DLPEN)
550 u32 pmcer; /* PMC Event Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500551#define PMCER_PMCI 0x00000001 /* PMC Interrupt */
552#define PMCER_RES ~(PMCER_PMCI)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500553 u32 pmcmr; /* PMC Mask Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500554#define PMCMR_PMCIE 0x0001 /* PMC Interrupt Enable */
555#define PMCMR_RES ~(PMCMR_PMCIE)
556 u8 res0[0xF4];
557} pmc8349_t;
558
559
560/*
561 * general purpose I/O module
562 */
563typedef struct gpio8349 {
564 u32 dir; /* direction register */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500565 u32 odr; /* open drain register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500566 u32 dat; /* data register */
567 u32 ier; /* interrupt event register */
568 u32 imr; /* interrupt mask register */
569 u32 icr; /* external interrupt control register */
570 u8 res0[0xE8];
571} gpio8349_t;
572
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500573/*
Eran Libertyf046ccd2005-07-28 10:08:46 -0500574 * DDR Memory Controller Memory Map
575 */
576typedef struct ddr_cs_bnds{
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500577 u32 csbnds;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500578#define CSBNDS_SA 0x00FF0000
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200579#define CSBNDS_SA_SHIFT 8
Eran Libertyf046ccd2005-07-28 10:08:46 -0500580#define CSBNDS_EA 0x000000FF
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200581#define CSBNDS_EA_SHIFT 24
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500582 u8 res0[4];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500583} ddr_cs_bnds_t;
584
585typedef struct ddr8349{
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500586 ddr_cs_bnds_t csbnds[4]; /**< Chip Select x Memory Bounds */
587 u8 res0[0x60];
588 u32 cs_config[4]; /**< Chip Select x Configuration */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500589#define CSCONFIG_EN 0x80000000
590#define CSCONFIG_AP 0x00800000
591#define CSCONFIG_ROW_BIT 0x00000700
592#define CSCONFIG_ROW_BIT_12 0x00000000
593#define CSCONFIG_ROW_BIT_13 0x00000100
594#define CSCONFIG_ROW_BIT_14 0x00000200
595#define CSCONFIG_COL_BIT 0x00000007
596#define CSCONFIG_COL_BIT_8 0x00000000
597#define CSCONFIG_COL_BIT_9 0x00000001
598#define CSCONFIG_COL_BIT_10 0x00000002
599#define CSCONFIG_COL_BIT_11 0x00000003
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500600 u8 res1[0x78];
601 u32 timing_cfg_1; /**< SDRAM Timing Configuration 1 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500602#define TIMING_CFG1_PRETOACT 0x70000000
603#define TIMING_CFG1_PRETOACT_SHIFT 28
604#define TIMING_CFG1_ACTTOPRE 0x0F000000
605#define TIMING_CFG1_ACTTOPRE_SHIFT 24
606#define TIMING_CFG1_ACTTORW 0x00700000
607#define TIMING_CFG1_ACTTORW_SHIFT 20
608#define TIMING_CFG1_CASLAT 0x00070000
609#define TIMING_CFG1_CASLAT_SHIFT 16
610#define TIMING_CFG1_REFREC 0x0000F000
611#define TIMING_CFG1_REFREC_SHIFT 12
612#define TIMING_CFG1_WRREC 0x00000700
613#define TIMING_CFG1_WRREC_SHIFT 8
614#define TIMING_CFG1_ACTTOACT 0x00000070
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500615#define TIMING_CFG1_ACTTOACT_SHIFT 4
Eran Libertyf046ccd2005-07-28 10:08:46 -0500616#define TIMING_CFG1_WRTORD 0x00000007
617#define TIMING_CFG1_WRTORD_SHIFT 0
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200618#define TIMING_CFG1_CASLAT_20 0x00030000 /* CAS latency = 2.0 */
619#define TIMING_CFG1_CASLAT_25 0x00040000 /* CAS latency = 2.5 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500620
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500621 u32 timing_cfg_2; /**< SDRAM Timing Configuration 2 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500622#define TIMING_CFG2_CPO 0x0F000000
623#define TIMING_CFG2_CPO_SHIFT 24
624#define TIMING_CFG2_ACSM 0x00080000
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500625#define TIMING_CFG2_WR_DATA_DELAY 0x00001C00
Eran Libertyf046ccd2005-07-28 10:08:46 -0500626#define TIMING_CFG2_WR_DATA_DELAY_SHIFT 10
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200627#define TIMING_CFG2_CPO_DEF 0x00000000 /* default (= CASLAT + 1) */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500628
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500629 u32 sdram_cfg; /**< SDRAM Control Configuration */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500630#define SDRAM_CFG_MEM_EN 0x80000000
631#define SDRAM_CFG_SREN 0x40000000
632#define SDRAM_CFG_ECC_EN 0x20000000
633#define SDRAM_CFG_RD_EN 0x10000000
634#define SDRAM_CFG_SDRAM_TYPE 0x03000000
635#define SDRAM_CFG_SDRAM_TYPE_SHIFT 24
636#define SDRAM_CFG_DYN_PWR 0x00200000
637#define SDRAM_CFG_32_BE 0x00080000
638#define SDRAM_CFG_8_BE 0x00040000
639#define SDRAM_CFG_NCAP 0x00020000
640#define SDRAM_CFG_2T_EN 0x00008000
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200641#define SDRAM_CFG_SDRAM_TYPE_DDR 0x02000000
Eran Libertyf046ccd2005-07-28 10:08:46 -0500642
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500643 u8 res2[4];
644 u32 sdram_mode; /**< SDRAM Mode Configuration */
645#define SDRAM_MODE_ESD 0xFFFF0000
646#define SDRAM_MODE_ESD_SHIFT 16
Eran Libertyf046ccd2005-07-28 10:08:46 -0500647#define SDRAM_MODE_SD 0x0000FFFF
648#define SDRAM_MODE_SD_SHIFT 0
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200649#define DDR_MODE_EXT_MODEREG 0x4000 /* select extended mode reg */
650#define DDR_MODE_EXT_OPMODE 0x3FF8 /* operating mode, mask */
651#define DDR_MODE_EXT_OP_NORMAL 0x0000 /* normal operation */
652#define DDR_MODE_QFC 0x0004 /* QFC / compatibility, mask */
653#define DDR_MODE_QFC_COMP 0x0000 /* compatible to older SDRAMs */
654#define DDR_MODE_WEAK 0x0002 /* weak drivers */
655#define DDR_MODE_DLL_DIS 0x0001 /* disable DLL */
656#define DDR_MODE_CASLAT 0x0070 /* CAS latency, mask */
657#define DDR_MODE_CASLAT_15 0x0010 /* CAS latency 1.5 */
658#define DDR_MODE_CASLAT_20 0x0020 /* CAS latency 2 */
659#define DDR_MODE_CASLAT_25 0x0060 /* CAS latency 2.5 */
660#define DDR_MODE_CASLAT_30 0x0030 /* CAS latency 3 */
661#define DDR_MODE_BTYPE_SEQ 0x0000 /* sequential burst */
662#define DDR_MODE_BTYPE_ILVD 0x0008 /* interleaved burst */
663#define DDR_MODE_BLEN_2 0x0001 /* burst length 2 */
664#define DDR_MODE_BLEN_4 0x0002 /* burst length 4 */
665#define DDR_REFINT_166MHZ_7US 1302 /* exact value for 7.8125 µs */
666#define DDR_BSTOPRE 256 /* use 256 cycles as a starting point */
667#define DDR_MODE_MODEREG 0x0000 /* select mode register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500668
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500669 u8 res3[8];
670 u32 sdram_interval; /**< SDRAM Interval Configuration */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500671#define SDRAM_INTERVAL_REFINT 0x3FFF0000
672#define SDRAM_INTERVAL_REFINT_SHIFT 16
673#define SDRAM_INTERVAL_BSTOPRE 0x00003FFF
674#define SDRAM_INTERVAL_BSTOPRE_SHIFT 0
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500675 u8 res9[8];
676 u32 sdram_clk_cntl;
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200677#define DDR_SDRAM_CLK_CNTL_SS_EN 0x80000000
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100678#define DDR_SDRAM_CLK_CNTL_CLK_ADJUST_025 0x01000000
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200679#define DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05 0x02000000
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100680#define DDR_SDRAM_CLK_CNTL_CLK_ADJUST_075 0x03000000
681#define DDR_SDRAM_CLK_CNTL_CLK_ADJUST_1 0x04000000
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200682
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500683 u8 res4[0xCCC];
684 u32 data_err_inject_hi; /**< Memory Data Path Error Injection Mask High */
685 u32 data_err_inject_lo; /**< Memory Data Path Error Injection Mask Low */
686 u32 ecc_err_inject; /**< Memory Data Path Error Injection Mask ECC */
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100687#define ECC_ERR_INJECT_EMB (0x80000000>>22) /* ECC Mirror Byte */
688#define ECC_ERR_INJECT_EIEN (0x80000000>>23) /* Error Injection Enable */
689#define ECC_ERR_INJECT_EEIM (0xF0000000>>24) /* ECC Erroe Injection Enable */
690#define ECC_ERR_INJECT_EEIM_SHIFT 0
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500691 u8 res5[0x14];
692 u32 capture_data_hi; /**< Memory Data Path Read Capture High */
693 u32 capture_data_lo; /**< Memory Data Path Read Capture Low */
694 u32 capture_ecc; /**< Memory Data Path Read Capture ECC */
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100695#define CAPTURE_ECC_ECE (0xF0000000>>24)
696#define CAPTURE_ECC_ECE_SHIFT 0
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500697 u8 res6[0x14];
698 u32 err_detect; /**< Memory Error Detect */
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100699#define ECC_ERROR_DETECT_MME (0x80000000>>0) /* Multiple Memory Errors */
700#define ECC_ERROR_DETECT_MBE (0x80000000>>28) /* Multiple-Bit Error */
701#define ECC_ERROR_DETECT_SBE (0x80000000>>29) /* Single-Bit ECC Error Pickup */
702#define ECC_ERROR_DETECT_MSE (0x80000000>>31) /* Memory Select Error */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500703 u32 err_disable; /**< Memory Error Disable */
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100704#define ECC_ERROR_DISABLE_MBED (0x80000000>>28) /* Multiple-Bit ECC Error Disable */
705#define ECC_ERROR_DISABLE_SBED (0x80000000>>29) /* Sinle-Bit ECC Error disable */
706#define ECC_ERROR_DISABLE_MSED (0x80000000>>31) /* Memory Select Error Disable */
707#define ECC_ERROR_ENABLE ~(ECC_ERROR_DISABLE_MSED|ECC_ERROR_DISABLE_SBED|ECC_ERROR_DISABLE_MBED)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500708 u32 err_int_en; /**< Memory Error Interrupt Enable */
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100709#define ECC_ERR_INT_EN_MBEE (0x80000000>>28) /* Multiple-Bit ECC Error Interrupt Enable */
710#define ECC_ERR_INT_EN_SBEE (0x80000000>>29) /* Single-Bit ECC Error Interrupt Enable */
711#define ECC_ERR_INT_EN_MSEE (0x80000000>>31) /* Memory Select Error Interrupt Enable */
712#define ECC_ERR_INT_DISABLE ~(ECC_ERR_INT_EN_MBEE|ECC_ERR_INT_EN_SBEE|ECC_ERR_INT_EN_MSEE)
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500713 u32 capture_attributes; /**< Memory Error Attributes Capture */
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100714#define ECC_CAPT_ATTR_BNUM (0xe0000000>>1) /* Data Beat Num */
715#define ECC_CAPT_ATTR_BNUM_SHIFT 28
716#define ECC_CAPT_ATTR_TSIZ (0xc0000000>>6) /* Transaction Size */
717#define ECC_CAPT_ATTR_TSIZ_FOUR_DW 0
718#define ECC_CAPT_ATTR_TSIZ_ONE_DW 1
719#define ECC_CAPT_ATTR_TSIZ_TWO_DW 2
720#define ECC_CAPT_ATTR_TSIZ_THREE_DW 3
721#define ECC_CAPT_ATTR_TSIZ_SHIFT 24
722#define ECC_CAPT_ATTR_TSRC (0xf8000000>>11) /* Transaction Source */
723#define ECC_CAPT_ATTR_TSRC_E300_CORE_DT 0x0
724#define ECC_CAPT_ATTR_TSRC_E300_CORE_IF 0x2
725#define ECC_CAPT_ATTR_TSRC_TSEC1 0x4
726#define ECC_CAPT_ATTR_TSRC_TSEC2 0x5
727#define ECC_CAPT_ATTR_TSRC_USB (0x06|0x07)
728#define ECC_CAPT_ATTR_TSRC_ENCRYPT 0x8
729#define ECC_CAPT_ATTR_TSRC_I2C 0x9
730#define ECC_CAPT_ATTR_TSRC_JTAG 0xA
731#define ECC_CAPT_ATTR_TSRC_PCI1 0xD
732#define ECC_CAPT_ATTR_TSRC_PCI2 0xE
733#define ECC_CAPT_ATTR_TSRC_DMA 0xF
734#define ECC_CAPT_ATTR_TSRC_SHIFT 16
735#define ECC_CAPT_ATTR_TTYP (0xe0000000>>18) /* Transaction Type */
736#define ECC_CAPT_ATTR_TTYP_WRITE 0x1
737#define ECC_CAPT_ATTR_TTYP_READ 0x2
738#define ECC_CAPT_ATTR_TTYP_R_M_W 0x3
739#define ECC_CAPT_ATTR_TTYP_SHIFT 12
740#define ECC_CAPT_ATTR_VLD (0x80000000>>31) /* Valid */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500741 u32 capture_address; /**< Memory Error Address Capture */
742 u32 capture_ext_address;/**< Memory Error Extended Address Capture */
743 u32 err_sbe; /**< Memory Single-Bit ECC Error Management */
Marian Balakowicze24e0f02006-03-14 16:03:46 +0100744#define ECC_ERROR_MAN_SBET (0xff000000>>8) /* Single-Bit Error Threshold 0..255*/
745#define ECC_ERROR_MAN_SBET_SHIFT 16
746#define ECC_ERROR_MAN_SBEC (0xff000000>>24) /* Single Bit Error Counter 0..255*/
747#define ECC_ERROR_MAN_SBEC_SHIFT 0
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500748 u8 res7[0xA4];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500749 u32 debug_reg;
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500750 u8 res8[0xFC];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500751} ddr8349_t;
752
753/*
754 * I2C1 Controller
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500755 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500756
757
758/*
759 * DUART
760 */
761typedef struct duart8349{
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500762 u8 urbr_ulcr_udlb; /**< combined register for URBR, UTHR and UDLB */
763 u8 uier_udmb; /**< combined register for UIER and UDMB */
764 u8 uiir_ufcr_uafr; /**< combined register for UIIR, UFCR and UAFR */
765 u8 ulcr; /**< line control register */
766 u8 umcr; /**< MODEM control register */
767 u8 ulsr; /**< line status register */
768 u8 umsr; /**< MODEM status register */
769 u8 uscr; /**< scratch register */
770 u8 res0[8];
771 u8 udsr; /**< DMA status register */
772 u8 res1[3];
773 u8 res2[0xEC];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500774} duart8349_t;
775
776/*
777 * Local Bus Controller Registers
778 */
779typedef struct lbus_bank{
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500780 u32 br; /**< Base Register */
781 u32 or; /**< Base Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500782} lbus_bank_t;
783
784typedef struct lbus8349 {
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500785 lbus_bank_t bank[8];
786 u8 res0[0x28];
787 u32 mar; /**< UPM Address Register */
788 u8 res1[0x4];
789 u32 mamr; /**< UPMA Mode Register */
790 u32 mbmr; /**< UPMB Mode Register */
791 u32 mcmr; /**< UPMC Mode Register */
792 u8 res2[0x8];
793 u32 mrtpr; /**< Memory Refresh Timer Prescaler Register */
794 u32 mdr; /**< UPM Data Register */
795 u8 res3[0x8];
796 u32 lsdmr; /**< SDRAM Mode Register */
797 u8 res4[0x8];
798 u32 lurt; /**< UPM Refresh Timer */
799 u32 lsrt; /**< SDRAM Refresh Timer */
800 u8 res5[0x8];
801 u32 ltesr; /**< Transfer Error Status Register */
802 u32 ltedr; /**< Transfer Error Disable Register */
803 u32 lteir; /**< Transfer Error Interrupt Register */
804 u32 lteatr; /**< Transfer Error Attributes Register */
805 u32 ltear; /**< Transfer Error Address Register */
806 u8 res6[0xC];
807 u32 lbcr; /**< Configuration Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500808#define LBCR_LDIS 0x80000000
809#define LBCR_LDIS_SHIFT 31
810#define LBCR_BCTLC 0x00C00000
811#define LBCR_BCTLC_SHIFT 22
812#define LBCR_LPBSE 0x00020000
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500813#define LBCR_LPBSE_SHIFT 17
Eran Libertyf046ccd2005-07-28 10:08:46 -0500814#define LBCR_EPAR 0x00010000
815#define LBCR_EPAR_SHIFT 16
816#define LBCR_BMT 0x0000FF00
817#define LBCR_BMT_SHIFT 8
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500818 u32 lcrr; /**< Clock Ratio Register */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500819#define LCRR_DBYP 0x80000000
820#define LCRR_DBYP_SHIFT 31
821#define LCRR_BUFCMDC 0x30000000
822#define LCRR_BUFCMDC_SHIFT 28
823#define LCRR_ECL 0x03000000
824#define LCRR_ECL_SHIFT 24
825#define LCRR_EADC 0x00030000
826#define LCRR_EADC_SHIFT 16
827#define LCRR_CLKDIV 0x0000000F
828#define LCRR_CLKDIV_SHIFT 0
829
830
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500831 u8 res7[0x28];
832 u8 res8[0xF00];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500833} lbus8349_t;
834
835/*
836 * Serial Peripheral Interface
837 */
838typedef struct spi8349
839{
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500840 u32 mode; /**< mode register */
841 u32 event; /**< event register */
842 u32 mask; /**< mask register */
843 u32 com; /**< command register */
844 u8 res0[0x10];
845 u32 tx; /**< transmit register */
846 u32 rx; /**< receive register */
847 u8 res1[0xD8];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500848} spi8349_t;
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500849
Eran Libertyf046ccd2005-07-28 10:08:46 -0500850typedef struct dma8349 {
851 u8 fixme[0x300];
852} dma8349_t;
853
854/*
855 * PCI Software Configuration Registers
856 */
857typedef struct pciconf8349 {
858 u32 config_address;
859#define PCI_CONFIG_ADDRESS_EN 0x80000000
860#define PCI_CONFIG_ADDRESS_BN_SHIFT 16
861#define PCI_CONFIG_ADDRESS_BN_MASK 0x00ff0000
862#define PCI_CONFIG_ADDRESS_DN_SHIFT 11
863#define PCI_CONFIG_ADDRESS_DN_MASK 0x0000f800
864#define PCI_CONFIG_ADDRESS_FN_SHIFT 8
865#define PCI_CONFIG_ADDRESS_FN_MASK 0x00000700
866#define PCI_CONFIG_ADDRESS_RN_SHIFT 0
867#define PCI_CONFIG_ADDRESS_RN_MASK 0x000000fc
868 u32 config_data;
869 u32 int_ack;
870 u8 res[116];
871} pciconf8349_t;
872
873/*
874 * PCI Outbound Translation Register
875 */
876typedef struct pci_outbound_window {
877 u32 potar;
878 u8 res0[4];
879 u32 pobar;
880 u8 res1[4];
881 u32 pocmr;
882 u8 res2[4];
883} pot8349_t;
884/*
885 * Sequencer
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500886 */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500887typedef struct ios8349 {
888 pot8349_t pot[6];
889#define POTAR_TA_MASK 0x000fffff
890#define POBAR_BA_MASK 0x000fffff
891#define POCMR_EN 0x80000000
892#define POCMR_IO 0x40000000 /* 0--memory space 1--I/O space */
893#define POCMR_SE 0x20000000 /* streaming enable */
894#define POCMR_DST 0x10000000 /* 0--PCI1 1--PCI2*/
895#define POCMR_CM_MASK 0x000fffff
896#define POCMR_CM_4G 0x00000000
897#define POCMR_CM_2G 0x00080000
898#define POCMR_CM_1G 0x000C0000
899#define POCMR_CM_512M 0x000E0000
900#define POCMR_CM_256M 0x000F0000
901#define POCMR_CM_128M 0x000F8000
902#define POCMR_CM_64M 0x000FC000
903#define POCMR_CM_32M 0x000FE000
904#define POCMR_CM_16M 0x000FF000
905#define POCMR_CM_8M 0x000FF800
906#define POCMR_CM_4M 0x000FFC00
907#define POCMR_CM_2M 0x000FFE00
908#define POCMR_CM_1M 0x000FFF00
909#define POCMR_CM_512K 0x000FFF80
910#define POCMR_CM_256K 0x000FFFC0
911#define POCMR_CM_128K 0x000FFFE0
912#define POCMR_CM_64K 0x000FFFF0
913#define POCMR_CM_32K 0x000FFFF8
914#define POCMR_CM_16K 0x000FFFFC
915#define POCMR_CM_8K 0x000FFFFE
916#define POCMR_CM_4K 0x000FFFFF
917 u8 res0[0x60];
918 u32 pmcr;
919 u8 res1[4];
920 u32 dtcr;
921 u8 res2[4];
922} ios8349_t;
923
924/*
925 * PCI Controller Control and Status Registers
926 */
927typedef struct pcictrl8349 {
928 u32 esr;
929#define ESR_MERR 0x80000000
930#define ESR_APAR 0x00000400
931#define ESR_PCISERR 0x00000200
932#define ESR_MPERR 0x00000100
933#define ESR_TPERR 0x00000080
934#define ESR_NORSP 0x00000040
935#define ESR_TABT 0x00000020
936 u32 ecdr;
937#define ECDR_APAR 0x00000400
938#define ECDR_PCISERR 0x00000200
939#define ECDR_MPERR 0x00000100
940#define ECDR_TPERR 0x00000080
941#define ECDR_NORSP 0x00000040
942#define ECDR_TABT 0x00000020
943 u32 eer;
944#define EER_APAR 0x00000400
945#define EER_PCISERR 0x00000200
946#define EER_MPERR 0x00000100
947#define EER_TPERR 0x00000080
948#define EER_NORSP 0x00000040
949#define EER_TABT 0x00000020
950 u32 eatcr;
951#define EATCR_ERRTYPR_MASK 0x70000000
952#define EATCR_ERRTYPR_APR 0x00000000 /* address parity error */
953#define EATCR_ERRTYPR_WDPR 0x10000000 /* write data parity error */
954#define EATCR_ERRTYPR_RDPR 0x20000000 /* read data parity error */
955#define EATCR_ERRTYPR_MA 0x30000000 /* master abort */
956#define EATCR_ERRTYPR_TA 0x40000000 /* target abort */
957#define EATCR_ERRTYPR_SE 0x50000000 /* system error indication received */
958#define EATCR_ERRTYPR_PEA 0x60000000 /* parity error indication received on a read */
959#define EATCR_ERRTYPR_PEW 0x70000000 /* parity error indication received on a write */
960#define EATCR_BN_MASK 0x0f000000 /* beat number */
961#define EATCR_BN_1st 0x00000000
962#define EATCR_BN_2ed 0x01000000
963#define EATCR_BN_3rd 0x02000000
964#define EATCR_BN_4th 0x03000000
965#define EATCR_BN_5th 0x0400000
966#define EATCR_BN_6th 0x05000000
967#define EATCR_BN_7th 0x06000000
968#define EATCR_BN_8th 0x07000000
969#define EATCR_BN_9th 0x08000000
970#define EATCR_TS_MASK 0x00300000 /* transaction size */
971#define EATCR_TS_4 0x00000000
972#define EATCR_TS_1 0x00100000
973#define EATCR_TS_2 0x00200000
974#define EATCR_TS_3 0x00300000
975#define EATCR_ES_MASK 0x000f0000 /* error source */
976#define EATCR_ES_EM 0x00000000 /* external master */
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500977#define EATCR_ES_DMA 0x00050000
Eran Libertyf046ccd2005-07-28 10:08:46 -0500978#define EATCR_CMD_MASK 0x0000f000
979#define EATCR_HBE_MASK 0x00000f00 /* PCI high byte enable*/
980#define EATCR_BE_MASK 0x000000f0 /* PCI byte enable */
981#define EATCR_HPB 0x00000004 /* high parity bit */
982#define EATCR_PB 0x00000002 /* parity bit*/
983#define EATCR_VI 0x00000001 /* error information valid */
984 u32 eacr;
985 u32 eeacr;
986 u32 edlcr;
987 u32 edhcr;
988 u32 gcr;
989 u32 ecr;
990 u32 gsr;
991 u8 res0[12];
992 u32 pitar2;
993 u8 res1[4];
994 u32 pibar2;
995 u32 piebar2;
996 u32 piwar2;
997 u8 res2[4];
998 u32 pitar1;
999 u8 res3[4];
1000 u32 pibar1;
1001 u32 piebar1;
1002 u32 piwar1;
1003 u8 res4[4];
1004 u32 pitar0;
1005 u8 res5[4];
1006 u32 pibar0;
1007 u8 res6[4];
1008 u32 piwar0;
1009 u8 res7[132];
1010#define PITAR_TA_MASK 0x000fffff
1011#define PIBAR_MASK 0xffffffff
1012#define PIEBAR_EBA_MASK 0x000fffff
1013#define PIWAR_EN 0x80000000
1014#define PIWAR_PF 0x20000000
1015#define PIWAR_RTT_MASK 0x000f0000
1016#define PIWAR_RTT_NO_SNOOP 0x00040000
1017#define PIWAR_RTT_SNOOP 0x00050000
1018#define PIWAR_WTT_MASK 0x0000f000
1019#define PIWAR_WTT_NO_SNOOP 0x00004000
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001020#define PIWAR_WTT_SNOOP 0x00005000
Eran Libertyf046ccd2005-07-28 10:08:46 -05001021#define PIWAR_IWS_MASK 0x0000003F
1022#define PIWAR_IWS_4K 0x0000000B
1023#define PIWAR_IWS_8K 0x0000000C
1024#define PIWAR_IWS_16K 0x0000000D
1025#define PIWAR_IWS_32K 0x0000000E
1026#define PIWAR_IWS_64K 0x0000000F
1027#define PIWAR_IWS_128K 0x00000010
1028#define PIWAR_IWS_256K 0x00000011
1029#define PIWAR_IWS_512K 0x00000012
1030#define PIWAR_IWS_1M 0x00000013
1031#define PIWAR_IWS_2M 0x00000014
1032#define PIWAR_IWS_4M 0x00000015
1033#define PIWAR_IWS_8M 0x00000016
1034#define PIWAR_IWS_16M 0x00000017
1035#define PIWAR_IWS_32M 0x00000018
1036#define PIWAR_IWS_64M 0x00000019
1037#define PIWAR_IWS_128M 0x0000001A
1038#define PIWAR_IWS_256M 0x0000001B
1039#define PIWAR_IWS_512M 0x0000001C
1040#define PIWAR_IWS_1G 0x0000001D
1041#define PIWAR_IWS_2G 0x0000001E
1042} pcictrl8349_t;
1043
1044/*
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001045 * USB
Eran Libertyf046ccd2005-07-28 10:08:46 -05001046 */
1047typedef struct usb8349 {
1048 u8 fixme[0x2000];
1049} usb8349_t;
1050
1051/*
1052 * TSEC
1053 */
1054typedef struct tsec8349 {
1055 u8 fixme[0x1000];
1056} tsec8349_t;
1057
1058/*
1059 * Security
1060 */
1061typedef struct security8349 {
1062 u8 fixme[0x10000];
1063} security8349_t;
1064
1065typedef struct immap {
1066 sysconf8349_t sysconf; /* System configuration */
1067 wdt8349_t wdt; /* Watch Dog Timer (WDT) Registers */
1068 rtclk8349_t rtc; /* Real Time Clock Module Registers */
1069 rtclk8349_t pit; /* Periodic Interval Timer */
1070 gtm8349_t gtm[2]; /* Global Timers Module */
1071 ipic8349_t ipic; /* Integrated Programmable Interrupt Controller */
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001072 arbiter8349_t arbiter; /* System Arbiter Registers */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001073 reset8349_t reset; /* Reset Module */
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001074 clk8349_t clk; /* System Clock Module */
Eran Libertyf046ccd2005-07-28 10:08:46 -05001075 pmc8349_t pmc; /* Power Management Control Module */
1076 gpio8349_t pgio[2]; /* general purpose I/O module */
1077 u8 res0[0x200];
1078 u8 DDL_DDR[0x100];
1079 u8 DDL_LBIU[0x100];
1080 u8 res1[0xE00];
1081 ddr8349_t ddr; /* DDR Memory Controller Memory */
1082 i2c_t i2c[2]; /* I2C1 Controller */
1083 u8 res2[0x1300];
1084 duart8349_t duart[2];/* DUART */
1085 u8 res3[0x900];
1086 lbus8349_t lbus; /* Local Bus Controller Registers */
1087 u8 res4[0x1000];
1088 spi8349_t spi; /* Serial Peripheral Interface */
1089 u8 res5[0xF00];
1090 dma8349_t dma; /* DMA */
1091 pciconf8349_t pci_conf[2]; /* PCI Software Configuration Registers */
1092 ios8349_t ios; /* Sequencer */
1093 pcictrl8349_t pci_ctrl[2]; /* PCI Controller Control and Status Registers */
1094 u8 res6[0x19900];
1095 usb8349_t usb;
1096 tsec8349_t tsec[2];
1097 u8 res7[0xA000];
Jon Loeligerde1d0a62005-08-01 13:20:47 -05001098 security8349_t security;
Eran Libertyf046ccd2005-07-28 10:08:46 -05001099} immap_t;
1100
1101#endif /* __IMMAP_8349__ */