]> git.sur5r.net Git - u-boot/blob - include/asm-arm/arch-mx27/imx-regs.h
Merge branch 'master' of git://git.denx.de/u-boot-arm
[u-boot] / include / asm-arm / arch-mx27 / imx-regs.h
1 /*
2  *
3  * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
4  * (c) 2009 Ilya Yanok, Emcraft Systems <yanok@emcraft.com>
5  *
6  * See file CREDITS for list of people who contributed to this
7  * project.
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License as
11  * published by the Free Software Foundation; either version 2 of
12  * the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22  * MA 02111-1307 USA
23  */
24
25 #ifndef _IMX_REGS_H
26 #define _IMX_REGS_H
27
28 #ifndef __ASSEMBLY__
29
30 extern void imx_gpio_mode (int gpio_mode);
31
32 /* AIPI */
33 struct aipi_regs {
34         u32 psr0;
35         u32 psr1;
36 };
37
38 /* System Control */
39 struct system_control_regs {
40         u32 res[5];
41         u32 fmcr;
42         u32 gpcr;
43         u32 wbcr;
44         u32 dscr1;
45         u32 dscr2;
46         u32 dscr3;
47         u32 dscr4;
48         u32 dscr5;
49         u32 dscr6;
50         u32 dscr7;
51         u32 dscr8;
52         u32 dscr9;
53         u32 dscr10;
54         u32 dscr11;
55         u32 dscr12;
56         u32 dscr13;
57         u32 pscr;
58         u32 pmcr;
59         u32 res1;
60         u32 dcvr0;
61         u32 dcvr1;
62         u32 dcvr2;
63         u32 dcvr3;
64 };
65
66 /* Chip Select Registers */
67 struct weim_regs {
68         u32 cs0u;       /* Chip Select 0 Upper Register */
69         u32 cs0l;       /* Chip Select 0 Lower Register */
70         u32 cs0a;       /* Chip Select 0 Addition Register */
71         u32 pad0;
72         u32 cs1u;       /* Chip Select 1 Upper Register */
73         u32 cs1l;       /* Chip Select 1 Lower Register */
74         u32 cs1a;       /* Chip Select 1 Addition Register */
75         u32 pad1;
76         u32 cs2u;       /* Chip Select 2 Upper Register */
77         u32 cs2l;       /* Chip Select 2 Lower Register */
78         u32 cs2a;       /* Chip Select 2 Addition Register */
79         u32 pad2;
80         u32 cs3u;       /* Chip Select 3 Upper Register */
81         u32 cs3l;       /* Chip Select 3 Lower Register */
82         u32 cs3a;       /* Chip Select 3 Addition Register */
83         u32 pad3;
84         u32 cs4u;       /* Chip Select 4 Upper Register */
85         u32 cs4l;       /* Chip Select 4 Lower Register */
86         u32 cs4a;       /* Chip Select 4 Addition Register */
87         u32 pad4;
88         u32 cs5u;       /* Chip Select 5 Upper Register */
89         u32 cs5l;       /* Chip Select 5 Lower Register */
90         u32 cs5a;       /* Chip Select 5 Addition Register */
91         u32 pad5;
92         u32 eim;        /* WEIM Configuration Register */
93 };
94
95 /* SDRAM Controller registers */
96 struct esdramc_regs {
97 /* Enhanced SDRAM Control Register 0 */
98         u32 esdctl0;
99 /* Enhanced SDRAM Configuration Register 0 */
100         u32 esdcfg0;
101 /* Enhanced SDRAM Control Register 1 */
102         u32 esdctl1;
103 /* Enhanced SDRAM Configuration Register 1 */
104         u32 esdcfg1;
105 /* Enhanced SDRAM Miscellanious Register */
106         u32 esdmisc;
107 };
108
109 /* Watchdog Registers*/
110 struct wdog_regs {
111         u32 wcr;
112         u32 wsr;
113         u32 wstr;
114 };
115
116 /* PLL registers */
117 struct pll_regs {
118         u32 cscr;       /* Clock Source Control Register */
119         u32 mpctl0;     /* MCU PLL Control Register 0 */
120         u32 mpctl1;     /* MCU PLL Control Register 1 */
121         u32 spctl0;     /* System PLL Control Register 0 */
122         u32 spctl1;     /* System PLL Control Register 1 */
123         u32 osc26mctl;  /* Oscillator 26M Register */
124         u32 pcdr0;      /* Peripheral Clock Divider Register 0 */
125         u32 pcdr1;      /* Peripheral Clock Divider Register 1 */
126         u32 pccr0;      /* Peripheral Clock Control Register 0 */
127         u32 pccr1;      /* Peripheral Clock Control Register 1 */
128         u32 ccsr;       /* Clock Control Status Register */
129 };
130
131 /*
132  * Definitions for the clocksource registers
133  */
134 struct gpt_regs {
135         u32 gpt_tctl;
136         u32 gpt_tprer;
137         u32 gpt_tcmp;
138         u32 gpt_tcr;
139         u32 gpt_tcn;
140         u32 gpt_tstat;
141 };
142
143 /*
144  *  GPIO Module and I/O Multiplexer
145  */
146 #define PORTA 0
147 #define PORTB 1
148 #define PORTC 2
149 #define PORTD 3
150 #define PORTE 4
151 #define PORTF 5
152
153 struct gpio_regs {
154         struct {
155                 u32 ddir;
156                 u32 ocr1;
157                 u32 ocr2;
158                 u32 iconfa1;
159                 u32 iconfa2;
160                 u32 iconfb1;
161                 u32 iconfb2;
162                 u32 dr;
163                 u32 gius;
164                 u32 ssr;
165                 u32 icr1;
166                 u32 icr2;
167                 u32 imr;
168                 u32 isr;
169                 u32 gpr;
170                 u32 swr;
171                 u32 puen;
172                 u32 res[0x2f];
173         } port[6];
174 };
175
176 /* IIM Control Registers */
177 struct iim_regs {
178         u32 iim_stat;
179         u32 iim_statm;
180         u32 iim_err;
181         u32 iim_emask;
182         u32 iim_fctl;
183         u32 iim_ua;
184         u32 iim_la;
185         u32 iim_sdat;
186         u32 iim_prev;
187         u32 iim_srev;
188         u32 iim_prog_p;
189         u32 iim_scs0;
190         u32 iim_scs1;
191         u32 iim_scs2;
192         u32 iim_scs3;
193         u32 res[0x1F0];
194         u32 iim_bank_area0[0x100];
195 };
196 #endif
197
198 #define IMX_IO_BASE             0x10000000
199
200 #define IMX_AIPI1_BASE          (0x00000 + IMX_IO_BASE)
201 #define IMX_WDT_BASE            (0x02000 + IMX_IO_BASE)
202 #define IMX_TIM1_BASE           (0x03000 + IMX_IO_BASE)
203 #define IMX_TIM2_BASE           (0x04000 + IMX_IO_BASE)
204 #define IMX_TIM3_BASE           (0x05000 + IMX_IO_BASE)
205 #define IMX_UART1_BASE          (0x0a000 + IMX_IO_BASE)
206 #define IMX_UART2_BASE          (0x0b000 + IMX_IO_BASE)
207 #define IMX_UART3_BASE          (0x0c000 + IMX_IO_BASE)
208 #define IMX_UART4_BASE          (0x0d000 + IMX_IO_BASE)
209 #define IMX_I2C1_BASE           (0x12000 + IMX_IO_BASE)
210 #define IMX_GPIO_BASE           (0x15000 + IMX_IO_BASE)
211 #define IMX_TIM4_BASE           (0x19000 + IMX_IO_BASE)
212 #define IMX_TIM5_BASE           (0x1a000 + IMX_IO_BASE)
213 #define IMX_UART5_BASE          (0x1b000 + IMX_IO_BASE)
214 #define IMX_UART6_BASE          (0x1c000 + IMX_IO_BASE)
215 #define IMX_I2C2_BASE           (0x1D000 + IMX_IO_BASE)
216 #define IMX_TIM6_BASE           (0x1f000 + IMX_IO_BASE)
217 #define IMX_AIPI2_BASE          (0x20000 + IMX_IO_BASE)
218 #define IMX_PLL_BASE            (0x27000 + IMX_IO_BASE)
219 #define IMX_SYSTEM_CTL_BASE     (0x27800 + IMX_IO_BASE)
220 #define IMX_IIM_BASE            (0x28000 + IMX_IO_BASE)
221 #define IMX_FEC_BASE            (0x2b000 + IMX_IO_BASE)
222
223 #define IMX_ESD_BASE            (0xD8001000)
224 #define IMX_WEIM_BASE           (0xD8002000)
225
226 /* FMCR System Control bit definition*/
227 #define UART4_RXD_CTL   (1 << 25)
228 #define UART4_RTS_CTL   (1 << 24)
229 #define KP_COL6_CTL     (1 << 18)
230 #define KP_ROW7_CTL     (1 << 17)
231 #define KP_ROW6_CTL     (1 << 16)
232 #define PC_WAIT_B_CTL   (1 << 14)
233 #define PC_READY_CTL    (1 << 13)
234 #define PC_VS1_CTL      (1 << 12)
235 #define PC_VS2_CTL      (1 << 11)
236 #define PC_BVD1_CTL     (1 << 10)
237 #define PC_BVD2_CTL     (1 << 9)
238 #define IOS16_CTL       (1 << 8)
239 #define NF_FMS          (1 << 5)
240 #define NF_16BIT_SEL    (1 << 4)
241 #define SLCDC_SEL       (1 << 2)
242 #define SDCS1_SEL       (1 << 1)
243 #define SDCS0_SEL       (1 << 0)
244
245
246 /* important definition of some bits of WCR */
247 #define WCR_WDE 0x04
248
249 #define CSCR_MPEN               (1 << 0)
250 #define CSCR_SPEN               (1 << 1)
251 #define CSCR_FPM_EN             (1 << 2)
252 #define CSCR_OSC26M_DIS         (1 << 3)
253 #define CSCR_OSC26M_DIV1P5      (1 << 4)
254 #define CSCR_AHB_DIV
255 #define CSCR_ARM_DIV
256 #define CSCR_ARM_SRC_MPLL       (1 << 15)
257 #define CSCR_MCU_SEL            (1 << 16)
258 #define CSCR_SP_SEL             (1 << 17)
259 #define CSCR_MPLL_RESTART       (1 << 18)
260 #define CSCR_SPLL_RESTART       (1 << 19)
261 #define CSCR_MSHC_SEL           (1 << 20)
262 #define CSCR_H264_SEL           (1 << 21)
263 #define CSCR_SSI1_SEL           (1 << 22)
264 #define CSCR_SSI2_SEL           (1 << 23)
265 #define CSCR_SD_CNT
266 #define CSCR_USB_DIV
267 #define CSCR_UPDATE_DIS         (1 << 31)
268
269 #define MPCTL1_BRMO             (1 << 6)
270 #define MPCTL1_LF               (1 << 15)
271
272 #define PCCR0_SSI2_EN   (1 << 0)
273 #define PCCR0_SSI1_EN   (1 << 1)
274 #define PCCR0_SLCDC_EN  (1 << 2)
275 #define PCCR0_SDHC3_EN  (1 << 3)
276 #define PCCR0_SDHC2_EN  (1 << 4)
277 #define PCCR0_SDHC1_EN  (1 << 5)
278 #define PCCR0_SDC_EN    (1 << 6)
279 #define PCCR0_SAHARA_EN (1 << 7)
280 #define PCCR0_RTIC_EN   (1 << 8)
281 #define PCCR0_RTC_EN    (1 << 9)
282 #define PCCR0_PWM_EN    (1 << 11)
283 #define PCCR0_OWIRE_EN  (1 << 12)
284 #define PCCR0_MSHC_EN   (1 << 13)
285 #define PCCR0_LCDC_EN   (1 << 14)
286 #define PCCR0_KPP_EN    (1 << 15)
287 #define PCCR0_IIM_EN    (1 << 16)
288 #define PCCR0_I2C2_EN   (1 << 17)
289 #define PCCR0_I2C1_EN   (1 << 18)
290 #define PCCR0_GPT6_EN   (1 << 19)
291 #define PCCR0_GPT5_EN   (1 << 20)
292 #define PCCR0_GPT4_EN   (1 << 21)
293 #define PCCR0_GPT3_EN   (1 << 22)
294 #define PCCR0_GPT2_EN   (1 << 23)
295 #define PCCR0_GPT1_EN   (1 << 24)
296 #define PCCR0_GPIO_EN   (1 << 25)
297 #define PCCR0_FEC_EN    (1 << 26)
298 #define PCCR0_EMMA_EN   (1 << 27)
299 #define PCCR0_DMA_EN    (1 << 28)
300 #define PCCR0_CSPI3_EN  (1 << 29)
301 #define PCCR0_CSPI2_EN  (1 << 30)
302 #define PCCR0_CSPI1_EN  (1 << 31)
303
304 #define PCCR1_MSHC_BAUDEN       (1 << 2)
305 #define PCCR1_NFC_BAUDEN        (1 << 3)
306 #define PCCR1_SSI2_BAUDEN       (1 << 4)
307 #define PCCR1_SSI1_BAUDEN       (1 << 5)
308 #define PCCR1_H264_BAUDEN       (1 << 6)
309 #define PCCR1_PERCLK4_EN        (1 << 7)
310 #define PCCR1_PERCLK3_EN        (1 << 8)
311 #define PCCR1_PERCLK2_EN        (1 << 9)
312 #define PCCR1_PERCLK1_EN        (1 << 10)
313 #define PCCR1_HCLK_USB          (1 << 11)
314 #define PCCR1_HCLK_SLCDC        (1 << 12)
315 #define PCCR1_HCLK_SAHARA       (1 << 13)
316 #define PCCR1_HCLK_RTIC         (1 << 14)
317 #define PCCR1_HCLK_LCDC         (1 << 15)
318 #define PCCR1_HCLK_H264         (1 << 16)
319 #define PCCR1_HCLK_FEC          (1 << 17)
320 #define PCCR1_HCLK_EMMA         (1 << 18)
321 #define PCCR1_HCLK_EMI          (1 << 19)
322 #define PCCR1_HCLK_DMA          (1 << 20)
323 #define PCCR1_HCLK_CSI          (1 << 21)
324 #define PCCR1_HCLK_BROM         (1 << 22)
325 #define PCCR1_HCLK_ATA          (1 << 23)
326 #define PCCR1_WDT_EN            (1 << 24)
327 #define PCCR1_USB_EN            (1 << 25)
328 #define PCCR1_UART6_EN          (1 << 26)
329 #define PCCR1_UART5_EN          (1 << 27)
330 #define PCCR1_UART4_EN          (1 << 28)
331 #define PCCR1_UART3_EN          (1 << 29)
332 #define PCCR1_UART2_EN          (1 << 30)
333 #define PCCR1_UART1_EN          (1 << 31)
334
335 /* SDRAM Controller registers bitfields */
336 #define ESDCTL_PRCT(x)          (((x) & 0x3f) << 0)
337 #define ESDCTL_BL               (1 << 7)
338 #define ESDCTL_FP               (1 << 8)
339 #define ESDCTL_PWDT(x)          (((x) & 3) << 10)
340 #define ESDCTL_SREFR(x)         (((x) & 7) << 13)
341 #define ESDCTL_DSIZ_16_UPPER    (0 << 16)
342 #define ESDCTL_DSIZ_16_LOWER    (1 << 16)
343 #define ESDCTL_DSIZ_32          (2 << 16)
344 #define ESDCTL_COL8             (0 << 20)
345 #define ESDCTL_COL9             (1 << 20)
346 #define ESDCTL_COL10            (2 << 20)
347 #define ESDCTL_ROW11            (0 << 24)
348 #define ESDCTL_ROW12            (1 << 24)
349 #define ESDCTL_ROW13            (2 << 24)
350 #define ESDCTL_ROW14            (3 << 24)
351 #define ESDCTL_ROW15            (4 << 24)
352 #define ESDCTL_SP               (1 << 27)
353 #define ESDCTL_SMODE_NORMAL     (0 << 28)
354 #define ESDCTL_SMODE_PRECHARGE  (1 << 28)
355 #define ESDCTL_SMODE_AUTO_REF   (2 << 28)
356 #define ESDCTL_SMODE_LOAD_MODE  (3 << 28)
357 #define ESDCTL_SMODE_MAN_REF    (4 << 28)
358 #define ESDCTL_SDE              (1 << 31)
359
360 #define ESDCFG_TRC(x)           (((x) & 0xf) << 0)
361 #define ESDCFG_TRCD(x)          (((x) & 0x7) << 4)
362 #define ESDCFG_TCAS(x)          (((x) & 0x3) << 8)
363 #define ESDCFG_TRRD(x)          (((x) & 0x3) << 10)
364 #define ESDCFG_TRAS(x)          (((x) & 0x7) << 12)
365 #define ESDCFG_TWR              (1 << 15)
366 #define ESDCFG_TMRD(x)          (((x) & 0x3) << 16)
367 #define ESDCFG_TRP(x)           (((x) & 0x3) << 18)
368 #define ESDCFG_TWTR             (1 << 20)
369 #define ESDCFG_TXP(x)           (((x) & 0x3) << 21)
370
371 #define ESDMISC_RST             (1 << 1)
372 #define ESDMISC_MDDREN          (1 << 2)
373 #define ESDMISC_MDDR_DL_RST     (1 << 3)
374 #define ESDMISC_MDDR_MDIS       (1 << 4)
375 #define ESDMISC_LHD             (1 << 5)
376 #define ESDMISC_MA10_SHARE      (1 << 6)
377 #define ESDMISC_SDRAM_RDY       (1 << 31)
378
379 #define PC5_PF_I2C2_DATA        (GPIO_PORTC | GPIO_OUT | GPIO_PF | 5)
380 #define PC6_PF_I2C2_CLK         (GPIO_PORTC | GPIO_OUT | GPIO_PF | 6)
381 #define PC7_PF_USBOTG_DATA5     (GPIO_PORTC | GPIO_OUT | GPIO_PF | 7)
382 #define PC8_PF_USBOTG_DATA6     (GPIO_PORTC | GPIO_OUT | GPIO_PF | 8)
383 #define PC9_PF_USBOTG_DATA0     (GPIO_PORTC | GPIO_OUT | GPIO_PF | 9)
384 #define PC10_PF_USBOTG_DATA2    (GPIO_PORTC | GPIO_OUT | GPIO_PF | 10)
385 #define PC11_PF_USBOTG_DATA1    (GPIO_PORTC | GPIO_OUT | GPIO_PF | 11)
386 #define PC12_PF_USBOTG_DATA4    (GPIO_PORTC | GPIO_OUT | GPIO_PF | 12)
387 #define PC13_PF_USBOTG_DATA3    (GPIO_PORTC | GPIO_OUT | GPIO_PF | 13)
388
389 #define PD0_AIN_FEC_TXD0        (GPIO_PORTD | GPIO_OUT | GPIO_AIN | 0)
390 #define PD1_AIN_FEC_TXD1        (GPIO_PORTD | GPIO_OUT | GPIO_AIN | 1)
391 #define PD2_AIN_FEC_TXD2        (GPIO_PORTD | GPIO_OUT | GPIO_AIN | 2)
392 #define PD3_AIN_FEC_TXD3        (GPIO_PORTD | GPIO_OUT | GPIO_AIN | 3)
393 #define PD4_AOUT_FEC_RX_ER      (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 4)
394 #define PD5_AOUT_FEC_RXD1       (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 5)
395 #define PD6_AOUT_FEC_RXD2       (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 6)
396 #define PD7_AOUT_FEC_RXD3       (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 7)
397 #define PD8_AF_FEC_MDIO         (GPIO_PORTD | GPIO_IN | GPIO_AF | 8)
398 #define PD9_AIN_FEC_MDC         (GPIO_PORTD | GPIO_OUT | GPIO_AIN | 9)
399 #define PD10_AOUT_FEC_CRS       (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 10)
400 #define PD11_AOUT_FEC_TX_CLK    (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 11)
401 #define PD12_AOUT_FEC_RXD0      (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 12)
402 #define PD13_AOUT_FEC_RX_DV     (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 13)
403 #define PD14_AOUT_FEC_CLR       (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 14)
404 #define PD15_AOUT_FEC_COL       (GPIO_PORTD | GPIO_IN | GPIO_AOUT | 15)
405 #define PD16_AIN_FEC_TX_ER      (GPIO_PORTD | GPIO_OUT | GPIO_AIN | 16)
406 #define PF23_AIN_FEC_TX_EN      (GPIO_PORTF | GPIO_OUT | GPIO_AIN | 23)
407
408 #define PE0_PF_USBOTG_NXT       (GPIO_PORTE | GPIO_OUT | GPIO_PF | 0)
409 #define PE1_PF_USBOTG_STP       (GPIO_PORTE | GPIO_OUT | GPIO_PF | 1)
410 #define PE2_PF_USBOTG_DIR       (GPIO_PORTE | GPIO_OUT | GPIO_PF | 2)
411 #define PE3_PF_UART2_CTS        (GPIO_PORTE | GPIO_OUT | GPIO_PF | 3)
412 #define PE4_PF_UART2_RTS        (GPIO_PORTE | GPIO_IN  | GPIO_PF | 4)
413 #define PE6_PF_UART2_TXD        (GPIO_PORTE | GPIO_OUT | GPIO_PF | 6)
414 #define PE7_PF_UART2_RXD        (GPIO_PORTE | GPIO_IN  | GPIO_PF | 7)
415 #define PE8_PF_UART3_TXD        (GPIO_PORTE | GPIO_OUT | GPIO_PF | 8)
416 #define PE9_PF_UART3_RXD        (GPIO_PORTE | GPIO_IN  | GPIO_PF | 9)
417 #define PE10_PF_UART3_CTS       (GPIO_PORTE | GPIO_OUT | GPIO_PF | 10)
418 #define PE11_PF_UART3_RTS       (GPIO_PORTE | GPIO_IN  | GPIO_PF | 11)
419 #define PE12_PF_UART1_TXD       (GPIO_PORTE | GPIO_OUT | GPIO_PF | 12)
420 #define PE13_PF_UART1_RXD       (GPIO_PORTE | GPIO_IN  | GPIO_PF | 13)
421 #define PE14_PF_UART1_CTS       (GPIO_PORTE | GPIO_OUT | GPIO_PF | 14)
422 #define PE15_PF_UART1_RTS       (GPIO_PORTE | GPIO_IN  | GPIO_PF | 15)
423 #define PE18_PF_SD1_D0          (GPIO_PORTE | GPIO_PF | 18)
424 #define PE19_PF_SD1_D1          (GPIO_PORTE | GPIO_PF | 19)
425 #define PE20_PF_SD1_D2          (GPIO_PORTE | GPIO_PF | 20)
426 #define PE21_PF_SD1_D3          (GPIO_PORTE | GPIO_PF | 21)
427 #define PE22_PF_SD1_CMD         (GPIO_PORTE | GPIO_PF | 22)
428 #define PE23_PF_SD1_CLK         (GPIO_PORTE | GPIO_PF | 23)
429 #define PB4_PF_SD2_D0           (GPIO_PORTB | GPIO_PF | 4)
430 #define PB5_PF_SD2_D1           (GPIO_PORTB | GPIO_PF | 5)
431 #define PB6_PF_SD2_D2           (GPIO_PORTB | GPIO_PF | 6)
432 #define PB7_PF_SD2_D3           (GPIO_PORTB | GPIO_PF | 7)
433 #define PB8_PF_SD2_CMD          (GPIO_PORTB | GPIO_PF | 8)
434 #define PB9_PF_SD2_CLK          (GPIO_PORTB | GPIO_PF | 9)
435 #define PD17_PF_I2C_DATA        (GPIO_PORTD | GPIO_OUT | GPIO_PF | 17)
436 #define PD18_PF_I2C_CLK         (GPIO_PORTD | GPIO_OUT | GPIO_PF | 18)
437 #define PE24_PF_USBOTG_CLK      (GPIO_PORTE | GPIO_OUT | GPIO_PF | 24)
438 #define PE25_PF_USBOTG_DATA7    (GPIO_PORTE | GPIO_OUT | GPIO_PF | 25)
439
440 /* Clocksource Bitfields */
441 #define TCTL_SWR        (1 << 15)       /* Software reset */
442 #define TCTL_FRR        (1 << 8)        /* Freerun / restart */
443 #define TCTL_CAP        (3 << 6)        /* Capture Edge */
444 #define TCTL_OM         (1 << 5)        /* output mode */
445 #define TCTL_IRQEN      (1 << 4)        /* interrupt enable */
446 #define TCTL_CLKSOURCE  1               /* Clock source bit position */
447 #define TCTL_TEN        1               /* Timer enable */
448 #define TPRER_PRES      0xff            /* Prescale */
449 #define TSTAT_CAPT      (1 << 1)        /* Capture event */
450 #define TSTAT_COMP      1               /* Compare event */
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 /* Definitions for i.MX27 TO2 */
504 #define IIM0_MAC                5
505 #define IIM0_SCC_KEY            11
506 #define IIM1_SUID               1
507
508 #endif                          /* _IMX_REGS_H */
509