Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1 | /* |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 2 | * (C) Copyright 2004-2007 Freescale Semiconductor, Inc. |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 3 | * |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 4 | * MPC83xx Internal Memory Map |
| 5 | * |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 6 | * 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 Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 11 | * |
| 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 Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 20 | * 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 Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 27 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 28 | #ifndef __IMMAP_83xx__ |
| 29 | #define __IMMAP_83xx__ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 30 | |
| 31 | #include <asm/types.h> |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 32 | #include <asm/fsl_i2c.h> |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 33 | #include <asm/mpc8xxx_spi.h> |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 34 | |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 35 | /* |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 36 | * Local Access Window |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 37 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 38 | typedef struct law83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 39 | u32 bar; /* LBIU local access window base address register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 40 | u32 ar; /* LBIU local access window attribute register */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 41 | } law83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 42 | |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 43 | /* |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 44 | * System configuration registers |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 45 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 46 | typedef struct sysconf83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 47 | u32 immrbar; /* Internal memory map base address register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 48 | u8 res0[0x04]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 49 | u32 altcbar; /* Alternate configuration base address register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 50 | u8 res1[0x14]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 51 | law83xx_t lblaw[4]; /* LBIU local access window */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 52 | u8 res2[0x20]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 53 | law83xx_t pcilaw[2]; /* PCI local access window */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 54 | u8 res3[0x30]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 55 | law83xx_t ddrlaw[2]; /* DDR local access window */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 56 | u8 res4[0x50]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 57 | 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 Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 60 | u8 res5[0x04]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 61 | u32 spcr; /* System Priority Configuration Register */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 62 | u32 sicrl; /* System I/O Configuration Register Low */ |
| 63 | u32 sicrh; /* System I/O Configuration Register High */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 64 | u8 res6[0x0C]; |
| 65 | u32 ddrcdr; /* DDR Control Driver Register */ |
| 66 | u32 ddrdsr; /* DDR Debug Status Register */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 67 | u32 obir; /* Output Buffer Impedance Register */ |
| 68 | u8 res7[0xCC]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 69 | } sysconf83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 70 | |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 71 | /* |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 72 | * Watch Dog Timer (WDT) Registers |
| 73 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 74 | typedef struct wdt83xx { |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 75 | u8 res0[4]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 76 | u32 swcrr; /* System watchdog control register */ |
| 77 | u32 swcnr; /* System watchdog count register */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 78 | u8 res1[2]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 79 | u16 swsrr; /* System watchdog service register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 80 | u8 res2[0xF0]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 81 | } wdt83xx_t; |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 82 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 83 | /* |
| 84 | * RTC/PIT Module Registers |
| 85 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 86 | typedef struct rtclk83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 87 | u32 cnr; /* control register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 88 | u32 ldr; /* load register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 89 | u32 psr; /* prescale register */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 90 | u32 ctr; /* counter value field register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 91 | u32 evr; /* event register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 92 | u32 alr; /* alarm register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 93 | u8 res0[0xE8]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 94 | } rtclk83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 95 | |
| 96 | /* |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 97 | * Global timer module |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 98 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 99 | typedef struct gtm83xx { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 100 | u8 cfr1; /* Timer1/2 Configuration */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 101 | u8 res0[3]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 102 | u8 cfr2; /* Timer3/4 Configuration */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 103 | u8 res1[10]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 104 | u16 mdr1; /* Timer1 Mode Register */ |
| 105 | u16 mdr2; /* Timer2 Mode Register */ |
| 106 | u16 rfr1; /* Timer1 Reference Register */ |
| 107 | u16 rfr2; /* Timer2 Reference Register */ |
| 108 | u16 cpr1; /* Timer1 Capture Register */ |
| 109 | u16 cpr2; /* Timer2 Capture Register */ |
| 110 | u16 cnr1; /* Timer1 Counter Register */ |
| 111 | u16 cnr2; /* Timer2 Counter Register */ |
| 112 | u16 mdr3; /* Timer3 Mode Register */ |
| 113 | u16 mdr4; /* Timer4 Mode Register */ |
| 114 | u16 rfr3; /* Timer3 Reference Register */ |
| 115 | u16 rfr4; /* Timer4 Reference Register */ |
| 116 | u16 cpr3; /* Timer3 Capture Register */ |
| 117 | u16 cpr4; /* Timer4 Capture Register */ |
| 118 | u16 cnr3; /* Timer3 Counter Register */ |
| 119 | u16 cnr4; /* Timer4 Counter Register */ |
| 120 | u16 evr1; /* Timer1 Event Register */ |
| 121 | u16 evr2; /* Timer2 Event Register */ |
| 122 | u16 evr3; /* Timer3 Event Register */ |
| 123 | u16 evr4; /* Timer4 Event Register */ |
| 124 | u16 psr1; /* Timer1 Prescaler Register */ |
| 125 | u16 psr2; /* Timer2 Prescaler Register */ |
| 126 | u16 psr3; /* Timer3 Prescaler Register */ |
| 127 | u16 psr4; /* Timer4 Prescaler Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 128 | u8 res[0xC0]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 129 | } gtm83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 130 | |
| 131 | /* |
| 132 | * Integrated Programmable Interrupt Controller |
| 133 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 134 | typedef struct ipic83xx { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 135 | u32 sicfr; /* System Global Interrupt Configuration Register */ |
| 136 | u32 sivcr; /* System Global Interrupt Vector Register */ |
| 137 | u32 sipnr_h; /* System Internal Interrupt Pending Register - High */ |
| 138 | u32 sipnr_l; /* System Internal Interrupt Pending Register - Low */ |
| 139 | u32 siprr_a; /* System Internal Interrupt Group A Priority Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 140 | u8 res0[8]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 141 | u32 siprr_d; /* System Internal Interrupt Group D Priority Register */ |
| 142 | u32 simsr_h; /* System Internal Interrupt Mask Register - High */ |
| 143 | u32 simsr_l; /* System Internal Interrupt Mask Register - Low */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 144 | u8 res1[4]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 145 | u32 sepnr; /* System External Interrupt Pending Register */ |
| 146 | u32 smprr_a; /* System Mixed Interrupt Group A Priority Register */ |
| 147 | u32 smprr_b; /* System Mixed Interrupt Group B Priority Register */ |
| 148 | u32 semsr; /* System External Interrupt Mask Register */ |
| 149 | u32 secnr; /* System External Interrupt Control Register */ |
| 150 | u32 sersr; /* System Error Status Register */ |
| 151 | u32 sermr; /* System Error Mask Register */ |
| 152 | u32 sercr; /* System Error Control Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 153 | u8 res2[4]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 154 | u32 sifcr_h; /* System Internal Interrupt Force Register - High */ |
| 155 | u32 sifcr_l; /* System Internal Interrupt Force Register - Low */ |
| 156 | u32 sefcr; /* System External Interrupt Force Register */ |
| 157 | u32 serfr; /* System Error Force Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 158 | u32 scvcr; /* System Critical Interrupt Vector Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 159 | u32 smvcr; /* System Management Interrupt Vector Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 160 | u8 res3[0x98]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 161 | } ipic83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 162 | |
| 163 | /* |
| 164 | * System Arbiter Registers |
| 165 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 166 | typedef struct arbiter83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 167 | u32 acr; /* Arbiter Configuration Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 168 | u32 atr; /* Arbiter Timers Register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 169 | u8 res[4]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 170 | u32 aer; /* Arbiter Event Register */ |
| 171 | u32 aidr; /* Arbiter Interrupt Definition Register */ |
| 172 | u32 amr; /* Arbiter Mask Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 173 | u32 aeatr; /* Arbiter Event Attributes Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 174 | u32 aeadr; /* Arbiter Event Address Register */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 175 | u32 aerr; /* Arbiter Event Response Register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 176 | u8 res1[0xDC]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 177 | } arbiter83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 178 | |
| 179 | /* |
| 180 | * Reset Module |
| 181 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 182 | typedef struct reset83xx { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 183 | u32 rcwl; /* Reset Configuration Word Low Register */ |
| 184 | u32 rcwh; /* Reset Configuration Word High Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 185 | u8 res0[8]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 186 | u32 rsr; /* Reset Status Register */ |
| 187 | u32 rmr; /* Reset Mode Register */ |
| 188 | u32 rpr; /* Reset protection Register */ |
| 189 | u32 rcr; /* Reset Control Register */ |
| 190 | u32 rcer; /* Reset Control Enable Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 191 | u8 res1[0xDC]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 192 | } reset83xx_t; |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 193 | |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 194 | /* |
| 195 | * Clock Module |
| 196 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 197 | typedef struct clk83xx { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 198 | u32 spmr; /* system PLL mode Register */ |
| 199 | u32 occr; /* output clock control Register */ |
| 200 | u32 sccr; /* system clock control Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 201 | u8 res0[0xF4]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 202 | } clk83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * Power Management Control Module |
| 206 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 207 | typedef struct pmc83xx { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 208 | u32 pmccr; /* PMC Configuration Register */ |
| 209 | u32 pmcer; /* PMC Event Register */ |
| 210 | u32 pmcmr; /* PMC Mask Register */ |
Scott Wood | d87c57b | 2007-04-16 14:31:55 -0500 | [diff] [blame] | 211 | u32 pmccr1; /* PMC Configuration Register 1 */ |
| 212 | u32 pmccr2; /* PMC Configuration Register 2 */ |
| 213 | u8 res0[0xEC]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 214 | } pmc83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 215 | |
| 216 | /* |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 217 | * General purpose I/O module |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 218 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 219 | typedef struct gpio83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 220 | u32 dir; /* direction register */ |
| 221 | u32 odr; /* open drain register */ |
| 222 | u32 dat; /* data register */ |
| 223 | u32 ier; /* interrupt event register */ |
| 224 | u32 imr; /* interrupt mask register */ |
| 225 | u32 icr; /* external interrupt control register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 226 | u8 res0[0xE8]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 227 | } gpio83xx_t; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 228 | |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 229 | /* |
| 230 | * QE Ports Interrupts Registers |
| 231 | */ |
| 232 | typedef struct qepi83xx { |
| 233 | u8 res0[0xC]; |
| 234 | u32 qepier; /* QE Ports Interrupt Event Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 235 | u32 qepimr; /* QE Ports Interrupt Mask Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 236 | u32 qepicr; /* QE Ports Interrupt Control Register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 237 | u8 res1[0xE8]; |
| 238 | } qepi83xx_t; |
| 239 | |
| 240 | /* |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 241 | * QE Parallel I/O Ports |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 242 | */ |
| 243 | typedef struct gpio_n { |
| 244 | u32 podr; /* Open Drain Register */ |
| 245 | u32 pdat; /* Data Register */ |
| 246 | u32 dir1; /* direction register 1 */ |
| 247 | u32 dir2; /* direction register 2 */ |
| 248 | u32 ppar1; /* Pin Assignment Register 1 */ |
| 249 | u32 ppar2; /* Pin Assignment Register 2 */ |
| 250 | } gpio_n_t; |
| 251 | |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 252 | typedef struct qegpio83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 253 | gpio_n_t ioport[0x7]; |
| 254 | u8 res0[0x358]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 255 | } qepio83xx_t; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 256 | |
| 257 | /* |
| 258 | * QE Secondary Bus Access Windows |
| 259 | */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 260 | typedef struct qesba83xx { |
| 261 | u32 lbmcsar; /* Local bus memory controller start address */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 262 | u32 sdmcsar; /* Secondary DDR memory controller start address */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 263 | u8 res0[0x38]; |
| 264 | u32 lbmcear; /* Local bus memory controller end address */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 265 | u32 sdmcear; /* Secondary DDR memory controller end address */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 266 | u8 res1[0x38]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 267 | u32 lbmcar; /* Local bus memory controller attributes */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 268 | u32 sdmcar; /* Secondary DDR memory controller attributes */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 269 | u8 res2[0x378]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 270 | } qesba83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 271 | |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 272 | /* |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 273 | * DDR Memory Controller Memory Map |
| 274 | */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 275 | typedef struct ddr_cs_bnds { |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 276 | u32 csbnds; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 277 | u8 res0[4]; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 278 | } ddr_cs_bnds_t; |
| 279 | |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 280 | typedef struct ddr83xx { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 281 | ddr_cs_bnds_t csbnds[4];/* Chip Select x Memory Bounds */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 282 | u8 res0[0x60]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 283 | u32 cs_config[4]; /* Chip Select x Configuration */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 284 | u8 res1[0x70]; |
| 285 | u32 timing_cfg_3; /* SDRAM Timing Configuration 3 */ |
| 286 | u32 timing_cfg_0; /* SDRAM Timing Configuration 0 */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 287 | u32 timing_cfg_1; /* SDRAM Timing Configuration 1 */ |
| 288 | u32 timing_cfg_2; /* SDRAM Timing Configuration 2 */ |
| 289 | u32 sdram_cfg; /* SDRAM Control Configuration */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 290 | u32 sdram_cfg2; /* SDRAM Control Configuration 2 */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 291 | u32 sdram_mode; /* SDRAM Mode Configuration */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 292 | u32 sdram_mode2; /* SDRAM Mode Configuration 2 */ |
| 293 | u32 sdram_md_cntl; /* SDRAM Mode Control */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 294 | u32 sdram_interval; /* SDRAM Interval Configuration */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 295 | u32 ddr_data_init; /* SDRAM Data Initialization */ |
| 296 | u8 res2[4]; |
| 297 | u32 sdram_clk_cntl; /* SDRAM Clock Control */ |
| 298 | u8 res3[0x14]; |
| 299 | u32 ddr_init_addr; /* DDR training initialization address */ |
| 300 | u32 ddr_init_ext_addr; /* DDR training initialization extended address */ |
| 301 | u8 res4[0xAA8]; |
| 302 | u32 ddr_ip_rev1; /* DDR IP block revision 1 */ |
| 303 | u32 ddr_ip_rev2; /* DDR IP block revision 2 */ |
| 304 | u8 res5[0x200]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 305 | u32 data_err_inject_hi; /* Memory Data Path Error Injection Mask High */ |
| 306 | u32 data_err_inject_lo; /* Memory Data Path Error Injection Mask Low */ |
| 307 | u32 ecc_err_inject; /* Memory Data Path Error Injection Mask ECC */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 308 | u8 res6[0x14]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 309 | u32 capture_data_hi; /* Memory Data Path Read Capture High */ |
| 310 | u32 capture_data_lo; /* Memory Data Path Read Capture Low */ |
| 311 | u32 capture_ecc; /* Memory Data Path Read Capture ECC */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 312 | u8 res7[0x14]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 313 | u32 err_detect; /* Memory Error Detect */ |
| 314 | u32 err_disable; /* Memory Error Disable */ |
| 315 | u32 err_int_en; /* Memory Error Interrupt Enable */ |
| 316 | u32 capture_attributes; /* Memory Error Attributes Capture */ |
| 317 | u32 capture_address; /* Memory Error Address Capture */ |
| 318 | u32 capture_ext_address;/* Memory Error Extended Address Capture */ |
| 319 | u32 err_sbe; /* Memory Single-Bit ECC Error Management */ |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 320 | u8 res8[0xA4]; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 321 | u32 debug_reg; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 322 | u8 res9[0xFC]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 323 | } ddr83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 324 | |
| 325 | /* |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 326 | * DUART |
| 327 | */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 328 | typedef struct duart83xx { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 329 | u8 urbr_ulcr_udlb; /* combined register for URBR, UTHR and UDLB */ |
| 330 | u8 uier_udmb; /* combined register for UIER and UDMB */ |
| 331 | u8 uiir_ufcr_uafr; /* combined register for UIIR, UFCR and UAFR */ |
| 332 | u8 ulcr; /* line control register */ |
| 333 | u8 umcr; /* MODEM control register */ |
| 334 | u8 ulsr; /* line status register */ |
| 335 | u8 umsr; /* MODEM status register */ |
| 336 | u8 uscr; /* scratch register */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 337 | u8 res0[8]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 338 | u8 udsr; /* DMA status register */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 339 | u8 res1[3]; |
| 340 | u8 res2[0xEC]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 341 | } duart83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 342 | |
| 343 | /* |
| 344 | * Local Bus Controller Registers |
| 345 | */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 346 | typedef struct lbus_bank { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 347 | u32 br; /* Base Register */ |
| 348 | u32 or; /* Option Register */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 349 | } lbus_bank_t; |
| 350 | |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 351 | typedef struct lbus83xx { |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 352 | lbus_bank_t bank[8]; |
| 353 | u8 res0[0x28]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 354 | u32 mar; /* UPM Address Register */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 355 | u8 res1[0x4]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 356 | u32 mamr; /* UPMA Mode Register */ |
| 357 | u32 mbmr; /* UPMB Mode Register */ |
| 358 | u32 mcmr; /* UPMC Mode Register */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 359 | u8 res2[0x8]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 360 | u32 mrtpr; /* Memory Refresh Timer Prescaler Register */ |
| 361 | u32 mdr; /* UPM Data Register */ |
Scott Wood | d87c57b | 2007-04-16 14:31:55 -0500 | [diff] [blame] | 362 | u8 res3[0x4]; |
| 363 | u32 lsor; /* Special Operation Initiation Register */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 364 | u32 lsdmr; /* SDRAM Mode Register */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 365 | u8 res4[0x8]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 366 | u32 lurt; /* UPM Refresh Timer */ |
| 367 | u32 lsrt; /* SDRAM Refresh Timer */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 368 | u8 res5[0x8]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 369 | u32 ltesr; /* Transfer Error Status Register */ |
| 370 | u32 ltedr; /* Transfer Error Disable Register */ |
| 371 | u32 lteir; /* Transfer Error Interrupt Register */ |
| 372 | u32 lteatr; /* Transfer Error Attributes Register */ |
| 373 | u32 ltear; /* Transfer Error Address Register */ |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 374 | u8 res6[0xC]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 375 | u32 lbcr; /* Configuration Register */ |
| 376 | u32 lcrr; /* Clock Ratio Register */ |
Scott Wood | d87c57b | 2007-04-16 14:31:55 -0500 | [diff] [blame] | 377 | u8 res7[0x8]; |
| 378 | u32 fmr; /* Flash Mode Register */ |
| 379 | u32 fir; /* Flash Instruction Register */ |
| 380 | u32 fcr; /* Flash Command Register */ |
| 381 | u32 fbar; /* Flash Block Addr Register */ |
| 382 | u32 fpar; /* Flash Page Addr Register */ |
| 383 | u32 fbcr; /* Flash Byte Count Register */ |
| 384 | u8 res8[0xF08]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 385 | } lbus83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 386 | |
| 387 | /* |
Marian Balakowicz | 61f2515 | 2006-03-14 16:14:48 +0100 | [diff] [blame] | 388 | * DMA/Messaging Unit |
| 389 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 390 | typedef struct dma83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 391 | u32 res0[0xC]; /* 0x0-0x29 reseverd */ |
| 392 | u32 omisr; /* 0x30 Outbound message interrupt status register */ |
| 393 | u32 omimr; /* 0x34 Outbound message interrupt mask register */ |
| 394 | u32 res1[0x6]; /* 0x38-0x49 reserved */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 395 | u32 imr0; /* 0x50 Inbound message register 0 */ |
| 396 | u32 imr1; /* 0x54 Inbound message register 1 */ |
| 397 | u32 omr0; /* 0x58 Outbound message register 0 */ |
| 398 | u32 omr1; /* 0x5C Outbound message register 1 */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 399 | u32 odr; /* 0x60 Outbound doorbell register */ |
| 400 | u32 res2; /* 0x64-0x67 reserved */ |
| 401 | u32 idr; /* 0x68 Inbound doorbell register */ |
| 402 | u32 res3[0x5]; /* 0x6C-0x79 reserved */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 403 | u32 imisr; /* 0x80 Inbound message interrupt status register */ |
| 404 | u32 imimr; /* 0x84 Inbound message interrupt mask register */ |
| 405 | u32 res4[0x1E]; /* 0x88-0x99 reserved */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 406 | u32 dmamr0; /* 0x100 DMA 0 mode register */ |
| 407 | u32 dmasr0; /* 0x104 DMA 0 status register */ |
| 408 | u32 dmacdar0; /* 0x108 DMA 0 current descriptor address register */ |
| 409 | u32 res5; /* 0x10C reserved */ |
| 410 | u32 dmasar0; /* 0x110 DMA 0 source address register */ |
| 411 | u32 res6; /* 0x114 reserved */ |
| 412 | u32 dmadar0; /* 0x118 DMA 0 destination address register */ |
| 413 | u32 res7; /* 0x11C reserved */ |
| 414 | u32 dmabcr0; /* 0x120 DMA 0 byte count register */ |
| 415 | u32 dmandar0; /* 0x124 DMA 0 next descriptor address register */ |
| 416 | u32 res8[0x16]; /* 0x128-0x179 reserved */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 417 | u32 dmamr1; /* 0x180 DMA 1 mode register */ |
| 418 | u32 dmasr1; /* 0x184 DMA 1 status register */ |
| 419 | u32 dmacdar1; /* 0x188 DMA 1 current descriptor address register */ |
| 420 | u32 res9; /* 0x18C reserved */ |
| 421 | u32 dmasar1; /* 0x190 DMA 1 source address register */ |
| 422 | u32 res10; /* 0x194 reserved */ |
| 423 | u32 dmadar1; /* 0x198 DMA 1 destination address register */ |
| 424 | u32 res11; /* 0x19C reserved */ |
| 425 | u32 dmabcr1; /* 0x1A0 DMA 1 byte count register */ |
| 426 | u32 dmandar1; /* 0x1A4 DMA 1 next descriptor address register */ |
| 427 | u32 res12[0x16]; /* 0x1A8-0x199 reserved */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 428 | u32 dmamr2; /* 0x200 DMA 2 mode register */ |
| 429 | u32 dmasr2; /* 0x204 DMA 2 status register */ |
| 430 | u32 dmacdar2; /* 0x208 DMA 2 current descriptor address register */ |
| 431 | u32 res13; /* 0x20C reserved */ |
| 432 | u32 dmasar2; /* 0x210 DMA 2 source address register */ |
| 433 | u32 res14; /* 0x214 reserved */ |
| 434 | u32 dmadar2; /* 0x218 DMA 2 destination address register */ |
| 435 | u32 res15; /* 0x21C reserved */ |
| 436 | u32 dmabcr2; /* 0x220 DMA 2 byte count register */ |
| 437 | u32 dmandar2; /* 0x224 DMA 2 next descriptor address register */ |
| 438 | u32 res16[0x16]; /* 0x228-0x279 reserved */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 439 | u32 dmamr3; /* 0x280 DMA 3 mode register */ |
| 440 | u32 dmasr3; /* 0x284 DMA 3 status register */ |
| 441 | u32 dmacdar3; /* 0x288 DMA 3 current descriptor address register */ |
| 442 | u32 res17; /* 0x28C reserved */ |
| 443 | u32 dmasar3; /* 0x290 DMA 3 source address register */ |
| 444 | u32 res18; /* 0x294 reserved */ |
| 445 | u32 dmadar3; /* 0x298 DMA 3 destination address register */ |
| 446 | u32 res19; /* 0x29C reserved */ |
| 447 | u32 dmabcr3; /* 0x2A0 DMA 3 byte count register */ |
| 448 | u32 dmandar3; /* 0x2A4 DMA 3 next descriptor address register */ |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 449 | u32 dmagsr; /* 0x2A8 DMA general status register */ |
| 450 | u32 res20[0x15]; /* 0x2AC-0x2FF reserved */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 451 | } dma83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 452 | |
| 453 | /* |
| 454 | * PCI Software Configuration Registers |
| 455 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 456 | typedef struct pciconf83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 457 | u32 config_address; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 458 | u32 config_data; |
| 459 | u32 int_ack; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 460 | u8 res[116]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 461 | } pciconf83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 462 | |
| 463 | /* |
| 464 | * PCI Outbound Translation Register |
| 465 | */ |
| 466 | typedef struct pci_outbound_window { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 467 | u32 potar; |
| 468 | u8 res0[4]; |
| 469 | u32 pobar; |
| 470 | u8 res1[4]; |
| 471 | u32 pocmr; |
| 472 | u8 res2[4]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 473 | } pot83xx_t; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 474 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 475 | /* |
| 476 | * Sequencer |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 477 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 478 | typedef struct ios83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 479 | pot83xx_t pot[6]; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 480 | u8 res0[0x60]; |
| 481 | u32 pmcr; |
| 482 | u8 res1[4]; |
| 483 | u32 dtcr; |
| 484 | u8 res2[4]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 485 | } ios83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 486 | |
| 487 | /* |
| 488 | * PCI Controller Control and Status Registers |
| 489 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 490 | typedef struct pcictrl83xx { |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 491 | u32 esr; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 492 | u32 ecdr; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 493 | u32 eer; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 494 | u32 eatcr; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 495 | u32 eacr; |
| 496 | u32 eeacr; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 497 | u32 edlcr; |
| 498 | u32 edhcr; |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 499 | u32 gcr; |
| 500 | u32 ecr; |
| 501 | u32 gsr; |
| 502 | u8 res0[12]; |
| 503 | u32 pitar2; |
| 504 | u8 res1[4]; |
| 505 | u32 pibar2; |
| 506 | u32 piebar2; |
| 507 | u32 piwar2; |
| 508 | u8 res2[4]; |
| 509 | u32 pitar1; |
| 510 | u8 res3[4]; |
| 511 | u32 pibar1; |
| 512 | u32 piebar1; |
| 513 | u32 piwar1; |
| 514 | u8 res4[4]; |
| 515 | u32 pitar0; |
| 516 | u8 res5[4]; |
| 517 | u32 pibar0; |
| 518 | u8 res6[4]; |
| 519 | u32 piwar0; |
| 520 | u8 res7[132]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 521 | } pcictrl83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 522 | |
| 523 | /* |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 524 | * USB |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 525 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 526 | typedef struct usb83xx { |
Scott Wood | d87c57b | 2007-04-16 14:31:55 -0500 | [diff] [blame] | 527 | u8 fixme[0x1000]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 528 | } usb83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 529 | |
| 530 | /* |
| 531 | * TSEC |
| 532 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 533 | typedef struct tsec83xx { |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 534 | u8 fixme[0x1000]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 535 | } tsec83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 536 | |
| 537 | /* |
| 538 | * Security |
| 539 | */ |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 540 | typedef struct security83xx { |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 541 | u8 fixme[0x10000]; |
Dave Liu | f6eda7f | 2006-10-25 14:41:21 -0500 | [diff] [blame] | 542 | } security83xx_t; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 543 | |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 544 | /* |
| 545 | * PCI Express |
| 546 | */ |
| 547 | typedef struct pex83xx { |
| 548 | u8 fixme[0x1000]; |
| 549 | } pex83xx_t; |
| 550 | |
| 551 | /* |
| 552 | * SATA |
| 553 | */ |
| 554 | typedef struct sata83xx { |
| 555 | u8 fixme[0x1000]; |
| 556 | } sata83xx_t; |
| 557 | |
| 558 | /* |
| 559 | * eSDHC |
| 560 | */ |
| 561 | typedef struct sdhc83xx { |
| 562 | u8 fixme[0x1000]; |
| 563 | } sdhc83xx_t; |
| 564 | |
| 565 | /* |
| 566 | * SerDes |
| 567 | */ |
| 568 | typedef struct serdes83xx { |
| 569 | u8 fixme[0x100]; |
| 570 | } serdes83xx_t; |
| 571 | |
| 572 | /* |
| 573 | * On Chip ROM |
| 574 | */ |
| 575 | typedef struct rom83xx { |
| 576 | u8 mem[0x10000]; |
| 577 | } rom83xx_t; |
| 578 | |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 579 | /* |
| 580 | * TDM |
| 581 | */ |
| 582 | typedef struct tdm83xx { |
| 583 | u8 fixme[0x200]; |
| 584 | } tdm83xx_t; |
| 585 | |
| 586 | /* |
| 587 | * TDM DMAC |
| 588 | */ |
| 589 | typedef struct tdmdmac83xx { |
| 590 | u8 fixme[0x2000]; |
| 591 | } tdmdmac83xx_t; |
| 592 | |
Kumar Gala | 3e78a31 | 2007-01-30 14:08:30 -0600 | [diff] [blame] | 593 | #if defined(CONFIG_MPC834X) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 594 | typedef struct immap { |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 595 | sysconf83xx_t sysconf; /* System configuration */ |
| 596 | wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */ |
| 597 | rtclk83xx_t rtc; /* Real Time Clock Module Registers */ |
| 598 | rtclk83xx_t pit; /* Periodic Interval Timer */ |
| 599 | gtm83xx_t gtm[2]; /* Global Timers Module */ |
| 600 | ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */ |
| 601 | arbiter83xx_t arbiter; /* System Arbiter Registers */ |
| 602 | reset83xx_t reset; /* Reset Module */ |
| 603 | clk83xx_t clk; /* System Clock Module */ |
| 604 | pmc83xx_t pmc; /* Power Management Control Module */ |
| 605 | gpio83xx_t gpio[2]; /* General purpose I/O module */ |
| 606 | u8 res0[0x200]; |
| 607 | u8 dll_ddr[0x100]; |
| 608 | u8 dll_lbc[0x100]; |
| 609 | u8 res1[0xE00]; |
| 610 | ddr83xx_t ddr; /* DDR Memory Controller Memory */ |
| 611 | fsl_i2c_t i2c[2]; /* I2C Controllers */ |
| 612 | u8 res2[0x1300]; |
| 613 | duart83xx_t duart[2]; /* DUART */ |
| 614 | u8 res3[0x900]; |
| 615 | lbus83xx_t lbus; /* Local Bus Controller Registers */ |
| 616 | u8 res4[0x1000]; |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 617 | spi8xxx_t spi; /* Serial Peripheral Interface */ |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 618 | dma83xx_t dma; /* DMA */ |
| 619 | pciconf83xx_t pci_conf[2]; /* PCI Software Configuration Registers */ |
| 620 | ios83xx_t ios; /* Sequencer */ |
| 621 | pcictrl83xx_t pci_ctrl[2]; /* PCI Controller Control and Status Registers */ |
| 622 | u8 res5[0x19900]; |
Scott Wood | d87c57b | 2007-04-16 14:31:55 -0500 | [diff] [blame] | 623 | usb83xx_t usb[2]; |
| 624 | tsec83xx_t tsec[2]; |
| 625 | u8 res6[0xA000]; |
| 626 | security83xx_t security; |
| 627 | u8 res7[0xC0000]; |
| 628 | } immap_t; |
| 629 | |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 630 | #elif defined(CONFIG_MPC8313) |
Scott Wood | d87c57b | 2007-04-16 14:31:55 -0500 | [diff] [blame] | 631 | typedef struct immap { |
| 632 | sysconf83xx_t sysconf; /* System configuration */ |
| 633 | wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */ |
| 634 | rtclk83xx_t rtc; /* Real Time Clock Module Registers */ |
| 635 | rtclk83xx_t pit; /* Periodic Interval Timer */ |
| 636 | gtm83xx_t gtm[2]; /* Global Timers Module */ |
| 637 | ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */ |
| 638 | arbiter83xx_t arbiter; /* System Arbiter Registers */ |
| 639 | reset83xx_t reset; /* Reset Module */ |
| 640 | clk83xx_t clk; /* System Clock Module */ |
| 641 | pmc83xx_t pmc; /* Power Management Control Module */ |
| 642 | gpio83xx_t gpio[1]; /* General purpose I/O module */ |
| 643 | u8 res0[0x1300]; |
| 644 | ddr83xx_t ddr; /* DDR Memory Controller Memory */ |
| 645 | fsl_i2c_t i2c[2]; /* I2C Controllers */ |
| 646 | u8 res1[0x1300]; |
| 647 | duart83xx_t duart[2]; /* DUART */ |
| 648 | u8 res2[0x900]; |
| 649 | lbus83xx_t lbus; /* Local Bus Controller Registers */ |
| 650 | u8 res3[0x1000]; |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 651 | spi8xxx_t spi; /* Serial Peripheral Interface */ |
Scott Wood | d87c57b | 2007-04-16 14:31:55 -0500 | [diff] [blame] | 652 | dma83xx_t dma; /* DMA */ |
| 653 | pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */ |
| 654 | u8 res4[0x80]; |
| 655 | ios83xx_t ios; /* Sequencer */ |
| 656 | pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */ |
| 657 | u8 res5[0x1aa00]; |
| 658 | usb83xx_t usb[1]; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 659 | tsec83xx_t tsec[2]; |
| 660 | u8 res6[0xA000]; |
| 661 | security83xx_t security; |
| 662 | u8 res7[0xC0000]; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 663 | } immap_t; |
| 664 | |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 665 | #elif defined(CONFIG_MPC8315) |
| 666 | typedef struct immap { |
| 667 | sysconf83xx_t sysconf; /* System configuration */ |
| 668 | wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */ |
| 669 | rtclk83xx_t rtc; /* Real Time Clock Module Registers */ |
| 670 | rtclk83xx_t pit; /* Periodic Interval Timer */ |
| 671 | gtm83xx_t gtm[2]; /* Global Timers Module */ |
| 672 | ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */ |
| 673 | arbiter83xx_t arbiter; /* System Arbiter Registers */ |
| 674 | reset83xx_t reset; /* Reset Module */ |
| 675 | clk83xx_t clk; /* System Clock Module */ |
| 676 | pmc83xx_t pmc; /* Power Management Control Module */ |
| 677 | gpio83xx_t gpio[1]; /* General purpose I/O module */ |
| 678 | u8 res0[0x1300]; |
| 679 | ddr83xx_t ddr; /* DDR Memory Controller Memory */ |
| 680 | fsl_i2c_t i2c[2]; /* I2C Controllers */ |
| 681 | u8 res1[0x1300]; |
| 682 | duart83xx_t duart[2]; /* DUART */ |
| 683 | u8 res2[0x900]; |
| 684 | lbus83xx_t lbus; /* Local Bus Controller Registers */ |
| 685 | u8 res3[0x1000]; |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 686 | spi8xxx_t spi; /* Serial Peripheral Interface */ |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 687 | dma83xx_t dma; /* DMA */ |
| 688 | pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */ |
| 689 | u8 res4[0x80]; |
| 690 | ios83xx_t ios; /* Sequencer */ |
| 691 | pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */ |
| 692 | u8 res5[0xa00]; |
| 693 | pex83xx_t pciexp[2]; /* PCI Express Controller */ |
| 694 | u8 res6[0xb000]; |
| 695 | tdm83xx_t tdm; /* TDM Controller */ |
| 696 | u8 res7[0x1e00]; |
| 697 | sata83xx_t sata[2]; /* SATA Controller */ |
| 698 | u8 res8[0x9000]; |
| 699 | usb83xx_t usb[1]; /* USB DR Controller */ |
| 700 | tsec83xx_t tsec[2]; |
| 701 | u8 res9[0x6000]; |
| 702 | tdmdmac83xx_t tdmdmac; /* TDM DMAC */ |
| 703 | u8 res10[0x2000]; |
| 704 | security83xx_t security; |
| 705 | u8 res11[0xA3000]; |
| 706 | serdes83xx_t serdes[1]; /* SerDes Registers */ |
| 707 | u8 res12[0x1CF00]; |
| 708 | } immap_t; |
| 709 | |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 710 | #elif defined(CONFIG_MPC837X) |
| 711 | typedef struct immap { |
| 712 | sysconf83xx_t sysconf; /* System configuration */ |
| 713 | wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */ |
| 714 | rtclk83xx_t rtc; /* Real Time Clock Module Registers */ |
| 715 | rtclk83xx_t pit; /* Periodic Interval Timer */ |
| 716 | gtm83xx_t gtm[2]; /* Global Timers Module */ |
| 717 | ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */ |
| 718 | arbiter83xx_t arbiter; /* System Arbiter Registers */ |
| 719 | reset83xx_t reset; /* Reset Module */ |
| 720 | clk83xx_t clk; /* System Clock Module */ |
| 721 | pmc83xx_t pmc; /* Power Management Control Module */ |
| 722 | gpio83xx_t gpio[2]; /* General purpose I/O module */ |
| 723 | u8 res0[0x1200]; |
| 724 | ddr83xx_t ddr; /* DDR Memory Controller Memory */ |
| 725 | fsl_i2c_t i2c[2]; /* I2C Controllers */ |
| 726 | u8 res1[0x1300]; |
| 727 | duart83xx_t duart[2]; /* DUART */ |
| 728 | u8 res2[0x900]; |
| 729 | lbus83xx_t lbus; /* Local Bus Controller Registers */ |
| 730 | u8 res3[0x1000]; |
Ben Warren | 04a9e11 | 2008-01-16 22:37:35 -0500 | [diff] [blame] | 731 | spi8xxx_t spi; /* Serial Peripheral Interface */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 732 | dma83xx_t dma; /* DMA */ |
| 733 | pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */ |
| 734 | u8 res4[0x80]; |
| 735 | ios83xx_t ios; /* Sequencer */ |
| 736 | pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */ |
| 737 | u8 res5[0xa00]; |
| 738 | pex83xx_t pciexp[2]; /* PCI Express Controller */ |
| 739 | u8 res6[0xd000]; |
| 740 | sata83xx_t sata[4]; /* SATA Controller */ |
| 741 | u8 res7[0x7000]; |
| 742 | usb83xx_t usb[1]; /* USB DR Controller */ |
| 743 | tsec83xx_t tsec[2]; |
| 744 | u8 res8[0x8000]; |
| 745 | sdhc83xx_t sdhc; /* SDHC Controller */ |
| 746 | u8 res9[0x1000]; |
| 747 | security83xx_t security; |
| 748 | u8 res10[0xA3000]; |
| 749 | serdes83xx_t serdes[2]; /* SerDes Registers */ |
| 750 | u8 res11[0xCE00]; |
| 751 | rom83xx_t rom; /* On Chip ROM */ |
| 752 | } immap_t; |
| 753 | |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 754 | #elif defined(CONFIG_MPC8360) |
| 755 | typedef struct immap { |
| 756 | sysconf83xx_t sysconf; /* System configuration */ |
| 757 | wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */ |
| 758 | rtclk83xx_t rtc; /* Real Time Clock Module Registers */ |
| 759 | rtclk83xx_t pit; /* Periodic Interval Timer */ |
| 760 | u8 res0[0x200]; |
| 761 | ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */ |
| 762 | arbiter83xx_t arbiter; /* System Arbiter Registers */ |
| 763 | reset83xx_t reset; /* Reset Module */ |
| 764 | clk83xx_t clk; /* System Clock Module */ |
| 765 | pmc83xx_t pmc; /* Power Management Control Module */ |
| 766 | qepi83xx_t qepi; /* QE Ports Interrupts Registers */ |
| 767 | u8 res1[0x300]; |
| 768 | u8 dll_ddr[0x100]; |
| 769 | u8 dll_lbc[0x100]; |
| 770 | u8 res2[0x200]; |
| 771 | qepio83xx_t qepio; /* QE Parallel I/O ports */ |
| 772 | qesba83xx_t qesba; /* QE Secondary Bus Access Windows */ |
| 773 | u8 res3[0x400]; |
| 774 | ddr83xx_t ddr; /* DDR Memory Controller Memory */ |
| 775 | fsl_i2c_t i2c[2]; /* I2C Controllers */ |
| 776 | u8 res4[0x1300]; |
| 777 | duart83xx_t duart[2]; /* DUART */ |
| 778 | u8 res5[0x900]; |
| 779 | lbus83xx_t lbus; /* Local Bus Controller Registers */ |
| 780 | u8 res6[0x2000]; |
| 781 | dma83xx_t dma; /* DMA */ |
| 782 | pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */ |
| 783 | u8 res7[128]; |
| 784 | ios83xx_t ios; /* Sequencer (IOS) */ |
| 785 | pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */ |
| 786 | u8 res8[0x4A00]; |
| 787 | ddr83xx_t ddr_secondary; /* Secondary DDR Memory Controller Memory Map */ |
| 788 | u8 res9[0x22000]; |
| 789 | security83xx_t security; |
| 790 | u8 res10[0xC0000]; |
| 791 | u8 qe[0x100000]; /* QE block */ |
| 792 | } immap_t; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 793 | |
| 794 | #elif defined(CONFIG_MPC832X) |
| 795 | typedef struct immap { |
| 796 | sysconf83xx_t sysconf; /* System configuration */ |
| 797 | wdt83xx_t wdt; /* Watch Dog Timer (WDT) Registers */ |
| 798 | rtclk83xx_t rtc; /* Real Time Clock Module Registers */ |
| 799 | rtclk83xx_t pit; /* Periodic Interval Timer */ |
| 800 | gtm83xx_t gtm[2]; /* Global Timers Module */ |
| 801 | ipic83xx_t ipic; /* Integrated Programmable Interrupt Controller */ |
| 802 | arbiter83xx_t arbiter; /* System Arbiter Registers */ |
| 803 | reset83xx_t reset; /* Reset Module */ |
| 804 | clk83xx_t clk; /* System Clock Module */ |
| 805 | pmc83xx_t pmc; /* Power Management Control Module */ |
| 806 | qepi83xx_t qepi; /* QE Ports Interrupts Registers */ |
| 807 | u8 res0[0x300]; |
| 808 | u8 dll_ddr[0x100]; |
| 809 | u8 dll_lbc[0x100]; |
| 810 | u8 res1[0x200]; |
| 811 | qepio83xx_t qepio; /* QE Parallel I/O ports */ |
| 812 | u8 res2[0x800]; |
| 813 | ddr83xx_t ddr; /* DDR Memory Controller Memory */ |
| 814 | fsl_i2c_t i2c[2]; /* I2C Controllers */ |
| 815 | u8 res3[0x1300]; |
| 816 | duart83xx_t duart[2]; /* DUART */ |
| 817 | u8 res4[0x900]; |
| 818 | lbus83xx_t lbus; /* Local Bus Controller Registers */ |
| 819 | u8 res5[0x2000]; |
| 820 | dma83xx_t dma; /* DMA */ |
| 821 | pciconf83xx_t pci_conf[1]; /* PCI Software Configuration Registers */ |
| 822 | u8 res6[128]; |
| 823 | ios83xx_t ios; /* Sequencer (IOS) */ |
| 824 | pcictrl83xx_t pci_ctrl[1]; /* PCI Controller Control and Status Registers */ |
| 825 | u8 res7[0x27A00]; |
| 826 | security83xx_t security; |
| 827 | u8 res8[0xC0000]; |
| 828 | u8 qe[0x100000]; /* QE block */ |
| 829 | } immap_t; |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 830 | #endif |
| 831 | |
Dave Liu | b701652 | 2006-10-31 19:25:38 -0600 | [diff] [blame] | 832 | #endif /* __IMMAP_83xx__ */ |