uboot/arch/arm/include/asm/arch-imx/imx-regs.h
<<
>>
Prefs
   1#ifndef _IMX_REGS_H
   2#define _IMX_REGS_H
   3/* ------------------------------------------------------------------------
   4 *  Motorola IMX system registers
   5 * ------------------------------------------------------------------------
   6 *
   7 */
   8
   9#define IO_ADDRESS(x) ((x) | IMX_IO_BASE)
  10
  11# ifndef __ASSEMBLY__
  12# define __REG(x)       (*((volatile u32 *)IO_ADDRESS(x)))
  13# define __REG2(x,y)        (*(volatile u32 *)((u32)&__REG(x) + (y)))
  14# else
  15#  define __REG(x) (x)
  16#  define __REG2(x,y) ((x)+(y))
  17#endif
  18
  19#define IMX_IO_BASE             0x00200000
  20
  21/*
  22 *  Register BASEs, based on OFFSETs
  23 *
  24 */
  25#define IMX_AIPI1_BASE             (0x00000 + IMX_IO_BASE)
  26#define IMX_WDT_BASE               (0x01000 + IMX_IO_BASE)
  27#define IMX_TIM1_BASE              (0x02000 + IMX_IO_BASE)
  28#define IMX_TIM2_BASE              (0x03000 + IMX_IO_BASE)
  29#define IMX_RTC_BASE               (0x04000 + IMX_IO_BASE)
  30#define IMX_LCDC_BASE              (0x05000 + IMX_IO_BASE)
  31#define IMX_UART1_BASE             (0x06000 + IMX_IO_BASE)
  32#define IMX_UART2_BASE             (0x07000 + IMX_IO_BASE)
  33#define IMX_PWM_BASE               (0x08000 + IMX_IO_BASE)
  34#define IMX_DMAC_BASE              (0x09000 + IMX_IO_BASE)
  35#define IMX_AIPI2_BASE             (0x10000 + IMX_IO_BASE)
  36#define IMX_SIM_BASE               (0x11000 + IMX_IO_BASE)
  37#define IMX_USBD_BASE              (0x12000 + IMX_IO_BASE)
  38#define IMX_SPI1_BASE              (0x13000 + IMX_IO_BASE)
  39#define IMX_MMC_BASE               (0x14000 + IMX_IO_BASE)
  40#define IMX_ASP_BASE               (0x15000 + IMX_IO_BASE)
  41#define IMX_BTA_BASE               (0x16000 + IMX_IO_BASE)
  42#define IMX_I2C_BASE               (0x17000 + IMX_IO_BASE)
  43#define IMX_SSI_BASE               (0x18000 + IMX_IO_BASE)
  44#define IMX_SPI2_BASE              (0x19000 + IMX_IO_BASE)
  45#define IMX_MSHC_BASE              (0x1A000 + IMX_IO_BASE)
  46#define IMX_PLL_BASE               (0x1B000 + IMX_IO_BASE)
  47#define IMX_SYSCTRL_BASE           (0x1B800 + IMX_IO_BASE)
  48#define IMX_GPIO_BASE              (0x1C000 + IMX_IO_BASE)
  49#define IMX_EIM_BASE               (0x20000 + IMX_IO_BASE)
  50#define IMX_SDRAMC_BASE            (0x21000 + IMX_IO_BASE)
  51#define IMX_MMA_BASE               (0x22000 + IMX_IO_BASE)
  52#define IMX_AITC_BASE              (0x23000 + IMX_IO_BASE)
  53#define IMX_CSI_BASE               (0x24000 + IMX_IO_BASE)
  54
  55/* Watchdog Registers*/
  56
  57#define WCR  __REG(IMX_WDT_BASE + 0x00) /* Watchdog Control Register */
  58#define WSR  __REG(IMX_WDT_BASE + 0x04) /* Watchdog Service Register */
  59#define WSTR __REG(IMX_WDT_BASE + 0x08) /* Watchdog Status Register  */
  60
  61/* SYSCTRL Registers */
  62#define SIDR   __REG(IMX_SYSCTRL_BASE + 0x4) /* Silicon ID Register                 */
  63#define FMCR   __REG(IMX_SYSCTRL_BASE + 0x8) /* Function Multiplex Control Register */
  64#define GPCR   __REG(IMX_SYSCTRL_BASE + 0xC) /* Function Multiplex Control Register */
  65
  66/* Chip Select Registers */
  67#define CS0U __REG(IMX_EIM_BASE)        /* Chip Select 0 Upper Register */
  68#define CS0L __REG(IMX_EIM_BASE + 0x4)  /* Chip Select 0 Lower Register */
  69#define CS1U __REG(IMX_EIM_BASE + 0x8)  /* Chip Select 1 Upper Register */
  70#define CS1L __REG(IMX_EIM_BASE + 0xc)  /* Chip Select 1 Lower Register */
  71#define CS2U __REG(IMX_EIM_BASE + 0x10) /* Chip Select 2 Upper Register */
  72#define CS2L __REG(IMX_EIM_BASE + 0x14) /* Chip Select 2 Lower Register */
  73#define CS3U __REG(IMX_EIM_BASE + 0x18) /* Chip Select 3 Upper Register */
  74#define CS3L __REG(IMX_EIM_BASE + 0x1c) /* Chip Select 3 Lower Register */
  75#define CS4U __REG(IMX_EIM_BASE + 0x20) /* Chip Select 4 Upper Register */
  76#define CS4L __REG(IMX_EIM_BASE + 0x24) /* Chip Select 4 Lower Register */
  77#define CS5U __REG(IMX_EIM_BASE + 0x28) /* Chip Select 5 Upper Register */
  78#define CS5L __REG(IMX_EIM_BASE + 0x2c) /* Chip Select 5 Lower Register */
  79#define EIM  __REG(IMX_EIM_BASE + 0x30) /* EIM Configuration Register */
  80
  81/* SDRAM controller registers */
  82
  83#define SDCTL0 __REG(IMX_SDRAMC_BASE)        /* SDRAM 0 Control Register */
  84#define SDCTL1 __REG(IMX_SDRAMC_BASE + 0x4)  /* SDRAM 1 Control Register */
  85#define SDMISC __REG(IMX_SDRAMC_BASE + 0x14) /* Miscellaneous Register */
  86#define SDRST  __REG(IMX_SDRAMC_BASE + 0x18) /* SDRAM Reset Register */
  87
  88/* PLL registers */
  89#define CSCR   __REG(IMX_PLL_BASE)        /* Clock Source Control Register */
  90#define CSCR_SPLL_RESTART       (1<<22)
  91#define CSCR_MPLL_RESTART       (1<<21)
  92#define CSCR_SYSTEM_SEL         (1<<16)
  93#define CSCR_BCLK_DIV           (0xf<<10)
  94#define CSCR_MPU_PRESC          (1<<15)
  95#define CSCR_SPEN               (1<<1)
  96#define CSCR_MPEN               (1<<0)
  97
  98#define MPCTL0 __REG(IMX_PLL_BASE + 0x4)  /* MCU PLL Control Register 0 */
  99#define MPCTL1 __REG(IMX_PLL_BASE + 0x8)  /* MCU PLL and System Clock Register 1 */
 100#define SPCTL0 __REG(IMX_PLL_BASE + 0xc)  /* System PLL Control Register 0 */
 101#define SPCTL1 __REG(IMX_PLL_BASE + 0x10) /* System PLL Control Register 1 */
 102#define PCDR   __REG(IMX_PLL_BASE + 0x20) /* Peripheral Clock Divider Register */
 103
 104/*
 105 *  GPIO Module and I/O Multiplexer
 106 *  x = 0..3 for reg_A, reg_B, reg_C, reg_D
 107 */
 108#define DDIR(x)    __REG2(IMX_GPIO_BASE + 0x00, ((x) & 3) << 8)
 109#define OCR1(x)    __REG2(IMX_GPIO_BASE + 0x04, ((x) & 3) << 8)
 110#define OCR2(x)    __REG2(IMX_GPIO_BASE + 0x08, ((x) & 3) << 8)
 111#define ICONFA1(x) __REG2(IMX_GPIO_BASE + 0x0c, ((x) & 3) << 8)
 112#define ICONFA2(x) __REG2(IMX_GPIO_BASE + 0x10, ((x) & 3) << 8)
 113#define ICONFB1(x) __REG2(IMX_GPIO_BASE + 0x14, ((x) & 3) << 8)
 114#define ICONFB2(x) __REG2(IMX_GPIO_BASE + 0x18, ((x) & 3) << 8)
 115#define DR(x)      __REG2(IMX_GPIO_BASE + 0x1c, ((x) & 3) << 8)
 116#define GIUS(x)    __REG2(IMX_GPIO_BASE + 0x20, ((x) & 3) << 8)
 117#define SSR(x)     __REG2(IMX_GPIO_BASE + 0x24, ((x) & 3) << 8)
 118#define ICR1(x)    __REG2(IMX_GPIO_BASE + 0x28, ((x) & 3) << 8)
 119#define ICR2(x)    __REG2(IMX_GPIO_BASE + 0x2c, ((x) & 3) << 8)
 120#define IMR(x)     __REG2(IMX_GPIO_BASE + 0x30, ((x) & 3) << 8)
 121#define ISR(x)     __REG2(IMX_GPIO_BASE + 0x34, ((x) & 3) << 8)
 122#define GPR(x)     __REG2(IMX_GPIO_BASE + 0x38, ((x) & 3) << 8)
 123#define SWR(x)     __REG2(IMX_GPIO_BASE + 0x3c, ((x) & 3) << 8)
 124#define PUEN(x)    __REG2(IMX_GPIO_BASE + 0x40, ((x) & 3) << 8)
 125
 126#define GPIO_PORT_MAX  3
 127
 128#define GPIO_PIN_MASK 0x1f
 129#define GPIO_PORT_MASK (0x3 << 5)
 130
 131#define GPIO_PORT_SHIFT 5
 132#define GPIO_PORTA (0<<5)
 133#define GPIO_PORTB (1<<5)
 134#define GPIO_PORTC (2<<5)
 135#define GPIO_PORTD (3<<5)
 136
 137#define GPIO_OUT   (1<<7)
 138#define GPIO_IN    (0<<7)
 139#define GPIO_PUEN  (1<<8)
 140
 141#define GPIO_PF    (0<<9)
 142#define GPIO_AF    (1<<9)
 143
 144#define GPIO_OCR_SHIFT 10
 145#define GPIO_OCR_MASK (3<<10)
 146#define GPIO_AIN   (0<<10)
 147#define GPIO_BIN   (1<<10)
 148#define GPIO_CIN   (2<<10)
 149#define GPIO_DR    (3<<10)
 150
 151#define GPIO_AOUT_SHIFT 12
 152#define GPIO_AOUT_MASK (3<<12)
 153#define GPIO_AOUT     (0<<12)
 154#define GPIO_AOUT_ISR (1<<12)
 155#define GPIO_AOUT_0   (2<<12)
 156#define GPIO_AOUT_1   (3<<12)
 157
 158#define GPIO_BOUT_SHIFT 14
 159#define GPIO_BOUT_MASK (3<<14)
 160#define GPIO_BOUT      (0<<14)
 161#define GPIO_BOUT_ISR  (1<<14)
 162#define GPIO_BOUT_0    (2<<14)
 163#define GPIO_BOUT_1    (3<<14)
 164
 165#define GPIO_GIUS      (1<<16)
 166
 167/* assignements for GPIO alternate/primary functions */
 168
 169/* FIXME: This list is not completed. The correct directions are
 170 * missing on some (many) pins
 171 */
 172#define PA0_AIN_SPI2_CLK     ( GPIO_GIUS | GPIO_PORTA | GPIO_OUT | 0 )
 173#define PA0_AF_ETMTRACESYNC  ( GPIO_PORTA | GPIO_AF | 0 )
 174#define PA1_AOUT_SPI2_RXD    ( GPIO_GIUS | GPIO_PORTA | GPIO_IN | 1 )
 175#define PA1_PF_TIN           ( GPIO_PORTA | GPIO_PF | 1 )
 176#define PA2_PF_PWM0          ( GPIO_PORTA | GPIO_OUT | GPIO_PF | 2 )
 177#define PA3_PF_CSI_MCLK      ( GPIO_PORTA | GPIO_PF | 3 )
 178#define PA4_PF_CSI_D0        ( GPIO_PORTA | GPIO_PF | 4 )
 179#define PA5_PF_CSI_D1        ( GPIO_PORTA | GPIO_PF | 5 )
 180#define PA6_PF_CSI_D2        ( GPIO_PORTA | GPIO_PF | 6 )
 181#define PA7_PF_CSI_D3        ( GPIO_PORTA | GPIO_PF | 7 )
 182#define PA8_PF_CSI_D4        ( GPIO_PORTA | GPIO_PF | 8 )
 183#define PA9_PF_CSI_D5        ( GPIO_PORTA | GPIO_PF | 9 )
 184#define PA10_PF_CSI_D6       ( GPIO_PORTA | GPIO_PF | 10 )
 185#define PA11_PF_CSI_D7       ( GPIO_PORTA | GPIO_PF | 11 )
 186#define PA12_PF_CSI_VSYNC    ( GPIO_PORTA | GPIO_PF | 12 )
 187#define PA13_PF_CSI_HSYNC    ( GPIO_PORTA | GPIO_PF | 13 )
 188#define PA14_PF_CSI_PIXCLK   ( GPIO_PORTA | GPIO_PF | 14 )
 189#define PA15_PF_I2C_SDA      ( GPIO_PORTA | GPIO_OUT | GPIO_PF | 15 )
 190#define PA16_PF_I2C_SCL      ( GPIO_PORTA | GPIO_OUT | GPIO_PF | 16 )
 191#define PA17_AF_ETMTRACEPKT4 ( GPIO_PORTA | GPIO_AF | 17 )
 192#define PA17_AIN_SPI2_SS     ( GPIO_GIUS | GPIO_PORTA | GPIO_OUT | 17 )
 193#define PA18_AF_ETMTRACEPKT5 ( GPIO_PORTA | GPIO_AF | 18 )
 194#define PA19_AF_ETMTRACEPKT6 ( GPIO_PORTA | GPIO_AF | 19 )
 195#define PA20_AF_ETMTRACEPKT7 ( GPIO_PORTA | GPIO_AF | 20 )
 196#define PA21_PF_A0           ( GPIO_PORTA | GPIO_PF | 21 )
 197#define PA22_PF_CS4          ( GPIO_PORTA | GPIO_PF | 22 )
 198#define PA23_PF_CS5          ( GPIO_PORTA | GPIO_PF | 23 )
 199#define PA24_PF_A16          ( GPIO_PORTA | GPIO_PF | 24 )
 200#define PA24_AF_ETMTRACEPKT0 ( GPIO_PORTA | GPIO_AF | 24 )
 201#define PA25_PF_A17          ( GPIO_PORTA | GPIO_PF | 25 )
 202#define PA25_AF_ETMTRACEPKT1 ( GPIO_PORTA | GPIO_AF | 25 )
 203#define PA26_PF_A18          ( GPIO_PORTA | GPIO_PF | 26 )
 204#define PA26_AF_ETMTRACEPKT2 ( GPIO_PORTA | GPIO_AF | 26 )
 205#define PA27_PF_A19          ( GPIO_PORTA | GPIO_PF | 27 )
 206#define PA27_AF_ETMTRACEPKT3 ( GPIO_PORTA | GPIO_AF | 27 )
 207#define PA28_PF_A20          ( GPIO_PORTA | GPIO_PF | 28 )
 208#define PA28_AF_ETMPIPESTAT0 ( GPIO_PORTA | GPIO_AF | 28 )
 209#define PA29_PF_A21          ( GPIO_PORTA | GPIO_PF | 29 )
 210#define PA29_AF_ETMPIPESTAT1 ( GPIO_PORTA | GPIO_AF | 29 )
 211#define PA30_PF_A22          ( GPIO_PORTA | GPIO_PF | 30 )
 212#define PA30_AF_ETMPIPESTAT2 ( GPIO_PORTA | GPIO_AF | 30 )
 213#define PA31_PF_A23          ( GPIO_PORTA | GPIO_PF | 31 )
 214#define PA31_AF_ETMTRACECLK  ( GPIO_PORTA | GPIO_AF | 31 )
 215#define PB8_PF_SD_DAT0       ( GPIO_PORTB | GPIO_PF | GPIO_PUEN | 8 )
 216#define PB8_AF_MS_PIO        ( GPIO_PORTB | GPIO_AF | 8 )
 217#define PB9_PF_SD_DAT1       ( GPIO_PORTB | GPIO_PF | GPIO_PUEN  | 9 )
 218#define PB9_AF_MS_PI1        ( GPIO_PORTB | GPIO_AF | 9 )
 219#define PB10_PF_SD_DAT2      ( GPIO_PORTB | GPIO_PF | GPIO_PUEN  | 10 )
 220#define PB10_AF_MS_SCLKI     ( GPIO_PORTB | GPIO_AF | 10 )
 221#define PB11_PF_SD_DAT3      ( GPIO_PORTB | GPIO_PF | 11 )
 222#define PB11_AF_MS_SDIO      ( GPIO_PORTB | GPIO_AF | 11 )
 223#define PB12_PF_SD_CLK       ( GPIO_PORTB | GPIO_PF | 12 )
 224#define PB12_AF_MS_SCLK0     ( GPIO_PORTB | GPIO_AF | 12 )
 225#define PB13_PF_SD_CMD       ( GPIO_PORTB | GPIO_PF | GPIO_PUEN | 13 )
 226#define PB13_AF_MS_BS        ( GPIO_PORTB | GPIO_AF | 13 )
 227#define PB14_AF_SSI_RXFS     ( GPIO_PORTB | GPIO_AF | 14 )
 228#define PB15_AF_SSI_RXCLK    ( GPIO_PORTB | GPIO_AF | 15 )
 229#define PB16_AF_SSI_RXDAT    ( GPIO_PORTB | GPIO_IN | GPIO_AF | 16 )
 230#define PB17_AF_SSI_TXDAT    ( GPIO_PORTB | GPIO_OUT | GPIO_AF | 17 )
 231#define PB18_AF_SSI_TXFS     ( GPIO_PORTB | GPIO_AF | 18 )
 232#define PB19_AF_SSI_TXCLK    ( GPIO_PORTB | GPIO_AF | 19 )
 233#define PB20_PF_USBD_AFE     ( GPIO_PORTB | GPIO_PF | 20 )
 234#define PB21_PF_USBD_OE      ( GPIO_PORTB | GPIO_PF | 21 )
 235#define PB22_PFUSBD_RCV      ( GPIO_PORTB | GPIO_PF | 22 )
 236#define PB23_PF_USBD_SUSPND  ( GPIO_PORTB | GPIO_PF | 23 )
 237#define PB24_PF_USBD_VP      ( GPIO_PORTB | GPIO_PF | 24 )
 238#define PB25_PF_USBD_VM      ( GPIO_PORTB | GPIO_PF | 25 )
 239#define PB26_PF_USBD_VPO     ( GPIO_PORTB | GPIO_PF | 26 )
 240#define PB27_PF_USBD_VMO     ( GPIO_PORTB | GPIO_PF | 27 )
 241#define PB28_PF_UART2_CTS    ( GPIO_PORTB | GPIO_OUT | GPIO_PF | 28 )
 242#define PB29_PF_UART2_RTS    ( GPIO_PORTB | GPIO_IN | GPIO_PF | 29 )
 243#define PB30_PF_UART2_TXD    ( GPIO_PORTB | GPIO_OUT | GPIO_PF | 30 )
 244#define PB31_PF_UART2_RXD    ( GPIO_PORTB | GPIO_IN | GPIO_PF | 31 )
 245#define PC3_PF_SSI_RXFS      ( GPIO_PORTC | GPIO_PF | 3 )
 246#define PC4_PF_SSI_RXCLK     ( GPIO_PORTC | GPIO_PF | 4 )
 247#define PC5_PF_SSI_RXDAT     ( GPIO_PORTC | GPIO_IN | GPIO_PF | 5 )
 248#define PC6_PF_SSI_TXDAT     ( GPIO_PORTC | GPIO_OUT | GPIO_PF | 6 )
 249#define PC7_PF_SSI_TXFS      ( GPIO_PORTC | GPIO_PF | 7 )
 250#define PC8_PF_SSI_TXCLK     ( GPIO_PORTC | GPIO_PF | 8 )
 251#define PC9_PF_UART1_CTS     ( GPIO_PORTC | GPIO_OUT | GPIO_PF | 9 )
 252#define PC10_PF_UART1_RTS    ( GPIO_PORTC | GPIO_IN | GPIO_PF | 10 )
 253#define PC11_PF_UART1_TXD    ( GPIO_PORTC | GPIO_OUT | GPIO_PF | 11 )
 254#define PC12_PF_UART1_RXD    ( GPIO_PORTC | GPIO_IN | GPIO_PF | 12 )
 255#define PC13_PF_SPI1_SPI_RDY ( GPIO_PORTC | GPIO_PF | 13 )
 256#define PC14_PF_SPI1_SCLK    ( GPIO_PORTC | GPIO_PF | 14 )
 257#define PC15_PF_SPI1_SS      ( GPIO_PORTC | GPIO_PF | 15 )
 258#define PC16_PF_SPI1_MISO    ( GPIO_PORTC | GPIO_PF | 16 )
 259#define PC17_PF_SPI1_MOSI    ( GPIO_PORTC | GPIO_PF | 17 )
 260#define PC24_BIN_UART3_RI    ( GPIO_GIUS | GPIO_PORTC | GPIO_OUT | GPIO_BIN | 24 )
 261#define PC25_BIN_UART3_DSR   ( GPIO_GIUS | GPIO_PORTC | GPIO_OUT | GPIO_BIN | 25 )
 262#define PC26_AOUT_UART3_DTR  ( GPIO_GIUS | GPIO_PORTC | GPIO_IN | 26 )
 263#define PC27_BIN_UART3_DCD   ( GPIO_GIUS | GPIO_PORTC | GPIO_OUT | GPIO_BIN | 27 )
 264#define PC28_BIN_UART3_CTS   ( GPIO_GIUS | GPIO_PORTC | GPIO_OUT | GPIO_BIN | 28 )
 265#define PC29_AOUT_UART3_RTS  ( GPIO_GIUS | GPIO_PORTC | GPIO_IN | 29 )
 266#define PC30_BIN_UART3_TX    ( GPIO_GIUS | GPIO_PORTC | GPIO_BIN | 30 )
 267#define PC31_AOUT_UART3_RX   ( GPIO_GIUS | GPIO_PORTC | GPIO_IN | 31)
 268#define PD6_PF_LSCLK         ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 6 )
 269#define PD7_PF_REV           ( GPIO_PORTD | GPIO_PF | 7 )
 270#define PD7_AF_UART2_DTR     ( GPIO_GIUS | GPIO_PORTD | GPIO_IN | GPIO_AF | 7 )
 271#define PD7_AIN_SPI2_SCLK    ( GPIO_GIUS | GPIO_PORTD | GPIO_AIN | 7 )
 272#define PD8_PF_CLS           ( GPIO_PORTD | GPIO_PF | 8 )
 273#define PD8_AF_UART2_DCD     ( GPIO_PORTD | GPIO_OUT | GPIO_AF | 8 )
 274#define PD8_AIN_SPI2_SS      ( GPIO_GIUS | GPIO_PORTD | GPIO_AIN | 8 )
 275#define PD9_PF_PS            ( GPIO_PORTD | GPIO_PF | 9 )
 276#define PD9_AF_UART2_RI      ( GPIO_PORTD | GPIO_OUT | GPIO_AF | 9 )
 277#define PD9_AOUT_SPI2_RXD    ( GPIO_GIUS | GPIO_PORTD | GPIO_IN | 9 )
 278#define PD10_PF_SPL_SPR      ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 10 )
 279#define PD10_AF_UART2_DSR    ( GPIO_PORTD | GPIO_OUT | GPIO_AF | 10 )
 280#define PD10_AIN_SPI2_TXD    ( GPIO_GIUS | GPIO_PORTD | GPIO_OUT | 10 )
 281#define PD11_PF_CONTRAST     ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 11 )
 282#define PD12_PF_ACD_OE       ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 12 )
 283#define PD13_PF_LP_HSYNC     ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 13 )
 284#define PD14_PF_FLM_VSYNC    ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 14 )
 285#define PD15_PF_LD0          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 15 )
 286#define PD16_PF_LD1          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 16 )
 287#define PD17_PF_LD2          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 17 )
 288#define PD18_PF_LD3          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 18 )
 289#define PD19_PF_LD4          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 19 )
 290#define PD20_PF_LD5          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 20 )
 291#define PD21_PF_LD6          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 21 )
 292#define PD22_PF_LD7          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 22 )
 293#define PD23_PF_LD8          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 23 )
 294#define PD24_PF_LD9          ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 24 )
 295#define PD25_PF_LD10         ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 25 )
 296#define PD26_PF_LD11         ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 26 )
 297#define PD27_PF_LD12         ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 27 )
 298#define PD28_PF_LD13         ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 28 )
 299#define PD29_PF_LD14         ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 29 )
 300#define PD30_PF_LD15         ( GPIO_PORTD | GPIO_OUT | GPIO_PF | 30 )
 301#define PD31_PF_TMR2OUT      ( GPIO_PORTD | GPIO_PF | 31 )
 302#define PD31_BIN_SPI2_TXD    ( GPIO_GIUS | GPIO_PORTD | GPIO_BIN | 31 )
 303
 304/*
 305 * PWM controller
 306 */
 307#define PWMC    __REG(IMX_PWM_BASE + 0x00)      /* PWM Control Register         */
 308#define PWMS    __REG(IMX_PWM_BASE + 0x04)      /* PWM Sample Register          */
 309#define PWMP    __REG(IMX_PWM_BASE + 0x08)      /* PWM Period Register          */
 310#define PWMCNT  __REG(IMX_PWM_BASE + 0x0C)      /* PWM Counter Register         */
 311
 312#define PWMC_HCTR               (0x01<<18)              /* Halfword FIFO Data Swapping  */
 313#define PWMC_BCTR               (0x01<<17)              /* Byte FIFO Data Swapping      */
 314#define PWMC_SWR                (0x01<<16)              /* Software Reset               */
 315#define PWMC_CLKSRC             (0x01<<15)              /* Clock Source                 */
 316#define PWMC_PRESCALER(x)       (((x-1) & 0x7F) << 8)   /* PRESCALER                    */
 317#define PWMC_IRQ                (0x01<< 7)              /* Interrupt Request            */
 318#define PWMC_IRQEN              (0x01<< 6)              /* Interrupt Request Enable     */
 319#define PWMC_FIFOAV             (0x01<< 5)              /* FIFO Available               */
 320#define PWMC_EN                 (0x01<< 4)              /* Enables/Disables the PWM     */
 321#define PWMC_REPEAT(x)          (((x) & 0x03) << 2)     /* Sample Repeats               */
 322#define PWMC_CLKSEL(x)          (((x) & 0x03) << 0)     /* Clock Selection              */
 323
 324#define PWMS_SAMPLE(x)          ((x) & 0xFFFF)          /* Contains a two-sample word   */
 325#define PWMP_PERIOD(x)          ((x) & 0xFFFF)          /* Represents the PWM's period  */
 326#define PWMC_COUNTER(x)         ((x) & 0xFFFF)          /* Represents the current count value   */
 327
 328/*
 329 *  DMA Controller
 330 */
 331#define DCR     __REG(IMX_DMAC_BASE +0x00)      /* DMA Control Register */
 332#define DISR    __REG(IMX_DMAC_BASE +0x04)      /* DMA Interrupt status Register */
 333#define DIMR    __REG(IMX_DMAC_BASE +0x08)      /* DMA Interrupt mask Register */
 334#define DBTOSR  __REG(IMX_DMAC_BASE +0x0c)      /* DMA Burst timeout status Register */
 335#define DRTOSR  __REG(IMX_DMAC_BASE +0x10)      /* DMA Request timeout Register */
 336#define DSESR   __REG(IMX_DMAC_BASE +0x14)      /* DMA Transfer Error Status Register */
 337#define DBOSR   __REG(IMX_DMAC_BASE +0x18)      /* DMA Buffer overflow status Register */
 338#define DBTOCR  __REG(IMX_DMAC_BASE +0x1c)      /* DMA Burst timeout control Register */
 339#define WSRA    __REG(IMX_DMAC_BASE +0x40)      /* W-Size Register A */
 340#define XSRA    __REG(IMX_DMAC_BASE +0x44)      /* X-Size Register A */
 341#define YSRA    __REG(IMX_DMAC_BASE +0x48)      /* Y-Size Register A */
 342#define WSRB    __REG(IMX_DMAC_BASE +0x4c)      /* W-Size Register B */
 343#define XSRB    __REG(IMX_DMAC_BASE +0x50)      /* X-Size Register B */
 344#define YSRB    __REG(IMX_DMAC_BASE +0x54)      /* Y-Size Register B */
 345#define SAR(x)  __REG2( IMX_DMAC_BASE + 0x80, (x) << 6) /* Source Address Registers */
 346#define DAR(x)  __REG2( IMX_DMAC_BASE + 0x84, (x) << 6) /* Destination Address Registers */
 347#define CNTR(x) __REG2( IMX_DMAC_BASE + 0x88, (x) << 6) /* Count Registers */
 348#define CCR(x)  __REG2( IMX_DMAC_BASE + 0x8c, (x) << 6) /* Control Registers */
 349#define RSSR(x) __REG2( IMX_DMAC_BASE + 0x90, (x) << 6) /* Request source select Registers */
 350#define BLR(x)  __REG2( IMX_DMAC_BASE + 0x94, (x) << 6) /* Burst length Registers */
 351#define RTOR(x) __REG2( IMX_DMAC_BASE + 0x98, (x) << 6) /* Request timeout Registers */
 352#define BUCR(x) __REG2( IMX_DMAC_BASE + 0x98, (x) << 6) /* Bus Utilization Registers */
 353
 354/* TODO: define DMA_REQ lines */
 355
 356#define DCR_DRST           (1<<1)
 357#define DCR_DEN            (1<<0)
 358#define DBTOCR_EN          (1<<15)
 359#define DBTOCR_CNT(x)      ((x) & 0x7fff )
 360#define CNTR_CNT(x)        ((x) & 0xffffff )
 361#define CCR_DMOD_LINEAR    ( 0x0 << 12 )
 362#define CCR_DMOD_2D        ( 0x1 << 12 )
 363#define CCR_DMOD_FIFO      ( 0x2 << 12 )
 364#define CCR_DMOD_EOBFIFO   ( 0x3 << 12 )
 365#define CCR_SMOD_LINEAR    ( 0x0 << 10 )
 366#define CCR_SMOD_2D        ( 0x1 << 10 )
 367#define CCR_SMOD_FIFO      ( 0x2 << 10 )
 368#define CCR_SMOD_EOBFIFO   ( 0x3 << 10 )
 369#define CCR_MDIR_DEC       (1<<9)
 370#define CCR_MSEL_B         (1<<8)
 371#define CCR_DSIZ_32        ( 0x0 << 6 )
 372#define CCR_DSIZ_8         ( 0x1 << 6 )
 373#define CCR_DSIZ_16        ( 0x2 << 6 )
 374#define CCR_SSIZ_32        ( 0x0 << 4 )
 375#define CCR_SSIZ_8         ( 0x1 << 4 )
 376#define CCR_SSIZ_16        ( 0x2 << 4 )
 377#define CCR_REN            (1<<3)
 378#define CCR_RPT            (1<<2)
 379#define CCR_FRC            (1<<1)
 380#define CCR_CEN            (1<<0)
 381#define RTOR_EN            (1<<15)
 382#define RTOR_CLK           (1<<14)
 383#define RTOR_PSC           (1<<13)
 384
 385/*
 386 * LCD Controller
 387 */
 388
 389#define LCDC_SSA        __REG(IMX_LCDC_BASE+0x00)
 390
 391#define LCDC_SIZE       __REG(IMX_LCDC_BASE+0x04)
 392#define SIZE_XMAX(x)    ((((x) >> 4) & 0x3f) << 20)
 393#define SIZE_YMAX(y)    ( (y) & 0x1ff )
 394
 395#define LCDC_VPW        __REG(IMX_LCDC_BASE+0x08)
 396#define VPW_VPW(x)      ( (x) & 0x3ff )
 397
 398#define LCDC_CPOS       __REG(IMX_LCDC_BASE+0x0C)
 399#define CPOS_CC1        (1<<31)
 400#define CPOS_CC0        (1<<30)
 401#define CPOS_OP         (1<<28)
 402#define CPOS_CXP(x)     (((x) & 3ff) << 16)
 403#define CPOS_CYP(y)     ((y) & 0x1ff)
 404
 405#define LCDC_LCWHB      __REG(IMX_LCDC_BASE+0x10)
 406#define LCWHB_BK_EN     (1<<31)
 407#define LCWHB_CW(w)     (((w) & 0x1f) << 24)
 408#define LCWHB_CH(h)     (((h) & 0x1f) << 16)
 409#define LCWHB_BD(x)     ((x) & 0xff)
 410
 411#define LCDC_LCHCC      __REG(IMX_LCDC_BASE+0x14)
 412#define LCHCC_CUR_COL_R(r) (((r) & 0x1f) << 11)
 413#define LCHCC_CUR_COL_G(g) (((g) & 0x3f) << 5)
 414#define LCHCC_CUR_COL_B(b) ((b) & 0x1f)
 415
 416#define LCDC_PCR        __REG(IMX_LCDC_BASE+0x18)
 417#define PCR_TFT         (1<<31)
 418#define PCR_COLOR       (1<<30)
 419#define PCR_PBSIZ_1     (0<<28)
 420#define PCR_PBSIZ_2     (1<<28)
 421#define PCR_PBSIZ_4     (2<<28)
 422#define PCR_PBSIZ_8     (3<<28)
 423#define PCR_BPIX_1      (0<<25)
 424#define PCR_BPIX_2      (1<<25)
 425#define PCR_BPIX_4      (2<<25)
 426#define PCR_BPIX_8      (3<<25)
 427#define PCR_BPIX_12     (4<<25)
 428#define PCR_BPIX_16     (4<<25)
 429#define PCR_PIXPOL      (1<<24)
 430#define PCR_FLMPOL      (1<<23)
 431#define PCR_LPPOL       (1<<22)
 432#define PCR_CLKPOL      (1<<21)
 433#define PCR_OEPOL       (1<<20)
 434#define PCR_SCLKIDLE    (1<<19)
 435#define PCR_END_SEL     (1<<18)
 436#define PCR_END_BYTE_SWAP (1<<17)
 437#define PCR_REV_VS      (1<<16)
 438#define PCR_ACD_SEL     (1<<15)
 439#define PCR_ACD(x)      (((x) & 0x7f) << 8)
 440#define PCR_SCLK_SEL    (1<<7)
 441#define PCR_SHARP       (1<<6)
 442#define PCR_PCD(x)      ((x) & 0x3f)
 443
 444#define LCDC_HCR        __REG(IMX_LCDC_BASE+0x1C)
 445#define HCR_H_WIDTH(x)  (((x) & 0x3f) << 26)
 446#define HCR_H_WAIT_1(x) (((x) & 0xff) << 8)
 447#define HCR_H_WAIT_2(x) ((x) & 0xff)
 448
 449#define LCDC_VCR        __REG(IMX_LCDC_BASE+0x20)
 450#define VCR_V_WIDTH(x)  (((x) & 0x3f) << 26)
 451#define VCR_V_WAIT_1(x) (((x) & 0xff) << 8)
 452#define VCR_V_WAIT_2(x) ((x) & 0xff)
 453
 454#define LCDC_POS        __REG(IMX_LCDC_BASE+0x24)
 455#define POS_POS(x)      ((x) & 1f)
 456
 457#define LCDC_LSCR1      __REG(IMX_LCDC_BASE+0x28)
 458#define LSCR1_PS_RISE_DELAY(x)    (((x) & 0x7f) << 26)
 459#define LSCR1_CLS_RISE_DELAY(x)   (((x) & 0x3f) << 16)
 460#define LSCR1_REV_TOGGLE_DELAY(x) (((x) & 0xf) << 8)
 461#define LSCR1_GRAY2(x)            (((x) & 0xf) << 4)
 462#define LSCR1_GRAY1(x)            (((x) & 0xf))
 463
 464#define LCDC_PWMR       __REG(IMX_LCDC_BASE+0x2C)
 465#define PWMR_CLS(x)     (((x) & 0x1ff) << 16)
 466#define PWMR_LDMSK      (1<<15)
 467#define PWMR_SCR1       (1<<10)
 468#define PWMR_SCR0       (1<<9)
 469#define PWMR_CC_EN      (1<<8)
 470#define PWMR_PW(x)      ((x) & 0xff)
 471
 472#define LCDC_DMACR      __REG(IMX_LCDC_BASE+0x30)
 473#define DMACR_BURST     (1<<31)
 474#define DMACR_HM(x)     (((x) & 0xf) << 16)
 475#define DMACR_TM(x)     ((x) &0xf)
 476
 477#define LCDC_RMCR       __REG(IMX_LCDC_BASE+0x34)
 478#define RMCR_LCDC_EN            (1<<1)
 479#define RMCR_SELF_REF           (1<<0)
 480
 481#define LCDC_LCDICR     __REG(IMX_LCDC_BASE+0x38)
 482#define LCDICR_INT_SYN  (1<<2)
 483#define LCDICR_INT_CON  (1)
 484
 485#define LCDC_LCDISR     __REG(IMX_LCDC_BASE+0x40)
 486#define LCDISR_UDR_ERR (1<<3)
 487#define LCDISR_ERR_RES (1<<2)
 488#define LCDISR_EOF     (1<<1)
 489#define LCDISR_BOF     (1<<0)
 490/*
 491 *  UART Module
 492 */
 493#define URXD0(x) __REG2( IMX_UART1_BASE + 0x0, ((x) & 1) << 12) /* Receiver Register */
 494#define URTX0(x) __REG2( IMX_UART1_BASE + 0x40, ((x) & 1) << 12)        /* Transmitter Register */
 495#define UCR1(x)  __REG2( IMX_UART1_BASE + 0x80, ((x) & 1) << 12)        /* Control Register 1 */
 496#define UCR2(x)  __REG2( IMX_UART1_BASE + 0x84, ((x) & 1) << 12)        /* Control Register 2 */
 497#define UCR3(x)  __REG2( IMX_UART1_BASE + 0x88, ((x) & 1) << 12)        /* Control Register 3 */
 498#define UCR4(x)  __REG2( IMX_UART1_BASE + 0x8c, ((x) & 1) << 12)        /* Control Register 4 */
 499#define UFCR(x)  __REG2( IMX_UART1_BASE + 0x90, ((x) & 1) << 12)        /* FIFO Control Register */
 500#define USR1(x)  __REG2( IMX_UART1_BASE + 0x94, ((x) & 1) << 12)        /* Status Register 1 */
 501#define USR2(x)  __REG2( IMX_UART1_BASE + 0x98, ((x) & 1) << 12)        /* Status Register 2 */
 502#define UESC(x)  __REG2( IMX_UART1_BASE + 0x9c, ((x) & 1) << 12)        /* Escape Character Register */
 503#define UTIM(x)  __REG2( IMX_UART1_BASE + 0xa0, ((x) & 1) << 12)        /* Escape Timer Register */
 504#define UBIR(x)  __REG2( IMX_UART1_BASE + 0xa4, ((x) & 1) << 12)        /* BRM Incremental Register */
 505#define UBMR(x)  __REG2( IMX_UART1_BASE + 0xa8, ((x) & 1) << 12)        /* BRM Modulator Register */
 506#define UBRC(x)  __REG2( IMX_UART1_BASE + 0xac, ((x) & 1) << 12)        /* Baud Rate Count Register */
 507#define BIPR1(x) __REG2( IMX_UART1_BASE + 0xb0, ((x) & 1) << 12)        /* Incremental Preset Register 1 */
 508#define BIPR2(x) __REG2( IMX_UART1_BASE + 0xb4, ((x) & 1) << 12)        /* Incremental Preset Register 2 */
 509#define BIPR3(x) __REG2( IMX_UART1_BASE + 0xb8, ((x) & 1) << 12)        /* Incremental Preset Register 3 */
 510#define BIPR4(x) __REG2( IMX_UART1_BASE + 0xbc, ((x) & 1) << 12)        /* Incremental Preset Register 4 */
 511#define BMPR1(x) __REG2( IMX_UART1_BASE + 0xc0, ((x) & 1) << 12)        /* BRM Modulator Register 1 */
 512#define BMPR2(x) __REG2( IMX_UART1_BASE + 0xc4, ((x) & 1) << 12)        /* BRM Modulator Register 2 */
 513#define BMPR3(x) __REG2( IMX_UART1_BASE + 0xc8, ((x) & 1) << 12)        /* BRM Modulator Register 3 */
 514#define BMPR4(x) __REG2( IMX_UART1_BASE + 0xcc, ((x) & 1) << 12)        /* BRM Modulator Register 4 */
 515#define UTS(x)   __REG2( IMX_UART1_BASE + 0xd0, ((x) & 1) << 12)        /* UART Test Register */
 516
 517/* UART Control Register Bit Fields.*/
 518#define  URXD_CHARRDY    (1<<15)
 519#define  URXD_ERR        (1<<14)
 520#define  URXD_OVRRUN     (1<<13)
 521#define  URXD_FRMERR     (1<<12)
 522#define  URXD_BRK        (1<<11)
 523#define  URXD_PRERR      (1<<10)
 524#define  UCR1_ADEN       (1<<15) /* Auto dectect interrupt */
 525#define  UCR1_ADBR       (1<<14) /* Auto detect baud rate */
 526#define  UCR1_TRDYEN     (1<<13) /* Transmitter ready interrupt enable */
 527#define  UCR1_IDEN       (1<<12) /* Idle condition interrupt */
 528#define  UCR1_RRDYEN     (1<<9)  /* Recv ready interrupt enable */
 529#define  UCR1_RDMAEN     (1<<8)  /* Recv ready DMA enable */
 530#define  UCR1_IREN       (1<<7)  /* Infrared interface enable */
 531#define  UCR1_TXMPTYEN   (1<<6)  /* Transimitter empty interrupt enable */
 532#define  UCR1_RTSDEN     (1<<5)  /* RTS delta interrupt enable */
 533#define  UCR1_SNDBRK     (1<<4)  /* Send break */
 534#define  UCR1_TDMAEN     (1<<3)  /* Transmitter ready DMA enable */
 535#define  UCR1_UARTCLKEN  (1<<2)  /* UART clock enabled */
 536#define  UCR1_DOZE       (1<<1)  /* Doze */
 537#define  UCR1_UARTEN     (1<<0)  /* UART enabled */
 538#define  UCR2_ESCI       (1<<15) /* Escape seq interrupt enable */
 539#define  UCR2_IRTS       (1<<14) /* Ignore RTS pin */
 540#define  UCR2_CTSC       (1<<13) /* CTS pin control */
 541#define  UCR2_CTS        (1<<12) /* Clear to send */
 542#define  UCR2_ESCEN      (1<<11) /* Escape enable */
 543#define  UCR2_PREN       (1<<8) /* Parity enable */
 544#define  UCR2_PROE       (1<<7) /* Parity odd/even */
 545#define  UCR2_STPB       (1<<6) /* Stop */
 546#define  UCR2_WS         (1<<5) /* Word size */
 547#define  UCR2_RTSEN      (1<<4) /* Request to send interrupt enable */
 548#define  UCR2_TXEN       (1<<2) /* Transmitter enabled */
 549#define  UCR2_RXEN       (1<<1) /* Receiver enabled */
 550#define  UCR2_SRST       (1<<0) /* SW reset */
 551#define  UCR3_DTREN      (1<<13) /* DTR interrupt enable */
 552#define  UCR3_PARERREN   (1<<12) /* Parity enable */
 553#define  UCR3_FRAERREN   (1<<11) /* Frame error interrupt enable */
 554#define  UCR3_DSR        (1<<10) /* Data set ready */
 555#define  UCR3_DCD        (1<<9)  /* Data carrier detect */
 556#define  UCR3_RI         (1<<8)  /* Ring indicator */
 557#define  UCR3_TIMEOUTEN  (1<<7)  /* Timeout interrupt enable */
 558#define  UCR3_RXDSEN     (1<<6)  /* Receive status interrupt enable */
 559#define  UCR3_AIRINTEN   (1<<5)  /* Async IR wake interrupt enable */
 560#define  UCR3_AWAKEN     (1<<4)  /* Async wake interrupt enable */
 561#define  UCR3_REF25      (1<<3)  /* Ref freq 25 MHz */
 562#define  UCR3_REF30      (1<<2)  /* Ref Freq 30 MHz */
 563#define  UCR3_INVT       (1<<1)  /* Inverted Infrared transmission */
 564#define  UCR3_BPEN       (1<<0)  /* Preset registers enable */
 565#define  UCR4_CTSTL_32   (32<<10) /* CTS trigger level (32 chars) */
 566#define  UCR4_INVR       (1<<9)  /* Inverted infrared reception */
 567#define  UCR4_ENIRI      (1<<8)  /* Serial infrared interrupt enable */
 568#define  UCR4_WKEN       (1<<7)  /* Wake interrupt enable */
 569#define  UCR4_REF16      (1<<6)  /* Ref freq 16 MHz */
 570#define  UCR4_IRSC       (1<<5) /* IR special case */
 571#define  UCR4_TCEN       (1<<3) /* Transmit complete interrupt enable */
 572#define  UCR4_BKEN       (1<<2) /* Break condition interrupt enable */
 573#define  UCR4_OREN       (1<<1) /* Receiver overrun interrupt enable */
 574#define  UCR4_DREN       (1<<0) /* Recv data ready interrupt enable */
 575#define  UFCR_RXTL_SHF   0      /* Receiver trigger level shift */
 576#define  UFCR_RFDIV      (7<<7) /* Reference freq divider mask */
 577#define  UFCR_TXTL_SHF   10     /* Transmitter trigger level shift */
 578#define  USR1_PARITYERR  (1<<15) /* Parity error interrupt flag */
 579#define  USR1_RTSS       (1<<14) /* RTS pin status */
 580#define  USR1_TRDY       (1<<13) /* Transmitter ready interrupt/dma flag */
 581#define  USR1_RTSD       (1<<12) /* RTS delta */
 582#define  USR1_ESCF       (1<<11) /* Escape seq interrupt flag */
 583#define  USR1_FRAMERR    (1<<10) /* Frame error interrupt flag */
 584#define  USR1_RRDY       (1<<9) /* Receiver ready interrupt/dma flag */
 585#define  USR1_TIMEOUT    (1<<7) /* Receive timeout interrupt status */
 586#define  USR1_RXDS       (1<<6) /* Receiver idle interrupt flag */
 587#define  USR1_AIRINT     (1<<5) /* Async IR wake interrupt flag */
 588#define  USR1_AWAKE      (1<<4) /* Aysnc wake interrupt flag */
 589#define  USR2_ADET       (1<<15) /* Auto baud rate detect complete */
 590#define  USR2_TXFE       (1<<14) /* Transmit buffer FIFO empty */
 591#define  USR2_DTRF       (1<<13) /* DTR edge interrupt flag */
 592#define  USR2_IDLE       (1<<12) /* Idle condition */
 593#define  USR2_IRINT      (1<<8) /* Serial infrared interrupt flag */
 594#define  USR2_WAKE       (1<<7) /* Wake */
 595#define  USR2_RTSF       (1<<4) /* RTS edge interrupt flag */
 596#define  USR2_TXDC       (1<<3) /* Transmitter complete */
 597#define  USR2_BRCD       (1<<2) /* Break condition */
 598#define  USR2_ORE        (1<<1) /* Overrun error */
 599#define  USR2_RDR        (1<<0) /* Recv data ready */
 600#define  UTS_FRCPERR     (1<<13) /* Force parity error */
 601#define  UTS_LOOP        (1<<12) /* Loop tx and rx */
 602#define  UTS_TXEMPTY     (1<<6) /* TxFIFO empty */
 603#define  UTS_RXEMPTY     (1<<5) /* RxFIFO empty */
 604#define  UTS_TXFULL      (1<<4) /* TxFIFO full */
 605#define  UTS_RXFULL      (1<<3) /* RxFIFO full */
 606#define  UTS_SOFTRST     (1<<0) /* Software reset */
 607
 608/* General purpose timers registers */
 609#define TCTL1   __REG(IMX_TIM1_BASE)
 610#define TPRER1  __REG(IMX_TIM1_BASE + 0x4)
 611#define TCMP1   __REG(IMX_TIM1_BASE + 0x8)
 612#define TCR1    __REG(IMX_TIM1_BASE + 0xc)
 613#define TCN1    __REG(IMX_TIM1_BASE + 0x10)
 614#define TSTAT1  __REG(IMX_TIM1_BASE + 0x14)
 615#define TCTL2   __REG(IMX_TIM2_BASE)
 616#define TPRER2  __REG(IMX_TIM2_BASE + 0x4)
 617#define TCMP2   __REG(IMX_TIM2_BASE + 0x8)
 618#define TCR2    __REG(IMX_TIM2_BASE + 0xc)
 619#define TCN2    __REG(IMX_TIM2_BASE + 0x10)
 620#define TSTAT2  __REG(IMX_TIM2_BASE + 0x14)
 621
 622/* General purpose timers bitfields */
 623#define TCTL_SWR       (1<<15) /* Software reset */
 624#define TCTL_FRR       (1<<8)  /* Freerun / restart */
 625#define TCTL_CAP       (3<<6)  /* Capture Edge */
 626#define TCTL_OM        (1<<5)  /* output mode */
 627#define TCTL_IRQEN     (1<<4)  /* interrupt enable */
 628#define TCTL_CLKSOURCE (7<<1)  /* Clock source */
 629#define TCTL_TEN       (1)     /* Timer enable */
 630#define TPRER_PRES     (0xff)  /* Prescale */
 631#define TSTAT_CAPT     (1<<1)  /* Capture event */
 632#define TSTAT_COMP     (1)     /* Compare event */
 633
 634#endif                          /* _IMX_REGS_H */
 635