blob: dbf3a2260eed8c2308e9057e7fbb1336a60f74c3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
TsiChung Liewf6afe722007-06-18 13:50:13 -05002/*
3 * MCF5329 Internal Memory Map
4 *
5 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
6 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChung Liewf6afe722007-06-18 13:50:13 -05007 */
8
9#ifndef __IMMAP_5329__
10#define __IMMAP_5329__
11
TsiChungLiew29d67482007-07-05 22:41:24 -050012#define MMAP_SCM1 0xEC000000
13#define MMAP_MDHA 0xEC080000
14#define MMAP_SKHA 0xEC084000
15#define MMAP_RNG 0xEC088000
16#define MMAP_SCM2 0xFC000000
17#define MMAP_XBS 0xFC004000
18#define MMAP_FBCS 0xFC008000
19#define MMAP_CAN 0xFC020000
20#define MMAP_FEC 0xFC030000
21#define MMAP_SCM3 0xFC040000
22#define MMAP_EDMA 0xFC044000
23#define MMAP_TCD 0xFC045000
24#define MMAP_INTC0 0xFC048000
25#define MMAP_INTC1 0xFC04C000
26#define MMAP_INTCACK 0xFC054000
27#define MMAP_I2C 0xFC058000
28#define MMAP_QSPI 0xFC05C000
29#define MMAP_UART0 0xFC060000
30#define MMAP_UART1 0xFC064000
31#define MMAP_UART2 0xFC068000
32#define MMAP_DTMR0 0xFC070000
33#define MMAP_DTMR1 0xFC074000
34#define MMAP_DTMR2 0xFC078000
35#define MMAP_DTMR3 0xFC07C000
36#define MMAP_PIT0 0xFC080000
37#define MMAP_PIT1 0xFC084000
38#define MMAP_PIT2 0xFC088000
39#define MMAP_PIT3 0xFC08C000
40#define MMAP_PWM 0xFC090000
41#define MMAP_EPORT 0xFC094000
42#define MMAP_WDOG 0xFC098000
TsiChungLiew00f00322007-11-07 17:56:15 -060043#define MMAP_RCM 0xFC0A0000
44#define MMAP_CCM 0xFC0A0004
TsiChungLiew29d67482007-07-05 22:41:24 -050045#define MMAP_GPIO 0xFC0A4000
46#define MMAP_RTC 0xFC0A8000
47#define MMAP_LCDC 0xFC0AC000
48#define MMAP_USBOTG 0xFC0B0000
49#define MMAP_USBH 0xFC0B4000
50#define MMAP_SDRAM 0xFC0B8000
51#define MMAP_SSI 0xFC0BC000
52#define MMAP_PLL 0xFC0C0000
TsiChung Liewf6afe722007-06-18 13:50:13 -050053
TsiChungLiew6e5bd0d2008-01-14 16:59:42 -060054#include <asm/coldfire/crossbar.h>
55#include <asm/coldfire/edma.h>
TsiChung Liew7f1a0462008-10-21 10:03:07 +000056#include <asm/coldfire/eport.h>
57#include <asm/coldfire/qspi.h>
TsiChungLiew6e5bd0d2008-01-14 16:59:42 -060058#include <asm/coldfire/flexbus.h>
TsiChung Liew7f1a0462008-10-21 10:03:07 +000059#include <asm/coldfire/flexcan.h>
60#include <asm/coldfire/intctrl.h>
TsiChungLiew6e5bd0d2008-01-14 16:59:42 -060061#include <asm/coldfire/lcd.h>
TsiChung Liew7f1a0462008-10-21 10:03:07 +000062#include <asm/coldfire/mdha.h>
63#include <asm/coldfire/pwm.h>
TsiChungLiew6e5bd0d2008-01-14 16:59:42 -060064#include <asm/coldfire/ssi.h>
TsiChung Liew7f1a0462008-10-21 10:03:07 +000065#include <asm/coldfire/skha.h>
TsiChungLiew6e5bd0d2008-01-14 16:59:42 -060066
TsiChung Liewf6afe722007-06-18 13:50:13 -050067/* System control module registers */
68typedef struct scm1_ctrl {
69 u32 mpr0; /* 0x00 Master Privilege Register 0 */
70 u32 res1[15]; /* 0x04 - 0x3F */
71 u32 pacrh; /* 0x40 Peripheral Access Control Register H */
72 u32 res2[3]; /* 0x44 - 0x53 */
73 u32 bmt0; /*0x54 Bus Monitor Timeout 0 */
74} scm1_t;
75
TsiChung Liewf6afe722007-06-18 13:50:13 -050076/* System control module registers 2 */
77typedef struct scm2_ctrl {
78 u32 mpr1; /* 0x00 Master Privilege Register */
79 u32 res1[7]; /* 0x04 - 0x1F */
80 u32 pacra; /* 0x20 Peripheral Access Control Register A */
81 u32 pacrb; /* 0x24 Peripheral Access Control Register B */
82 u32 pacrc; /* 0x28 Peripheral Access Control Register C */
83 u32 pacrd; /* 0x2C Peripheral Access Control Register D */
84 u32 res2[4]; /* 0x30 - 0x3F */
85 u32 pacre; /* 0x40 Peripheral Access Control Register E */
86 u32 pacrf; /* 0x44 Peripheral Access Control Register F */
87 u32 pacrg; /* 0x48 Peripheral Access Control Register G */
88 u32 res3[2]; /* 0x4C - 0x53 */
89 u32 bmt1; /* 0x54 Bus Monitor Timeout 1 */
90} scm2_t;
91
TsiChung Liewf6afe722007-06-18 13:50:13 -050092/* System Control Module register 3 */
93typedef struct scm3_ctrl {
94 u8 res1[19]; /* 0x00 - 0x12 */
95 u8 wcr; /* 0x13 wakeup control register */
96 u16 res2; /* 0x14 - 0x15 */
97 u16 cwcr; /* 0x16 Core Watchdog Control Register */
98 u8 res3[3]; /* 0x18 - 0x1A */
99 u8 cwsr; /* 0x1B Core Watchdog Service Register */
100 u8 res4[2]; /* 0x1C - 0x1D */
101 u8 scmisr; /* 0x1F Interrupt Status Register */
102 u32 res5; /* 0x20 */
103 u32 bcr; /* 0x24 Burst Configuration Register */
104 u32 res6[18]; /* 0x28 - 0x6F */
105 u32 cfadr; /* 0x70 Core Fault Address Register */
106 u8 res7[4]; /* 0x71 - 0x74 */
107 u8 cfier; /* 0x75 Core Fault Interrupt Enable Register */
108 u8 cfloc; /* 0x76 Core Fault Location Register */
109 u8 cfatr; /* 0x77 Core Fault Attributes Register */
110 u32 res8; /* 0x78 */
111 u32 cfdtr; /* 0x7C Core Fault Data Register */
112} scm3_t;
113
TsiChung Liew7f1a0462008-10-21 10:03:07 +0000114typedef struct canex_ctrl {
115 can_msg_t msg[16]; /* 0x00 Message Buffer 0-15 */
116} canex_t;
TsiChung Liewf6afe722007-06-18 13:50:13 -0500117
118/* Watchdog registers */
119typedef struct wdog_ctrl {
120 u16 cr; /* 0x00 Control register */
121 u16 mr; /* 0x02 Modulus register */
122 u16 cntr; /* 0x04 Count register */
123 u16 sr; /* 0x06 Service register */
124} wdog_t;
125
126/*Chip configuration module registers */
127typedef struct ccm_ctrl {
TsiChungLiew9519e102007-11-08 12:50:18 -0600128 u16 ccr; /* 0x00 Chip configuration register */
129 u16 res2; /* 0x02 */
130 u16 rcon; /* 0x04 Rreset configuration register */
131 u16 cir; /* 0x06 Chip identification register */
132 u32 res3; /* 0x08 */
133 u16 misccr; /* 0x0A Miscellaneous control register */
134 u16 cdr; /* 0x0C Clock divider register */
135 u16 uhcsr; /* 0x10 USB Host controller status register */
136 u16 uocsr; /* 0x12 USB On-the-Go Controller Status Reg */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500137} ccm_t;
138
TsiChungLiew73203492007-11-08 12:31:11 -0600139typedef struct rcm {
140 u8 rcr;
141 u8 rsr;
142} rcm_t;
143
TsiChung Liewf6afe722007-06-18 13:50:13 -0500144/* GPIO port registers */
145typedef struct gpio_ctrl {
146 /* Port Output Data Registers */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600147#ifdef CONFIG_M5329
TsiChung Liewf6afe722007-06-18 13:50:13 -0500148 u8 podr_fech; /* 0x00 */
149 u8 podr_fecl; /* 0x01 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600150#else
151 u16 res00; /* 0x00 - 0x01 */
152#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500153 u8 podr_ssi; /* 0x02 */
154 u8 podr_busctl; /* 0x03 */
155 u8 podr_be; /* 0x04 */
156 u8 podr_cs; /* 0x05 */
157 u8 podr_pwm; /* 0x06 */
158 u8 podr_feci2c; /* 0x07 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600159 u8 res08; /* 0x08 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500160 u8 podr_uart; /* 0x09 */
161 u8 podr_qspi; /* 0x0A */
162 u8 podr_timer; /* 0x0B */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600163#ifdef CONFIG_M5329
164 u8 res0C; /* 0x0C */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500165 u8 podr_lcddatah; /* 0x0D */
166 u8 podr_lcddatam; /* 0x0E */
167 u8 podr_lcddatal; /* 0x0F */
168 u8 podr_lcdctlh; /* 0x10 */
169 u8 podr_lcdctll; /* 0x11 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600170#else
171 u16 res0C; /* 0x0C - 0x0D */
172 u8 podr_fech; /* 0x0E */
173 u8 podr_fecl; /* 0x0F */
174 u16 res10[3]; /* 0x10 - 0x15 */
175#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500176
177 /* Port Data Direction Registers */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600178#ifdef CONFIG_M5329
179 u16 res12; /* 0x12 - 0x13 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500180 u8 pddr_fech; /* 0x14 */
181 u8 pddr_fecl; /* 0x15 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600182#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500183 u8 pddr_ssi; /* 0x16 */
184 u8 pddr_busctl; /* 0x17 */
185 u8 pddr_be; /* 0x18 */
186 u8 pddr_cs; /* 0x19 */
187 u8 pddr_pwm; /* 0x1A */
188 u8 pddr_feci2c; /* 0x1B */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600189 u8 res1C; /* 0x1C */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500190 u8 pddr_uart; /* 0x1D */
191 u8 pddr_qspi; /* 0x1E */
192 u8 pddr_timer; /* 0x1F */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600193#ifdef CONFIG_M5329
194 u8 res20; /* 0x20 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500195 u8 pddr_lcddatah; /* 0x21 */
196 u8 pddr_lcddatam; /* 0x22 */
197 u8 pddr_lcddatal; /* 0x23 */
198 u8 pddr_lcdctlh; /* 0x24 */
199 u8 pddr_lcdctll; /* 0x25 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600200 u16 res26; /* 0x26 - 0x27 */
201#else
202 u16 res20; /* 0x20 - 0x21 */
203 u8 pddr_fech; /* 0x22 */
204 u8 pddr_fecl; /* 0x23 */
205 u16 res24[3]; /* 0x24 - 0x29 */
206#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500207
208 /* Port Data Direction Registers */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600209#ifdef CONFIG_M5329
TsiChung Liewf6afe722007-06-18 13:50:13 -0500210 u8 ppd_fech; /* 0x28 */
211 u8 ppd_fecl; /* 0x29 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600212#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500213 u8 ppd_ssi; /* 0x2A */
214 u8 ppd_busctl; /* 0x2B */
215 u8 ppd_be; /* 0x2C */
216 u8 ppd_cs; /* 0x2D */
217 u8 ppd_pwm; /* 0x2E */
218 u8 ppd_feci2c; /* 0x2F */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600219 u8 res30; /* 0x30 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500220 u8 ppd_uart; /* 0x31 */
221 u8 ppd_qspi; /* 0x32 */
222 u8 ppd_timer; /* 0x33 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600223#ifdef CONFIG_M5329
224 u8 res34; /* 0x34 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500225 u8 ppd_lcddatah; /* 0x35 */
226 u8 ppd_lcddatam; /* 0x36 */
227 u8 ppd_lcddatal; /* 0x37 */
228 u8 ppd_lcdctlh; /* 0x38 */
229 u8 ppd_lcdctll; /* 0x39 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600230 u16 res3A; /* 0x3A - 0x3B */
231#else
232 u16 res34; /* 0x34 - 0x35 */
233 u8 ppd_fech; /* 0x36 */
234 u8 ppd_fecl; /* 0x37 */
235 u16 res38[3]; /* 0x38 - 0x3D */
236#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500237
238 /* Port Clear Output Data Registers */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600239#ifdef CONFIG_M5329
240 u8 res3C; /* 0x3C */
241 u8 pclrr_fech; /* 0x3D */
242 u8 pclrr_fecl; /* 0x3E */
243#else
TsiChung Liewf6afe722007-06-18 13:50:13 -0500244 u8 pclrr_ssi; /* 0x3E */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600245#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500246 u8 pclrr_busctl; /* 0x3F */
247 u8 pclrr_be; /* 0x40 */
248 u8 pclrr_cs; /* 0x41 */
249 u8 pclrr_pwm; /* 0x42 */
250 u8 pclrr_feci2c; /* 0x43 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600251 u8 res44; /* 0x44 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500252 u8 pclrr_uart; /* 0x45 */
253 u8 pclrr_qspi; /* 0x46 */
254 u8 pclrr_timer; /* 0x47 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600255#ifdef CONFIG_M5329
256 u8 pclrr_lcddatah; /* 0x48 */
257 u8 pclrr_lcddatam; /* 0x49 */
258 u8 pclrr_lcddatal; /* 0x4A */
259 u8 pclrr_ssi; /* 0x4B */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500260 u8 pclrr_lcdctlh; /* 0x4C */
261 u8 pclrr_lcdctll; /* 0x4D */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600262 u16 res4E; /* 0x4E - 0x4F */
263#else
264 u16 res48; /* 0x48 - 0x49 */
265 u8 pclrr_fech; /* 0x4A */
266 u8 pclrr_fecl; /* 0x4B */
267 u8 res4C[5]; /* 0x4C - 0x50 */
268#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500269
270 /* Pin Assignment Registers */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600271#ifdef CONFIG_M5329
TsiChung Liewf6afe722007-06-18 13:50:13 -0500272 u8 par_fec; /* 0x50 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600273#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500274 u8 par_pwm; /* 0x51 */
275 u8 par_busctl; /* 0x52 */
276 u8 par_feci2c; /* 0x53 */
277 u8 par_be; /* 0x54 */
278 u8 par_cs; /* 0x55 */
279 u16 par_ssi; /* 0x56 */
280 u16 par_uart; /* 0x58 */
281 u16 par_qspi; /* 0x5A */
282 u8 par_timer; /* 0x5C */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600283#ifdef CONFIG_M5329
TsiChung Liewf6afe722007-06-18 13:50:13 -0500284 u8 par_lcddata; /* 0x5D */
285 u16 par_lcdctl; /* 0x5E */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600286#else
287 u8 par_fec; /* 0x5D */
288 u16 res5E; /* 0x5E - 0x5F */
289#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500290 u16 par_irq; /* 0x60 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600291 u16 res62; /* 0x62 - 0x63 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500292
293 /* Mode Select Control Registers */
294 u8 mscr_flexbus; /* 0x64 */
295 u8 mscr_sdram; /* 0x65 */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600296 u16 res66; /* 0x66 - 0x67 */
TsiChung Liewf6afe722007-06-18 13:50:13 -0500297
298 /* Drive Strength Control Registers */
299 u8 dscr_i2c; /* 0x68 */
300 u8 dscr_pwm; /* 0x69 */
301 u8 dscr_fec; /* 0x6A */
302 u8 dscr_uart; /* 0x6B */
303 u8 dscr_qspi; /* 0x6C */
304 u8 dscr_timer; /* 0x6D */
305 u8 dscr_ssi; /* 0x6E */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600306#ifdef CONFIG_M5329
TsiChung Liewf6afe722007-06-18 13:50:13 -0500307 u8 dscr_lcd; /* 0x6F */
TsiChungLiew6f8a0a32008-01-14 17:23:08 -0600308#else
309 u8 res6F; /* 0x6F */
310#endif
TsiChung Liewf6afe722007-06-18 13:50:13 -0500311 u8 dscr_debug; /* 0x70 */
312 u8 dscr_clkrst; /* 0x71 */
313 u8 dscr_irq; /* 0x72 */
314} gpio_t;
315
TsiChung Liewf6afe722007-06-18 13:50:13 -0500316/* USB OTG module registers */
317typedef struct usb_otg {
318 u32 id; /* 0x000 Identification Register */
319 u32 hwgeneral; /* 0x004 General HW Parameters */
320 u32 hwhost; /* 0x008 Host HW Parameters */
321 u32 hwdev; /* 0x00C Device HW parameters */
322 u32 hwtxbuf; /* 0x010 TX Buffer HW Parameters */
323 u32 hwrxbuf; /* 0x014 RX Buffer HW Parameters */
324 u32 res1[58]; /* 0x18 - 0xFF */
325 u8 caplength; /* 0x100 Capability Register Length */
326 u8 res2; /* 0x101 */
327 u16 hciver; /* 0x102 Host Interface Version Number */
328 u32 hcsparams; /* 0x104 Host Structural Parameters */
329 u32 hccparams; /* 0x108 Host Capability Parameters */
330 u32 res3[5]; /* 0x10C - 0x11F */
331 u16 dciver; /* 0x120 Device Interface Version Number */
332 u16 res4; /* 0x122 */
333 u32 dccparams; /* 0x124 Device Capability Parameters */
334 u32 res5[6]; /* 0x128 - 0x13F */
335 u32 cmd; /* 0x140 USB Command */
336 u32 sts; /* 0x144 USB Status */
337 u32 intr; /* 0x148 USB Interrupt Enable */
338 u32 frindex; /* 0x14C USB Frame Index */
339 u32 res6; /* 0x150 */
340 u32 prd_dev; /* 0x154 Periodic Frame List Base or Device Address */
341 u32 aync_ep; /* 0x158 Current Asynchronous List or Address at Endpoint List Address */
342 u32 ttctrl; /* 0x15C Host TT Asynchronous Buffer Control */
343 u32 burstsize; /* 0x160 Master Interface Data Burst Size */
344 u32 txfill; /* 0x164 Host Transmit FIFO Tuning Control */
345 u32 res7[6]; /* 0x168 - 0x17F */
346 u32 cfgflag; /* 0x180 Configure Flag Register */
347 u32 portsc1; /* 0x184 Port Status/Control */
348 u32 res8[7]; /* 0x188 - 0x1A3 */
349 u32 otgsc; /* 0x1A4 On The Go Status and Control */
350 u32 mode; /* 0x1A8 USB mode register */
351 u32 eptsetstat; /* 0x1AC Endpoint Setup status */
352 u32 eptprime; /* 0x1B0 Endpoint initialization */
353 u32 eptflush; /* 0x1B4 Endpoint de-initialize */
354 u32 eptstat; /* 0x1B8 Endpoint status */
355 u32 eptcomplete; /* 0x1BC Endpoint Complete */
356 u32 eptctrl0; /* 0x1C0 Endpoint control 0 */
357 u32 eptctrl1; /* 0x1C4 Endpoint control 1 */
358 u32 eptctrl2; /* 0x1C8 Endpoint control 2 */
359 u32 eptctrl3; /* 0x1CC Endpoint control 3 */
360} usbotg_t;
361
TsiChung Liewf6afe722007-06-18 13:50:13 -0500362/* SDRAM controller registers */
363typedef struct sdram_ctrl {
364 u32 mode; /* 0x00 Mode/Extended Mode register */
365 u32 ctrl; /* 0x04 Control register */
366 u32 cfg1; /* 0x08 Configuration register 1 */
367 u32 cfg2; /* 0x0C Configuration register 2 */
368 u32 res1[64]; /* 0x10 - 0x10F */
369 u32 cs0; /* 0x110 Chip Select 0 Configuration */
370 u32 cs1; /* 0x114 Chip Select 1 Configuration */
371} sdram_t;
372
TsiChung Liewf6afe722007-06-18 13:50:13 -0500373/* Clock Module registers */
374typedef struct pll_ctrl {
375 u8 podr; /* 0x00 Output Divider Register */
376 u8 res1[3];
377 u8 pcr; /* 0x04 Control Register */
378 u8 res2[3];
379 u8 pmdr; /* 0x08 Modulation Divider Register */
380 u8 res3[3];
381 u8 pfdr; /* 0x0C Feedback Divider Register */
382 u8 res4[3];
383} pll_t;
384
385#endif /* __IMMAP_5329__ */