1 /*
2  * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
3  * (c) 2009 Ilya Yanok, Emcraft Systems <yanok@emcraft.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #ifndef _IMX_REGS_H
9 #define _IMX_REGS_H
10 
11 #include <asm/arch/regs-rtc.h>
12 
13 #ifndef __ASSEMBLY__
14 
15 extern void imx_gpio_mode (int gpio_mode);
16 
17 #ifdef CONFIG_MXC_UART
18 extern void mx27_uart1_init_pins(void);
19 #endif /* CONFIG_MXC_UART */
20 
21 #ifdef CONFIG_FEC_MXC
22 extern void mx27_fec_init_pins(void);
23 #endif /* CONFIG_FEC_MXC */
24 
25 #ifdef CONFIG_MXC_MMC
26 extern void mx27_sd1_init_pins(void);
27 extern void mx27_sd2_init_pins(void);
28 #endif /* CONFIG_MXC_MMC */
29 
30 /* AIPI */
31 struct aipi_regs {
32 	u32 psr0;
33 	u32 psr1;
34 };
35 
36 /* System Control */
37 struct system_control_regs {
38 	u32 res[5];
39 	u32 fmcr;
40 	u32 gpcr;
41 	u32 wbcr;
42 	u32 dscr1;
43 	u32 dscr2;
44 	u32 dscr3;
45 	u32 dscr4;
46 	u32 dscr5;
47 	u32 dscr6;
48 	u32 dscr7;
49 	u32 dscr8;
50 	u32 dscr9;
51 	u32 dscr10;
52 	u32 dscr11;
53 	u32 dscr12;
54 	u32 dscr13;
55 	u32 pscr;
56 	u32 pmcr;
57 	u32 res1;
58 	u32 dcvr0;
59 	u32 dcvr1;
60 	u32 dcvr2;
61 	u32 dcvr3;
62 };
63 
64 /* Chip Select Registers */
65 struct weim_regs {
66 	u32 cs0u;	/* Chip Select 0 Upper Register */
67 	u32 cs0l;	/* Chip Select 0 Lower Register */
68 	u32 cs0a;	/* Chip Select 0 Addition Register */
69 	u32 pad0;
70 	u32 cs1u;	/* Chip Select 1 Upper Register */
71 	u32 cs1l;	/* Chip Select 1 Lower Register */
72 	u32 cs1a;	/* Chip Select 1 Addition Register */
73 	u32 pad1;
74 	u32 cs2u;	/* Chip Select 2 Upper Register */
75 	u32 cs2l;	/* Chip Select 2 Lower Register */
76 	u32 cs2a;	/* Chip Select 2 Addition Register */
77 	u32 pad2;
78 	u32 cs3u;	/* Chip Select 3 Upper Register */
79 	u32 cs3l;	/* Chip Select 3 Lower Register */
80 	u32 cs3a;	/* Chip Select 3 Addition Register */
81 	u32 pad3;
82 	u32 cs4u;	/* Chip Select 4 Upper Register */
83 	u32 cs4l;	/* Chip Select 4 Lower Register */
84 	u32 cs4a;	/* Chip Select 4 Addition Register */
85 	u32 pad4;
86 	u32 cs5u;	/* Chip Select 5 Upper Register */
87 	u32 cs5l;	/* Chip Select 5 Lower Register */
88 	u32 cs5a;	/* Chip Select 5 Addition Register */
89 	u32 pad5;
90 	u32 eim;	/* WEIM Configuration Register */
91 };
92 
93 /* SDRAM Controller registers */
94 struct esdramc_regs {
95 /* Enhanced SDRAM Control Register 0 */
96 	u32 esdctl0;
97 /* Enhanced SDRAM Configuration Register 0 */
98 	u32 esdcfg0;
99 /* Enhanced SDRAM Control Register 1 */
100 	u32 esdctl1;
101 /* Enhanced SDRAM Configuration Register 1 */
102 	u32 esdcfg1;
103 /* Enhanced SDRAM Miscellanious Register */
104 	u32 esdmisc;
105 };
106 
107 /* Watchdog Registers*/
108 struct wdog_regs {
109 	u32 wcr;
110 	u32 wsr;
111 	u32 wstr;
112 };
113 
114 /* PLL registers */
115 struct pll_regs {
116 	u32 cscr;	/* Clock Source Control Register */
117 	u32 mpctl0;	/* MCU PLL Control Register 0 */
118 	u32 mpctl1;	/* MCU PLL Control Register 1 */
119 	u32 spctl0;	/* System PLL Control Register 0 */
120 	u32 spctl1;	/* System PLL Control Register 1 */
121 	u32 osc26mctl;	/* Oscillator 26M Register */
122 	u32 pcdr0;	/* Peripheral Clock Divider Register 0 */
123 	u32 pcdr1;	/* Peripheral Clock Divider Register 1 */
124 	u32 pccr0;	/* Peripheral Clock Control Register 0 */
125 	u32 pccr1;	/* Peripheral Clock Control Register 1 */
126 	u32 ccsr;	/* Clock Control Status Register */
127 };
128 
129 /*
130  * Definitions for the clocksource registers
131  */
132 struct gpt_regs {
133 	u32 gpt_tctl;
134 	u32 gpt_tprer;
135 	u32 gpt_tcmp;
136 	u32 gpt_tcr;
137 	u32 gpt_tcn;
138 	u32 gpt_tstat;
139 };
140 
141 /*
142  *  GPIO Module and I/O Multiplexer
143  */
144 #define PORTA 0
145 #define PORTB 1
146 #define PORTC 2
147 #define PORTD 3
148 #define PORTE 4
149 #define PORTF 5
150 
151 /* IIM Control Registers */
152 struct iim_regs {
153 	u32 iim_stat;
154 	u32 iim_statm;
155 	u32 iim_err;
156 	u32 iim_emask;
157 	u32 iim_fctl;
158 	u32 iim_ua;
159 	u32 iim_la;
160 	u32 iim_sdat;
161 	u32 iim_prev;
162 	u32 iim_srev;
163 	u32 iim_prg_p;
164 	u32 iim_scs0;
165 	u32 iim_scs1;
166 	u32 iim_scs2;
167 	u32 iim_scs3;
168 	u32 res[0x1f1];
169 	struct fuse_bank {
170 		u32 fuse_regs[0x20];
171 		u32 fuse_rsvd[0xe0];
172 	} bank[2];
173 };
174 
175 struct fuse_bank0_regs {
176 	u32 fuse0_3[5];
177 	u32 mac_addr[6];
178 	u32 fuse10_31[0x16];
179 };
180 
181 #endif
182 
183 #define ARCH_MXC
184 
185 #define IMX_IO_BASE		0x10000000
186 
187 #define IMX_AIPI1_BASE		(0x00000 + IMX_IO_BASE)
188 #define IMX_WDT_BASE		(0x02000 + IMX_IO_BASE)
189 #define IMX_TIM1_BASE		(0x03000 + IMX_IO_BASE)
190 #define IMX_TIM2_BASE		(0x04000 + IMX_IO_BASE)
191 #define IMX_TIM3_BASE		(0x05000 + IMX_IO_BASE)
192 #define IMX_RTC_BASE		(0x07000 + IMX_IO_BASE)
193 #define UART1_BASE		(0x0a000 + IMX_IO_BASE)
194 #define UART2_BASE		(0x0b000 + IMX_IO_BASE)
195 #define UART3_BASE		(0x0c000 + IMX_IO_BASE)
196 #define UART4_BASE		(0x0d000 + IMX_IO_BASE)
197 #define IMX_I2C1_BASE		(0x12000 + IMX_IO_BASE)
198 #define IMX_GPIO_BASE		(0x15000 + IMX_IO_BASE)
199 #define IMX_TIM4_BASE		(0x19000 + IMX_IO_BASE)
200 #define IMX_TIM5_BASE		(0x1a000 + IMX_IO_BASE)
201 #define IMX_UART5_BASE		(0x1b000 + IMX_IO_BASE)
202 #define IMX_UART6_BASE		(0x1c000 + IMX_IO_BASE)
203 #define IMX_I2C2_BASE		(0x1D000 + IMX_IO_BASE)
204 #define IMX_TIM6_BASE		(0x1f000 + IMX_IO_BASE)
205 #define IMX_AIPI2_BASE		(0x20000 + IMX_IO_BASE)
206 #define IMX_PLL_BASE		(0x27000 + IMX_IO_BASE)
207 #define IMX_SYSTEM_CTL_BASE	(0x27800 + IMX_IO_BASE)
208 #define IMX_IIM_BASE		(0x28000 + IMX_IO_BASE)
209 #define IIM_BASE_ADDR		IMX_IIM_BASE
210 #define IMX_FEC_BASE		(0x2b000 + IMX_IO_BASE)
211 
212 #define IMX_NFC_BASE		(0xD8000000)
213 #define IMX_ESD_BASE		(0xD8001000)
214 #define IMX_WEIM_BASE		(0xD8002000)
215 
216 #define NFC_BASE_ADDR		IMX_NFC_BASE
217 
218 
219 /* FMCR System Control bit definition*/
220 #define UART4_RXD_CTL	(1 << 25)
221 #define UART4_RTS_CTL	(1 << 24)
222 #define KP_COL6_CTL	(1 << 18)
223 #define KP_ROW7_CTL	(1 << 17)
224 #define KP_ROW6_CTL	(1 << 16)
225 #define PC_WAIT_B_CTL	(1 << 14)
226 #define PC_READY_CTL	(1 << 13)
227 #define PC_VS1_CTL	(1 << 12)
228 #define PC_VS2_CTL	(1 << 11)
229 #define PC_BVD1_CTL	(1 << 10)
230 #define PC_BVD2_CTL	(1 << 9)
231 #define IOS16_CTL	(1 << 8)
232 #define NF_FMS		(1 << 5)
233 #define NF_16BIT_SEL	(1 << 4)
234 #define SLCDC_SEL	(1 << 2)
235 #define SDCS1_SEL	(1 << 1)
236 #define SDCS0_SEL	(1 << 0)
237 
238 
239 /* important definition of some bits of WCR */
240 #define WCR_WDE 0x04
241 
242 #define CSCR_MPEN		(1 << 0)
243 #define CSCR_SPEN		(1 << 1)
244 #define CSCR_FPM_EN		(1 << 2)
245 #define CSCR_OSC26M_DIS		(1 << 3)
246 #define CSCR_OSC26M_DIV1P5	(1 << 4)
247 #define CSCR_AHB_DIV
248 #define CSCR_ARM_DIV
249 #define CSCR_ARM_SRC_MPLL	(1 << 15)
250 #define CSCR_MCU_SEL		(1 << 16)
251 #define CSCR_SP_SEL		(1 << 17)
252 #define CSCR_MPLL_RESTART	(1 << 18)
253 #define CSCR_SPLL_RESTART	(1 << 19)
254 #define CSCR_MSHC_SEL		(1 << 20)
255 #define CSCR_H264_SEL		(1 << 21)
256 #define CSCR_SSI1_SEL		(1 << 22)
257 #define CSCR_SSI2_SEL		(1 << 23)
258 #define CSCR_SD_CNT
259 #define CSCR_USB_DIV
260 #define CSCR_UPDATE_DIS		(1 << 31)
261 
262 #define MPCTL1_BRMO		(1 << 6)
263 #define MPCTL1_LF		(1 << 15)
264 
265 #define PCCR0_SSI2_EN	(1 << 0)
266 #define PCCR0_SSI1_EN	(1 << 1)
267 #define PCCR0_SLCDC_EN	(1 << 2)
268 #define PCCR0_SDHC3_EN	(1 << 3)
269 #define PCCR0_SDHC2_EN	(1 << 4)
270 #define PCCR0_SDHC1_EN	(1 << 5)
271 #define PCCR0_SDC_EN	(1 << 6)
272 #define PCCR0_SAHARA_EN	(1 << 7)
273 #define PCCR0_RTIC_EN	(1 << 8)
274 #define PCCR0_RTC_EN	(1 << 9)
275 #define PCCR0_PWM_EN	(1 << 11)
276 #define PCCR0_OWIRE_EN	(1 << 12)
277 #define PCCR0_MSHC_EN	(1 << 13)
278 #define PCCR0_LCDC_EN	(1 << 14)
279 #define PCCR0_KPP_EN	(1 << 15)
280 #define PCCR0_IIM_EN	(1 << 16)
281 #define PCCR0_I2C2_EN	(1 << 17)
282 #define PCCR0_I2C1_EN	(1 << 18)
283 #define PCCR0_GPT6_EN	(1 << 19)
284 #define PCCR0_GPT5_EN	(1 << 20)
285 #define PCCR0_GPT4_EN	(1 << 21)
286 #define PCCR0_GPT3_EN	(1 << 22)
287 #define PCCR0_GPT2_EN	(1 << 23)
288 #define PCCR0_GPT1_EN	(1 << 24)
289 #define PCCR0_GPIO_EN	(1 << 25)
290 #define PCCR0_FEC_EN	(1 << 26)
291 #define PCCR0_EMMA_EN	(1 << 27)
292 #define PCCR0_DMA_EN	(1 << 28)
293 #define PCCR0_CSPI3_EN	(1 << 29)
294 #define PCCR0_CSPI2_EN	(1 << 30)
295 #define PCCR0_CSPI1_EN	(1 << 31)
296 
297 #define PCCR1_MSHC_BAUDEN	(1 << 2)
298 #define PCCR1_NFC_BAUDEN	(1 << 3)
299 #define PCCR1_SSI2_BAUDEN	(1 << 4)
300 #define PCCR1_SSI1_BAUDEN	(1 << 5)
301 #define PCCR1_H264_BAUDEN	(1 << 6)
302 #define PCCR1_PERCLK4_EN	(1 << 7)
303 #define PCCR1_PERCLK3_EN	(1 << 8)
304 #define PCCR1_PERCLK2_EN	(1 << 9)
305 #define PCCR1_PERCLK1_EN	(1 << 10)
306 #define PCCR1_HCLK_USB		(1 << 11)
307 #define PCCR1_HCLK_SLCDC	(1 << 12)
308 #define PCCR1_HCLK_SAHARA	(1 << 13)
309 #define PCCR1_HCLK_RTIC		(1 << 14)
310 #define PCCR1_HCLK_LCDC		(1 << 15)
311 #define PCCR1_HCLK_H264		(1 << 16)
312 #define PCCR1_HCLK_FEC		(1 << 17)
313 #define PCCR1_HCLK_EMMA		(1 << 18)
314 #define PCCR1_HCLK_EMI		(1 << 19)
315 #define PCCR1_HCLK_DMA		(1 << 20)
316 #define PCCR1_HCLK_CSI		(1 << 21)
317 #define PCCR1_HCLK_BROM		(1 << 22)
318 #define PCCR1_HCLK_ATA		(1 << 23)
319 #define PCCR1_WDT_EN		(1 << 24)
320 #define PCCR1_USB_EN		(1 << 25)
321 #define PCCR1_UART6_EN		(1 << 26)
322 #define PCCR1_UART5_EN		(1 << 27)
323 #define PCCR1_UART4_EN		(1 << 28)
324 #define PCCR1_UART3_EN		(1 << 29)
325 #define PCCR1_UART2_EN		(1 << 30)
326 #define PCCR1_UART1_EN		(1 << 31)
327 
328 /* SDRAM Controller registers bitfields */
329 #define ESDCTL_PRCT(x)		(((x) & 0x3f) << 0)
330 #define ESDCTL_BL		(1 << 7)
331 #define ESDCTL_FP		(1 << 8)
332 #define ESDCTL_PWDT(x)		(((x) & 3) << 10)
333 #define ESDCTL_SREFR(x)		(((x) & 7) << 13)
334 #define ESDCTL_DSIZ_16_UPPER	(0 << 16)
335 #define ESDCTL_DSIZ_16_LOWER	(1 << 16)
336 #define ESDCTL_DSIZ_32		(2 << 16)
337 #define ESDCTL_COL8		(0 << 20)
338 #define ESDCTL_COL9		(1 << 20)
339 #define ESDCTL_COL10		(2 << 20)
340 #define ESDCTL_ROW11		(0 << 24)
341 #define ESDCTL_ROW12		(1 << 24)
342 #define ESDCTL_ROW13		(2 << 24)
343 #define ESDCTL_ROW14		(3 << 24)
344 #define ESDCTL_ROW15		(4 << 24)
345 #define ESDCTL_SP		(1 << 27)
346 #define ESDCTL_SMODE_NORMAL	(0 << 28)
347 #define ESDCTL_SMODE_PRECHARGE	(1 << 28)
348 #define ESDCTL_SMODE_AUTO_REF	(2 << 28)
349 #define ESDCTL_SMODE_LOAD_MODE	(3 << 28)
350 #define ESDCTL_SMODE_MAN_REF	(4 << 28)
351 #define ESDCTL_SDE		(1 << 31)
352 
353 #define ESDCFG_TRC(x)		(((x) & 0xf) << 0)
354 #define ESDCFG_TRCD(x)		(((x) & 0x7) << 4)
355 #define ESDCFG_TCAS(x)		(((x) & 0x3) << 8)
356 #define ESDCFG_TRRD(x)		(((x) & 0x3) << 10)
357 #define ESDCFG_TRAS(x)		(((x) & 0x7) << 12)
358 #define ESDCFG_TWR		(1 << 15)
359 #define ESDCFG_TMRD(x)		(((x) & 0x3) << 16)
360 #define ESDCFG_TRP(x)		(((x) & 0x3) << 18)
361 #define ESDCFG_TWTR		(1 << 20)
362 #define ESDCFG_TXP(x)		(((x) & 0x3) << 21)
363 
364 #define ESDMISC_RST		(1 << 1)
365 #define ESDMISC_MDDREN		(1 << 2)
366 #define ESDMISC_MDDR_DL_RST	(1 << 3)
367 #define ESDMISC_MDDR_MDIS	(1 << 4)
368 #define ESDMISC_LHD		(1 << 5)
369 #define ESDMISC_MA10_SHARE	(1 << 6)
370 #define ESDMISC_SDRAM_RDY	(1 << 31)
371 
372 #define PC5_PF_I2C2_DATA	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 5)
373 #define PC6_PF_I2C2_CLK		(GPIO_PORTC | GPIO_OUT | GPIO_PF | 6)
374 #define PC7_PF_USBOTG_DATA5	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 7)
375 #define PC8_PF_USBOTG_DATA6	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 8)
376 #define PC9_PF_USBOTG_DATA0	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 9)
377 #define PC10_PF_USBOTG_DATA2	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 10)
378 #define PC11_PF_USBOTG_DATA1	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 11)
379 #define PC12_PF_USBOTG_DATA4	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 12)
380 #define PC13_PF_USBOTG_DATA3	(GPIO_PORTC | GPIO_OUT | GPIO_PF | 13)
381 
382 #define PD0_AIN_FEC_TXD0	(GPIO_PORTD | GPIO_OUT | GPIO_AIN | 0)
383 #define PD1_AIN_FEC_TXD1	(GPIO_PORTD | GPIO_OUT | GPIO_AIN | 1)
384 #define PD2_AIN_FEC_TXD2	(GPIO_PORTD | GPIO_OUT | GPIO_AIN | 2)
385 #define PD3_AIN_FEC_TXD3	(GPIO_PORTD | GPIO_OUT | GPIO_AIN | 3)
386 #define PD4_AOUT_FEC_RX_ER	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 4)
387 #define PD5_AOUT_FEC_RXD1	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 5)
388 #define PD6_AOUT_FEC_RXD2	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 6)
389 #define PD7_AOUT_FEC_RXD3	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 7)
390 #define PD8_AF_FEC_MDIO		(GPIO_PORTD | GPIO_IN | GPIO_AF | 8)
391 #define PD9_AIN_FEC_MDC		(GPIO_PORTD | GPIO_OUT | GPIO_AIN | 9)
392 #define PD10_AOUT_FEC_CRS	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 10)
393 #define PD11_AOUT_FEC_TX_CLK	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 11)
394 #define PD12_AOUT_FEC_RXD0	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 12)
395 #define PD13_AOUT_FEC_RX_DV	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 13)
396 #define PD14_AOUT_FEC_CLR	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 14)
397 #define PD15_AOUT_FEC_COL	(GPIO_PORTD | GPIO_IN | GPIO_AOUT | 15)
398 #define PD16_AIN_FEC_TX_ER	(GPIO_PORTD | GPIO_OUT | GPIO_AIN | 16)
399 #define PF23_AIN_FEC_TX_EN	(GPIO_PORTF | GPIO_OUT | GPIO_AIN | 23)
400 
401 #define PE0_PF_USBOTG_NXT	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 0)
402 #define PE1_PF_USBOTG_STP	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 1)
403 #define PE2_PF_USBOTG_DIR	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 2)
404 #define PE3_PF_UART2_CTS	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 3)
405 #define PE4_PF_UART2_RTS	(GPIO_PORTE | GPIO_IN  | GPIO_PF | 4)
406 #define PE6_PF_UART2_TXD	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 6)
407 #define PE7_PF_UART2_RXD	(GPIO_PORTE | GPIO_IN  | GPIO_PF | 7)
408 #define PE8_PF_UART3_TXD	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 8)
409 #define PE9_PF_UART3_RXD	(GPIO_PORTE | GPIO_IN  | GPIO_PF | 9)
410 #define PE10_PF_UART3_CTS	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 10)
411 #define PE11_PF_UART3_RTS	(GPIO_PORTE | GPIO_IN  | GPIO_PF | 11)
412 #define PE12_PF_UART1_TXD	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 12)
413 #define PE13_PF_UART1_RXD	(GPIO_PORTE | GPIO_IN  | GPIO_PF | 13)
414 #define PE14_PF_UART1_CTS	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 14)
415 #define PE15_PF_UART1_RTS	(GPIO_PORTE | GPIO_IN  | GPIO_PF | 15)
416 #define PE18_PF_SD1_D0		(GPIO_PORTE | GPIO_PF | 18)
417 #define PE19_PF_SD1_D1		(GPIO_PORTE | GPIO_PF | 19)
418 #define PE20_PF_SD1_D2		(GPIO_PORTE | GPIO_PF | 20)
419 #define PE21_PF_SD1_D3		(GPIO_PORTE | GPIO_PF | 21)
420 #define PE22_PF_SD1_CMD		(GPIO_PORTE | GPIO_PF | 22)
421 #define PE23_PF_SD1_CLK		(GPIO_PORTE | GPIO_PF | 23)
422 #define PB4_PF_SD2_D0		(GPIO_PORTB | GPIO_PF | 4)
423 #define PB5_PF_SD2_D1		(GPIO_PORTB | GPIO_PF | 5)
424 #define PB6_PF_SD2_D2		(GPIO_PORTB | GPIO_PF | 6)
425 #define PB7_PF_SD2_D3		(GPIO_PORTB | GPIO_PF | 7)
426 #define PB8_PF_SD2_CMD		(GPIO_PORTB | GPIO_PF | 8)
427 #define PB9_PF_SD2_CLK		(GPIO_PORTB | GPIO_PF | 9)
428 #define PD17_PF_I2C_DATA	(GPIO_PORTD | GPIO_OUT | GPIO_PF | 17)
429 #define PD18_PF_I2C_CLK		(GPIO_PORTD | GPIO_OUT | GPIO_PF | 18)
430 #define PE24_PF_USBOTG_CLK	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 24)
431 #define PE25_PF_USBOTG_DATA7	(GPIO_PORTE | GPIO_OUT | GPIO_PF | 25)
432 
433 /* Clocksource Bitfields */
434 #define TCTL_SWR	(1 << 15)	/* Software reset */
435 #define TCTL_FRR	(1 << 8)	/* Freerun / restart */
436 #define TCTL_CAP	(3 << 6)	/* Capture Edge */
437 #define TCTL_OM		(1 << 5)	/* output mode */
438 #define TCTL_IRQEN	(1 << 4)	/* interrupt enable */
439 #define TCTL_CLKSOURCE	1		/* Clock source bit position */
440 #define TCTL_TEN	1		/* Timer enable */
441 #define TPRER_PRES	0xff		/* Prescale */
442 #define TSTAT_CAPT	(1 << 1)	/* Capture event */
443 #define TSTAT_COMP	1		/* Compare event */
444 
445 #define GPIO1_BASE_ADDR 0x10015000
446 #define GPIO2_BASE_ADDR 0x10015100
447 #define GPIO3_BASE_ADDR 0x10015200
448 #define GPIO4_BASE_ADDR 0x10015300
449 #define GPIO5_BASE_ADDR 0x10015400
450 #define GPIO6_BASE_ADDR 0x10015500
451 
452 #define GPIO_PIN_MASK	0x1f
453 
454 #define GPIO_PORT_SHIFT	5
455 #define GPIO_PORT_MASK	(0x7 << GPIO_PORT_SHIFT)
456 
457 #define GPIO_PORTA	(PORTA << GPIO_PORT_SHIFT)
458 #define GPIO_PORTB	(PORTB << GPIO_PORT_SHIFT)
459 #define GPIO_PORTC	(PORTC << GPIO_PORT_SHIFT)
460 #define GPIO_PORTD	(PORTD << GPIO_PORT_SHIFT)
461 #define GPIO_PORTE	(PORTE << GPIO_PORT_SHIFT)
462 #define GPIO_PORTF	(PORTF << GPIO_PORT_SHIFT)
463 
464 #define GPIO_OUT	(1 << 8)
465 #define GPIO_IN		(0 << 8)
466 #define GPIO_PUEN	(1 << 9)
467 
468 #define GPIO_PF		(1 << 10)
469 #define GPIO_AF		(1 << 11)
470 
471 #define GPIO_OCR_SHIFT	12
472 #define GPIO_OCR_MASK	(3 << GPIO_OCR_SHIFT)
473 #define GPIO_AIN	(0 << GPIO_OCR_SHIFT)
474 #define GPIO_BIN	(1 << GPIO_OCR_SHIFT)
475 #define GPIO_CIN	(2 << GPIO_OCR_SHIFT)
476 #define GPIO_GPIO	(3 << GPIO_OCR_SHIFT)
477 
478 #define GPIO_AOUT_SHIFT	14
479 #define GPIO_AOUT_MASK	(3 << GPIO_AOUT_SHIFT)
480 #define GPIO_AOUT	(0 << GPIO_AOUT_SHIFT)
481 #define GPIO_AOUT_ISR	(1 << GPIO_AOUT_SHIFT)
482 #define GPIO_AOUT_0	(2 << GPIO_AOUT_SHIFT)
483 #define GPIO_AOUT_1	(3 << GPIO_AOUT_SHIFT)
484 
485 #define GPIO_BOUT_SHIFT	16
486 #define GPIO_BOUT_MASK	(3 << GPIO_BOUT_SHIFT)
487 #define GPIO_BOUT	(0 << GPIO_BOUT_SHIFT)
488 #define GPIO_BOUT_ISR	(1 << GPIO_BOUT_SHIFT)
489 #define GPIO_BOUT_0	(2 << GPIO_BOUT_SHIFT)
490 #define GPIO_BOUT_1	(3 << GPIO_BOUT_SHIFT)
491 
492 #define IIM_STAT_BUSY	(1 << 7)
493 #define IIM_STAT_PRGD	(1 << 1)
494 #define IIM_STAT_SNSD	(1 << 0)
495 #define IIM_ERR_PRGE	(1 << 7)
496 #define IIM_ERR_WPE	(1 << 6)
497 #define IIM_ERR_OPE	(1 << 5)
498 #define IIM_ERR_RPE	(1 << 4)
499 #define IIM_ERR_WLRE	(1 << 3)
500 #define IIM_ERR_SNSE	(1 << 2)
501 #define IIM_ERR_PARITYE	(1 << 1)
502 
503 #endif				/* _IMX_REGS_H */
504