blob: ff183033c9ee3532dc3ded56117669bb8d820c33 [file] [log] [blame]
Eran Liberty9095d4a2005-07-28 10:08:46 -05001/*
Dave Liu5245ff52007-09-18 12:36:11 +08002 * (C) Copyright 2004-2007 Freescale Semiconductor, Inc.
Jon Loeligerebc72242005-08-01 13:20:47 -05003 *
Dave Liuf5035922006-10-25 14:41:21 -05004 * MPC83xx Internal Memory Map
5 *
Dave Liu0b6bc772006-12-07 21:11:58 +08006 * Contributors:
7 * Dave Liu <daveliu@freescale.com>
8 * Tanya Jiang <tanya.jiang@freescale.com>
9 * Mandy Lavi <mandy.lavi@freescale.com>
10 * Eran Liberty <liberty@freescale.com>
Dave Liuf5035922006-10-25 14:41:21 -050011 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Dave Liu0b6bc772006-12-07 21:11:58 +080019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Dave Liuf5035922006-10-25 14:41:21 -050020 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 *
Eran Liberty9095d4a2005-07-28 10:08:46 -050027 */
Dave Liuf5035922006-10-25 14:41:21 -050028#ifndef __IMMAP_83xx__
29#define __IMMAP_83xx__
Eran Liberty9095d4a2005-07-28 10:08:46 -050030
31#include <asm/types.h>
Timur Tabiab347542006-11-03 19:15:00 -060032#include <asm/fsl_i2c.h>
Ben Warren7efe9272008-01-16 22:37:35 -050033#include <asm/mpc8xxx_spi.h>
Eran Liberty9095d4a2005-07-28 10:08:46 -050034
Jon Loeligerebc72242005-08-01 13:20:47 -050035/*
Dave Liu0b6bc772006-12-07 21:11:58 +080036 * Local Access Window
Eran Liberty9095d4a2005-07-28 10:08:46 -050037 */
Dave Liuf5035922006-10-25 14:41:21 -050038typedef struct law83xx {
Dave Liufba13692006-10-31 19:25:38 -060039 u32 bar; /* LBIU local access window base address register */
Dave Liufba13692006-10-31 19:25:38 -060040 u32 ar; /* LBIU local access window attribute register */
Dave Liuf5035922006-10-25 14:41:21 -050041} law83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -050042
Jon Loeligerebc72242005-08-01 13:20:47 -050043/*
Dave Liu0b6bc772006-12-07 21:11:58 +080044 * System configuration registers
Eran Liberty9095d4a2005-07-28 10:08:46 -050045 */
Dave Liuf5035922006-10-25 14:41:21 -050046typedef struct sysconf83xx {
Dave Liufba13692006-10-31 19:25:38 -060047 u32 immrbar; /* Internal memory map base address register */
Eran Liberty9095d4a2005-07-28 10:08:46 -050048 u8 res0[0x04];
Dave Liufba13692006-10-31 19:25:38 -060049 u32 altcbar; /* Alternate configuration base address register */
Eran Liberty9095d4a2005-07-28 10:08:46 -050050 u8 res1[0x14];
Dave Liufba13692006-10-31 19:25:38 -060051 law83xx_t lblaw[4]; /* LBIU local access window */
Eran Liberty9095d4a2005-07-28 10:08:46 -050052 u8 res2[0x20];
Dave Liufba13692006-10-31 19:25:38 -060053 law83xx_t pcilaw[2]; /* PCI local access window */
Eran Liberty9095d4a2005-07-28 10:08:46 -050054 u8 res3[0x30];
Dave Liufba13692006-10-31 19:25:38 -060055 law83xx_t ddrlaw[2]; /* DDR local access window */
Eran Liberty9095d4a2005-07-28 10:08:46 -050056 u8 res4[0x50];
Dave Liufba13692006-10-31 19:25:38 -060057 u32 sgprl; /* System General Purpose Register Low */
58 u32 sgprh; /* System General Purpose Register High */
59 u32 spridr; /* System Part and Revision ID Register */
Eran Liberty9095d4a2005-07-28 10:08:46 -050060 u8 res5[0x04];
Dave Liufba13692006-10-31 19:25:38 -060061 u32 spcr; /* System Priority Configuration Register */
Dave Liu0b6bc772006-12-07 21:11:58 +080062 u32 sicrl; /* System I/O Configuration Register Low */
63 u32 sicrh; /* System I/O Configuration Register High */
Nick Spence67c2e5c2008-08-22 23:52:40 -070064 u8 res6[0x04];
65 u32 sidcr0; /* System I/O Delay Configuration Register 0 */
66 u32 sidcr1; /* System I/O Delay Configuration Register 1 */
Dave Liue740c462006-12-07 21:13:15 +080067 u32 ddrcdr; /* DDR Control Driver Register */
68 u32 ddrdsr; /* DDR Debug Status Register */
Dave Liu5245ff52007-09-18 12:36:11 +080069 u32 obir; /* Output Buffer Impedance Register */
70 u8 res7[0xCC];
Dave Liuf5035922006-10-25 14:41:21 -050071} sysconf83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -050072
Jon Loeligerebc72242005-08-01 13:20:47 -050073/*
Eran Liberty9095d4a2005-07-28 10:08:46 -050074 * Watch Dog Timer (WDT) Registers
75 */
Dave Liuf5035922006-10-25 14:41:21 -050076typedef struct wdt83xx {
Jon Loeligerebc72242005-08-01 13:20:47 -050077 u8 res0[4];
Dave Liufba13692006-10-31 19:25:38 -060078 u32 swcrr; /* System watchdog control register */
79 u32 swcnr; /* System watchdog count register */
Jon Loeligerebc72242005-08-01 13:20:47 -050080 u8 res1[2];
Dave Liufba13692006-10-31 19:25:38 -060081 u16 swsrr; /* System watchdog service register */
Eran Liberty9095d4a2005-07-28 10:08:46 -050082 u8 res2[0xF0];
Dave Liuf5035922006-10-25 14:41:21 -050083} wdt83xx_t;
Jon Loeligerebc72242005-08-01 13:20:47 -050084
Eran Liberty9095d4a2005-07-28 10:08:46 -050085/*
86 * RTC/PIT Module Registers
87 */
Dave Liuf5035922006-10-25 14:41:21 -050088typedef struct rtclk83xx {
Dave Liufba13692006-10-31 19:25:38 -060089 u32 cnr; /* control register */
Dave Liufba13692006-10-31 19:25:38 -060090 u32 ldr; /* load register */
Dave Liufba13692006-10-31 19:25:38 -060091 u32 psr; /* prescale register */
Dave Liu0b6bc772006-12-07 21:11:58 +080092 u32 ctr; /* counter value field register */
Dave Liufba13692006-10-31 19:25:38 -060093 u32 evr; /* event register */
Dave Liufba13692006-10-31 19:25:38 -060094 u32 alr; /* alarm register */
Eran Liberty9095d4a2005-07-28 10:08:46 -050095 u8 res0[0xE8];
Dave Liuf5035922006-10-25 14:41:21 -050096} rtclk83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -050097
98/*
Dave Liu0b6bc772006-12-07 21:11:58 +080099 * Global timer module
Eran Liberty9095d4a2005-07-28 10:08:46 -0500100 */
Dave Liuf5035922006-10-25 14:41:21 -0500101typedef struct gtm83xx {
Dave Liu0b6bc772006-12-07 21:11:58 +0800102 u8 cfr1; /* Timer1/2 Configuration */
Dave Liufba13692006-10-31 19:25:38 -0600103 u8 res0[3];
Dave Liu0b6bc772006-12-07 21:11:58 +0800104 u8 cfr2; /* Timer3/4 Configuration */
Dave Liufba13692006-10-31 19:25:38 -0600105 u8 res1[10];
Dave Liu0b6bc772006-12-07 21:11:58 +0800106 u16 mdr1; /* Timer1 Mode Register */
107 u16 mdr2; /* Timer2 Mode Register */
108 u16 rfr1; /* Timer1 Reference Register */
109 u16 rfr2; /* Timer2 Reference Register */
110 u16 cpr1; /* Timer1 Capture Register */
111 u16 cpr2; /* Timer2 Capture Register */
112 u16 cnr1; /* Timer1 Counter Register */
113 u16 cnr2; /* Timer2 Counter Register */
114 u16 mdr3; /* Timer3 Mode Register */
115 u16 mdr4; /* Timer4 Mode Register */
116 u16 rfr3; /* Timer3 Reference Register */
117 u16 rfr4; /* Timer4 Reference Register */
118 u16 cpr3; /* Timer3 Capture Register */
119 u16 cpr4; /* Timer4 Capture Register */
120 u16 cnr3; /* Timer3 Counter Register */
121 u16 cnr4; /* Timer4 Counter Register */
122 u16 evr1; /* Timer1 Event Register */
123 u16 evr2; /* Timer2 Event Register */
124 u16 evr3; /* Timer3 Event Register */
125 u16 evr4; /* Timer4 Event Register */
126 u16 psr1; /* Timer1 Prescaler Register */
127 u16 psr2; /* Timer2 Prescaler Register */
128 u16 psr3; /* Timer3 Prescaler Register */
129 u16 psr4; /* Timer4 Prescaler Register */
Dave Liufba13692006-10-31 19:25:38 -0600130 u8 res[0xC0];
Dave Liuf5035922006-10-25 14:41:21 -0500131} gtm83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500132
133/*
134 * Integrated Programmable Interrupt Controller
135 */
Dave Liuf5035922006-10-25 14:41:21 -0500136typedef struct ipic83xx {
Dave Liu0b6bc772006-12-07 21:11:58 +0800137 u32 sicfr; /* System Global Interrupt Configuration Register */
138 u32 sivcr; /* System Global Interrupt Vector Register */
139 u32 sipnr_h; /* System Internal Interrupt Pending Register - High */
140 u32 sipnr_l; /* System Internal Interrupt Pending Register - Low */
141 u32 siprr_a; /* System Internal Interrupt Group A Priority Register */
Dave Liufba13692006-10-31 19:25:38 -0600142 u8 res0[8];
Dave Liu0b6bc772006-12-07 21:11:58 +0800143 u32 siprr_d; /* System Internal Interrupt Group D Priority Register */
144 u32 simsr_h; /* System Internal Interrupt Mask Register - High */
145 u32 simsr_l; /* System Internal Interrupt Mask Register - Low */
Dave Liufba13692006-10-31 19:25:38 -0600146 u8 res1[4];
Dave Liu0b6bc772006-12-07 21:11:58 +0800147 u32 sepnr; /* System External Interrupt Pending Register */
148 u32 smprr_a; /* System Mixed Interrupt Group A Priority Register */
149 u32 smprr_b; /* System Mixed Interrupt Group B Priority Register */
150 u32 semsr; /* System External Interrupt Mask Register */
151 u32 secnr; /* System External Interrupt Control Register */
152 u32 sersr; /* System Error Status Register */
153 u32 sermr; /* System Error Mask Register */
154 u32 sercr; /* System Error Control Register */
Dave Liufba13692006-10-31 19:25:38 -0600155 u8 res2[4];
Dave Liu0b6bc772006-12-07 21:11:58 +0800156 u32 sifcr_h; /* System Internal Interrupt Force Register - High */
157 u32 sifcr_l; /* System Internal Interrupt Force Register - Low */
158 u32 sefcr; /* System External Interrupt Force Register */
159 u32 serfr; /* System Error Force Register */
Dave Liufba13692006-10-31 19:25:38 -0600160 u32 scvcr; /* System Critical Interrupt Vector Register */
Dave Liufba13692006-10-31 19:25:38 -0600161 u32 smvcr; /* System Management Interrupt Vector Register */
Dave Liufba13692006-10-31 19:25:38 -0600162 u8 res3[0x98];
Dave Liuf5035922006-10-25 14:41:21 -0500163} ipic83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500164
165/*
166 * System Arbiter Registers
167 */
Dave Liuf5035922006-10-25 14:41:21 -0500168typedef struct arbiter83xx {
Dave Liufba13692006-10-31 19:25:38 -0600169 u32 acr; /* Arbiter Configuration Register */
Dave Liufba13692006-10-31 19:25:38 -0600170 u32 atr; /* Arbiter Timers Register */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500171 u8 res[4];
Dave Liu0b6bc772006-12-07 21:11:58 +0800172 u32 aer; /* Arbiter Event Register */
173 u32 aidr; /* Arbiter Interrupt Definition Register */
174 u32 amr; /* Arbiter Mask Register */
Dave Liufba13692006-10-31 19:25:38 -0600175 u32 aeatr; /* Arbiter Event Attributes Register */
Dave Liufba13692006-10-31 19:25:38 -0600176 u32 aeadr; /* Arbiter Event Address Register */
Dave Liu0b6bc772006-12-07 21:11:58 +0800177 u32 aerr; /* Arbiter Event Response Register */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500178 u8 res1[0xDC];
Dave Liuf5035922006-10-25 14:41:21 -0500179} arbiter83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500180
181/*
182 * Reset Module
183 */
Dave Liuf5035922006-10-25 14:41:21 -0500184typedef struct reset83xx {
Dave Liu0b6bc772006-12-07 21:11:58 +0800185 u32 rcwl; /* Reset Configuration Word Low Register */
186 u32 rcwh; /* Reset Configuration Word High Register */
Dave Liufba13692006-10-31 19:25:38 -0600187 u8 res0[8];
Dave Liu0b6bc772006-12-07 21:11:58 +0800188 u32 rsr; /* Reset Status Register */
189 u32 rmr; /* Reset Mode Register */
190 u32 rpr; /* Reset protection Register */
191 u32 rcr; /* Reset Control Register */
192 u32 rcer; /* Reset Control Enable Register */
Dave Liufba13692006-10-31 19:25:38 -0600193 u8 res1[0xDC];
Dave Liuf5035922006-10-25 14:41:21 -0500194} reset83xx_t;
Jon Loeligerebc72242005-08-01 13:20:47 -0500195
Dave Liu0b6bc772006-12-07 21:11:58 +0800196/*
197 * Clock Module
198 */
Dave Liuf5035922006-10-25 14:41:21 -0500199typedef struct clk83xx {
Dave Liu0b6bc772006-12-07 21:11:58 +0800200 u32 spmr; /* system PLL mode Register */
201 u32 occr; /* output clock control Register */
202 u32 sccr; /* system clock control Register */
Dave Liufba13692006-10-31 19:25:38 -0600203 u8 res0[0xF4];
Dave Liuf5035922006-10-25 14:41:21 -0500204} clk83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500205
206/*
207 * Power Management Control Module
208 */
Dave Liuf5035922006-10-25 14:41:21 -0500209typedef struct pmc83xx {
Dave Liu0b6bc772006-12-07 21:11:58 +0800210 u32 pmccr; /* PMC Configuration Register */
211 u32 pmcer; /* PMC Event Register */
212 u32 pmcmr; /* PMC Mask Register */
Scott Wood9f15d502007-04-16 14:31:55 -0500213 u32 pmccr1; /* PMC Configuration Register 1 */
214 u32 pmccr2; /* PMC Configuration Register 2 */
215 u8 res0[0xEC];
Dave Liuf5035922006-10-25 14:41:21 -0500216} pmc83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500217
218/*
Dave Liu0b6bc772006-12-07 21:11:58 +0800219 * General purpose I/O module
Eran Liberty9095d4a2005-07-28 10:08:46 -0500220 */
Dave Liuf5035922006-10-25 14:41:21 -0500221typedef struct gpio83xx {
Dave Liufba13692006-10-31 19:25:38 -0600222 u32 dir; /* direction register */
223 u32 odr; /* open drain register */
224 u32 dat; /* data register */
225 u32 ier; /* interrupt event register */
226 u32 imr; /* interrupt mask register */
227 u32 icr; /* external interrupt control register */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500228 u8 res0[0xE8];
Dave Liuf5035922006-10-25 14:41:21 -0500229} gpio83xx_t;
Dave Liufba13692006-10-31 19:25:38 -0600230
Dave Liufba13692006-10-31 19:25:38 -0600231/*
232 * QE Ports Interrupts Registers
233 */
234typedef struct qepi83xx {
235 u8 res0[0xC];
236 u32 qepier; /* QE Ports Interrupt Event Register */
Dave Liufba13692006-10-31 19:25:38 -0600237 u32 qepimr; /* QE Ports Interrupt Mask Register */
Dave Liufba13692006-10-31 19:25:38 -0600238 u32 qepicr; /* QE Ports Interrupt Control Register */
Dave Liufba13692006-10-31 19:25:38 -0600239 u8 res1[0xE8];
240} qepi83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500241
Jon Loeligerebc72242005-08-01 13:20:47 -0500242/*
Dave Liu0b6bc772006-12-07 21:11:58 +0800243 * QE Parallel I/O Ports
Dave Liufba13692006-10-31 19:25:38 -0600244 */
245typedef struct gpio_n {
246 u32 podr; /* Open Drain Register */
247 u32 pdat; /* Data Register */
248 u32 dir1; /* direction register 1 */
249 u32 dir2; /* direction register 2 */
250 u32 ppar1; /* Pin Assignment Register 1 */
251 u32 ppar2; /* Pin Assignment Register 2 */
252} gpio_n_t;
253
Dave Liu0b6bc772006-12-07 21:11:58 +0800254typedef struct qegpio83xx {
Dave Liufba13692006-10-31 19:25:38 -0600255 gpio_n_t ioport[0x7];
256 u8 res0[0x358];
Dave Liu0b6bc772006-12-07 21:11:58 +0800257} qepio83xx_t;
Dave Liufba13692006-10-31 19:25:38 -0600258
259/*
260 * QE Secondary Bus Access Windows
261 */
Dave Liufba13692006-10-31 19:25:38 -0600262typedef struct qesba83xx {
263 u32 lbmcsar; /* Local bus memory controller start address */
Dave Liufba13692006-10-31 19:25:38 -0600264 u32 sdmcsar; /* Secondary DDR memory controller start address */
Dave Liufba13692006-10-31 19:25:38 -0600265 u8 res0[0x38];
266 u32 lbmcear; /* Local bus memory controller end address */
Dave Liufba13692006-10-31 19:25:38 -0600267 u32 sdmcear; /* Secondary DDR memory controller end address */
Dave Liufba13692006-10-31 19:25:38 -0600268 u8 res1[0x38];
Dave Liu0b6bc772006-12-07 21:11:58 +0800269 u32 lbmcar; /* Local bus memory controller attributes */
Dave Liufba13692006-10-31 19:25:38 -0600270 u32 sdmcar; /* Secondary DDR memory controller attributes */
Dave Liu0b6bc772006-12-07 21:11:58 +0800271 u8 res2[0x378];
Dave Liufba13692006-10-31 19:25:38 -0600272} qesba83xx_t;
Dave Liufba13692006-10-31 19:25:38 -0600273
274/*
Eran Liberty9095d4a2005-07-28 10:08:46 -0500275 * DDR Memory Controller Memory Map
276 */
Dave Liufba13692006-10-31 19:25:38 -0600277typedef struct ddr_cs_bnds {
Jon Loeligerebc72242005-08-01 13:20:47 -0500278 u32 csbnds;
Dave Liufba13692006-10-31 19:25:38 -0600279 u8 res0[4];
Eran Liberty9095d4a2005-07-28 10:08:46 -0500280} ddr_cs_bnds_t;
281
Dave Liuf5035922006-10-25 14:41:21 -0500282typedef struct ddr83xx {
Dave Liu0b6bc772006-12-07 21:11:58 +0800283 ddr_cs_bnds_t csbnds[4];/* Chip Select x Memory Bounds */
Jon Loeligerebc72242005-08-01 13:20:47 -0500284 u8 res0[0x60];
Dave Liu0b6bc772006-12-07 21:11:58 +0800285 u32 cs_config[4]; /* Chip Select x Configuration */
Dave Liue740c462006-12-07 21:13:15 +0800286 u8 res1[0x70];
287 u32 timing_cfg_3; /* SDRAM Timing Configuration 3 */
288 u32 timing_cfg_0; /* SDRAM Timing Configuration 0 */
Dave Liu0b6bc772006-12-07 21:11:58 +0800289 u32 timing_cfg_1; /* SDRAM Timing Configuration 1 */
290 u32 timing_cfg_2; /* SDRAM Timing Configuration 2 */
291 u32 sdram_cfg; /* SDRAM Control Configuration */
Dave Liue740c462006-12-07 21:13:15 +0800292 u32 sdram_cfg2; /* SDRAM Control Configuration 2 */
Dave Liu0b6bc772006-12-07 21:11:58 +0800293 u32 sdram_mode; /* SDRAM Mode Configuration */
Dave Liue740c462006-12-07 21:13:15 +0800294 u32 sdram_mode2; /* SDRAM Mode Configuration 2 */
295 u32 sdram_md_cntl; /* SDRAM Mode Control */
Dave Liu0b6bc772006-12-07 21:11:58 +0800296 u32 sdram_interval; /* SDRAM Interval Configuration */
Dave Liue740c462006-12-07 21:13:15 +0800297 u32 ddr_data_init; /* SDRAM Data Initialization */
298 u8 res2[4];
299 u32 sdram_clk_cntl; /* SDRAM Clock Control */
300 u8 res3[0x14];
301 u32 ddr_init_addr; /* DDR training initialization address */
302 u32 ddr_init_ext_addr; /* DDR training initialization extended address */
303 u8 res4[0xAA8];
304 u32 ddr_ip_rev1; /* DDR IP block revision 1 */
305 u32 ddr_ip_rev2; /* DDR IP block revision 2 */
306 u8 res5[0x200];
Dave Liu0b6bc772006-12-07 21:11:58 +0800307 u32 data_err_inject_hi; /* Memory Data Path Error Injection Mask High */
308 u32 data_err_inject_lo; /* Memory Data Path Error Injection Mask Low */
309 u32 ecc_err_inject; /* Memory Data Path Error Injection Mask ECC */
Dave Liue740c462006-12-07 21:13:15 +0800310 u8 res6[0x14];
Dave Liu0b6bc772006-12-07 21:11:58 +0800311 u32 capture_data_hi; /* Memory Data Path Read Capture High */
312 u32 capture_data_lo; /* Memory Data Path Read Capture Low */
313 u32 capture_ecc; /* Memory Data Path Read Capture ECC */
Dave Liue740c462006-12-07 21:13:15 +0800314 u8 res7[0x14];
Dave Liu0b6bc772006-12-07 21:11:58 +0800315 u32 err_detect; /* Memory Error Detect */
316 u32 err_disable; /* Memory Error Disable */
317 u32 err_int_en; /* Memory Error Interrupt Enable */
318 u32 capture_attributes; /* Memory Error Attributes Capture */
319 u32 capture_address; /* Memory Error Address Capture */
320 u32 capture_ext_address;/* Memory Error Extended Address Capture */
321 u32 err_sbe; /* Memory Single-Bit ECC Error Management */
Dave Liue740c462006-12-07 21:13:15 +0800322 u8 res8[0xA4];
Eran Liberty9095d4a2005-07-28 10:08:46 -0500323 u32 debug_reg;
Dave Liue740c462006-12-07 21:13:15 +0800324 u8 res9[0xFC];
Dave Liuf5035922006-10-25 14:41:21 -0500325} ddr83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500326
327/*
Eran Liberty9095d4a2005-07-28 10:08:46 -0500328 * DUART
329 */
Dave Liufba13692006-10-31 19:25:38 -0600330typedef struct duart83xx {
Dave Liu0b6bc772006-12-07 21:11:58 +0800331 u8 urbr_ulcr_udlb; /* combined register for URBR, UTHR and UDLB */
332 u8 uier_udmb; /* combined register for UIER and UDMB */
333 u8 uiir_ufcr_uafr; /* combined register for UIIR, UFCR and UAFR */
334 u8 ulcr; /* line control register */
335 u8 umcr; /* MODEM control register */
336 u8 ulsr; /* line status register */
337 u8 umsr; /* MODEM status register */
338 u8 uscr; /* scratch register */
Jon Loeligerebc72242005-08-01 13:20:47 -0500339 u8 res0[8];
Dave Liu0b6bc772006-12-07 21:11:58 +0800340 u8 udsr; /* DMA status register */
Jon Loeligerebc72242005-08-01 13:20:47 -0500341 u8 res1[3];
342 u8 res2[0xEC];
Dave Liuf5035922006-10-25 14:41:21 -0500343} duart83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500344
345/*
346 * Local Bus Controller Registers
347 */
Dave Liufba13692006-10-31 19:25:38 -0600348typedef struct lbus_bank {
Dave Liu0b6bc772006-12-07 21:11:58 +0800349 u32 br; /* Base Register */
350 u32 or; /* Option Register */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500351} lbus_bank_t;
352
Dave Liuf5035922006-10-25 14:41:21 -0500353typedef struct lbus83xx {
Jon Loeligerebc72242005-08-01 13:20:47 -0500354 lbus_bank_t bank[8];
355 u8 res0[0x28];
Dave Liu0b6bc772006-12-07 21:11:58 +0800356 u32 mar; /* UPM Address Register */
Jon Loeligerebc72242005-08-01 13:20:47 -0500357 u8 res1[0x4];
Dave Liu0b6bc772006-12-07 21:11:58 +0800358 u32 mamr; /* UPMA Mode Register */
359 u32 mbmr; /* UPMB Mode Register */
360 u32 mcmr; /* UPMC Mode Register */
Jon Loeligerebc72242005-08-01 13:20:47 -0500361 u8 res2[0x8];
Dave Liu0b6bc772006-12-07 21:11:58 +0800362 u32 mrtpr; /* Memory Refresh Timer Prescaler Register */
363 u32 mdr; /* UPM Data Register */
Scott Wood9f15d502007-04-16 14:31:55 -0500364 u8 res3[0x4];
365 u32 lsor; /* Special Operation Initiation Register */
Dave Liu0b6bc772006-12-07 21:11:58 +0800366 u32 lsdmr; /* SDRAM Mode Register */
Jon Loeligerebc72242005-08-01 13:20:47 -0500367 u8 res4[0x8];
Dave Liu0b6bc772006-12-07 21:11:58 +0800368 u32 lurt; /* UPM Refresh Timer */
369 u32 lsrt; /* SDRAM Refresh Timer */
Jon Loeligerebc72242005-08-01 13:20:47 -0500370 u8 res5[0x8];
Dave Liu0b6bc772006-12-07 21:11:58 +0800371 u32 ltesr; /* Transfer Error Status Register */
372 u32 ltedr; /* Transfer Error Disable Register */
373 u32 lteir; /* Transfer Error Interrupt Register */
374 u32 lteatr; /* Transfer Error Attributes Register */
375 u32 ltear; /* Transfer Error Address Register */
Jon Loeligerebc72242005-08-01 13:20:47 -0500376 u8 res6[0xC];
Dave Liu0b6bc772006-12-07 21:11:58 +0800377 u32 lbcr; /* Configuration Register */
378 u32 lcrr; /* Clock Ratio Register */
Scott Wood9f15d502007-04-16 14:31:55 -0500379 u8 res7[0x8];
380 u32 fmr; /* Flash Mode Register */
381 u32 fir; /* Flash Instruction Register */
382 u32 fcr; /* Flash Command Register */
383 u32 fbar; /* Flash Block Addr Register */
384 u32 fpar; /* Flash Page Addr Register */
385 u32 fbcr; /* Flash Byte Count Register */
386 u8 res8[0xF08];
Dave Liuf5035922006-10-25 14:41:21 -0500387} lbus83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500388
389/*
Marian Balakowicz7ec9ebc2006-03-14 16:14:48 +0100390 * DMA/Messaging Unit
391 */
Dave Liuf5035922006-10-25 14:41:21 -0500392typedef struct dma83xx {
Dave Liufba13692006-10-31 19:25:38 -0600393 u32 res0[0xC]; /* 0x0-0x29 reseverd */
394 u32 omisr; /* 0x30 Outbound message interrupt status register */
395 u32 omimr; /* 0x34 Outbound message interrupt mask register */
396 u32 res1[0x6]; /* 0x38-0x49 reserved */
Dave Liufba13692006-10-31 19:25:38 -0600397 u32 imr0; /* 0x50 Inbound message register 0 */
398 u32 imr1; /* 0x54 Inbound message register 1 */
399 u32 omr0; /* 0x58 Outbound message register 0 */
400 u32 omr1; /* 0x5C Outbound message register 1 */
Dave Liufba13692006-10-31 19:25:38 -0600401 u32 odr; /* 0x60 Outbound doorbell register */
402 u32 res2; /* 0x64-0x67 reserved */
403 u32 idr; /* 0x68 Inbound doorbell register */
404 u32 res3[0x5]; /* 0x6C-0x79 reserved */
Dave Liufba13692006-10-31 19:25:38 -0600405 u32 imisr; /* 0x80 Inbound message interrupt status register */
406 u32 imimr; /* 0x84 Inbound message interrupt mask register */
407 u32 res4[0x1E]; /* 0x88-0x99 reserved */
Dave Liufba13692006-10-31 19:25:38 -0600408 u32 dmamr0; /* 0x100 DMA 0 mode register */
409 u32 dmasr0; /* 0x104 DMA 0 status register */
410 u32 dmacdar0; /* 0x108 DMA 0 current descriptor address register */
411 u32 res5; /* 0x10C reserved */
412 u32 dmasar0; /* 0x110 DMA 0 source address register */
413 u32 res6; /* 0x114 reserved */
414 u32 dmadar0; /* 0x118 DMA 0 destination address register */
415 u32 res7; /* 0x11C reserved */
416 u32 dmabcr0; /* 0x120 DMA 0 byte count register */
417 u32 dmandar0; /* 0x124 DMA 0 next descriptor address register */
418 u32 res8[0x16]; /* 0x128-0x179 reserved */
Dave Liufba13692006-10-31 19:25:38 -0600419 u32 dmamr1; /* 0x180 DMA 1 mode register */
420 u32 dmasr1; /* 0x184 DMA 1 status register */
421 u32 dmacdar1; /* 0x188 DMA 1 current descriptor address register */
422 u32 res9; /* 0x18C reserved */
423 u32 dmasar1; /* 0x190 DMA 1 source address register */
424 u32 res10; /* 0x194 reserved */
425 u32 dmadar1; /* 0x198 DMA 1 destination address register */
426 u32 res11; /* 0x19C reserved */
427 u32 dmabcr1; /* 0x1A0 DMA 1 byte count register */
428 u32 dmandar1; /* 0x1A4 DMA 1 next descriptor address register */
429 u32 res12[0x16]; /* 0x1A8-0x199 reserved */
Dave Liufba13692006-10-31 19:25:38 -0600430 u32 dmamr2; /* 0x200 DMA 2 mode register */
431 u32 dmasr2; /* 0x204 DMA 2 status register */
432 u32 dmacdar2; /* 0x208 DMA 2 current descriptor address register */
433 u32 res13; /* 0x20C reserved */
434 u32 dmasar2; /* 0x210 DMA 2 source address register */
435 u32 res14; /* 0x214 reserved */
436 u32 dmadar2; /* 0x218 DMA 2 destination address register */
437 u32 res15; /* 0x21C reserved */
438 u32 dmabcr2; /* 0x220 DMA 2 byte count register */
439 u32 dmandar2; /* 0x224 DMA 2 next descriptor address register */
440 u32 res16[0x16]; /* 0x228-0x279 reserved */
Dave Liufba13692006-10-31 19:25:38 -0600441 u32 dmamr3; /* 0x280 DMA 3 mode register */
442 u32 dmasr3; /* 0x284 DMA 3 status register */
443 u32 dmacdar3; /* 0x288 DMA 3 current descriptor address register */
444 u32 res17; /* 0x28C reserved */
445 u32 dmasar3; /* 0x290 DMA 3 source address register */
446 u32 res18; /* 0x294 reserved */
447 u32 dmadar3; /* 0x298 DMA 3 destination address register */
448 u32 res19; /* 0x29C reserved */
449 u32 dmabcr3; /* 0x2A0 DMA 3 byte count register */
450 u32 dmandar3; /* 0x2A4 DMA 3 next descriptor address register */
Dave Liufba13692006-10-31 19:25:38 -0600451 u32 dmagsr; /* 0x2A8 DMA general status register */
452 u32 res20[0x15]; /* 0x2AC-0x2FF reserved */
Dave Liuf5035922006-10-25 14:41:21 -0500453} dma83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500454
455/*
456 * PCI Software Configuration Registers
457 */
Dave Liuf5035922006-10-25 14:41:21 -0500458typedef struct pciconf83xx {
Dave Liufba13692006-10-31 19:25:38 -0600459 u32 config_address;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500460 u32 config_data;
461 u32 int_ack;
Dave Liufba13692006-10-31 19:25:38 -0600462 u8 res[116];
Dave Liuf5035922006-10-25 14:41:21 -0500463} pciconf83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500464
465/*
466 * PCI Outbound Translation Register
467 */
468typedef struct pci_outbound_window {
Dave Liufba13692006-10-31 19:25:38 -0600469 u32 potar;
470 u8 res0[4];
471 u32 pobar;
472 u8 res1[4];
473 u32 pocmr;
474 u8 res2[4];
Dave Liuf5035922006-10-25 14:41:21 -0500475} pot83xx_t;
Dave Liufba13692006-10-31 19:25:38 -0600476
Eran Liberty9095d4a2005-07-28 10:08:46 -0500477/*
478 * Sequencer
Jon Loeligerebc72242005-08-01 13:20:47 -0500479 */
Dave Liuf5035922006-10-25 14:41:21 -0500480typedef struct ios83xx {
Dave Liufba13692006-10-31 19:25:38 -0600481 pot83xx_t pot[6];
Dave Liufba13692006-10-31 19:25:38 -0600482 u8 res0[0x60];
483 u32 pmcr;
484 u8 res1[4];
485 u32 dtcr;
486 u8 res2[4];
Dave Liuf5035922006-10-25 14:41:21 -0500487} ios83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500488
489/*
490 * PCI Controller Control and Status Registers
491 */
Dave Liuf5035922006-10-25 14:41:21 -0500492typedef struct pcictrl83xx {
Dave Liufba13692006-10-31 19:25:38 -0600493 u32 esr;
Dave Liufba13692006-10-31 19:25:38 -0600494 u32 ecdr;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500495 u32 eer;
Dave Liufba13692006-10-31 19:25:38 -0600496 u32 eatcr;
Dave Liufba13692006-10-31 19:25:38 -0600497 u32 eacr;
498 u32 eeacr;
Dave Liufba13692006-10-31 19:25:38 -0600499 u32 edlcr;
500 u32 edhcr;
Dave Liufba13692006-10-31 19:25:38 -0600501 u32 gcr;
502 u32 ecr;
503 u32 gsr;
504 u8 res0[12];
505 u32 pitar2;
506 u8 res1[4];
507 u32 pibar2;
508 u32 piebar2;
509 u32 piwar2;
510 u8 res2[4];
511 u32 pitar1;
512 u8 res3[4];
513 u32 pibar1;
514 u32 piebar1;
515 u32 piwar1;
516 u8 res4[4];
517 u32 pitar0;
518 u8 res5[4];
519 u32 pibar0;
520 u8 res6[4];
521 u32 piwar0;
522 u8 res7[132];
Dave Liuf5035922006-10-25 14:41:21 -0500523} pcictrl83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500524
525/*
Jon Loeligerebc72242005-08-01 13:20:47 -0500526 * USB
Eran Liberty9095d4a2005-07-28 10:08:46 -0500527 */
Dave Liuf5035922006-10-25 14:41:21 -0500528typedef struct usb83xx {
Scott Wood9f15d502007-04-16 14:31:55 -0500529 u8 fixme[0x1000];
Dave Liuf5035922006-10-25 14:41:21 -0500530} usb83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500531
532/*
533 * TSEC
534 */
Dave Liuf5035922006-10-25 14:41:21 -0500535typedef struct tsec83xx {
Eran Liberty9095d4a2005-07-28 10:08:46 -0500536 u8 fixme[0x1000];
Dave Liuf5035922006-10-25 14:41:21 -0500537} tsec83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500538
539/*
540 * Security
541 */
Dave Liuf5035922006-10-25 14:41:21 -0500542typedef struct security83xx {
Eran Liberty9095d4a2005-07-28 10:08:46 -0500543 u8 fixme[0x10000];
Dave Liuf5035922006-10-25 14:41:21 -0500544} security83xx_t;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500545
Dave Liu5245ff52007-09-18 12:36:11 +0800546/*
547 * PCI Express
548 */
549typedef struct pex83xx {
550 u8 fixme[0x1000];
551} pex83xx_t;
552
553/*
554 * SATA
555 */
556typedef struct sata83xx {
557 u8 fixme[0x1000];
558} sata83xx_t;
559
560/*
561 * eSDHC
562 */
563typedef struct sdhc83xx {
564 u8 fixme[0x1000];
565} sdhc83xx_t;
566
567/*
568 * SerDes
569 */
570typedef struct serdes83xx {
571 u8 fixme[0x100];
572} serdes83xx_t;
573
574/*
575 * On Chip ROM
576 */
577typedef struct rom83xx {
578 u8 mem[0x10000];
579} rom83xx_t;
580
Dave Liue0cfec82007-09-18 12:36:58 +0800581/*
582 * TDM
583 */
584typedef struct tdm83xx {
585 u8 fixme[0x200];
586} tdm83xx_t;
587
588/*
589 * TDM DMAC
590 */
591typedef struct tdmdmac83xx {
592 u8 fixme[0x2000];
593} tdmdmac83xx_t;
594
Kumar Galab7870e72007-01-30 14:08:30 -0600595#if defined(CONFIG_MPC834X)
Dave Liu0b6bc772006-12-07 21:11:58 +0800596typedef struct immap {
597 sysconf83xx_t sysconf; /* System configuration */
598 wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */
599 rtclk83xx_t rtc; /* Real Time Clock Module Registers */
600 rtclk83xx_t pit; /* Periodic Interval Timer */
601 gtm83xx_t gtm[2]; /* Global Timers Module */
602 ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */
603 arbiter83xx_t arbiter; /* System Arbiter Registers */
604 reset83xx_t reset; /* Reset Module */
605 clk83xx_t clk; /* System Clock Module */
606 pmc83xx_t pmc; /* Power Management Control Module */
607 gpio83xx_t gpio[2]; /* General purpose I/O module */
608 u8 res0[0x200];
609 u8 dll_ddr[0x100];
610 u8 dll_lbc[0x100];
611 u8 res1[0xE00];
612 ddr83xx_t ddr; /* DDR Memory Controller Memory */
613 fsl_i2c_t i2c[2]; /* I2C Controllers */
614 u8 res2[0x1300];
615 duart83xx_t duart[2]; /* DUART */
616 u8 res3[0x900];
617 lbus83xx_t lbus; /* Local Bus Controller Registers */
618 u8 res4[0x1000];
Ben Warren7efe9272008-01-16 22:37:35 -0500619 spi8xxx_t spi; /* Serial Peripheral Interface */
Dave Liu0b6bc772006-12-07 21:11:58 +0800620 dma83xx_t dma; /* DMA */
621 pciconf83xx_t pci_conf[2]; /* PCI Software Configuration Registers */
622 ios83xx_t ios; /* Sequencer */
623 pcictrl83xx_t pci_ctrl[2]; /* PCI Controller Control and Status Registers */
624 u8 res5[0x19900];
Scott Wood9f15d502007-04-16 14:31:55 -0500625 usb83xx_t usb[2];
626 tsec83xx_t tsec[2];
627 u8 res6[0xA000];
628 security83xx_t security;
629 u8 res7[0xC0000];
630} immap_t;
631
Dave Liue0cfec82007-09-18 12:36:58 +0800632#elif defined(CONFIG_MPC8313)
Scott Wood9f15d502007-04-16 14:31:55 -0500633typedef struct immap {
634 sysconf83xx_t sysconf; /* System configuration */
635 wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */
636 rtclk83xx_t rtc; /* Real Time Clock Module Registers */
637 rtclk83xx_t pit; /* Periodic Interval Timer */
638 gtm83xx_t gtm[2]; /* Global Timers Module */
639 ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */
640 arbiter83xx_t arbiter; /* System Arbiter Registers */
641 reset83xx_t reset; /* Reset Module */
642 clk83xx_t clk; /* System Clock Module */
643 pmc83xx_t pmc; /* Power Management Control Module */
644 gpio83xx_t gpio[1]; /* General purpose I/O module */
645 u8 res0[0x1300];
646 ddr83xx_t ddr; /* DDR Memory Controller Memory */
647 fsl_i2c_t i2c[2]; /* I2C Controllers */
648 u8 res1[0x1300];
649 duart83xx_t duart[2]; /* DUART */
650 u8 res2[0x900];
651 lbus83xx_t lbus; /* Local Bus Controller Registers */
652 u8 res3[0x1000];
Ben Warren7efe9272008-01-16 22:37:35 -0500653 spi8xxx_t spi; /* Serial Peripheral Interface */
Scott Wood9f15d502007-04-16 14:31:55 -0500654 dma83xx_t dma; /* DMA */
655 pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */
656 u8 res4[0x80];
657 ios83xx_t ios; /* Sequencer */
658 pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */
659 u8 res5[0x1aa00];
660 usb83xx_t usb[1];
Dave Liu0b6bc772006-12-07 21:11:58 +0800661 tsec83xx_t tsec[2];
662 u8 res6[0xA000];
663 security83xx_t security;
664 u8 res7[0xC0000];
665} immap_t;
Dave Liufba13692006-10-31 19:25:38 -0600666
Dave Liue0cfec82007-09-18 12:36:58 +0800667#elif defined(CONFIG_MPC8315)
668typedef struct immap {
669 sysconf83xx_t sysconf; /* System configuration */
670 wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */
671 rtclk83xx_t rtc; /* Real Time Clock Module Registers */
672 rtclk83xx_t pit; /* Periodic Interval Timer */
673 gtm83xx_t gtm[2]; /* Global Timers Module */
674 ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */
675 arbiter83xx_t arbiter; /* System Arbiter Registers */
676 reset83xx_t reset; /* Reset Module */
677 clk83xx_t clk; /* System Clock Module */
678 pmc83xx_t pmc; /* Power Management Control Module */
679 gpio83xx_t gpio[1]; /* General purpose I/O module */
680 u8 res0[0x1300];
681 ddr83xx_t ddr; /* DDR Memory Controller Memory */
682 fsl_i2c_t i2c[2]; /* I2C Controllers */
683 u8 res1[0x1300];
684 duart83xx_t duart[2]; /* DUART */
685 u8 res2[0x900];
686 lbus83xx_t lbus; /* Local Bus Controller Registers */
687 u8 res3[0x1000];
Ben Warren7efe9272008-01-16 22:37:35 -0500688 spi8xxx_t spi; /* Serial Peripheral Interface */
Dave Liue0cfec82007-09-18 12:36:58 +0800689 dma83xx_t dma; /* DMA */
690 pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */
691 u8 res4[0x80];
692 ios83xx_t ios; /* Sequencer */
693 pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */
694 u8 res5[0xa00];
695 pex83xx_t pciexp[2]; /* PCI Express Controller */
696 u8 res6[0xb000];
697 tdm83xx_t tdm; /* TDM Controller */
698 u8 res7[0x1e00];
699 sata83xx_t sata[2]; /* SATA Controller */
700 u8 res8[0x9000];
701 usb83xx_t usb[1]; /* USB DR Controller */
702 tsec83xx_t tsec[2];
703 u8 res9[0x6000];
704 tdmdmac83xx_t tdmdmac; /* TDM DMAC */
705 u8 res10[0x2000];
706 security83xx_t security;
707 u8 res11[0xA3000];
708 serdes83xx_t serdes[1]; /* SerDes Registers */
709 u8 res12[0x1CF00];
710} immap_t;
711
Dave Liu5245ff52007-09-18 12:36:11 +0800712#elif defined(CONFIG_MPC837X)
713typedef struct immap {
714 sysconf83xx_t sysconf; /* System configuration */
715 wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */
716 rtclk83xx_t rtc; /* Real Time Clock Module Registers */
717 rtclk83xx_t pit; /* Periodic Interval Timer */
718 gtm83xx_t gtm[2]; /* Global Timers Module */
719 ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */
720 arbiter83xx_t arbiter; /* System Arbiter Registers */
721 reset83xx_t reset; /* Reset Module */
722 clk83xx_t clk; /* System Clock Module */
723 pmc83xx_t pmc; /* Power Management Control Module */
724 gpio83xx_t gpio[2]; /* General purpose I/O module */
725 u8 res0[0x1200];
726 ddr83xx_t ddr; /* DDR Memory Controller Memory */
727 fsl_i2c_t i2c[2]; /* I2C Controllers */
728 u8 res1[0x1300];
729 duart83xx_t duart[2]; /* DUART */
730 u8 res2[0x900];
731 lbus83xx_t lbus; /* Local Bus Controller Registers */
732 u8 res3[0x1000];
Ben Warren7efe9272008-01-16 22:37:35 -0500733 spi8xxx_t spi; /* Serial Peripheral Interface */
Dave Liu5245ff52007-09-18 12:36:11 +0800734 dma83xx_t dma; /* DMA */
735 pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */
736 u8 res4[0x80];
737 ios83xx_t ios; /* Sequencer */
738 pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */
739 u8 res5[0xa00];
740 pex83xx_t pciexp[2]; /* PCI Express Controller */
741 u8 res6[0xd000];
742 sata83xx_t sata[4]; /* SATA Controller */
743 u8 res7[0x7000];
744 usb83xx_t usb[1]; /* USB DR Controller */
745 tsec83xx_t tsec[2];
746 u8 res8[0x8000];
747 sdhc83xx_t sdhc; /* SDHC Controller */
748 u8 res9[0x1000];
749 security83xx_t security;
750 u8 res10[0xA3000];
751 serdes83xx_t serdes[2]; /* SerDes Registers */
752 u8 res11[0xCE00];
753 rom83xx_t rom; /* On Chip ROM */
754} immap_t;
755
Dave Liu0b6bc772006-12-07 21:11:58 +0800756#elif defined(CONFIG_MPC8360)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500757typedef struct immap {
Dave Liu0b6bc772006-12-07 21:11:58 +0800758 sysconf83xx_t sysconf; /* System configuration */
759 wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */
760 rtclk83xx_t rtc; /* Real Time Clock Module Registers */
761 rtclk83xx_t pit; /* Periodic Interval Timer */
762 u8 res0[0x200];
763 ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */
764 arbiter83xx_t arbiter; /* System Arbiter Registers */
765 reset83xx_t reset; /* Reset Module */
766 clk83xx_t clk; /* System Clock Module */
767 pmc83xx_t pmc; /* Power Management Control Module */
768 qepi83xx_t qepi; /* QE Ports Interrupts Registers */
769 u8 res1[0x300];
770 u8 dll_ddr[0x100];
771 u8 dll_lbc[0x100];
772 u8 res2[0x200];
773 qepio83xx_t qepio; /* QE Parallel I/O ports */
774 qesba83xx_t qesba; /* QE Secondary Bus Access Windows */
775 u8 res3[0x400];
776 ddr83xx_t ddr; /* DDR Memory Controller Memory */
777 fsl_i2c_t i2c[2]; /* I2C Controllers */
778 u8 res4[0x1300];
779 duart83xx_t duart[2]; /* DUART */
780 u8 res5[0x900];
781 lbus83xx_t lbus; /* Local Bus Controller Registers */
782 u8 res6[0x2000];
783 dma83xx_t dma; /* DMA */
784 pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */
785 u8 res7[128];
786 ios83xx_t ios; /* Sequencer (IOS) */
787 pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */
788 u8 res8[0x4A00];
789 ddr83xx_t ddr_secondary; /* Secondary DDR Memory Controller Memory Map */
790 u8 res9[0x22000];
791 security83xx_t security;
792 u8 res10[0xC0000];
793 u8 qe[0x100000]; /* QE block */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500794} immap_t;
Dave Liue740c462006-12-07 21:13:15 +0800795
796#elif defined(CONFIG_MPC832X)
797typedef struct immap {
798 sysconf83xx_t sysconf; /* System configuration */
799 wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */
800 rtclk83xx_t rtc; /* Real Time Clock Module Registers */
801 rtclk83xx_t pit; /* Periodic Interval Timer */
802 gtm83xx_t gtm[2]; /* Global Timers Module */
803 ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */
804 arbiter83xx_t arbiter; /* System Arbiter Registers */
805 reset83xx_t reset; /* Reset Module */
806 clk83xx_t clk; /* System Clock Module */
807 pmc83xx_t pmc; /* Power Management Control Module */
808 qepi83xx_t qepi; /* QE Ports Interrupts Registers */
809 u8 res0[0x300];
810 u8 dll_ddr[0x100];
811 u8 dll_lbc[0x100];
812 u8 res1[0x200];
813 qepio83xx_t qepio; /* QE Parallel I/O ports */
814 u8 res2[0x800];
815 ddr83xx_t ddr; /* DDR Memory Controller Memory */
816 fsl_i2c_t i2c[2]; /* I2C Controllers */
817 u8 res3[0x1300];
818 duart83xx_t duart[2]; /* DUART */
819 u8 res4[0x900];
820 lbus83xx_t lbus; /* Local Bus Controller Registers */
821 u8 res5[0x2000];
822 dma83xx_t dma; /* DMA */
823 pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */
824 u8 res6[128];
825 ios83xx_t ios; /* Sequencer (IOS) */
826 pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */
827 u8 res7[0x27A00];
828 security83xx_t security;
829 u8 res8[0xC0000];
830 u8 qe[0x100000]; /* QE block */
831} immap_t;
Dave Liu0b6bc772006-12-07 21:11:58 +0800832#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500833
Dave Liufba13692006-10-31 19:25:38 -0600834#endif /* __IMMAP_83xx__ */