blob: 53aafe3075f4af9fbbea20f6a8a1e5444a95595a [file] [log] [blame]
John Rigby552ff8f2010-01-25 23:12:56 -07001/*
2 * Copyright (C) 2009, DENX Software Engineering
3 * Author: John Rigby <jcrigby@gmail.com
4 *
Benoît Thébaudeau5676f592012-10-08 08:34:22 +00005 * Based on arch-mx31/imx-regs.h
John Rigby552ff8f2010-01-25 23:12:56 -07006 * Copyright (C) 2009 Ilya Yanok,
7 * Emcraft Systems <yanok@emcraft.com>
8 * and arch-mx27/imx-regs.h
9 * Copyright (C) 2007 Pengutronix,
10 * Sascha Hauer <s.hauer@pengutronix.de>
11 * Copyright (C) 2009 Ilya Yanok,
12 * Emcraft Systems <yanok@emcraft.com>
13 *
14 * See file CREDITS for list of people who contributed to this
15 * project.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 */
32
33#ifndef _IMX_REGS_H
34#define _IMX_REGS_H
35
Benoît Thébaudeau5676f592012-10-08 08:34:22 +000036#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
Timo Ketola8f385e92012-04-18 22:55:34 +000037#include <asm/types.h>
38
John Rigby552ff8f2010-01-25 23:12:56 -070039#ifdef CONFIG_FEC_MXC
40extern void mx25_fec_init_pins(void);
41#endif
42
43/* Clock Control Module (CCM) registers */
44struct ccm_regs {
45 u32 mpctl; /* Core PLL Control */
46 u32 upctl; /* USB PLL Control */
47 u32 cctl; /* Clock Control */
48 u32 cgr0; /* Clock Gating Control 0 */
49 u32 cgr1; /* Clock Gating Control 1 */
50 u32 cgr2; /* Clock Gating Control 2 */
51 u32 pcdr[4]; /* PER Clock Dividers */
52 u32 rcsr; /* CCM Status */
53 u32 crdr; /* CCM Reset and Debug */
54 u32 dcvr0; /* DPTC Comparator Value 0 */
55 u32 dcvr1; /* DPTC Comparator Value 1 */
56 u32 dcvr2; /* DPTC Comparator Value 2 */
57 u32 dcvr3; /* DPTC Comparator Value 3 */
58 u32 ltr0; /* Load Tracking 0 */
59 u32 ltr1; /* Load Tracking 1 */
60 u32 ltr2; /* Load Tracking 2 */
61 u32 ltr3; /* Load Tracking 3 */
62 u32 ltbr0; /* Load Tracking Buffer 0 */
63 u32 ltbr1; /* Load Tracking Buffer 1 */
64 u32 pcmr0; /* Power Management Control 0 */
65 u32 pcmr1; /* Power Management Control 1 */
66 u32 pcmr2; /* Power Management Control 2 */
67 u32 mcr; /* Miscellaneous Control */
68 u32 lpimr0; /* Low Power Interrupt Mask 0 */
69 u32 lpimr1; /* Low Power Interrupt Mask 1 */
70};
71
72/* Enhanced SDRAM Controller (ESDRAMC) registers */
73struct esdramc_regs {
74 u32 ctl0; /* control 0 */
75 u32 cfg0; /* configuration 0 */
76 u32 ctl1; /* control 1 */
77 u32 cfg1; /* configuration 1 */
78 u32 misc; /* miscellaneous */
79 u32 pad[3];
80 u32 cdly1; /* Delay Line 1 configuration debug */
81 u32 cdly2; /* delay line 2 configuration debug */
82 u32 cdly3; /* delay line 3 configuration debug */
83 u32 cdly4; /* delay line 4 configuration debug */
84 u32 cdly5; /* delay line 5 configuration debug */
85 u32 cdlyl; /* delay line cycle length debug */
86};
87
John Rigby552ff8f2010-01-25 23:12:56 -070088/* General Purpose Timer (GPT) registers */
89struct gpt_regs {
90 u32 ctrl; /* control */
91 u32 pre; /* prescaler */
92 u32 stat; /* status */
93 u32 intr; /* interrupt */
94 u32 cmp[3]; /* output compare 1-3 */
95 u32 capt[2]; /* input capture 1-2 */
96 u32 counter; /* counter */
97};
98
99/* Watchdog Timer (WDOG) registers */
100struct wdog_regs {
Matthias Weisser81129d02010-10-27 16:34:38 +0200101 u16 wcr; /* Control */
102 u16 wsr; /* Service */
103 u16 wrsr; /* Reset Status */
104 u16 wicr; /* Interrupt Control */
105 u16 wmcr; /* Misc Control */
John Rigby552ff8f2010-01-25 23:12:56 -0700106};
107
108/* IIM control registers */
109struct iim_regs {
110 u32 iim_stat;
111 u32 iim_statm;
112 u32 iim_err;
113 u32 iim_emask;
114 u32 iim_fctl;
115 u32 iim_ua;
116 u32 iim_la;
117 u32 iim_sdat;
118 u32 iim_prev;
119 u32 iim_srev;
120 u32 iim_prog_p;
121 u32 res1[0x1f5];
Liu Hui-R64343565e39c2010-11-18 23:45:55 +0000122 struct fuse_bank {
123 u32 fuse_regs[0x20];
124 u32 fuse_rsvd[0xe0];
125 } bank[3];
John Rigby552ff8f2010-01-25 23:12:56 -0700126};
Liu Hui-R64343565e39c2010-11-18 23:45:55 +0000127
128struct fuse_bank0_regs {
129 u32 fuse0_25[0x1a];
130 u32 mac_addr[6];
131};
132
Matthias Weisser23210d82011-07-06 00:28:31 +0000133/* Multi-Layer AHB Crossbar Switch (MAX) registers */
134struct max_regs {
135 u32 mpr0;
136 u32 pad00[3];
137 u32 sgpcr0;
138 u32 pad01[59];
139 u32 mpr1;
140 u32 pad02[3];
141 u32 sgpcr1;
142 u32 pad03[59];
143 u32 mpr2;
144 u32 pad04[3];
145 u32 sgpcr2;
146 u32 pad05[59];
147 u32 mpr3;
148 u32 pad06[3];
149 u32 sgpcr3;
150 u32 pad07[59];
151 u32 mpr4;
152 u32 pad08[3];
153 u32 sgpcr4;
154 u32 pad09[251];
155 u32 mgpcr0;
156 u32 pad10[63];
157 u32 mgpcr1;
158 u32 pad11[63];
159 u32 mgpcr2;
160 u32 pad12[63];
161 u32 mgpcr3;
162 u32 pad13[63];
163 u32 mgpcr4;
164};
165
166/* AHB <-> IP-Bus Interface (AIPS) */
167struct aips_regs {
168 u32 mpr_0_7;
169 u32 mpr_8_15;
170};
171
John Rigby552ff8f2010-01-25 23:12:56 -0700172#endif
173
Benoît Thébaudeau8e99ecd2012-08-13 07:27:58 +0000174#define ARCH_MXC
175
John Rigby552ff8f2010-01-25 23:12:56 -0700176/* AIPS 1 */
177#define IMX_AIPS1_BASE (0x43F00000)
178#define IMX_MAX_BASE (0x43F04000)
179#define IMX_CLKCTL_BASE (0x43F08000)
180#define IMX_ETB_SLOT4_BASE (0x43F0C000)
181#define IMX_ETB_SLOT5_BASE (0x43F10000)
182#define IMX_ECT_CTIO_BASE (0x43F18000)
183#define IMX_I2C_BASE (0x43F80000)
184#define IMX_I2C3_BASE (0x43F84000)
185#define IMX_CAN1_BASE (0x43F88000)
186#define IMX_CAN2_BASE (0x43F8C000)
Stefano Babic40f6fff2011-11-22 15:22:39 +0100187#define UART1_BASE (0x43F90000)
188#define UART2_BASE (0x43F94000)
John Rigby552ff8f2010-01-25 23:12:56 -0700189#define IMX_I2C2_BASE (0x43F98000)
190#define IMX_OWIRE_BASE (0x43F9C000)
191#define IMX_CSPI1_BASE (0x43FA4000)
192#define IMX_KPP_BASE (0x43FA8000)
193#define IMX_IOPADMUX_BASE (0x43FAC000)
194#define IMX_IOPADCTL_BASE (0x43FAC22C)
195#define IMX_IOPADGRPCTL_BASE (0x43FAC418)
196#define IMX_IOPADINPUTSEL_BASE (0x43FAC460)
197#define IMX_AUDMUX_BASE (0x43FB0000)
198#define IMX_ECT_IP1_BASE (0x43FB8000)
199#define IMX_ECT_IP2_BASE (0x43FBC000)
200
201/* SPBA */
202#define IMX_SPBA_BASE (0x50000000)
203#define IMX_CSPI3_BASE (0x50004000)
Stefano Babic40f6fff2011-11-22 15:22:39 +0100204#define UART4_BASE (0x50008000)
205#define UART3_BASE (0x5000C000)
John Rigby552ff8f2010-01-25 23:12:56 -0700206#define IMX_CSPI2_BASE (0x50010000)
207#define IMX_SSI2_BASE (0x50014000)
208#define IMX_ESAI_BASE (0x50018000)
209#define IMX_ATA_DMA_BASE (0x50020000)
210#define IMX_SIM1_BASE (0x50024000)
211#define IMX_SIM2_BASE (0x50028000)
Stefano Babic40f6fff2011-11-22 15:22:39 +0100212#define UART5_BASE (0x5002C000)
John Rigby552ff8f2010-01-25 23:12:56 -0700213#define IMX_TSC_BASE (0x50030000)
214#define IMX_SSI1_BASE (0x50034000)
215#define IMX_FEC_BASE (0x50038000)
216#define IMX_SPBA_CTRL_BASE (0x5003C000)
217
218/* AIPS 2 */
219#define IMX_AIPS2_BASE (0x53F00000)
220#define IMX_CCM_BASE (0x53F80000)
221#define IMX_GPT4_BASE (0x53F84000)
222#define IMX_GPT3_BASE (0x53F88000)
223#define IMX_GPT2_BASE (0x53F8C000)
224#define IMX_GPT1_BASE (0x53F90000)
225#define IMX_EPIT1_BASE (0x53F94000)
226#define IMX_EPIT2_BASE (0x53F98000)
227#define IMX_GPIO4_BASE (0x53F9C000)
228#define IMX_PWM2_BASE (0x53FA0000)
229#define IMX_GPIO3_BASE (0x53FA4000)
230#define IMX_PWM3_BASE (0x53FA8000)
231#define IMX_SCC_BASE (0x53FAC000)
232#define IMX_SCM_BASE (0x53FAE000)
233#define IMX_SMN_BASE (0x53FAF000)
234#define IMX_RNGD_BASE (0x53FB0000)
235#define IMX_MMC_SDHC1_BASE (0x53FB4000)
236#define IMX_MMC_SDHC2_BASE (0x53FB8000)
237#define IMX_LCDC_BASE (0x53FBC000)
238#define IMX_SLCDC_BASE (0x53FC0000)
239#define IMX_PWM4_BASE (0x53FC8000)
240#define IMX_GPIO1_BASE (0x53FCC000)
241#define IMX_GPIO2_BASE (0x53FD0000)
242#define IMX_SDMA_BASE (0x53FD4000)
243#define IMX_WDT_BASE (0x53FDC000)
244#define IMX_PWM1_BASE (0x53FE0000)
245#define IMX_RTIC_BASE (0x53FEC000)
246#define IMX_IIM_BASE (0x53FF0000)
247#define IMX_USB_BASE (0x53FF4000)
248#define IMX_CSI_BASE (0x53FF8000)
249#define IMX_DRYICE_BASE (0x53FFC000)
250
251#define IMX_ARM926_ROMPATCH (0x60000000)
252#define IMX_ARM926_ASIC (0x68000000)
253
254/* 128K Internal Static RAM */
255#define IMX_RAM_BASE (0x78000000)
Benoît Thébaudeau5676f592012-10-08 08:34:22 +0000256#define IMX_RAM_SIZE (128 * 1024)
John Rigby552ff8f2010-01-25 23:12:56 -0700257
258/* SDRAM BANKS */
259#define IMX_SDRAM_BANK0_BASE (0x80000000)
260#define IMX_SDRAM_BANK1_BASE (0x90000000)
261
262#define IMX_WEIM_CS0 (0xA0000000)
263#define IMX_WEIM_CS1 (0xA8000000)
264#define IMX_WEIM_CS2 (0xB0000000)
265#define IMX_WEIM_CS3 (0xB2000000)
266#define IMX_WEIM_CS4 (0xB4000000)
267#define IMX_ESDRAMC_BASE (0xB8001000)
268#define IMX_WEIM_CTRL_BASE (0xB8002000)
269#define IMX_M3IF_CTRL_BASE (0xB8003000)
270#define IMX_EMI_CTRL_BASE (0xB8004000)
271
272/* NAND Flash Controller */
273#define IMX_NFC_BASE (0xBB000000)
274#define NFC_BASE_ADDR IMX_NFC_BASE
275
276/* CCM bitfields */
277#define CCM_PLL_MFI_SHIFT 10
278#define CCM_PLL_MFI_MASK 0xf
279#define CCM_PLL_MFN_SHIFT 0
280#define CCM_PLL_MFN_MASK 0x3ff
281#define CCM_PLL_MFD_SHIFT 16
282#define CCM_PLL_MFD_MASK 0x3ff
283#define CCM_PLL_PD_SHIFT 26
284#define CCM_PLL_PD_MASK 0xf
285#define CCM_CCTL_ARM_DIV_SHIFT 30
286#define CCM_CCTL_ARM_DIV_MASK 3
287#define CCM_CCTL_AHB_DIV_SHIFT 28
288#define CCM_CCTL_AHB_DIV_MASK 3
289#define CCM_CCTL_ARM_SRC (1 << 14)
290#define CCM_CGR1_GPT1 (1 << 19)
291#define CCM_PERCLK_REG(clk) (clk / 4)
292#define CCM_PERCLK_SHIFT(clk) (8 * (clk % 4))
293#define CCM_PERCLK_MASK 0x3f
294#define CCM_RCSR_NF_16BIT_SEL (1 << 14)
295#define CCM_RCSR_NF_PS(v) ((v >> 26) & 3)
296
297/* ESDRAM Controller register bitfields */
298#define ESDCTL_PRCT(x) (((x) & 0x3f) << 0)
299#define ESDCTL_BL (1 << 7)
300#define ESDCTL_FP (1 << 8)
301#define ESDCTL_PWDT(x) (((x) & 3) << 10)
302#define ESDCTL_SREFR(x) (((x) & 7) << 13)
303#define ESDCTL_DSIZ_16_UPPER (0 << 16)
304#define ESDCTL_DSIZ_16_LOWER (1 << 16)
305#define ESDCTL_DSIZ_32 (2 << 16)
306#define ESDCTL_COL8 (0 << 20)
307#define ESDCTL_COL9 (1 << 20)
308#define ESDCTL_COL10 (2 << 20)
309#define ESDCTL_ROW11 (0 << 24)
310#define ESDCTL_ROW12 (1 << 24)
311#define ESDCTL_ROW13 (2 << 24)
312#define ESDCTL_ROW14 (3 << 24)
313#define ESDCTL_ROW15 (4 << 24)
314#define ESDCTL_SP (1 << 27)
315#define ESDCTL_SMODE_NORMAL (0 << 28)
316#define ESDCTL_SMODE_PRECHARGE (1 << 28)
317#define ESDCTL_SMODE_AUTO_REF (2 << 28)
318#define ESDCTL_SMODE_LOAD_MODE (3 << 28)
319#define ESDCTL_SMODE_MAN_REF (4 << 28)
320#define ESDCTL_SDE (1 << 31)
321
322#define ESDCFG_TRC(x) (((x) & 0xf) << 0)
323#define ESDCFG_TRCD(x) (((x) & 0x7) << 4)
324#define ESDCFG_TCAS(x) (((x) & 0x3) << 8)
325#define ESDCFG_TRRD(x) (((x) & 0x3) << 10)
326#define ESDCFG_TRAS(x) (((x) & 0x7) << 12)
327#define ESDCFG_TWR (1 << 15)
328#define ESDCFG_TMRD(x) (((x) & 0x3) << 16)
329#define ESDCFG_TRP(x) (((x) & 0x3) << 18)
330#define ESDCFG_TWTR (1 << 20)
331#define ESDCFG_TXP(x) (((x) & 0x3) << 21)
332
333#define ESDMISC_RST (1 << 1)
334#define ESDMISC_MDDREN (1 << 2)
335#define ESDMISC_MDDR_DL_RST (1 << 3)
336#define ESDMISC_MDDR_MDIS (1 << 4)
337#define ESDMISC_LHD (1 << 5)
338#define ESDMISC_MA10_SHARE (1 << 6)
339#define ESDMISC_SDRAM_RDY (1 << 31)
340
341/* GPT bits */
342#define GPT_CTRL_SWR (1 << 15) /* Software reset */
343#define GPT_CTRL_FRR (1 << 9) /* Freerun / restart */
344#define GPT_CTRL_CLKSOURCE_32 (4 << 6) /* Clock source */
345#define GPT_CTRL_TEN 1 /* Timer enable */
346
347/* WDOG enable */
Matthias Weisser81129d02010-10-27 16:34:38 +0200348#define WCR_WDE 0x04
349#define WSR_UNLOCK1 0x5555
350#define WSR_UNLOCK2 0xAAAA
John Rigby552ff8f2010-01-25 23:12:56 -0700351
Matthias Weisser95d18582011-07-06 00:28:32 +0000352/* Names used in GPIO driver */
353#define GPIO1_BASE_ADDR IMX_GPIO1_BASE
354#define GPIO2_BASE_ADDR IMX_GPIO2_BASE
355#define GPIO3_BASE_ADDR IMX_GPIO3_BASE
356#define GPIO4_BASE_ADDR IMX_GPIO4_BASE
357
Fabio Estevam986d0d12011-09-02 05:38:54 +0000358#define CHIP_REV_1_0 0x10
359#define CHIP_REV_1_1 0x11
Eric Benard8a57fdc2012-09-23 02:03:05 +0000360#define CHIP_REV_1_2 0x12
Fabio Estevam986d0d12011-09-02 05:38:54 +0000361
John Rigby552ff8f2010-01-25 23:12:56 -0700362#endif /* _IMX_REGS_H */