Root/
| 1 | #pypp 0 |
| 2 | // Iris: micro-kernel for a capability-based operating system. |
| 3 | // mips/jz4730.ccp: Chip features. Most of this file is |
| 4 | // copied from the Linux source files include/asm-mips/jz4730/{ops,regs}.h, |
| 5 | // which don't have a copyright statement or license in the header. |
| 6 | // Copyright 2009 Bas Wijnen <wijnen@debian.org> |
| 7 | // |
| 8 | // This program is free software: you can redistribute it and/or modify |
| 9 | // it under the terms of the GNU General Public License as published by |
| 10 | // the Free Software Foundation, either version 3 of the License, or |
| 11 | // (at your option) any later version. |
| 12 | // |
| 13 | // This program is distributed in the hope that it will be useful, |
| 14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | // GNU General Public License for more details. |
| 17 | // |
| 18 | // You should have received a copy of the GNU General Public License |
| 19 | // along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 20 | |
| 21 | #ifndef __JZ4730_HH__ |
| 22 | #define __JZ4730_HH__ |
| 23 | |
| 24 | // Main clock, for cpu, serial port, and with divisors for most other hardware |
| 25 | #define JZ_EXTAL 3686400 |
| 26 | // RTC clock |
| 27 | #define RTC_CLOCK 32768 |
| 28 | // The interrupt source that is used for the system timer |
| 29 | #define TIMER_INTERRUPT IRQ_OST0 |
| 30 | |
| 31 | // Physical addresses are where they really are. |
| 32 | #define HARB_PHYSICAL 0x13000000 |
| 33 | #define EMC_PHYSICAL 0x13010000 |
| 34 | #define DMAC_PHYSICAL 0x13020000 |
| 35 | #define UHC_PHYSICAL 0x13030000 |
| 36 | #define UDC_PHYSICAL 0x13040000 |
| 37 | #define LCD_PHYSICAL 0x13050000 |
| 38 | #define CIM_PHYSICAL 0x13060000 |
| 39 | #define ETH_PHYSICAL 0x13100000 |
| 40 | #define NBM_PHYSICAL 0x13f00000 |
| 41 | #define CPM_PHYSICAL 0x10000000 |
| 42 | #define INTC_PHYSICAL 0x10001000 |
| 43 | #define OST_PHYSICAL 0x10002000 |
| 44 | #define RTC_PHYSICAL 0x10003000 |
| 45 | #define WDT_PHYSICAL 0x10004000 |
| 46 | #define GPIO_PHYSICAL 0x10010000 |
| 47 | #define AIC_PHYSICAL 0x10020000 |
| 48 | #define MSC_PHYSICAL 0x10021000 |
| 49 | #define UART0_PHYSICAL 0x10030000 |
| 50 | #define UART1_PHYSICAL 0x10031000 |
| 51 | #define UART2_PHYSICAL 0x10032000 |
| 52 | #define UART3_PHYSICAL 0x10033000 |
| 53 | #define FIR_PHYSICAL 0x10040000 |
| 54 | #define SCC_PHYSICAL 0x10041000 |
| 55 | #define SCC0_PHYSICAL 0x10041000 |
| 56 | #define I2C_PHYSICAL 0x10042000 |
| 57 | #define SSI_PHYSICAL 0x10043000 |
| 58 | #define SCC1_PHYSICAL 0x10044000 |
| 59 | #define PWM0_PHYSICAL 0x10050000 |
| 60 | #define PWM1_PHYSICAL 0x10051000 |
| 61 | #define DES_PHYSICAL 0x10060000 |
| 62 | #define UPRT_PHYSICAL 0x10061000 |
| 63 | #define KBC_PHYSICAL 0x10062000 |
| 64 | |
| 65 | #ifdef __KERNEL__ |
| 66 | // In kernel space you need to add 0xa0000000 to see them unmapped uncached in kseg2. |
| 67 | #define HARB_BASE (HARB_PHYSICAL + 0xa0000000) |
| 68 | #define EMC_BASE (EMC_PHYSICAL + 0xa0000000) |
| 69 | #define DMAC_BASE (DMAC_PHYSICAL + 0xa0000000) |
| 70 | #define UHC_BASE (UHC_PHYSICAL + 0xa0000000) |
| 71 | #define UDC_BASE (UDC_PHYSICAL + 0xa0000000) |
| 72 | #define LCD_BASE (LCD_PHYSICAL + 0xa0000000) |
| 73 | #define CIM_BASE (CIM_PHYSICAL + 0xa0000000) |
| 74 | #define ETH_BASE (ETH_PHYSICAL + 0xa0000000) |
| 75 | #define NBM_BASE (NBM_PHYSICAL + 0xa0000000) |
| 76 | #define CPM_BASE (CPM_PHYSICAL + 0xa0000000) |
| 77 | #define INTC_BASE (INTC_PHYSICAL + 0xa0000000) |
| 78 | #define OST_BASE (OST_PHYSICAL + 0xa0000000) |
| 79 | #define RTC_BASE (RTC_PHYSICAL + 0xa0000000) |
| 80 | #define WDT_BASE (WDT_PHYSICAL + 0xa0000000) |
| 81 | #define GPIO_BASE (GPIO_PHYSICAL + 0xa0000000) |
| 82 | #define AIC_BASE (AIC_PHYSICAL + 0xa0000000) |
| 83 | #define MSC_BASE (MSC_PHYSICAL + 0xa0000000) |
| 84 | #define UART0_BASE (UART0_PHYSICAL + 0xa0000000) |
| 85 | #define UART1_BASE (UART1_PHYSICAL + 0xa0000000) |
| 86 | #define UART2_BASE (UART2_PHYSICAL + 0xa0000000) |
| 87 | #define UART3_BASE (UART3_PHYSICAL + 0xa0000000) |
| 88 | #define FIR_BASE (FIR_PHYSICAL + 0xa0000000) |
| 89 | #define SCC_BASE (SCC_PHYSICAL + 0xa0000000) |
| 90 | #define SCC0_BASE (SCC0_PHYSICAL + 0xa0000000) |
| 91 | #define I2C_BASE (I2C_PHYSICAL + 0xa0000000) |
| 92 | #define SSI_BASE (SSI_PHYSICAL + 0xa0000000) |
| 93 | #define SCC1_BASE (SCC1_PHYSICAL + 0xa0000000) |
| 94 | #define PWM0_BASE (PWM0_PHYSICAL + 0xa0000000) |
| 95 | #define PWM1_BASE (PWM1_PHYSICAL + 0xa0000000) |
| 96 | #define DES_BASE (DES_PHYSICAL + 0xa0000000) |
| 97 | #define UPRT_BASE (UPRT_PHYSICAL + 0xa0000000) |
| 98 | #define KBC_BASE (KBC_PHYSICAL + 0xa0000000) |
| 99 | |
| 100 | #else |
| 101 | // In user space, they just need a mapping. |
| 102 | #define UNMAPPED_BASE 0x00000000 |
| 103 | |
| 104 | #define HARB_BASE 0x00001000 |
| 105 | #define EMC_BASE 0x00002000 |
| 106 | #define DMAC_BASE 0x00003000 |
| 107 | #define UHC_BASE 0x00004000 |
| 108 | #define UDC_BASE 0x00005000 |
| 109 | #define LCD_BASE 0x00006000 |
| 110 | #define CIM_BASE 0x00007000 |
| 111 | #define ETH_BASE 0x00008000 |
| 112 | #define NBM_BASE 0x00009000 |
| 113 | #define CPM_BASE 0x0000a000 |
| 114 | #define INTC_BASE 0x0000b000 |
| 115 | #define OST_BASE 0x0000c000 |
| 116 | #define RTC_BASE 0x0000d000 |
| 117 | #define WDT_BASE 0x0000e000 |
| 118 | #define GPIO_BASE 0x0000f000 |
| 119 | #define AIC_BASE 0x00010000 |
| 120 | #define MSC_BASE 0x00011000 |
| 121 | #define UART0_BASE 0x00012000 |
| 122 | #define UART1_BASE 0x00013000 |
| 123 | #define UART2_BASE 0x00014000 |
| 124 | #define UART3_BASE 0x00015000 |
| 125 | #define FIR_BASE 0x00016000 |
| 126 | #define SCC_BASE 0x00017000 |
| 127 | #define SCC0_BASE 0x00018000 |
| 128 | #define I2C_BASE 0x00019000 |
| 129 | #define SSI_BASE 0x0001a000 |
| 130 | #define SCC1_BASE 0x0001b000 |
| 131 | #define PWM0_BASE 0x0001c000 |
| 132 | #define PWM1_BASE 0x0001d000 |
| 133 | #define DES_BASE 0x0001e000 |
| 134 | #define UPRT_BASE 0x0001f000 |
| 135 | #define KBC_BASE 0x00020000 |
| 136 | |
| 137 | // Default lcd framebuffer mapping space. |
| 138 | #define LCD_FRAMEBUFFER_BASE ((unsigned short *)0x00021000) |
| 139 | |
| 140 | // Map IO memory (requires a priviledged Iris::my_thread capability). |
| 141 | #include <iris.hh> |
| 142 | static void __map_io (unsigned physical, unsigned mapping): |
| 143 | Iris::Page p = Iris::my_memory.create_page () |
| 144 | // false means not cachable; false means don't free when done. |
| 145 | p.alloc_physical (physical, false, false) |
| 146 | Iris::my_memory.map (p, mapping) |
| 147 | Iris::free_cap (p) |
| 148 | |
| 149 | #define map_harb() do { __map_io (HARB_PHYSICAL, HARB_BASE); } while (0) |
| 150 | #define map_emc() do { __map_io (EMC_PHYSICAL, EMC_BASE); } while (0) |
| 151 | #define map_dmac() do { __map_io (DMAC_PHYSICAL, DMAC_BASE); } while (0) |
| 152 | #define map_uhc() do { __map_io (UHC_PHYSICAL, UHC_BASE); } while (0) |
| 153 | #define map_udc() do { __map_io (UDC_PHYSICAL, UDC_BASE); } while (0) |
| 154 | #define map_lcd() do { __map_io (LCD_PHYSICAL, LCD_BASE); } while (0) |
| 155 | #define map_cim() do { __map_io (CIM_PHYSICAL, CIM_BASE); } while (0) |
| 156 | #define map_eth() do { __map_io (ETH_PHYSICAL, ETH_BASE); } while (0) |
| 157 | #define map_nbm() do { __map_io (NBM_PHYSICAL, NBM_BASE); } while (0) |
| 158 | #define map_cpm() do { __map_io (CPM_PHYSICAL, CPM_BASE); } while (0) |
| 159 | #define map_intc() do { __map_io (INTC_PHYSICAL, INTC_BASE); } while (0) |
| 160 | #define map_ost() do { __map_io (OST_PHYSICAL, OST_BASE); } while (0) |
| 161 | #define map_rtc() do { __map_io (RTC_PHYSICAL, RTC_BASE); } while (0) |
| 162 | #define map_wdt() do { __map_io (WDT_PHYSICAL, WDT_BASE); } while (0) |
| 163 | #define map_gpio() do { __map_io (GPIO_PHYSICAL, GPIO_BASE); } while (0) |
| 164 | #define map_aic() do { __map_io (AIC_PHYSICAL, AIC_BASE); } while (0) |
| 165 | #define map_msc() do { __map_io (MSC_PHYSICAL, MSC_BASE); } while (0) |
| 166 | #define map_uart0() do { __map_io (UART0_PHYSICAL, UART0_BASE); } while (0) |
| 167 | #define map_uart1() do { __map_io (UART1_PHYSICAL, UART1_BASE); } while (0) |
| 168 | #define map_uart2() do { __map_io (UART2_PHYSICAL, UART2_BASE); } while (0) |
| 169 | #define map_uart3() do { __map_io (UART3_PHYSICAL, UART3_BASE); } while (0) |
| 170 | #define map_fir() do { __map_io (FIR_PHYSICAL, FIR_BASE); } while (0) |
| 171 | #define map_scc() do { __map_io (SCC_PHYSICAL, SCC_BASE); } while (0) |
| 172 | #define map_scc0() do { __map_io (SCC0_PHYSICAL, SCC0_BASE); } while (0) |
| 173 | #define map_i2c() do { __map_io (I2C_PHYSICAL, I2C_BASE); } while (0) |
| 174 | #define map_ssi() do { __map_io (SSI_PHYSICAL, SSI_BASE); } while (0) |
| 175 | #define map_scc1() do { __map_io (SCC1_PHYSICAL, SCC1_BASE); } while (0) |
| 176 | #define map_pwm0() do { __map_io (PWM0_PHYSICAL, PWM0_BASE); } while (0) |
| 177 | #define map_pwm1() do { __map_io (PWM1_PHYSICAL, PWM1_BASE); } while (0) |
| 178 | #define map_des() do { __map_io (DES_PHYSICAL, DES_BASE); } while (0) |
| 179 | #define map_uprt() do { __map_io (UPRT_PHYSICAL, UPRT_BASE); } while (0) |
| 180 | #define map_kbc() do { __map_io (KBC_PHYSICAL, KBC_BASE); } while (0) |
| 181 | |
| 182 | #endif |
| 183 | |
| 184 | #define REG8(x) (*(volatile unsigned char *)(x)) |
| 185 | #define REG16(x) (*(volatile unsigned short *)(x)) |
| 186 | #define REG32(x) (*(volatile unsigned *)(x)) |
| 187 | |
| 188 | /************************************************************************* |
| 189 | * MSC mmc/sd controller |
| 190 | *************************************************************************/ |
| 191 | #define MSC_STRPCL REG16 (MSC_BASE + 0x000) |
| 192 | #define MSC_STAT REG32 (MSC_BASE + 0x004) |
| 193 | #define MSC_CLKRT REG16 (MSC_BASE + 0x008) |
| 194 | #define MSC_CMDAT REG32 (MSC_BASE + 0x00C) |
| 195 | #define MSC_RESTO REG16 (MSC_BASE + 0x010) |
| 196 | #define MSC_RDTO REG16 (MSC_BASE + 0x014) |
| 197 | #define MSC_BLKLEN REG16 (MSC_BASE + 0x018) |
| 198 | #define MSC_NOB REG16 (MSC_BASE + 0x01C) |
| 199 | #define MSC_SNOB REG16 (MSC_BASE + 0x020) |
| 200 | #define MSC_IMASK REG16 (MSC_BASE + 0x024) |
| 201 | #define MSC_IREG REG16 (MSC_BASE + 0x028) |
| 202 | #define MSC_CMD REG8 (MSC_BASE + 0x02C) |
| 203 | #define MSC_ARG REG32 (MSC_BASE + 0x030) |
| 204 | #define MSC_RES REG16 (MSC_BASE + 0x034) |
| 205 | #define MSC_RXFIFO REG32 (MSC_BASE + 0x038) |
| 206 | #define MSC_TXFIFO REG32 (MSC_BASE + 0x03C) |
| 207 | |
| 208 | /* MSC Clock and Control Register (MSC_STRPCL) */ |
| 209 | |
| 210 | #define MSC_STRPCL_EXIT_MULTIPLE (1 << 7) |
| 211 | #define MSC_STRPCL_EXIT_TRANSFER (1 << 6) |
| 212 | #define MSC_STRPCL_START_READWAIT (1 << 5) |
| 213 | #define MSC_STRPCL_STOP_READWAIT (1 << 4) |
| 214 | #define MSC_STRPCL_RESET (1 << 3) |
| 215 | #define MSC_STRPCL_START_OP (1 << 2) |
| 216 | #define MSC_STRPCL_CLOCK_CONTROL_BIT 0 |
| 217 | #define MSC_STRPCL_CLOCK_CONTROL_MASK (0x3 << MSC_STRPCL_CLOCK_CONTROL_BIT) |
| 218 | #define MSC_STRPCL_CLOCK_CONTROL_STOP (0x1 << MSC_STRPCL_CLOCK_CONTROL_BIT) /* Stop MMC/SD clock */ |
| 219 | #define MSC_STRPCL_CLOCK_CONTROL_START (0x2 << MSC_STRPCL_CLOCK_CONTROL_BIT) /* Start MMC/SD clock */ |
| 220 | |
| 221 | /* MSC Status Register (MSC_STAT) */ |
| 222 | |
| 223 | #define MSC_STAT_IS_RESETTING (1 << 15) |
| 224 | #define MSC_STAT_SDIO_INT_ACTIVE (1 << 14) |
| 225 | #define MSC_STAT_PRG_DONE (1 << 13) |
| 226 | #define MSC_STAT_DATA_TRAN_DONE (1 << 12) |
| 227 | #define MSC_STAT_END_CMD_RES (1 << 11) |
| 228 | #define MSC_STAT_DATA_FIFO_AFULL (1 << 10) |
| 229 | #define MSC_STAT_IS_READWAIT (1 << 9) |
| 230 | #define MSC_STAT_CLK_EN (1 << 8) |
| 231 | #define MSC_STAT_DATA_FIFO_FULL (1 << 7) |
| 232 | #define MSC_STAT_DATA_FIFO_EMPTY (1 << 6) |
| 233 | #define MSC_STAT_CRC_RES_ERR (1 << 5) |
| 234 | #define MSC_STAT_CRC_READ_ERROR (1 << 4) |
| 235 | #define MSC_STAT_CRC_WRITE_ERROR_BIT 2 |
| 236 | #define MSC_STAT_CRC_WRITE_ERROR_MASK (0x3 << MSC_STAT_CRC_WRITE_ERROR_BIT) |
| 237 | #define MSC_STAT_CRC_WRITE_ERROR_NO (0 << MSC_STAT_CRC_WRITE_ERROR_BIT) /* No error on transmission of data */ |
| 238 | #define MSC_STAT_CRC_WRITE_ERROR (1 << MSC_STAT_CRC_WRITE_ERROR_BIT) /* Card observed erroneous transmission of data */ |
| 239 | #define MSC_STAT_CRC_WRITE_ERROR_NOSTS (2 << MSC_STAT_CRC_WRITE_ERROR_BIT) /* No CRC status is sent back */ |
| 240 | #define MSC_STAT_TIME_OUT_RES (1 << 1) |
| 241 | #define MSC_STAT_TIME_OUT_READ (1 << 0) |
| 242 | |
| 243 | /* MSC Bus Clock Control Register (MSC_CLKRT) */ |
| 244 | |
| 245 | #define MSC_CLKRT_CLK_RATE_BIT 0 |
| 246 | #define MSC_CLKRT_CLK_RATE_MASK (0x7 << MSC_CLKRT_CLK_RATE_BIT) |
| 247 | #define MSC_CLKRT_CLK_RATE_DIV_1 (0x0 << MSC_CLKRT_CLK_RATE_BIT) /* CLK_SRC */ |
| 248 | #define MSC_CLKRT_CLK_RATE_DIV_2 (0x1 << MSC_CLKRT_CLK_RATE_BIT) /* 1/2 of CLK_SRC */ |
| 249 | #define MSC_CLKRT_CLK_RATE_DIV_4 (0x2 << MSC_CLKRT_CLK_RATE_BIT) /* 1/4 of CLK_SRC */ |
| 250 | #define MSC_CLKRT_CLK_RATE_DIV_8 (0x3 << MSC_CLKRT_CLK_RATE_BIT) /* 1/8 of CLK_SRC */ |
| 251 | #define MSC_CLKRT_CLK_RATE_DIV_16 (0x4 << MSC_CLKRT_CLK_RATE_BIT) /* 1/16 of CLK_SRC */ |
| 252 | #define MSC_CLKRT_CLK_RATE_DIV_32 (0x5 << MSC_CLKRT_CLK_RATE_BIT) /* 1/32 of CLK_SRC */ |
| 253 | #define MSC_CLKRT_CLK_RATE_DIV_64 (0x6 << MSC_CLKRT_CLK_RATE_BIT) /* 1/64 of CLK_SRC */ |
| 254 | #define MSC_CLKRT_CLK_RATE_DIV_128 (0x7 << MSC_CLKRT_CLK_RATE_BIT) /* 1/128 of CLK_SRC */ |
| 255 | |
| 256 | /* MSC Command Sequence Control Register (MSC_CMDAT) */ |
| 257 | |
| 258 | #define MSC_CMDAT_IO_ABORT (1 << 11) |
| 259 | #define MSC_CMDAT_BUS_WIDTH_BIT 9 |
| 260 | #define MSC_CMDAT_BUS_WIDTH_MASK (0x3 << MSC_CMDAT_BUS_WIDTH_BIT) |
| 261 | #define MSC_CMDAT_BUS_WIDTH_1BIT (0x0 << MSC_CMDAT_BUS_WIDTH_BIT) /* 1-bit data bus */ |
| 262 | #define MSC_CMDAT_BUS_WIDTH_4BIT (0x2 << MSC_CMDAT_BUS_WIDTH_BIT) /* 4-bit data bus */ |
| 263 | #define CMDAT_BUS_WIDTH1 (0x0 << MSC_CMDAT_BUS_WIDTH_BIT) |
| 264 | #define CMDAT_BUS_WIDTH4 (0x2 << MSC_CMDAT_BUS_WIDTH_BIT) |
| 265 | #define MSC_CMDAT_DMA_EN (1 << 8) |
| 266 | #define MSC_CMDAT_INIT (1 << 7) |
| 267 | #define MSC_CMDAT_BUSY (1 << 6) |
| 268 | #define MSC_CMDAT_STREAM_BLOCK (1 << 5) |
| 269 | #define MSC_CMDAT_WRITE (1 << 4) |
| 270 | #define MSC_CMDAT_READ (0 << 4) |
| 271 | #define MSC_CMDAT_DATA_EN (1 << 3) |
| 272 | #define MSC_CMDAT_RESPONSE_BIT 0 |
| 273 | #define MSC_CMDAT_RESPONSE_MASK (0x7 << MSC_CMDAT_RESPONSE_BIT) |
| 274 | #define MSC_CMDAT_RESPONSE_NONE (0x0 << MSC_CMDAT_RESPONSE_BIT) /* No response */ |
| 275 | #define MSC_CMDAT_RESPONSE_R1 (0x1 << MSC_CMDAT_RESPONSE_BIT) /* Format R1 and R1b */ |
| 276 | #define MSC_CMDAT_RESPONSE_R2 (0x2 << MSC_CMDAT_RESPONSE_BIT) /* Format R2 */ |
| 277 | #define MSC_CMDAT_RESPONSE_R3 (0x3 << MSC_CMDAT_RESPONSE_BIT) /* Format R3 */ |
| 278 | #define MSC_CMDAT_RESPONSE_R4 (0x4 << MSC_CMDAT_RESPONSE_BIT) /* Format R4 */ |
| 279 | #define MSC_CMDAT_RESPONSE_R5 (0x5 << MSC_CMDAT_RESPONSE_BIT) /* Format R5 */ |
| 280 | #define MSC_CMDAT_RESPONSE_R6 (0x6 << MSC_CMDAT_RESPONSE_BIT) /* Format R6 */ |
| 281 | |
| 282 | #define CMDAT_DMA_EN (1 << 8) |
| 283 | #define CMDAT_INIT (1 << 7) |
| 284 | #define CMDAT_BUSY (1 << 6) |
| 285 | #define CMDAT_STREAM (1 << 5) |
| 286 | #define CMDAT_WRITE (1 << 4) |
| 287 | #define CMDAT_DATA_EN (1 << 3) |
| 288 | |
| 289 | /* MSC Interrupts Mask Register (MSC_IMASK) */ |
| 290 | |
| 291 | #define MSC_IMASK_SDIO (1 << 7) |
| 292 | #define MSC_IMASK_TXFIFO_WR_REQ (1 << 6) |
| 293 | #define MSC_IMASK_RXFIFO_RD_REQ (1 << 5) |
| 294 | #define MSC_IMASK_END_CMD_RES (1 << 2) |
| 295 | #define MSC_IMASK_PRG_DONE (1 << 1) |
| 296 | #define MSC_IMASK_DATA_TRAN_DONE (1 << 0) |
| 297 | |
| 298 | |
| 299 | /* MSC Interrupts Status Register (MSC_IREG) */ |
| 300 | |
| 301 | #define MSC_ISDIO (1 << 7) |
| 302 | #define MSC_ITXFIFO_WR_REQ (1 << 6) |
| 303 | #define MSC_IRXFIFO_RD_REQ (1 << 5) |
| 304 | #define MSC_IEND_CMD_RES (1 << 2) |
| 305 | #define MSC_IPRG_DONE (1 << 1) |
| 306 | #define MSC_IDATA_TRAN_DONE (1 << 0) |
| 307 | |
| 308 | |
| 309 | |
| 310 | |
| 311 | /************************************************************************* |
| 312 | * RTC real-time clock |
| 313 | *************************************************************************/ |
| 314 | #define RTC_RCR REG32 (RTC_BASE + 0x00) |
| 315 | #define RTC_RSR REG32 (RTC_BASE + 0x04) |
| 316 | #define RTC_RSAR REG32 (RTC_BASE + 0x08) |
| 317 | #define RTC_RGR REG32 (RTC_BASE + 0x0c) |
| 318 | |
| 319 | #define RTC_RCR_HZ (1 << 6) |
| 320 | #define RTC_RCR_HZIE (1 << 5) |
| 321 | #define RTC_RCR_AF (1 << 4) |
| 322 | #define RTC_RCR_AIE (1 << 3) |
| 323 | #define RTC_RCR_AE (1 << 2) |
| 324 | #define RTC_RCR_START (1 << 0) |
| 325 | |
| 326 | #define RTC_RGR_LOCK (1 << 31) |
| 327 | #define RTC_RGR_ADJ_BIT 16 |
| 328 | #define RTC_RGR_ADJ_MASK (0x3ff << RTC_RGR_ADJ_BIT) |
| 329 | #define RTC_RGR_DIV_BIT 0 |
| 330 | #define RTC_DIV_MASK (0xff << RTC_RGR_DIV_BIT) |
| 331 | |
| 332 | |
| 333 | |
| 334 | |
| 335 | /************************************************************************* |
| 336 | * FIR fast infrared(?) |
| 337 | *************************************************************************/ |
| 338 | #define FIR_TDR REG8 (FIR_BASE + 0x000) |
| 339 | #define FIR_RDR REG8 (FIR_BASE + 0x004) |
| 340 | #define FIR_TFLR REG16 (FIR_BASE + 0x008) |
| 341 | #define FIR_AR REG8 (FIR_BASE + 0x00C) |
| 342 | #define FIR_CR1 REG8 (FIR_BASE + 0x010) |
| 343 | #define FIR_CR2 REG16 (FIR_BASE + 0x014) |
| 344 | #define FIR_SR REG16 (FIR_BASE + 0x018) |
| 345 | |
| 346 | /* FIR Control Register 1 (FIR_CR1) */ |
| 347 | |
| 348 | #define FIR_CR1_FIRUE (1 << 7) |
| 349 | #define FIR_CR1_ACE (1 << 6) |
| 350 | #define FIR_CR1_EOUS (1 << 5) |
| 351 | #define FIR_CR1_TIIE (1 << 4) |
| 352 | #define FIR_CR1_TFIE (1 << 3) |
| 353 | #define FIR_CR1_RFIE (1 << 2) |
| 354 | #define FIR_CR1_TXE (1 << 1) |
| 355 | #define FIR_CR1_RXE (1 << 0) |
| 356 | |
| 357 | /* FIR Control Register 2 (FIR_CR2) */ |
| 358 | |
| 359 | #define FIR_CR2_SIPE (1 << 10) |
| 360 | #define FIR_CR2_BCRC (1 << 9) |
| 361 | #define FIR_CR2_TFLRS (1 << 8) |
| 362 | #define FIR_CR2_ISS (1 << 7) |
| 363 | #define FIR_CR2_LMS (1 << 6) |
| 364 | #define FIR_CR2_TPPS (1 << 5) |
| 365 | #define FIR_CR2_RPPS (1 << 4) |
| 366 | #define FIR_CR2_TTRG_BIT 2 |
| 367 | #define FIR_CR2_TTRG_MASK (0x3 << FIR_CR2_TTRG_BIT) |
| 368 | #define FIR_CR2_TTRG_16 (0 << FIR_CR2_TTRG_BIT) /* Transmit Trigger Level is 16 */ |
| 369 | #define FIR_CR2_TTRG_32 (1 << FIR_CR2_TTRG_BIT) /* Transmit Trigger Level is 32 */ |
| 370 | #define FIR_CR2_TTRG_64 (2 << FIR_CR2_TTRG_BIT) /* Transmit Trigger Level is 64 */ |
| 371 | #define FIR_CR2_TTRG_128 (3 << FIR_CR2_TTRG_BIT) /* Transmit Trigger Level is 128 */ |
| 372 | #define FIR_CR2_RTRG_BIT 0 |
| 373 | #define FIR_CR2_RTRG_MASK (0x3 << FIR_CR2_RTRG_BIT) |
| 374 | #define FIR_CR2_RTRG_16 (0 << FIR_CR2_RTRG_BIT) /* Receive Trigger Level is 16 */ |
| 375 | #define FIR_CR2_RTRG_32 (1 << FIR_CR2_RTRG_BIT) /* Receive Trigger Level is 32 */ |
| 376 | #define FIR_CR2_RTRG_64 (2 << FIR_CR2_RTRG_BIT) /* Receive Trigger Level is 64 */ |
| 377 | #define FIR_CR2_RTRG_128 (3 << FIR_CR2_RTRG_BIT) /* Receive Trigger Level is 128 */ |
| 378 | |
| 379 | /* FIR Status Register (FIR_SR) */ |
| 380 | |
| 381 | #define FIR_SR_RFW (1 << 12) |
| 382 | #define FIR_SR_RFA (1 << 11) |
| 383 | #define FIR_SR_TFRTL (1 << 10) |
| 384 | #define FIR_SR_RFRTL (1 << 9) |
| 385 | #define FIR_SR_URUN (1 << 8) |
| 386 | #define FIR_SR_RFTE (1 << 7) |
| 387 | #define FIR_SR_ORUN (1 << 6) |
| 388 | #define FIR_SR_CRCE (1 << 5) |
| 389 | #define FIR_SR_FEND (1 << 4) |
| 390 | #define FIR_SR_TFF (1 << 3) |
| 391 | #define FIR_SR_RFE (1 << 2) |
| 392 | #define FIR_SR_TIDLE (1 << 1) |
| 393 | #define FIR_SR_RB (1 << 0) |
| 394 | |
| 395 | |
| 396 | |
| 397 | |
| 398 | /************************************************************************* |
| 399 | * SCC smart card controller (unused in trendtac) |
| 400 | *************************************************************************/ |
| 401 | #define SCC_DR(base) REG8 ((base) + 0x000) |
| 402 | #define SCC_FDR(base) REG8 ((base) + 0x004) |
| 403 | #define SCC_CR(base) REG32 ((base) + 0x008) |
| 404 | #define SCC1_CR(base) REG32 ((base) + 0x008) |
| 405 | #define SCC_SR(base) REG16 ((base) + 0x00C) |
| 406 | #define SCC_TFR(base) REG16 ((base) + 0x010) |
| 407 | #define SCC_EGTR(base) REG8 ((base) + 0x014) |
| 408 | #define SCC_ECR(base) REG32 ((base) + 0x018) |
| 409 | #define SCC_RTOR(base) REG8 ((base) + 0x01C) |
| 410 | |
| 411 | /* SCC FIFO Data Count Register (SCC_FDR) */ |
| 412 | |
| 413 | #define SCC_FDR_EMPTY 0x00 |
| 414 | #define SCC_FDR_FULL 0x10 |
| 415 | |
| 416 | /* SCC Control Register (SCC_CR) */ |
| 417 | |
| 418 | #define SCC_CR_SCCE (1 << 31) |
| 419 | #define SCC_CR_TRS (1 << 30) |
| 420 | #define SCC_CR_T2R (1 << 29) |
| 421 | #define SCC_CR_FDIV_BIT 24 |
| 422 | #define SCC_CR_FDIV_MASK (0x3 << SCC_CR_FDIV_BIT) |
| 423 | #define SCC_CR_FDIV_1 (0 << SCC_CR_FDIV_BIT) /* SCC_CLK frequency is the same as device clock */ |
| 424 | #define SCC_CR_FDIV_2 (1 << SCC_CR_FDIV_BIT) /* SCC_CLK frequency is half of device clock */ |
| 425 | #define SCC_CR_FLUSH (1 << 23) |
| 426 | #define SCC_CR_TRIG_BIT 16 |
| 427 | #define SCC_CR_TRIG_MASK (0x3 << SCC_CR_TRIG_BIT) |
| 428 | #define SCC_CR_TRIG_1 (0 << SCC_CR_TRIG_BIT) /* Receive/Transmit-FIFO Trigger is 1 */ |
| 429 | #define SCC_CR_TRIG_4 (1 << SCC_CR_TRIG_BIT) /* Receive/Transmit-FIFO Trigger is 4 */ |
| 430 | #define SCC_CR_TRIG_8 (2 << SCC_CR_TRIG_BIT) /* Receive/Transmit-FIFO Trigger is 8 */ |
| 431 | #define SCC_CR_TRIG_14 (3 << SCC_CR_TRIG_BIT) /* Receive/Transmit-FIFO Trigger is 14 */ |
| 432 | #define SCC_CR_TP (1 << 15) |
| 433 | #define SCC_CR_CONV (1 << 14) |
| 434 | #define SCC_CR_TXIE (1 << 13) |
| 435 | #define SCC_CR_RXIE (1 << 12) |
| 436 | #define SCC_CR_TENDIE (1 << 11) |
| 437 | #define SCC_CR_RTOIE (1 << 10) |
| 438 | #define SCC_CR_ECIE (1 << 9) |
| 439 | #define SCC_CR_EPIE (1 << 8) |
| 440 | #define SCC_CR_RETIE (1 << 7) |
| 441 | #define SCC_CR_EOIE (1 << 6) |
| 442 | #define SCC_CR_TSEND (1 << 3) |
| 443 | #define SCC_CR_PX_BIT 1 |
| 444 | #define SCC_CR_PX_MASK (0x3 << SCC_CR_PX_BIT) |
| 445 | #define SCC_CR_PX_NOT_SUPPORT (0 << SCC_CR_PX_BIT) /* SCC does not support clock stop */ |
| 446 | #define SCC_CR_PX_STOP_LOW (1 << SCC_CR_PX_BIT) /* SCC_CLK stops at state low */ |
| 447 | #define SCC_CR_PX_STOP_HIGH (2 << SCC_CR_PX_BIT) /* SCC_CLK stops at state high */ |
| 448 | #define SCC_CR_CLKSTP (1 << 0) |
| 449 | |
| 450 | /* SCC Status Register (SCC_SR) */ |
| 451 | |
| 452 | #define SCC_SR_TRANS (1 << 15) |
| 453 | #define SCC_SR_ORER (1 << 12) |
| 454 | #define SCC_SR_RTO (1 << 11) |
| 455 | #define SCC_SR_PER (1 << 10) |
| 456 | #define SCC_SR_TFTG (1 << 9) |
| 457 | #define SCC_SR_RFTG (1 << 8) |
| 458 | #define SCC_SR_TEND (1 << 7) |
| 459 | #define SCC_SR_RETR_3 (1 << 4) |
| 460 | #define SCC_SR_ECNTO (1 << 0) |
| 461 | |
| 462 | |
| 463 | |
| 464 | |
| 465 | /************************************************************************* |
| 466 | * ETH ethernet |
| 467 | *************************************************************************/ |
| 468 | #define ETH_BMR REG32 (ETH_BASE + 0x1000) |
| 469 | #define ETH_TPDR REG32 (ETH_BASE + 0x1004) |
| 470 | #define ETH_RPDR REG32 (ETH_BASE + 0x1008) |
| 471 | #define ETH_RAR REG32 (ETH_BASE + 0x100C) |
| 472 | #define ETH_TAR REG32 (ETH_BASE + 0x1010) |
| 473 | #define ETH_SR REG32 (ETH_BASE + 0x1014) |
| 474 | #define ETH_CR REG32 (ETH_BASE + 0x1018) |
| 475 | #define ETH_IER REG32 (ETH_BASE + 0x101C) |
| 476 | #define ETH_MFCR REG32 (ETH_BASE + 0x1020) |
| 477 | #define ETH_CTAR REG32 (ETH_BASE + 0x1050) |
| 478 | #define ETH_CRAR REG32 (ETH_BASE + 0x1054) |
| 479 | #define ETH_MCR REG32 (ETH_BASE + 0x0000) |
| 480 | #define ETH_MAHR REG32 (ETH_BASE + 0x0004) |
| 481 | #define ETH_MALR REG32 (ETH_BASE + 0x0008) |
| 482 | #define ETH_HTHR REG32 (ETH_BASE + 0x000C) |
| 483 | #define ETH_HTLR REG32 (ETH_BASE + 0x0010) |
| 484 | #define ETH_MIAR REG32 (ETH_BASE + 0x0014) |
| 485 | #define ETH_MIDR REG32 (ETH_BASE + 0x0018) |
| 486 | #define ETH_FCR REG32 (ETH_BASE + 0x001C) |
| 487 | #define ETH_VTR1 REG32 (ETH_BASE + 0x0020) |
| 488 | #define ETH_VTR2 REG32 (ETH_BASE + 0x0024) |
| 489 | #define ETH_WKFR REG32 (ETH_BASE + 0x0028) |
| 490 | #define ETH_PMTR REG32 (ETH_BASE + 0x002C) |
| 491 | |
| 492 | /* Bus Mode Register (ETH_BMR) */ |
| 493 | |
| 494 | #define ETH_BMR_DBO (1 << 20) |
| 495 | #define ETH_BMR_PBL_BIT 8 |
| 496 | #define ETH_BMR_PBL_MASK (0x3f << ETH_BMR_PBL_BIT) |
| 497 | #define ETH_BMR_PBL_1 (0x1 << ETH_BMR_PBL_BIT) |
| 498 | #define ETH_BMR_PBL_4 (0x4 << ETH_BMR_PBL_BIT) |
| 499 | #define ETH_BMR_BLE (1 << 7) |
| 500 | #define ETH_BMR_DSL_BIT 2 |
| 501 | #define ETH_BMR_DSL_MASK (0x1f << ETH_BMR_DSL_BIT) |
| 502 | #define ETH_BMR_DSL_0 (0x0 << ETH_BMR_DSL_BIT) |
| 503 | #define ETH_BMR_DSL_1 (0x1 << ETH_BMR_DSL_BIT) |
| 504 | #define ETH_BMR_DSL_2 (0x2 << ETH_BMR_DSL_BIT) |
| 505 | #define ETH_BMR_DSL_4 (0x4 << ETH_BMR_DSL_BIT) |
| 506 | #define ETH_BMR_DSL_8 (0x8 << ETH_BMR_DSL_BIT) |
| 507 | #define ETH_BMR_SWR (1 << 0) |
| 508 | |
| 509 | /* DMA Status Register (ETH_SR) */ |
| 510 | |
| 511 | #define ETH_SR_EB_BIT 23 |
| 512 | #define ETH_SR_EB_MASK (0x7 << ETH_SR_EB_BIT) |
| 513 | #define ETH_SR_EB_TX_ABORT (0x1 << ETH_SR_EB_BIT) |
| 514 | #define ETH_SR_EB_RX_ABORT (0x2 << ETH_SR_EB_BIT) |
| 515 | #define ETH_SR_TS_BIT 20 |
| 516 | #define ETH_SR_TS_MASK (0x7 << ETH_SR_TS_BIT) |
| 517 | #define ETH_SR_TS_STOP (0x0 << ETH_SR_TS_BIT) |
| 518 | #define ETH_SR_TS_FTD (0x1 << ETH_SR_TS_BIT) |
| 519 | #define ETH_SR_TS_WEOT (0x2 << ETH_SR_TS_BIT) |
| 520 | #define ETH_SR_TS_QDAT (0x3 << ETH_SR_TS_BIT) |
| 521 | #define ETH_SR_TS_SUSPEND (0x6 << ETH_SR_TS_BIT) |
| 522 | #define ETH_SR_TS_CTD (0x7 << ETH_SR_TS_BIT) |
| 523 | #define ETH_SR_RS_BIT 17 |
| 524 | #define ETH_SR_RS_MASK (0x7 << ETH_SR_RS_BIT) |
| 525 | #define ETH_SR_RS_STOP (0x0 << ETH_SR_RS_BIT) |
| 526 | #define ETH_SR_RS_FRD (0x1 << ETH_SR_RS_BIT) |
| 527 | #define ETH_SR_RS_CEOR (0x2 << ETH_SR_RS_BIT) |
| 528 | #define ETH_SR_RS_WRP (0x3 << ETH_SR_RS_BIT) |
| 529 | #define ETH_SR_RS_SUSPEND (0x4 << ETH_SR_RS_BIT) |
| 530 | #define ETH_SR_RS_CRD (0x5 << ETH_SR_RS_BIT) |
| 531 | #define ETH_SR_RS_FCF (0x6 << ETH_SR_RS_BIT) |
| 532 | #define ETH_SR_RS_QRF (0x7 << ETH_SR_RS_BIT) |
| 533 | #define ETH_SR_NIS (1 << 16) |
| 534 | #define ETH_SR_AIS (1 << 15) |
| 535 | #define ETH_SR_ERI (1 << 14) |
| 536 | #define ETH_SR_FBE (1 << 13) |
| 537 | #define ETH_SR_ETI (1 << 10) |
| 538 | #define ETH_SR_RWT (1 << 9) |
| 539 | #define ETH_SR_RPS (1 << 8) |
| 540 | #define ETH_SR_RU (1 << 7) |
| 541 | #define ETH_SR_RI (1 << 6) |
| 542 | #define ETH_SR_UNF (1 << 5) |
| 543 | #define ETH_SR_TJT (1 << 3) |
| 544 | #define ETH_SR_TU (1 << 2) |
| 545 | #define ETH_SR_TPS (1 << 1) |
| 546 | #define ETH_SR_TI (1 << 0) |
| 547 | |
| 548 | /* Control (Operation Mode) Register (ETH_CR) */ |
| 549 | |
| 550 | #define ETH_CR_TTM (1 << 22) |
| 551 | #define ETH_CR_SF (1 << 21) |
| 552 | #define ETH_CR_TR_BIT 14 |
| 553 | #define ETH_CR_TR_MASK (0x3 << ETH_CR_TR_BIT) |
| 554 | #define ETH_CR_ST (1 << 13) |
| 555 | #define ETH_CR_OSF (1 << 2) |
| 556 | #define ETH_CR_SR (1 << 1) |
| 557 | |
| 558 | /* Interrupt Enable Register (ETH_IER) */ |
| 559 | |
| 560 | #define ETH_IER_NI (1 << 16) |
| 561 | #define ETH_IER_AI (1 << 15) |
| 562 | #define ETH_IER_ERE (1 << 14) |
| 563 | #define ETH_IER_FBE (1 << 13) |
| 564 | #define ETH_IER_ET (1 << 10) |
| 565 | #define ETH_IER_RWE (1 << 9) |
| 566 | #define ETH_IER_RS (1 << 8) |
| 567 | #define ETH_IER_RU (1 << 7) |
| 568 | #define ETH_IER_RI (1 << 6) |
| 569 | #define ETH_IER_UN (1 << 5) |
| 570 | #define ETH_IER_TJ (1 << 3) |
| 571 | #define ETH_IER_TU (1 << 2) |
| 572 | #define ETH_IER_TS (1 << 1) |
| 573 | #define ETH_IER_TI (1 << 0) |
| 574 | |
| 575 | /* Missed Frame and Buffer Overflow Counter Register (ETH_MFCR) */ |
| 576 | |
| 577 | #define ETH_MFCR_OVERFLOW_BIT 17 |
| 578 | #define ETH_MFCR_OVERFLOW_MASK (0x7ff << ETH_MFCR_OVERFLOW_BIT) |
| 579 | #define ETH_MFCR_MFC_BIT 0 |
| 580 | #define ETH_MFCR_MFC_MASK (0xffff << ETH_MFCR_MFC_BIT) |
| 581 | |
| 582 | /* MAC Control Register (ETH_MCR) */ |
| 583 | |
| 584 | #define ETH_MCR_RA (1 << 31) |
| 585 | #define ETH_MCR_HBD (1 << 28) |
| 586 | #define ETH_MCR_PS (1 << 27) |
| 587 | #define ETH_MCR_DRO (1 << 23) |
| 588 | #define ETH_MCR_OM_BIT 21 |
| 589 | #define ETH_MCR_OM_MASK (0x3 << ETH_MCR_OM_BIT) |
| 590 | #define ETH_MCR_OM_NORMAL (0x0 << ETH_MCR_OM_BIT) |
| 591 | #define ETH_MCR_OM_INTERNAL (0x1 << ETH_MCR_OM_BIT) |
| 592 | #define ETH_MCR_OM_EXTERNAL (0x2 << ETH_MCR_OM_BIT) |
| 593 | #define ETH_MCR_F (1 << 20) |
| 594 | #define ETH_MCR_PM (1 << 19) |
| 595 | #define ETH_MCR_PR (1 << 18) |
| 596 | #define ETH_MCR_IF (1 << 17) |
| 597 | #define ETH_MCR_PB (1 << 16) |
| 598 | #define ETH_MCR_HO (1 << 15) |
| 599 | #define ETH_MCR_HP (1 << 13) |
| 600 | #define ETH_MCR_LCC (1 << 12) |
| 601 | #define ETH_MCR_DBF (1 << 11) |
| 602 | #define ETH_MCR_DTRY (1 << 10) |
| 603 | #define ETH_MCR_ASTP (1 << 8) |
| 604 | #define ETH_MCR_BOLMT_BIT 6 |
| 605 | #define ETH_MCR_BOLMT_MASK (0x3 << ETH_MCR_BOLMT_BIT) |
| 606 | #define ETH_MCR_BOLMT_10 (0 << ETH_MCR_BOLMT_BIT) |
| 607 | #define ETH_MCR_BOLMT_8 (1 << ETH_MCR_BOLMT_BIT) |
| 608 | #define ETH_MCR_BOLMT_4 (2 << ETH_MCR_BOLMT_BIT) |
| 609 | #define ETH_MCR_BOLMT_1 (3 << ETH_MCR_BOLMT_BIT) |
| 610 | #define ETH_MCR_DC (1 << 5) |
| 611 | #define ETH_MCR_TE (1 << 3) |
| 612 | #define ETH_MCR_RE (1 << 2) |
| 613 | |
| 614 | /* MII Address Register (ETH_MIAR) */ |
| 615 | |
| 616 | #define ETH_MIAR_PHY_ADDR_BIT 11 |
| 617 | #define ETH_MIAR_PHY_ADDR_MASK (0x1f << ETH_MIAR_PHY_ADDR_BIT) |
| 618 | #define ETH_MIAR_MII_BIT 6 |
| 619 | #define ETH_MIAR_MII_MASK (0x1f << ETH_MIAR_MII_BIT) |
| 620 | #define ETH_MIAR_MII_WRITE (1 << 1) |
| 621 | #define ETH_MIAR_MII_BUSY (1 << 0) |
| 622 | |
| 623 | /* Flow Control Register (ETH_FCR) */ |
| 624 | |
| 625 | #define ETH_FCR_PAUSE_TIME_BIT 16 |
| 626 | #define ETH_FCR_PAUSE_TIME_MASK (0xffff << ETH_FCR_PAUSE_TIME_BIT) |
| 627 | #define ETH_FCR_PCF (1 << 2) |
| 628 | #define ETH_FCR_FCE (1 << 1) |
| 629 | #define ETH_FCR_BUSY (1 << 0) |
| 630 | |
| 631 | /* PMT Control and Status Register (ETH_PMTR) */ |
| 632 | |
| 633 | #define ETH_PMTR_GU (1 << 9) |
| 634 | #define ETH_PMTR_RF (1 << 6) |
| 635 | #define ETH_PMTR_MF (1 << 5) |
| 636 | #define ETH_PMTR_RWK (1 << 2) |
| 637 | #define ETH_PMTR_MPK (1 << 1) |
| 638 | |
| 639 | /* Receive Descriptor 0 (ETH_RD0) Bits */ |
| 640 | |
| 641 | #define ETH_RD0_OWN (1 << 31) |
| 642 | #define ETH_RD0_FF (1 << 30) |
| 643 | #define ETH_RD0_FL_BIT 16 |
| 644 | #define ETH_RD0_FL_MASK (0x3fff << ETH_RD0_FL_BIT) |
| 645 | #define ETH_RD0_ES (1 << 15) |
| 646 | #define ETH_RD0_DE (1 << 14) |
| 647 | #define ETH_RD0_LE (1 << 12) |
| 648 | #define ETH_RD0_RF (1 << 11) |
| 649 | #define ETH_RD0_MF (1 << 10) |
| 650 | #define ETH_RD0_FD (1 << 9) |
| 651 | #define ETH_RD0_LD (1 << 8) |
| 652 | #define ETH_RD0_TL (1 << 7) |
| 653 | #define ETH_RD0_CS (1 << 6) |
| 654 | #define ETH_RD0_FT (1 << 5) |
| 655 | #define ETH_RD0_WT (1 << 4) |
| 656 | #define ETH_RD0_ME (1 << 3) |
| 657 | #define ETH_RD0_DB (1 << 2) |
| 658 | #define ETH_RD0_CE (1 << 1) |
| 659 | |
| 660 | /* Receive Descriptor 1 (ETH_RD1) Bits */ |
| 661 | |
| 662 | #define ETH_RD1_RER (1 << 25) |
| 663 | #define ETH_RD1_RCH (1 << 24) |
| 664 | #define ETH_RD1_RBS2_BIT 11 |
| 665 | #define ETH_RD1_RBS2_MASK (0x7ff << ETH_RD1_RBS2_BIT) |
| 666 | #define ETH_RD1_RBS1_BIT 0 |
| 667 | #define ETH_RD1_RBS1_MASK (0x7ff << ETH_RD1_RBS1_BIT) |
| 668 | |
| 669 | /* Transmit Descriptor 0 (ETH_TD0) Bits */ |
| 670 | |
| 671 | #define ETH_TD0_OWN (1 << 31) |
| 672 | #define ETH_TD0_FA (1 << 15) |
| 673 | #define ETH_TD0_LOC (1 << 11) |
| 674 | #define ETH_TD0_NC (1 << 10) |
| 675 | #define ETH_TD0_LC (1 << 9) |
| 676 | #define ETH_TD0_EC (1 << 8) |
| 677 | #define ETH_TD0_HBF (1 << 7) |
| 678 | #define ETH_TD0_CC_BIT 3 |
| 679 | #define ETH_TD0_CC_MASK (0xf << ETH_TD0_CC_BIT) |
| 680 | #define ETH_TD0_ED (1 << 2) |
| 681 | #define ETH_TD0_UF (1 << 1) |
| 682 | #define ETH_TD0_DF (1 << 0) |
| 683 | |
| 684 | /* Transmit Descriptor 1 (ETH_TD1) Bits */ |
| 685 | |
| 686 | #define ETH_TD1_IC (1 << 31) |
| 687 | #define ETH_TD1_LS (1 << 30) |
| 688 | #define ETH_TD1_FS (1 << 29) |
| 689 | #define ETH_TD1_AC (1 << 26) |
| 690 | #define ETH_TD1_TER (1 << 25) |
| 691 | #define ETH_TD1_TCH (1 << 24) |
| 692 | #define ETH_TD1_DPD (1 << 23) |
| 693 | #define ETH_TD1_TBS2_BIT 11 |
| 694 | #define ETH_TD1_TBS2_MASK (0x7ff << ETH_TD1_TBS2_BIT) |
| 695 | #define ETH_TD1_TBS1_BIT 0 |
| 696 | #define ETH_TD1_TBS1_MASK (0x7ff << ETH_TD1_TBS1_BIT) |
| 697 | |
| 698 | |
| 699 | |
| 700 | |
| 701 | /************************************************************************* |
| 702 | * WDT watch-dog timer |
| 703 | *************************************************************************/ |
| 704 | #define WDT_WTCSR REG8 (WDT_BASE + 0x00) |
| 705 | #define WDT_WTCNT REG32 (WDT_BASE + 0x04) |
| 706 | |
| 707 | #define WDT_WTCSR_START (1 << 4) |
| 708 | |
| 709 | |
| 710 | |
| 711 | |
| 712 | /************************************************************************* |
| 713 | * OST operating system timer |
| 714 | *************************************************************************/ |
| 715 | #define OST_TER REG8 (OST_BASE + 0x00) |
| 716 | #define OST_TRDR(n) REG32 (OST_BASE + 0x10 + ((n) * 0x20)) |
| 717 | #define OST_TCNT(n) REG32 (OST_BASE + 0x14 + ((n) * 0x20)) |
| 718 | #define OST_TCSR(n) REG16 (OST_BASE + 0x18 + ((n) * 0x20)) |
| 719 | #define OST_TCRB(n) REG32 (OST_BASE + 0x1c + ((n) * 0x20)) |
| 720 | |
| 721 | #define OST_TCSR_BUSY (1 << 7) |
| 722 | #define OST_TCSR_UF (1 << 6) |
| 723 | #define OST_TCSR_UIE (1 << 5) |
| 724 | #define OST_TCSR_CKS_BIT 0 |
| 725 | #define OST_TCSR_CKS_MASK (0x07 << OST_TCSR_CKS_BIT) |
| 726 | #define OST_TCSR_CKS_PCLK_4 (0 << OST_TCSR_CKS_BIT) |
| 727 | #define OST_TCSR_CKS_PCLK_16 (1 << OST_TCSR_CKS_BIT) |
| 728 | #define OST_TCSR_CKS_PCLK_64 (2 << OST_TCSR_CKS_BIT) |
| 729 | #define OST_TCSR_CKS_PCLK_256 (3 << OST_TCSR_CKS_BIT) |
| 730 | #define OST_TCSR_CKS_RTCCLK (4 << OST_TCSR_CKS_BIT) |
| 731 | #define OST_TCSR_CKS_EXTAL (5 << OST_TCSR_CKS_BIT) |
| 732 | |
| 733 | /************************************************************************* |
| 734 | * UART universal asynchronous receiver/transmitter (serial ports) |
| 735 | *************************************************************************/ |
| 736 | |
| 737 | #define IRDA_BASE UART0_BASE |
| 738 | #define UART_BASE UART0_BASE |
| 739 | #define UART_OFF 0x1000 |
| 740 | |
| 741 | /* register offset */ |
| 742 | #define OFF_RDR (0x00) /* R 8b H'xx */ |
| 743 | #define OFF_TDR (0x00) /* W 8b H'xx */ |
| 744 | #define OFF_DLLR (0x00) /* RW 8b H'00 */ |
| 745 | #define OFF_DLHR (0x04) /* RW 8b H'00 */ |
| 746 | #define OFF_IER (0x04) /* RW 8b H'00 */ |
| 747 | #define OFF_ISR (0x08) /* R 8b H'01 */ |
| 748 | #define OFF_FCR (0x08) /* W 8b H'00 */ |
| 749 | #define OFF_LCR (0x0C) /* RW 8b H'00 */ |
| 750 | #define OFF_MCR (0x10) /* RW 8b H'00 */ |
| 751 | #define OFF_LSR (0x14) /* R 8b H'00 */ |
| 752 | #define OFF_MSR (0x18) /* R 8b H'00 */ |
| 753 | #define OFF_SPR (0x1C) /* RW 8b H'00 */ |
| 754 | #define OFF_MCR (0x10) /* RW 8b H'00 */ |
| 755 | #define OFF_SIRCR (0x20) /* RW 8b H'00, UART0 */ |
| 756 | |
| 757 | /* register address */ |
| 758 | #define UART0_RDR REG32 (UART0_BASE + OFF_RDR) |
| 759 | #define UART0_TDR REG32 (UART0_BASE + OFF_TDR) |
| 760 | #define UART0_DLLR REG32 (UART0_BASE + OFF_DLLR) |
| 761 | #define UART0_DLHR REG32 (UART0_BASE + OFF_DLHR) |
| 762 | #define UART0_IER REG32 (UART0_BASE + OFF_IER) |
| 763 | #define UART0_ISR REG32 (UART0_BASE + OFF_ISR) |
| 764 | #define UART0_FCR REG32 (UART0_BASE + OFF_FCR) |
| 765 | #define UART0_LCR REG32 (UART0_BASE + OFF_LCR) |
| 766 | #define UART0_MCR REG32 (UART0_BASE + OFF_MCR) |
| 767 | #define UART0_LSR REG32 (UART0_BASE + OFF_LSR) |
| 768 | #define UART0_MSR REG32 (UART0_BASE + OFF_MSR) |
| 769 | #define UART0_SPR REG32 (UART0_BASE + OFF_SPR) |
| 770 | #define UART0_SIRCR REG32 (UART0_BASE + OFF_SIRCR) |
| 771 | |
| 772 | #define UART1_RDR REG32 (UART1_BASE + OFF_RDR) |
| 773 | #define UART1_TDR REG32 (UART1_BASE + OFF_TDR) |
| 774 | #define UART1_DLLR REG32 (UART1_BASE + OFF_DLLR) |
| 775 | #define UART1_DLHR REG32 (UART1_BASE + OFF_DLHR) |
| 776 | #define UART1_IER REG32 (UART1_BASE + OFF_IER) |
| 777 | #define UART1_ISR REG32 (UART1_BASE + OFF_ISR) |
| 778 | #define UART1_FCR REG32 (UART1_BASE + OFF_FCR) |
| 779 | #define UART1_LCR REG32 (UART1_BASE + OFF_LCR) |
| 780 | #define UART1_MCR REG32 (UART1_BASE + OFF_MCR) |
| 781 | #define UART1_LSR REG32 (UART1_BASE + OFF_LSR) |
| 782 | #define UART1_MSR REG32 (UART1_BASE + OFF_MSR) |
| 783 | #define UART1_SPR REG32 (UART1_BASE + OFF_SPR) |
| 784 | #define UART1_SIRCR REG32 (UART1_BASE + OFF_SIRCR) |
| 785 | |
| 786 | #define UART2_RDR REG32 (UART2_BASE + OFF_RDR) |
| 787 | #define UART2_TDR REG32 (UART2_BASE + OFF_TDR) |
| 788 | #define UART2_DLLR REG32 (UART2_BASE + OFF_DLLR) |
| 789 | #define UART2_DLHR REG32 (UART2_BASE + OFF_DLHR) |
| 790 | #define UART2_IER REG32 (UART2_BASE + OFF_IER) |
| 791 | #define UART2_ISR REG32 (UART2_BASE + OFF_ISR) |
| 792 | #define UART2_FCR REG32 (UART2_BASE + OFF_FCR) |
| 793 | #define UART2_LCR REG32 (UART2_BASE + OFF_LCR) |
| 794 | #define UART2_MCR REG32 (UART2_BASE + OFF_MCR) |
| 795 | #define UART2_LSR REG32 (UART2_BASE + OFF_LSR) |
| 796 | #define UART2_MSR REG32 (UART2_BASE + OFF_MSR) |
| 797 | #define UART2_SPR REG32 (UART2_BASE + OFF_SPR) |
| 798 | #define UART2_SIRCR REG32 (UART2_BASE + OFF_SIRCR) |
| 799 | |
| 800 | #define UART3_RDR REG32 (UART3_BASE + OFF_RDR) |
| 801 | #define UART3_TDR REG32 (UART3_BASE + OFF_TDR) |
| 802 | #define UART3_DLLR REG32 (UART3_BASE + OFF_DLLR) |
| 803 | #define UART3_DLHR REG32 (UART3_BASE + OFF_DLHR) |
| 804 | #define UART3_IER REG32 (UART3_BASE + OFF_IER) |
| 805 | #define UART3_ISR REG32 (UART3_BASE + OFF_ISR) |
| 806 | #define UART3_FCR REG32 (UART3_BASE + OFF_FCR) |
| 807 | #define UART3_LCR REG32 (UART3_BASE + OFF_LCR) |
| 808 | #define UART3_MCR REG32 (UART3_BASE + OFF_MCR) |
| 809 | #define UART3_LSR REG32 (UART3_BASE + OFF_LSR) |
| 810 | #define UART3_MSR REG32 (UART3_BASE + OFF_MSR) |
| 811 | #define UART3_SPR REG32 (UART3_BASE + OFF_SPR) |
| 812 | #define UART3_SIRCR REG32 (UART3_BASE + OFF_SIRCR) |
| 813 | |
| 814 | /* |
| 815 | * Define macros for UARTIER |
| 816 | * UART Interrupt Enable Register |
| 817 | */ |
| 818 | #define UARTIER_RIE (1 << 0) /* 0: receive fifo "full" interrupt disable */ |
| 819 | #define UARTIER_TIE (1 << 1) /* 0: transmit fifo "empty" interrupt disable */ |
| 820 | #define UARTIER_RLIE (1 << 2) /* 0: receive line status interrupt disable */ |
| 821 | #define UARTIER_MIE (1 << 3) /* 0: modem status interrupt disable */ |
| 822 | #define UARTIER_RTIE (1 << 4) /* 0: receive timeout interrupt disable */ |
| 823 | |
| 824 | /* |
| 825 | * Define macros for UARTISR |
| 826 | * UART Interrupt Status Register |
| 827 | */ |
| 828 | #define UARTISR_IP (1 << 0) /* 0: interrupt is pending 1: no interrupt */ |
| 829 | #define UARTISR_IID (7 << 1) /* Source of Interrupt */ |
| 830 | #define UARTISR_IID_MSI (0 << 1) /* Modem status interrupt */ |
| 831 | #define UARTISR_IID_THRI (1 << 1) /* Transmitter holding register empty */ |
| 832 | #define UARTISR_IID_RDI (2 << 1) /* Receiver data interrupt */ |
| 833 | #define UARTISR_IID_RLSI (3 << 1) /* Receiver line status interrupt */ |
| 834 | #define UARTISR_FFMS (3 << 6) /* FIFO mode select, set when UARTFCR.FE is set to 1 */ |
| 835 | #define UARTISR_FFMS_NO_FIFO (0 << 6) |
| 836 | #define UARTISR_FFMS_FIFO_MODE (3 << 6) |
| 837 | |
| 838 | /* |
| 839 | * Define macros for UARTFCR |
| 840 | * UART FIFO Control Register |
| 841 | */ |
| 842 | #define UARTFCR_FE (1 << 0) /* 0: non-FIFO mode 1: FIFO mode */ |
| 843 | #define UARTFCR_RFLS (1 << 1) /* write 1 to flush receive FIFO */ |
| 844 | #define UARTFCR_TFLS (1 << 2) /* write 1 to flush transmit FIFO */ |
| 845 | #define UARTFCR_DMS (1 << 3) /* 0: disable DMA mode */ |
| 846 | #define UARTFCR_UUE (1 << 4) /* 0: disable UART */ |
| 847 | #define UARTFCR_RTRG (3 << 6) /* Receive FIFO Data Trigger */ |
| 848 | #define UARTFCR_RTRG_1 (0 << 6) |
| 849 | #define UARTFCR_RTRG_4 (1 << 6) |
| 850 | #define UARTFCR_RTRG_8 (2 << 6) |
| 851 | #define UARTFCR_RTRG_15 (3 << 6) |
| 852 | |
| 853 | /* |
| 854 | * Define macros for UARTLCR |
| 855 | * UART Line Control Register |
| 856 | */ |
| 857 | #define UARTLCR_WLEN (3 << 0) /* word length */ |
| 858 | #define UARTLCR_WLEN_5 (0 << 0) |
| 859 | #define UARTLCR_WLEN_6 (1 << 0) |
| 860 | #define UARTLCR_WLEN_7 (2 << 0) |
| 861 | #define UARTLCR_WLEN_8 (3 << 0) |
| 862 | #define UARTLCR_STOP (1 << 2) /* 0: 1 stop bit when word length is 5,6,7,8 |
| 863 | 1: 1.5 stop bits when 5; 2 stop bits when 6,7,8 */ |
| 864 | #define UARTLCR_PE (1 << 3) /* 0: parity disable */ |
| 865 | #define UARTLCR_PROE (1 << 4) /* 0: even parity 1: odd parity */ |
| 866 | #define UARTLCR_SPAR (1 << 5) /* 0: sticky parity disable */ |
| 867 | #define UARTLCR_SBRK (1 << 6) /* write 0 normal, write 1 send break */ |
| 868 | #define UARTLCR_DLAB (1 << 7) /* 0: access UARTRDR/TDR/IER 1: access UARTDLLR/DLHR */ |
| 869 | |
| 870 | /* |
| 871 | * Define macros for UARTLSR |
| 872 | * UART Line Status Register |
| 873 | */ |
| 874 | #define UARTLSR_DR (1 << 0) /* 0: receive FIFO is empty 1: receive data is ready */ |
| 875 | #define UARTLSR_ORER (1 << 1) /* 0: no overrun error */ |
| 876 | #define UARTLSR_PER (1 << 2) /* 0: no parity error */ |
| 877 | #define UARTLSR_FER (1 << 3) /* 0; no framing error */ |
| 878 | #define UARTLSR_BRK (1 << 4) /* 0: no break detected 1: receive a break signal */ |
| 879 | #define UARTLSR_TDRQ (1 << 5) /* 1: transmit FIFO half "empty" */ |
| 880 | #define UARTLSR_TEMT (1 << 6) /* 1: transmit FIFO and shift registers empty */ |
| 881 | #define UARTLSR_RFER (1 << 7) /* 0: no receive error 1: receive error in FIFO mode */ |
| 882 | |
| 883 | /* |
| 884 | * Define macros for UARTMCR |
| 885 | * UART Modem Control Register |
| 886 | */ |
| 887 | #define UARTMCR_DTR (1 << 0) /* 0: DTR_ ouput high */ |
| 888 | #define UARTMCR_RTS (1 << 1) /* 0: RTS_ output high */ |
| 889 | #define UARTMCR_OUT1 (1 << 2) /* 0: UARTMSR.RI is set to 0 and RI_ input high */ |
| 890 | #define UARTMCR_OUT2 (1 << 3) /* 0: UARTMSR.DCD is set to 0 and DCD_ input high */ |
| 891 | #define UARTMCR_LOOP (1 << 4) /* 0: normal 1: loopback mode */ |
| 892 | #define UARTMCR_MCE (1 << 7) /* 0: modem function is disable */ |
| 893 | |
| 894 | /* |
| 895 | * Define macros for UARTMSR |
| 896 | * UART Modem Status Register |
| 897 | */ |
| 898 | #define UARTMSR_DCTS (1 << 0) /* 0: no change on CTS_ pin since last read of UARTMSR */ |
| 899 | #define UARTMSR_DDSR (1 << 1) /* 0: no change on DSR_ pin since last read of UARTMSR */ |
| 900 | #define UARTMSR_DRI (1 << 2) /* 0: no change on RI_ pin since last read of UARTMSR */ |
| 901 | #define UARTMSR_DDCD (1 << 3) /* 0: no change on DCD_ pin since last read of UARTMSR */ |
| 902 | #define UARTMSR_CTS (1 << 4) /* 0: CTS_ pin is high */ |
| 903 | #define UARTMSR_DSR (1 << 5) /* 0: DSR_ pin is high */ |
| 904 | #define UARTMSR_RI (1 << 6) /* 0: RI_ pin is high */ |
| 905 | #define UARTMSR_DCD (1 << 7) /* 0: DCD_ pin is high */ |
| 906 | |
| 907 | /* |
| 908 | * Define macros for SIRCR |
| 909 | * Slow IrDA Control Register |
| 910 | */ |
| 911 | #define SIRCR_TSIRE (1 << 0) /* 0: transmitter is in UART mode 1: IrDA mode */ |
| 912 | #define SIRCR_RSIRE (1 << 1) /* 0: receiver is in UART mode 1: IrDA mode */ |
| 913 | #define SIRCR_TPWS (1 << 2) /* 0: transmit 0 pulse width is 3/16 of bit length |
| 914 | 1: 0 pulse width is 1.6us for 115.2Kbps */ |
| 915 | #define SIRCR_TXPL (1 << 3) /* 0: encoder generates a positive pulse for 0 */ |
| 916 | #define SIRCR_RXPL (1 << 4) /* 0: decoder interprets positive pulse as 0 */ |
| 917 | |
| 918 | |
| 919 | |
| 920 | /************************************************************************* |
| 921 | * INTC interrupt controller |
| 922 | *************************************************************************/ |
| 923 | #define INTC_ISR REG32 (INTC_BASE + 0x00) |
| 924 | #define INTC_IMR REG32 (INTC_BASE + 0x04) |
| 925 | #define INTC_IMSR REG32 (INTC_BASE + 0x08) |
| 926 | #define INTC_IMCR REG32 (INTC_BASE + 0x0c) |
| 927 | #define INTC_IPR REG32 (INTC_BASE + 0x10) |
| 928 | |
| 929 | #define IRQ_I2C 1 |
| 930 | #define IRQ_PS2 2 |
| 931 | #define IRQ_UPRT 3 |
| 932 | #define IRQ_CORE 4 |
| 933 | #define IRQ_UART3 6 |
| 934 | #define IRQ_UART2 7 |
| 935 | #define IRQ_UART1 8 |
| 936 | #define IRQ_UART0 9 |
| 937 | #define IRQ_SCC1 10 |
| 938 | #define IRQ_SCC0 11 |
| 939 | #define IRQ_UDC 12 |
| 940 | #define IRQ_UHC 13 |
| 941 | #define IRQ_MSC 14 |
| 942 | #define IRQ_RTC 15 |
| 943 | #define IRQ_FIR 16 |
| 944 | #define IRQ_SSI 17 |
| 945 | #define IRQ_CIM 18 |
| 946 | #define IRQ_ETH 19 |
| 947 | #define IRQ_AIC 20 |
| 948 | #define IRQ_DMAC 21 |
| 949 | #define IRQ_OST2 22 |
| 950 | #define IRQ_OST1 23 |
| 951 | #define IRQ_OST0 24 |
| 952 | #define IRQ_GPIO3 25 |
| 953 | #define IRQ_GPIO2 26 |
| 954 | #define IRQ_GPIO1 27 |
| 955 | #define IRQ_GPIO0 28 |
| 956 | #define IRQ_LCD 30 |
| 957 | |
| 958 | |
| 959 | |
| 960 | |
| 961 | /************************************************************************* |
| 962 | * CIM camera interface module (not used in trendtac) |
| 963 | *************************************************************************/ |
| 964 | #define CIM_CFG REG32 (CIM_BASE + 0x0000) |
| 965 | #define CIM_CTRL REG32 (CIM_BASE + 0x0004) |
| 966 | #define CIM_STATE REG32 (CIM_BASE + 0x0008) |
| 967 | #define CIM_IID REG32 (CIM_BASE + 0x000C) |
| 968 | #define CIM_RXFIFO REG32 (CIM_BASE + 0x0010) |
| 969 | #define CIM_DA REG32 (CIM_BASE + 0x0020) |
| 970 | #define CIM_FA REG32 (CIM_BASE + 0x0024) |
| 971 | #define CIM_FID REG32 (CIM_BASE + 0x0028) |
| 972 | #define CIM_CMD REG32 (CIM_BASE + 0x002C) |
| 973 | |
| 974 | /* CIM Configuration Register (CIM_CFG) */ |
| 975 | |
| 976 | #define CIM_CFG_INV_DAT (1 << 15) |
| 977 | #define CIM_CFG_VSP (1 << 14) |
| 978 | #define CIM_CFG_HSP (1 << 13) |
| 979 | #define CIM_CFG_PCP (1 << 12) |
| 980 | #define CIM_CFG_DUMMY_ZERO (1 << 9) |
| 981 | #define CIM_CFG_EXT_VSYNC (1 << 8) |
| 982 | #define CIM_CFG_PACK_BIT 4 |
| 983 | #define CIM_CFG_PACK_MASK (0x7 << CIM_CFG_PACK_BIT) |
| 984 | #define CIM_CFG_PACK_0 (0 << CIM_CFG_PACK_BIT) |
| 985 | #define CIM_CFG_PACK_1 (1 << CIM_CFG_PACK_BIT) |
| 986 | #define CIM_CFG_PACK_2 (2 << CIM_CFG_PACK_BIT) |
| 987 | #define CIM_CFG_PACK_3 (3 << CIM_CFG_PACK_BIT) |
| 988 | #define CIM_CFG_PACK_4 (4 << CIM_CFG_PACK_BIT) |
| 989 | #define CIM_CFG_PACK_5 (5 << CIM_CFG_PACK_BIT) |
| 990 | #define CIM_CFG_PACK_6 (6 << CIM_CFG_PACK_BIT) |
| 991 | #define CIM_CFG_PACK_7 (7 << CIM_CFG_PACK_BIT) |
| 992 | #define CIM_CFG_DSM_BIT 0 |
| 993 | #define CIM_CFG_DSM_MASK (0x3 << CIM_CFG_DSM_BIT) |
| 994 | #define CIM_CFG_DSM_CPM (0 << CIM_CFG_DSM_BIT) /* CCIR656 Progressive Mode */ |
| 995 | #define CIM_CFG_DSM_CIM (1 << CIM_CFG_DSM_BIT) /* CCIR656 Interlace Mode */ |
| 996 | #define CIM_CFG_DSM_GCM (2 << CIM_CFG_DSM_BIT) /* Gated Clock Mode */ |
| 997 | #define CIM_CFG_DSM_NGCM (3 << CIM_CFG_DSM_BIT) /* Non-Gated Clock Mode */ |
| 998 | |
| 999 | /* CIM Control Register (CIM_CTRL) */ |
| 1000 | |
| 1001 | #define CIM_CTRL_MCLKDIV_BIT 24 |
| 1002 | #define CIM_CTRL_MCLKDIV_MASK (0xff << CIM_CTRL_MCLKDIV_BIT) |
| 1003 | #define CIM_CTRL_FRC_BIT 16 |
| 1004 | #define CIM_CTRL_FRC_MASK (0xf << CIM_CTRL_FRC_BIT) |
| 1005 | #define CIM_CTRL_FRC_1 (0x0 << CIM_CTRL_FRC_BIT) /* Sample every frame */ |
| 1006 | #define CIM_CTRL_FRC_2 (0x1 << CIM_CTRL_FRC_BIT) /* Sample 1/2 frame */ |
| 1007 | #define CIM_CTRL_FRC_3 (0x2 << CIM_CTRL_FRC_BIT) /* Sample 1/3 frame */ |
| 1008 | #define CIM_CTRL_FRC_4 (0x3 << CIM_CTRL_FRC_BIT) /* Sample 1/4 frame */ |
| 1009 | #define CIM_CTRL_FRC_5 (0x4 << CIM_CTRL_FRC_BIT) /* Sample 1/5 frame */ |
| 1010 | #define CIM_CTRL_FRC_6 (0x5 << CIM_CTRL_FRC_BIT) /* Sample 1/6 frame */ |
| 1011 | #define CIM_CTRL_FRC_7 (0x6 << CIM_CTRL_FRC_BIT) /* Sample 1/7 frame */ |
| 1012 | #define CIM_CTRL_FRC_8 (0x7 << CIM_CTRL_FRC_BIT) /* Sample 1/8 frame */ |
| 1013 | #define CIM_CTRL_FRC_9 (0x8 << CIM_CTRL_FRC_BIT) /* Sample 1/9 frame */ |
| 1014 | #define CIM_CTRL_FRC_10 (0x9 << CIM_CTRL_FRC_BIT) /* Sample 1/10 frame */ |
| 1015 | #define CIM_CTRL_FRC_11 (0xA << CIM_CTRL_FRC_BIT) /* Sample 1/11 frame */ |
| 1016 | #define CIM_CTRL_FRC_12 (0xB << CIM_CTRL_FRC_BIT) /* Sample 1/12 frame */ |
| 1017 | #define CIM_CTRL_FRC_13 (0xC << CIM_CTRL_FRC_BIT) /* Sample 1/13 frame */ |
| 1018 | #define CIM_CTRL_FRC_14 (0xD << CIM_CTRL_FRC_BIT) /* Sample 1/14 frame */ |
| 1019 | #define CIM_CTRL_FRC_15 (0xE << CIM_CTRL_FRC_BIT) /* Sample 1/15 frame */ |
| 1020 | #define CIM_CTRL_FRC_16 (0xF << CIM_CTRL_FRC_BIT) /* Sample 1/16 frame */ |
| 1021 | #define CIM_CTRL_VDDM (1 << 13) |
| 1022 | #define CIM_CTRL_DMA_SOFM (1 << 12) |
| 1023 | #define CIM_CTRL_DMA_EOFM (1 << 11) |
| 1024 | #define CIM_CTRL_DMA_STOPM (1 << 10) |
| 1025 | #define CIM_CTRL_RXF_TRIGM (1 << 9) |
| 1026 | #define CIM_CTRL_RXF_OFM (1 << 8) |
| 1027 | #define CIM_CTRL_RXF_TRIG_BIT 4 |
| 1028 | #define CIM_CTRL_RXF_TRIG_MASK (0x7 << CIM_CTRL_RXF_TRIG_BIT) |
| 1029 | #define CIM_CTRL_RXF_TRIG_4 (0 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 4 */ |
| 1030 | #define CIM_CTRL_RXF_TRIG_8 (1 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 8 */ |
| 1031 | #define CIM_CTRL_RXF_TRIG_12 (2 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 12 */ |
| 1032 | #define CIM_CTRL_RXF_TRIG_16 (3 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 16 */ |
| 1033 | #define CIM_CTRL_RXF_TRIG_20 (4 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 20 */ |
| 1034 | #define CIM_CTRL_RXF_TRIG_24 (5 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 24 */ |
| 1035 | #define CIM_CTRL_RXF_TRIG_28 (6 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 28 */ |
| 1036 | #define CIM_CTRL_RXF_TRIG_32 (7 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 32 */ |
| 1037 | #define CIM_CTRL_DMA_EN (1 << 2) |
| 1038 | #define CIM_CTRL_RXF_RST (1 << 1) |
| 1039 | #define CIM_CTRL_ENA (1 << 0) |
| 1040 | |
| 1041 | /* CIM State Register (CIM_STATE) */ |
| 1042 | |
| 1043 | #define CIM_STATE_DMA_SOF (1 << 6) |
| 1044 | #define CIM_STATE_DMA_EOF (1 << 5) |
| 1045 | #define CIM_STATE_DMA_STOP (1 << 4) |
| 1046 | #define CIM_STATE_RXF_OF (1 << 3) |
| 1047 | #define CIM_STATE_RXF_TRIG (1 << 2) |
| 1048 | #define CIM_STATE_RXF_EMPTY (1 << 1) |
| 1049 | #define CIM_STATE_VDD (1 << 0) |
| 1050 | |
| 1051 | /* CIM DMA Command Register (CIM_CMD) */ |
| 1052 | |
| 1053 | #define CIM_CMD_SOFINT (1 << 31) |
| 1054 | #define CIM_CMD_EOFINT (1 << 30) |
| 1055 | #define CIM_CMD_STOP (1 << 28) |
| 1056 | #define CIM_CMD_LEN_BIT 0 |
| 1057 | #define CIM_CMD_LEN_MASK (0xffffff << CIM_CMD_LEN_BIT) |
| 1058 | |
| 1059 | |
| 1060 | |
| 1061 | |
| 1062 | /************************************************************************* |
| 1063 | * PWM pulse width modulator: 0 is connected to lcd backlight; 1 maybe to a beeper |
| 1064 | *************************************************************************/ |
| 1065 | #define PWM_CTR(n) REG8 (PWM##n##_BASE + 0x000) |
| 1066 | #define PWM_PER(n) REG16 (PWM##n##_BASE + 0x004) |
| 1067 | #define PWM_DUT(n) REG16 (PWM##n##_BASE + 0x008) |
| 1068 | |
| 1069 | /* PWM Control Register (PWM_CTR) */ |
| 1070 | |
| 1071 | #define PWM_CTR_EN (1 << 7) |
| 1072 | #define PWM_CTR_SD (1 << 6) |
| 1073 | #define PWM_CTR_PRESCALE_BIT 0 |
| 1074 | #define PWM_CTR_PRESCALE_MASK (0x3f << PWM_CTR_PRESCALE_BIT) |
| 1075 | |
| 1076 | /* PWM Period Register (PWM_PER) */ |
| 1077 | |
| 1078 | #define PWM_PER_PERIOD_BIT 0 |
| 1079 | #define PWM_PER_PERIOD_MASK (0x3ff << PWM_PER_PERIOD_BIT) |
| 1080 | |
| 1081 | /* PWM Duty Register (PWM_DUT) */ |
| 1082 | |
| 1083 | #define PWM_DUT_FDUTY (1 << 10) |
| 1084 | #define PWM_DUT_DUTY_BIT 0 |
| 1085 | #define PWM_DUT_DUTY_MASK (0x3ff << PWM_DUT_DUTY_BIT) |
| 1086 | |
| 1087 | |
| 1088 | |
| 1089 | |
| 1090 | /************************************************************************* |
| 1091 | * EMC ? |
| 1092 | *************************************************************************/ |
| 1093 | #define EMC_BCR REG32 (EMC_BASE + 0x00) |
| 1094 | #define EMC_SMCR0 REG32 (EMC_BASE + 0x10) |
| 1095 | #define EMC_SMCR1 REG32 (EMC_BASE + 0x14) |
| 1096 | #define EMC_SMCR2 REG32 (EMC_BASE + 0x18) |
| 1097 | #define EMC_SMCR3 REG32 (EMC_BASE + 0x1c) |
| 1098 | #define EMC_SMCR4 REG32 (EMC_BASE + 0x20) |
| 1099 | #define EMC_SMCR5 REG32 (EMC_BASE + 0x24) |
| 1100 | #define EMC_SMCR6 REG32 (EMC_BASE + 0x28) |
| 1101 | #define EMC_SMCR7 REG32 (EMC_BASE + 0x2c) |
| 1102 | #define EMC_SACR0 REG32 (EMC_BASE + 0x30) |
| 1103 | #define EMC_SACR1 REG32 (EMC_BASE + 0x34) |
| 1104 | #define EMC_SACR2 REG32 (EMC_BASE + 0x38) |
| 1105 | #define EMC_SACR3 REG32 (EMC_BASE + 0x3c) |
| 1106 | #define EMC_SACR4 REG32 (EMC_BASE + 0x40) |
| 1107 | #define EMC_SACR5 REG32 (EMC_BASE + 0x44) |
| 1108 | #define EMC_SACR6 REG32 (EMC_BASE + 0x48) |
| 1109 | #define EMC_SACR7 REG32 (EMC_BASE + 0x4c) |
| 1110 | #define EMC_NFCSR REG32 (EMC_BASE + 0x50) |
| 1111 | #define EMC_NFECC REG32 (EMC_BASE + 0x54) |
| 1112 | #define EMC_PCCR1 REG32 (EMC_BASE + 0x60) |
| 1113 | #define EMC_PCCR2 REG32 (EMC_BASE + 0x64) |
| 1114 | #define EMC_PCCR3 REG32 (EMC_BASE + 0x68) |
| 1115 | #define EMC_PCCR4 REG32 (EMC_BASE + 0x6c) |
| 1116 | #define EMC_DMCR REG32 (EMC_BASE + 0x80) |
| 1117 | #define EMC_RTCSR REG32 (EMC_BASE + 0x84) |
| 1118 | #define EMC_RTCNT REG32 (EMC_BASE + 0x88) |
| 1119 | #define EMC_RTCOR REG32 (EMC_BASE + 0x8c) |
| 1120 | #define EMC_DMAR1 REG32 (EMC_BASE + 0x90) |
| 1121 | #define EMC_DMAR2 REG32 (EMC_BASE + 0x94) |
| 1122 | #define EMC_DMAR3 REG32 (EMC_BASE + 0x98) |
| 1123 | #define EMC_DMAR4 REG32 (EMC_BASE + 0x9c) |
| 1124 | |
| 1125 | #define EMC_SDMR0 REG32 (EMC_BASE + 0xa000) |
| 1126 | #define EMC_SDMR1 REG32 (EMC_BASE + 0xb000) |
| 1127 | #define EMC_SDMR2 REG32 (EMC_BASE + 0xc000) |
| 1128 | #define EMC_SDMR3 REG32 (EMC_BASE + 0xd000) |
| 1129 | |
| 1130 | |
| 1131 | #define EMC_BCR_BRE (1 << 1) |
| 1132 | |
| 1133 | #define EMC_SMCR_STRV_BIT 24 |
| 1134 | #define EMC_SMCR_STRV_MASK (0x0f << EMC_SMCR_STRV_BIT) |
| 1135 | #define EMC_SMCR_TAW_BIT 20 |
| 1136 | #define EMC_SMCR_TAW_MASK (0x0f << EMC_SMCR_TAW_BIT) |
| 1137 | #define EMC_SMCR_TBP_BIT 16 |
| 1138 | #define EMC_SMCR_TBP_MASK (0x0f << EMC_SMCR_TBP_BIT) |
| 1139 | #define EMC_SMCR_TAH_BIT 12 |
| 1140 | #define EMC_SMCR_TAH_MASK (0x07 << EMC_SMCR_TAH_BIT) |
| 1141 | #define EMC_SMCR_TAS_BIT 8 |
| 1142 | #define EMC_SMCR_TAS_MASK (0x07 << EMC_SMCR_TAS_BIT) |
| 1143 | #define EMC_SMCR_BW_BIT 6 |
| 1144 | #define EMC_SMCR_BW_MASK (0x03 << EMC_SMCR_BW_BIT) |
| 1145 | #define EMC_SMCR_BW_8BIT (0 << EMC_SMCR_BW_BIT) |
| 1146 | #define EMC_SMCR_BW_16BIT (1 << EMC_SMCR_BW_BIT) |
| 1147 | #define EMC_SMCR_BW_32BIT (2 << EMC_SMCR_BW_BIT) |
| 1148 | #define EMC_SMCR_BCM (1 << 3) |
| 1149 | #define EMC_SMCR_BL_BIT 1 |
| 1150 | #define EMC_SMCR_BL_MASK (0x03 << EMC_SMCR_BL_BIT) |
| 1151 | #define EMC_SMCR_BL_4 (0 << EMC_SMCR_BL_BIT) |
| 1152 | #define EMC_SMCR_BL_8 (1 << EMC_SMCR_BL_BIT) |
| 1153 | #define EMC_SMCR_BL_16 (2 << EMC_SMCR_BL_BIT) |
| 1154 | #define EMC_SMCR_BL_32 (3 << EMC_SMCR_BL_BIT) |
| 1155 | #define EMC_SMCR_SMT (1 << 0) |
| 1156 | |
| 1157 | #define EMC_SACR_BASE_BIT 8 |
| 1158 | #define EMC_SACR_BASE_MASK (0xff << EMC_SACR_BASE_BIT) |
| 1159 | #define EMC_SACR_MASK_BIT 0 |
| 1160 | #define EMC_SACR_MASK_MASK (0xff << EMC_SACR_MASK_BIT) |
| 1161 | |
| 1162 | #define EMC_NFCSR_RB (1 << 7) |
| 1163 | #define EMC_NFCSR_BOOT_SEL_BIT 4 |
| 1164 | #define EMC_NFCSR_BOOT_SEL_MASK (0x07 << EMC_NFCSR_BOOT_SEL_BIT) |
| 1165 | #define EMC_NFCSR_ERST (1 << 3) |
| 1166 | #define EMC_NFCSR_ECCE (1 << 2) |
| 1167 | #define EMC_NFCSR_FCE (1 << 1) |
| 1168 | #define EMC_NFCSR_NFE (1 << 0) |
| 1169 | |
| 1170 | #define EMC_NFECC_ECC2_BIT 16 |
| 1171 | #define EMC_NFECC_ECC2_MASK (0xff << EMC_NFECC_ECC2_BIT) |
| 1172 | #define EMC_NFECC_ECC1_BIT 8 |
| 1173 | #define EMC_NFECC_ECC1_MASK (0xff << EMC_NFECC_ECC1_BIT) |
| 1174 | #define EMC_NFECC_ECC0_BIT 0 |
| 1175 | #define EMC_NFECC_ECC0_MASK (0xff << EMC_NFECC_ECC0_BIT) |
| 1176 | |
| 1177 | #define EMC_DMCR_BW_BIT 31 |
| 1178 | #define EMC_DMCR_BW (1 << EMC_DMCR_BW_BIT) |
| 1179 | #define EMC_DMCR_CA_BIT 26 |
| 1180 | #define EMC_DMCR_CA_MASK (0x07 << EMC_DMCR_CA_BIT) |
| 1181 | #define EMC_DMCR_CA_8 (0 << EMC_DMCR_CA_BIT) |
| 1182 | #define EMC_DMCR_CA_9 (1 << EMC_DMCR_CA_BIT) |
| 1183 | #define EMC_DMCR_CA_10 (2 << EMC_DMCR_CA_BIT) |
| 1184 | #define EMC_DMCR_CA_11 (3 << EMC_DMCR_CA_BIT) |
| 1185 | #define EMC_DMCR_CA_12 (4 << EMC_DMCR_CA_BIT) |
| 1186 | #define EMC_DMCR_RMODE (1 << 25) |
| 1187 | #define EMC_DMCR_RFSH (1 << 24) |
| 1188 | #define EMC_DMCR_MRSET (1 << 23) |
| 1189 | #define EMC_DMCR_RA_BIT 20 |
| 1190 | #define EMC_DMCR_RA_MASK (0x03 << EMC_DMCR_RA_BIT) |
| 1191 | #define EMC_DMCR_RA_11 (0 << EMC_DMCR_RA_BIT) |
| 1192 | #define EMC_DMCR_RA_12 (1 << EMC_DMCR_RA_BIT) |
| 1193 | #define EMC_DMCR_RA_13 (2 << EMC_DMCR_RA_BIT) |
| 1194 | #define EMC_DMCR_BA_BIT 19 |
| 1195 | #define EMC_DMCR_BA (1 << EMC_DMCR_BA_BIT) |
| 1196 | #define EMC_DMCR_PDM (1 << 18) |
| 1197 | #define EMC_DMCR_EPIN (1 << 17) |
| 1198 | #define EMC_DMCR_TRAS_BIT 13 |
| 1199 | #define EMC_DMCR_TRAS_MASK (0x07 << EMC_DMCR_TRAS_BIT) |
| 1200 | #define EMC_DMCR_RCD_BIT 11 |
| 1201 | #define EMC_DMCR_RCD_MASK (0x03 << EMC_DMCR_RCD_BIT) |
| 1202 | #define EMC_DMCR_TPC_BIT 8 |
| 1203 | #define EMC_DMCR_TPC_MASK (0x07 << EMC_DMCR_TPC_BIT) |
| 1204 | #define EMC_DMCR_TRWL_BIT 5 |
| 1205 | #define EMC_DMCR_TRWL_MASK (0x03 << EMC_DMCR_TRWL_BIT) |
| 1206 | #define EMC_DMCR_TRC_BIT 2 |
| 1207 | #define EMC_DMCR_TRC_MASK (0x07 << EMC_DMCR_TRC_BIT) |
| 1208 | #define EMC_DMCR_TCL_BIT 0 |
| 1209 | #define EMC_DMCR_TCL_MASK (0x03 << EMC_DMCR_TCL_BIT) |
| 1210 | |
| 1211 | #define EMC_RTCSR_CMF (1 << 7) |
| 1212 | #define EMC_RTCSR_CKS_BIT 0 |
| 1213 | #define EMC_RTCSR_CKS_MASK (0x07 << EMC_RTCSR_CKS_BIT) |
| 1214 | #define EMC_RTCSR_CKS_DISABLE (0 << EMC_RTCSR_CKS_BIT) |
| 1215 | #define EMC_RTCSR_CKS_4 (1 << EMC_RTCSR_CKS_BIT) |
| 1216 | #define EMC_RTCSR_CKS_16 (2 << EMC_RTCSR_CKS_BIT) |
| 1217 | #define EMC_RTCSR_CKS_64 (3 << EMC_RTCSR_CKS_BIT) |
| 1218 | #define EMC_RTCSR_CKS_256 (4 << EMC_RTCSR_CKS_BIT) |
| 1219 | #define EMC_RTCSR_CKS_1024 (5 << EMC_RTCSR_CKS_BIT) |
| 1220 | #define EMC_RTCSR_CKS_2048 (6 << EMC_RTCSR_CKS_BIT) |
| 1221 | #define EMC_RTCSR_CKS_4096 (7 << EMC_RTCSR_CKS_BIT) |
| 1222 | |
| 1223 | #define EMC_DMAR_BASE_BIT 8 |
| 1224 | #define EMC_DMAR_BASE_MASK (0xff << EMC_DMAR_BASE_BIT) |
| 1225 | #define EMC_DMAR_MASK_BIT 0 |
| 1226 | #define EMC_DMAR_MASK_MASK (0xff << EMC_DMAR_MASK_BIT) |
| 1227 | |
| 1228 | #define EMC_SDMR_BM (1 << 9) |
| 1229 | #define EMC_SDMR_OM_BIT 7 |
| 1230 | #define EMC_SDMR_OM_MASK (3 << EMC_SDMR_OM_BIT) |
| 1231 | #define EMC_SDMR_OM_NORMAL (0 << EMC_SDMR_OM_BIT) |
| 1232 | #define EMC_SDMR_CAS_BIT 4 |
| 1233 | #define EMC_SDMR_CAS_MASK (7 << EMC_SDMR_CAS_BIT) |
| 1234 | #define EMC_SDMR_CAS_1 (1 << EMC_SDMR_CAS_BIT) |
| 1235 | #define EMC_SDMR_CAS_2 (2 << EMC_SDMR_CAS_BIT) |
| 1236 | #define EMC_SDMR_CAS_3 (3 << EMC_SDMR_CAS_BIT) |
| 1237 | #define EMC_SDMR_BT_BIT 3 |
| 1238 | #define EMC_SDMR_BT_MASK (1 << EMC_SDMR_BT_BIT) |
| 1239 | #define EMC_SDMR_BT_SEQ (0 << EMC_SDMR_BT_BIT) |
| 1240 | #define EMC_SDMR_BT_INTR (1 << EMC_SDMR_BT_BIT) |
| 1241 | #define EMC_SDMR_BL_BIT 0 |
| 1242 | #define EMC_SDMR_BL_MASK (7 << EMC_SDMR_BL_BIT) |
| 1243 | #define EMC_SDMR_BL_1 (0 << EMC_SDMR_BL_BIT) |
| 1244 | #define EMC_SDMR_BL_2 (1 << EMC_SDMR_BL_BIT) |
| 1245 | #define EMC_SDMR_BL_4 (2 << EMC_SDMR_BL_BIT) |
| 1246 | #define EMC_SDMR_BL_8 (3 << EMC_SDMR_BL_BIT) |
| 1247 | |
| 1248 | #define EMC_SDMR_CAS2_16BIT (EMC_SDMR_CAS_2 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_2) |
| 1249 | #define EMC_SDMR_CAS2_32BIT (EMC_SDMR_CAS_2 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_4) |
| 1250 | #define EMC_SDMR_CAS3_16BIT (EMC_SDMR_CAS_3 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_2) |
| 1251 | #define EMC_SDMR_CAS3_32BIT (EMC_SDMR_CAS_3 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_4) |
| 1252 | |
| 1253 | #define EMC_PCCR12_AMW (1 << 31) |
| 1254 | #define EMC_PCCR12_AMAS_BIT 28 |
| 1255 | #define EMC_PCCR12_AMAS_MASK (0x07 << EMC_PCCR12_AMAS_BIT) |
| 1256 | #define EMC_PCCR12_AMAH_BIT 24 |
| 1257 | #define EMC_PCCR12_AMAH_MASK (0x07 << EMC_PCCR12_AMAH_BIT) |
| 1258 | #define EMC_PCCR12_AMPW_BIT 20 |
| 1259 | #define EMC_PCCR12_AMPW_MASK (0x0f << EMC_PCCR12_AMPW_BIT) |
| 1260 | #define EMC_PCCR12_AMRT_BIT 16 |
| 1261 | #define EMC_PCCR12_AMRT_MASK (0x0f << EMC_PCCR12_AMRT_BIT) |
| 1262 | #define EMC_PCCR12_CMW (1 << 15) |
| 1263 | #define EMC_PCCR12_CMAS_BIT 12 |
| 1264 | #define EMC_PCCR12_CMAS_MASK (0x07 << EMC_PCCR12_CMAS_BIT) |
| 1265 | #define EMC_PCCR12_CMAH_BIT 8 |
| 1266 | #define EMC_PCCR12_CMAH_MASK (0x07 << EMC_PCCR12_CMAH_BIT) |
| 1267 | #define EMC_PCCR12_CMPW_BIT 4 |
| 1268 | #define EMC_PCCR12_CMPW_MASK (0x0f << EMC_PCCR12_CMPW_BIT) |
| 1269 | #define EMC_PCCR12_CMRT_BIT 0 |
| 1270 | #define EMC_PCCR12_CMRT_MASK (0x07 << EMC_PCCR12_CMRT_BIT) |
| 1271 | |
| 1272 | #define EMC_PCCR34_DRS_BIT 16 |
| 1273 | #define EMC_PCCR34_DRS_MASK (0x03 << EMC_PCCR34_DRS_BIT) |
| 1274 | #define EMC_PCCR34_DRS_SPKR (1 << EMC_PCCR34_DRS_BIT) |
| 1275 | #define EMC_PCCR34_DRS_IOIS16 (2 << EMC_PCCR34_DRS_BIT) |
| 1276 | #define EMC_PCCR34_DRS_INPACK (3 << EMC_PCCR34_DRS_BIT) |
| 1277 | #define EMC_PCCR34_IOIS16 (1 << 15) |
| 1278 | #define EMC_PCCR34_IOW (1 << 14) |
| 1279 | #define EMC_PCCR34_TCB_BIT 12 |
| 1280 | #define EMC_PCCR34_TCB_MASK (0x03 << EMC_PCCR34_TCB_BIT) |
| 1281 | #define EMC_PCCR34_IORT_BIT 8 |
| 1282 | #define EMC_PCCR34_IORT_MASK (0x07 << EMC_PCCR34_IORT_BIT) |
| 1283 | #define EMC_PCCR34_IOAE_BIT 6 |
| 1284 | #define EMC_PCCR34_IOAE_MASK (0x03 << EMC_PCCR34_IOAE_BIT) |
| 1285 | #define EMC_PCCR34_IOAE_NONE (0 << EMC_PCCR34_IOAE_BIT) |
| 1286 | #define EMC_PCCR34_IOAE_1 (1 << EMC_PCCR34_IOAE_BIT) |
| 1287 | #define EMC_PCCR34_IOAE_2 (2 << EMC_PCCR34_IOAE_BIT) |
| 1288 | #define EMC_PCCR34_IOAE_5 (3 << EMC_PCCR34_IOAE_BIT) |
| 1289 | #define EMC_PCCR34_IOAH_BIT 4 |
| 1290 | #define EMC_PCCR34_IOAH_MASK (0x03 << EMC_PCCR34_IOAH_BIT) |
| 1291 | #define EMC_PCCR34_IOAH_NONE (0 << EMC_PCCR34_IOAH_BIT) |
| 1292 | #define EMC_PCCR34_IOAH_1 (1 << EMC_PCCR34_IOAH_BIT) |
| 1293 | #define EMC_PCCR34_IOAH_2 (2 << EMC_PCCR34_IOAH_BIT) |
| 1294 | #define EMC_PCCR34_IOAH_5 (3 << EMC_PCCR34_IOAH_BIT) |
| 1295 | #define EMC_PCCR34_IOPW_BIT 0 |
| 1296 | #define EMC_PCCR34_IOPW_MASK (0x0f << EMC_PCCR34_IOPW_BIT) |
| 1297 | |
| 1298 | |
| 1299 | |
| 1300 | |
| 1301 | /************************************************************************* |
| 1302 | * GPIO general purpose input/output |
| 1303 | *************************************************************************/ |
| 1304 | #define GPIO_GPDR(n) REG32 (GPIO_BASE + (0x00 + (n)*0x30)) |
| 1305 | #define GPIO_GPDIR(n) REG32 (GPIO_BASE + (0x04 + (n)*0x30)) |
| 1306 | #define GPIO_GPODR(n) REG32 (GPIO_BASE + (0x08 + (n)*0x30)) |
| 1307 | #define GPIO_GPPUR(n) REG32 (GPIO_BASE + (0x0c + (n)*0x30)) |
| 1308 | #define GPIO_GPALR(n) REG32 (GPIO_BASE + (0x10 + (n)*0x30)) |
| 1309 | #define GPIO_GPAUR(n) REG32 (GPIO_BASE + (0x14 + (n)*0x30)) |
| 1310 | #define GPIO_GPIDLR(n) REG32 (GPIO_BASE + (0x18 + (n)*0x30)) |
| 1311 | #define GPIO_GPIDUR(n) REG32 (GPIO_BASE + (0x1c + (n)*0x30)) |
| 1312 | #define GPIO_GPIER(n) REG32 (GPIO_BASE + (0x20 + (n)*0x30)) |
| 1313 | #define GPIO_GPIMR(n) REG32 (GPIO_BASE + (0x24 + (n)*0x30)) |
| 1314 | #define GPIO_GPFR(n) REG32 (GPIO_BASE + (0x28 + (n)*0x30)) |
| 1315 | |
| 1316 | #define GPIO_IRQ_LOLEVEL 0 |
| 1317 | #define GPIO_IRQ_HILEVEL 1 |
| 1318 | #define GPIO_IRQ_FALLEDG 2 |
| 1319 | #define GPIO_IRQ_RAISEDG 3 |
| 1320 | |
| 1321 | #define IRQ_GPIO_0 48 |
| 1322 | #define NUM_GPIO 128 |
| 1323 | |
| 1324 | |
| 1325 | /************************************************************************* |
| 1326 | * HARB ? |
| 1327 | *************************************************************************/ |
| 1328 | #define HARB_HAPOR REG32 (HARB_BASE + 0x000) |
| 1329 | #define HARB_HMCTR REG32 (HARB_BASE + 0x010) |
| 1330 | #define HARB_HME8H REG32 (HARB_BASE + 0x014) |
| 1331 | #define HARB_HMCR1 REG32 (HARB_BASE + 0x018) |
| 1332 | #define HARB_HMER2 REG32 (HARB_BASE + 0x01C) |
| 1333 | #define HARB_HMER3 REG32 (HARB_BASE + 0x020) |
| 1334 | #define HARB_HMLTR REG32 (HARB_BASE + 0x024) |
| 1335 | |
| 1336 | /* HARB Priority Order Register (HARB_HAPOR) */ |
| 1337 | |
| 1338 | #define HARB_HAPOR_UCHSEL (1 << 7) |
| 1339 | #define HARB_HAPOR_PRIO_BIT 0 |
| 1340 | #define HARB_HAPOR_PRIO_MASK (0xf << HARB_HAPOR_PRIO_BIT) |
| 1341 | |
| 1342 | /* AHB Monitor Control Register (HARB_HMCTR) */ |
| 1343 | |
| 1344 | #define HARB_HMCTR_HET3_BIT 20 |
| 1345 | #define HARB_HMCTR_HET3_MASK (0xf << HARB_HMCTR_HET3_BIT) |
| 1346 | #define HARB_HMCTR_HMS3_BIT 16 |
| 1347 | #define HARB_HMCTR_HMS3_MASK (0xf << HARB_HMCTR_HMS3_BIT) |
| 1348 | #define HARB_HMCTR_HET2_BIT 12 |
| 1349 | #define HARB_HMCTR_HET2_MASK (0xf << HARB_HMCTR_HET2_BIT) |
| 1350 | #define HARB_HMCTR_HMS2_BIT 8 |
| 1351 | #define HARB_HMCTR_HMS2_MASK (0xf << HARB_HMCTR_HMS2_BIT) |
| 1352 | #define HARB_HMCTR_HOVF3 (1 << 7) |
| 1353 | #define HARB_HMCTR_HOVF2 (1 << 6) |
| 1354 | #define HARB_HMCTR_HOVF1 (1 << 5) |
| 1355 | #define HARB_HMCTR_HRST (1 << 4) |
| 1356 | #define HARB_HMCTR_HEE3 (1 << 2) |
| 1357 | #define HARB_HMCTR_HEE2 (1 << 1) |
| 1358 | #define HARB_HMCTR_HEE1 (1 << 0) |
| 1359 | |
| 1360 | /* AHB Monitor Event 8bits High Register (HARB_HME8H) */ |
| 1361 | |
| 1362 | #define HARB_HME8H_HC8H1_BIT 16 |
| 1363 | #define HARB_HME8H_HC8H1_MASK (0xff << HARB_HME8H_HC8H1_BIT) |
| 1364 | #define HARB_HME8H_HC8H2_BIT 8 |
| 1365 | #define HARB_HME8H_HC8H2_MASK (0xff << HARB_HME8H_HC8H2_BIT) |
| 1366 | #define HARB_HME8H_HC8H3_BIT 0 |
| 1367 | #define HARB_HME8H_HC8H3_MASK (0xff << HARB_HME8H_HC8H3_BIT) |
| 1368 | |
| 1369 | /* AHB Monitor Latency Register (HARB_HMLTR) */ |
| 1370 | |
| 1371 | #define HARB_HMLTR_HLT2_BIT 16 |
| 1372 | #define HARB_HMLTR_HLT2_MASK (0xffff << HARB_HMLTR_HLT2_BIT) |
| 1373 | #define HARB_HMLTR_HLT3_BIT 0 |
| 1374 | #define HARB_HMLTR_HLT3_MASK (0xffff << HARB_HMLTR_HLT3_BIT) |
| 1375 | |
| 1376 | |
| 1377 | |
| 1378 | |
| 1379 | /************************************************************************* |
| 1380 | * I2C inter-IC |
| 1381 | *************************************************************************/ |
| 1382 | #define I2C_DR REG8 (I2C_BASE + 0x000) |
| 1383 | #define I2C_CR REG8 (I2C_BASE + 0x004) |
| 1384 | #define I2C_SR REG8 (I2C_BASE + 0x008) |
| 1385 | #define I2C_GR REG16 (I2C_BASE + 0x00C) |
| 1386 | |
| 1387 | /* I2C Control Register (I2C_CR) */ |
| 1388 | |
| 1389 | #define I2C_CR_IEN (1 << 4) |
| 1390 | #define I2C_CR_STA (1 << 3) |
| 1391 | #define I2C_CR_STO (1 << 2) |
| 1392 | #define I2C_CR_AC (1 << 1) |
| 1393 | #define I2C_CR_I2CE (1 << 0) |
| 1394 | |
| 1395 | /* I2C Status Register (I2C_SR) */ |
| 1396 | |
| 1397 | #define I2C_SR_STX (1 << 4) |
| 1398 | #define I2C_SR_BUSY (1 << 3) |
| 1399 | #define I2C_SR_TEND (1 << 2) |
| 1400 | #define I2C_SR_DRF (1 << 1) |
| 1401 | #define I2C_SR_ACKF (1 << 0) |
| 1402 | |
| 1403 | #define I2C_WRITE 0 |
| 1404 | #define I2C_READ 1 |
| 1405 | |
| 1406 | /* I2C devices */ |
| 1407 | #define I2C_DEV_MCU 0x48 |
| 1408 | /* I2C device registers */ |
| 1409 | #define I2C_MCU_SHUTDOWN 0xd8 |
| 1410 | #define I2C_MCU_BAT_STATUS 0xdb |
| 1411 | #define I2C_MCU_BAT_CHARGE 0xd9 |
| 1412 | |
| 1413 | /************************************************************************* |
| 1414 | * UDC usb device controller (unused in trendtac) |
| 1415 | *************************************************************************/ |
| 1416 | #define UDC_EP0InCR REG32 (UDC_BASE + 0x00) |
| 1417 | #define UDC_EP0InSR REG32 (UDC_BASE + 0x04) |
| 1418 | #define UDC_EP0InBSR REG32 (UDC_BASE + 0x08) |
| 1419 | #define UDC_EP0InMPSR REG32 (UDC_BASE + 0x0c) |
| 1420 | #define UDC_EP0InDesR REG32 (UDC_BASE + 0x14) |
| 1421 | #define UDC_EP1InCR REG32 (UDC_BASE + 0x20) |
| 1422 | #define UDC_EP1InSR REG32 (UDC_BASE + 0x24) |
| 1423 | #define UDC_EP1InBSR REG32 (UDC_BASE + 0x28) |
| 1424 | #define UDC_EP1InMPSR REG32 (UDC_BASE + 0x2c) |
| 1425 | #define UDC_EP1InDesR REG32 (UDC_BASE + 0x34) |
| 1426 | #define UDC_EP2InCR REG32 (UDC_BASE + 0x40) |
| 1427 | #define UDC_EP2InSR REG32 (UDC_BASE + 0x44) |
| 1428 | #define UDC_EP2InBSR REG32 (UDC_BASE + 0x48) |
| 1429 | #define UDC_EP2InMPSR REG32 (UDC_BASE + 0x4c) |
| 1430 | #define UDC_EP2InDesR REG32 (UDC_BASE + 0x54) |
| 1431 | #define UDC_EP3InCR REG32 (UDC_BASE + 0x60) |
| 1432 | #define UDC_EP3InSR REG32 (UDC_BASE + 0x64) |
| 1433 | #define UDC_EP3InBSR REG32 (UDC_BASE + 0x68) |
| 1434 | #define UDC_EP3InMPSR REG32 (UDC_BASE + 0x6c) |
| 1435 | #define UDC_EP3InDesR REG32 (UDC_BASE + 0x74) |
| 1436 | #define UDC_EP4InCR REG32 (UDC_BASE + 0x80) |
| 1437 | #define UDC_EP4InSR REG32 (UDC_BASE + 0x84) |
| 1438 | #define UDC_EP4InBSR REG32 (UDC_BASE + 0x88) |
| 1439 | #define UDC_EP4InMPSR REG32 (UDC_BASE + 0x8c) |
| 1440 | #define UDC_EP4InDesR REG32 (UDC_BASE + 0x94) |
| 1441 | |
| 1442 | #define UDC_EP0OutCR REG32 (UDC_BASE + 0x200) |
| 1443 | #define UDC_EP0OutSR REG32 (UDC_BASE + 0x204) |
| 1444 | #define UDC_EP0OutPFNR REG32 (UDC_BASE + 0x208) |
| 1445 | #define UDC_EP0OutMPSR REG32 (UDC_BASE + 0x20c) |
| 1446 | #define UDC_EP0OutSBPR REG32 (UDC_BASE + 0x210) |
| 1447 | #define UDC_EP0OutDesR REG32 (UDC_BASE + 0x214) |
| 1448 | #define UDC_EP5OutCR REG32 (UDC_BASE + 0x2a0) |
| 1449 | #define UDC_EP5OutSR REG32 (UDC_BASE + 0x2a4) |
| 1450 | #define UDC_EP5OutPFNR REG32 (UDC_BASE + 0x2a8) |
| 1451 | #define UDC_EP5OutMPSR REG32 (UDC_BASE + 0x2ac) |
| 1452 | #define UDC_EP5OutDesR REG32 (UDC_BASE + 0x2b4) |
| 1453 | #define UDC_EP6OutCR REG32 (UDC_BASE + 0x2c0) |
| 1454 | #define UDC_EP6OutSR REG32 (UDC_BASE + 0x2c4) |
| 1455 | #define UDC_EP6OutPFNR REG32 (UDC_BASE + 0x2c8) |
| 1456 | #define UDC_EP6OutMPSR REG32 (UDC_BASE + 0x2cc) |
| 1457 | #define UDC_EP6OutDesR REG32 (UDC_BASE + 0x2d4) |
| 1458 | #define UDC_EP7OutCR REG32 (UDC_BASE + 0x2e0) |
| 1459 | #define UDC_EP7OutSR REG32 (UDC_BASE + 0x2e4) |
| 1460 | #define UDC_EP7OutPFNR REG32 (UDC_BASE + 0x2e8) |
| 1461 | #define UDC_EP7OutMPSR REG32 (UDC_BASE + 0x2ec) |
| 1462 | #define UDC_EP7OutDesR REG32 (UDC_BASE + 0x2f4) |
| 1463 | |
| 1464 | #define UDC_DevCFGR REG32 (UDC_BASE + 0x400) |
| 1465 | #define UDC_DevCR REG32 (UDC_BASE + 0x404) |
| 1466 | #define UDC_DevSR REG32 (UDC_BASE + 0x408) |
| 1467 | #define UDC_DevIntR REG32 (UDC_BASE + 0x40c) |
| 1468 | #define UDC_DevIntMR REG32 (UDC_BASE + 0x410) |
| 1469 | #define UDC_EPIntR REG32 (UDC_BASE + 0x414) |
| 1470 | #define UDC_EPIntMR REG32 (UDC_BASE + 0x418) |
| 1471 | |
| 1472 | #define UDC_STCMAR REG32 (UDC_BASE + 0x500) |
| 1473 | #define UDC_EP0InfR REG32 (UDC_BASE + 0x504) |
| 1474 | #define UDC_EP1InfR REG32 (UDC_BASE + 0x508) |
| 1475 | #define UDC_EP2InfR REG32 (UDC_BASE + 0x50c) |
| 1476 | #define UDC_EP3InfR REG32 (UDC_BASE + 0x510) |
| 1477 | #define UDC_EP4InfR REG32 (UDC_BASE + 0x514) |
| 1478 | #define UDC_EP5InfR REG32 (UDC_BASE + 0x518) |
| 1479 | #define UDC_EP6InfR REG32 (UDC_BASE + 0x51c) |
| 1480 | #define UDC_EP7InfR REG32 (UDC_BASE + 0x520) |
| 1481 | |
| 1482 | #define UDC_TXCONFIRM REG32 (UDC_BASE + 0x41C) |
| 1483 | #define UDC_TXZLP REG32 (UDC_BASE + 0x420) |
| 1484 | #define UDC_RXCONFIRM REG32 (UDC_BASE + 0x41C) |
| 1485 | |
| 1486 | #define UDC_RXFIFO REG32 (UDC_BASE + 0x800) |
| 1487 | #define UDC_TXFIFOEP0 REG32 (UDC_BASE + 0x840) |
| 1488 | |
| 1489 | #define UDC_DevCFGR_PI (1 << 5) |
| 1490 | #define UDC_DevCFGR_SS (1 << 4) |
| 1491 | #define UDC_DevCFGR_SP (1 << 3) |
| 1492 | #define UDC_DevCFGR_RW (1 << 2) |
| 1493 | #define UDC_DevCFGR_SPD_BIT 0 |
| 1494 | #define UDC_DevCFGR_SPD_MASK (0x03 << UDC_DevCFGR_SPD_BIT) |
| 1495 | #define UDC_DevCFGR_SPD_HS (0 << UDC_DevCFGR_SPD_BIT) |
| 1496 | #define UDC_DevCFGR_SPD_LS (2 << UDC_DevCFGR_SPD_BIT) |
| 1497 | #define UDC_DevCFGR_SPD_FS (3 << UDC_DevCFGR_SPD_BIT) |
| 1498 | |
| 1499 | #define UDC_DevCR_DM (1 << 9) |
| 1500 | #define UDC_DevCR_BE (1 << 5) |
| 1501 | #define UDC_DevCR_RES (1 << 0) |
| 1502 | |
| 1503 | #define UDC_DevSR_ENUMSPD_BIT 13 |
| 1504 | #define UDC_DevSR_ENUMSPD_MASK (0x03 << UDC_DevSR_ENUMSPD_BIT) |
| 1505 | #define UDC_DevSR_ENUMSPD_HS (0 << UDC_DevSR_ENUMSPD_BIT) |
| 1506 | #define UDC_DevSR_ENUMSPD_LS (2 << UDC_DevSR_ENUMSPD_BIT) |
| 1507 | #define UDC_DevSR_ENUMSPD_FS (3 << UDC_DevSR_ENUMSPD_BIT) |
| 1508 | #define UDC_DevSR_SUSP (1 << 12) |
| 1509 | #define UDC_DevSR_ALT_BIT 8 |
| 1510 | #define UDC_DevSR_ALT_MASK (0x0f << UDC_DevSR_ALT_BIT) |
| 1511 | #define UDC_DevSR_INTF_BIT 4 |
| 1512 | #define UDC_DevSR_INTF_MASK (0x0f << UDC_DevSR_INTF_BIT) |
| 1513 | #define UDC_DevSR_CFG_BIT 0 |
| 1514 | #define UDC_DevSR_CFG_MASK (0x0f << UDC_DevSR_CFG_BIT) |
| 1515 | |
| 1516 | #define UDC_DevIntR_ENUM (1 << 6) |
| 1517 | #define UDC_DevIntR_SOF (1 << 5) |
| 1518 | #define UDC_DevIntR_US (1 << 4) |
| 1519 | #define UDC_DevIntR_UR (1 << 3) |
| 1520 | #define UDC_DevIntR_SI (1 << 1) |
| 1521 | #define UDC_DevIntR_SC (1 << 0) |
| 1522 | |
| 1523 | #define UDC_EPIntR_OUTEP_BIT 16 |
| 1524 | #define UDC_EPIntR_OUTEP_MASK (0xffff << UDC_EPIntR_OUTEP_BIT) |
| 1525 | #define UDC_EPIntR_OUTEP0 0x00010000 |
| 1526 | #define UDC_EPIntR_OUTEP5 0x00200000 |
| 1527 | #define UDC_EPIntR_OUTEP6 0x00400000 |
| 1528 | #define UDC_EPIntR_OUTEP7 0x00800000 |
| 1529 | #define UDC_EPIntR_INEP_BIT 0 |
| 1530 | #define UDC_EPIntR_INEP_MASK (0xffff << UDC_EPIntR_INEP_BIT) |
| 1531 | #define UDC_EPIntR_INEP0 0x00000001 |
| 1532 | #define UDC_EPIntR_INEP1 0x00000002 |
| 1533 | #define UDC_EPIntR_INEP2 0x00000004 |
| 1534 | #define UDC_EPIntR_INEP3 0x00000008 |
| 1535 | #define UDC_EPIntR_INEP4 0x00000010 |
| 1536 | |
| 1537 | |
| 1538 | #define UDC_EPIntMR_OUTEP_BIT 16 |
| 1539 | #define UDC_EPIntMR_OUTEP_MASK (0xffff << UDC_EPIntMR_OUTEP_BIT) |
| 1540 | #define UDC_EPIntMR_INEP_BIT 0 |
| 1541 | #define UDC_EPIntMR_INEP_MASK (0xffff << UDC_EPIntMR_INEP_BIT) |
| 1542 | |
| 1543 | #define UDC_EPCR_ET_BIT 4 |
| 1544 | #define UDC_EPCR_ET_MASK (0x03 << UDC_EPCR_ET_BIT) |
| 1545 | #define UDC_EPCR_ET_CTRL (0 << UDC_EPCR_ET_BIT) |
| 1546 | #define UDC_EPCR_ET_ISO (1 << UDC_EPCR_ET_BIT) |
| 1547 | #define UDC_EPCR_ET_BULK (2 << UDC_EPCR_ET_BIT) |
| 1548 | #define UDC_EPCR_ET_INTR (3 << UDC_EPCR_ET_BIT) |
| 1549 | #define UDC_EPCR_SN (1 << 2) |
| 1550 | #define UDC_EPCR_F (1 << 1) |
| 1551 | #define UDC_EPCR_S (1 << 0) |
| 1552 | |
| 1553 | #define UDC_EPSR_RXPKTSIZE_BIT 11 |
| 1554 | #define UDC_EPSR_RXPKTSIZE_MASK (0x7ff << UDC_EPSR_RXPKTSIZE_BIT) |
| 1555 | #define UDC_EPSR_IN (1 << 6) |
| 1556 | #define UDC_EPSR_OUT_BIT 4 |
| 1557 | #define UDC_EPSR_OUT_MASK (0x03 << UDC_EPSR_OUT_BIT) |
| 1558 | #define UDC_EPSR_OUT_NONE (0 << UDC_EPSR_OUT_BIT) |
| 1559 | #define UDC_EPSR_OUT_RCVDATA (1 << UDC_EPSR_OUT_BIT) |
| 1560 | #define UDC_EPSR_OUT_RCVSETUP (2 << UDC_EPSR_OUT_BIT) |
| 1561 | #define UDC_EPSR_PID_BIT 0 |
| 1562 | #define UDC_EPSR_PID_MASK (0x0f << UDC_EPSR_PID_BIT) |
| 1563 | |
| 1564 | #define UDC_EPInfR_MPS_BIT 19 |
| 1565 | #define UDC_EPInfR_MPS_MASK (0x3ff << UDC_EPInfR_MPS_BIT) |
| 1566 | #define UDC_EPInfR_ALTS_BIT 15 |
| 1567 | #define UDC_EPInfR_ALTS_MASK (0x0f << UDC_EPInfR_ALTS_BIT) |
| 1568 | #define UDC_EPInfR_IFN_BIT 11 |
| 1569 | #define UDC_EPInfR_IFN_MASK (0x0f << UDC_EPInfR_IFN_BIT) |
| 1570 | #define UDC_EPInfR_CGN_BIT 7 |
| 1571 | #define UDC_EPInfR_CGN_MASK (0x0f << UDC_EPInfR_CGN_BIT) |
| 1572 | #define UDC_EPInfR_EPT_BIT 5 |
| 1573 | #define UDC_EPInfR_EPT_MASK (0x03 << UDC_EPInfR_EPT_BIT) |
| 1574 | #define UDC_EPInfR_EPT_CTRL (0 << UDC_EPInfR_EPT_BIT) |
| 1575 | #define UDC_EPInfR_EPT_ISO (1 << UDC_EPInfR_EPT_BIT) |
| 1576 | #define UDC_EPInfR_EPT_BULK (2 << UDC_EPInfR_EPT_BIT) |
| 1577 | #define UDC_EPInfR_EPT_INTR (3 << UDC_EPInfR_EPT_BIT) |
| 1578 | #define UDC_EPInfR_EPD (1 << 4) |
| 1579 | #define UDC_EPInfR_EPD_OUT (0 << 4) |
| 1580 | #define UDC_EPInfR_EPD_IN (1 << 4) |
| 1581 | |
| 1582 | #define UDC_EPInfR_EPN_BIT 0 |
| 1583 | #define UDC_EPInfR_EPN_MASK (0xf << UDC_EPInfR_EPN_BIT) |
| 1584 | |
| 1585 | |
| 1586 | |
| 1587 | |
| 1588 | /************************************************************************* |
| 1589 | * DMAC dma controller |
| 1590 | *************************************************************************/ |
| 1591 | #define DMAC_DSAR(n) REG32 (DMAC_BASE + (0x00 + (n) * 0x20)) |
| 1592 | #define DMAC_DDAR(n) REG32 (DMAC_BASE + (0x04 + (n) * 0x20)) |
| 1593 | #define DMAC_DTCR(n) REG32 (DMAC_BASE + (0x08 + (n) * 0x20)) |
| 1594 | #define DMAC_DRSR(n) REG32 (DMAC_BASE + (0x0c + (n) * 0x20)) |
| 1595 | #define DMAC_DCCSR(n) REG32 (DMAC_BASE + (0x10 + (n) * 0x20)) |
| 1596 | #define DMAC_DMAIPR REG32 (DMAC_BASE + 0xf8) |
| 1597 | #define DMAC_DMACR REG32 (DMAC_BASE + 0xfc) |
| 1598 | |
| 1599 | #define DMAC_DRSR_RS_BIT 0 |
| 1600 | #define DMAC_DRSR_RS_MASK (0x1f << DMAC_DRSR_RS_BIT) |
| 1601 | #define DMAC_DRSR_RS_EXTREXTR (0 << DMAC_DRSR_RS_BIT) |
| 1602 | #define DMAC_DRSR_RS_PCMCIAOUT (4 << DMAC_DRSR_RS_BIT) |
| 1603 | #define DMAC_DRSR_RS_PCMCIAIN (5 << DMAC_DRSR_RS_BIT) |
| 1604 | #define DMAC_DRSR_RS_AUTO (8 << DMAC_DRSR_RS_BIT) |
| 1605 | #define DMAC_DRSR_RS_DESOUT (10 << DMAC_DRSR_RS_BIT) |
| 1606 | #define DMAC_DRSR_RS_DESIN (11 << DMAC_DRSR_RS_BIT) |
| 1607 | #define DMAC_DRSR_RS_UART3OUT (14 << DMAC_DRSR_RS_BIT) |
| 1608 | #define DMAC_DRSR_RS_UART3IN (15 << DMAC_DRSR_RS_BIT) |
| 1609 | #define DMAC_DRSR_RS_UART2OUT (16 << DMAC_DRSR_RS_BIT) |
| 1610 | #define DMAC_DRSR_RS_UART2IN (17 << DMAC_DRSR_RS_BIT) |
| 1611 | #define DMAC_DRSR_RS_UART1OUT (18 << DMAC_DRSR_RS_BIT) |
| 1612 | #define DMAC_DRSR_RS_UART1IN (19 << DMAC_DRSR_RS_BIT) |
| 1613 | #define DMAC_DRSR_RS_UART0OUT (20 << DMAC_DRSR_RS_BIT) |
| 1614 | #define DMAC_DRSR_RS_UART0IN (21 << DMAC_DRSR_RS_BIT) |
| 1615 | #define DMAC_DRSR_RS_SSIOUT (22 << DMAC_DRSR_RS_BIT) |
| 1616 | #define DMAC_DRSR_RS_SSIIN (23 << DMAC_DRSR_RS_BIT) |
| 1617 | #define DMAC_DRSR_RS_AICOUT (24 << DMAC_DRSR_RS_BIT) |
| 1618 | #define DMAC_DRSR_RS_AICIN (25 << DMAC_DRSR_RS_BIT) |
| 1619 | #define DMAC_DRSR_RS_MSCOUT (26 << DMAC_DRSR_RS_BIT) |
| 1620 | #define DMAC_DRSR_RS_MSCIN (27 << DMAC_DRSR_RS_BIT) |
| 1621 | #define DMAC_DRSR_RS_OST2 (28 << DMAC_DRSR_RS_BIT) |
| 1622 | |
| 1623 | #define DMAC_DCCSR_EACKS (1 << 31) |
| 1624 | #define DMAC_DCCSR_EACKM (1 << 30) |
| 1625 | #define DMAC_DCCSR_ERDM_BIT 28 |
| 1626 | #define DMAC_DCCSR_ERDM_MASK (0x03 << DMAC_DCCSR_ERDM_BIT) |
| 1627 | #define DMAC_DCCSR_ERDM_LLEVEL (0 << DMAC_DCCSR_ERDM_BIT) |
| 1628 | #define DMAC_DCCSR_ERDM_FEDGE (1 << DMAC_DCCSR_ERDM_BIT) |
| 1629 | #define DMAC_DCCSR_ERDM_HLEVEL (2 << DMAC_DCCSR_ERDM_BIT) |
| 1630 | #define DMAC_DCCSR_ERDM_REDGE (3 << DMAC_DCCSR_ERDM_BIT) |
| 1631 | #define DMAC_DCCSR_EOPM (1 << 27) |
| 1632 | #define DMAC_DCCSR_SAM (1 << 23) |
| 1633 | #define DMAC_DCCSR_DAM (1 << 22) |
| 1634 | #define DMAC_DCCSR_RDIL_BIT 16 |
| 1635 | #define DMAC_DCCSR_RDIL_MASK (0x0f << DMAC_DCCSR_RDIL_BIT) |
| 1636 | #define DMAC_DCCSR_RDIL_IGN (0 << DMAC_DCCSR_RDIL_BIT) |
| 1637 | #define DMAC_DCCSR_RDIL_2 (1 << DMAC_DCCSR_RDIL_BIT) |
| 1638 | #define DMAC_DCCSR_RDIL_4 (2 << DMAC_DCCSR_RDIL_BIT) |
| 1639 | #define DMAC_DCCSR_RDIL_8 (3 << DMAC_DCCSR_RDIL_BIT) |
| 1640 | #define DMAC_DCCSR_RDIL_12 (4 << DMAC_DCCSR_RDIL_BIT) |
| 1641 | #define DMAC_DCCSR_RDIL_16 (5 << DMAC_DCCSR_RDIL_BIT) |
| 1642 | #define DMAC_DCCSR_RDIL_20 (6 << DMAC_DCCSR_RDIL_BIT) |
| 1643 | #define DMAC_DCCSR_RDIL_24 (7 << DMAC_DCCSR_RDIL_BIT) |
| 1644 | #define DMAC_DCCSR_RDIL_28 (8 << DMAC_DCCSR_RDIL_BIT) |
| 1645 | #define DMAC_DCCSR_RDIL_32 (9 << DMAC_DCCSR_RDIL_BIT) |
| 1646 | #define DMAC_DCCSR_RDIL_48 (10 << DMAC_DCCSR_RDIL_BIT) |
| 1647 | #define DMAC_DCCSR_RDIL_60 (11 << DMAC_DCCSR_RDIL_BIT) |
| 1648 | #define DMAC_DCCSR_RDIL_64 (12 << DMAC_DCCSR_RDIL_BIT) |
| 1649 | #define DMAC_DCCSR_RDIL_124 (13 << DMAC_DCCSR_RDIL_BIT) |
| 1650 | #define DMAC_DCCSR_RDIL_128 (14 << DMAC_DCCSR_RDIL_BIT) |
| 1651 | #define DMAC_DCCSR_RDIL_200 (15 << DMAC_DCCSR_RDIL_BIT) |
| 1652 | #define DMAC_DCCSR_SWDH_BIT 14 |
| 1653 | #define DMAC_DCCSR_SWDH_MASK (0x03 << DMAC_DCCSR_SWDH_BIT) |
| 1654 | #define DMAC_DCCSR_SWDH_32 (0 << DMAC_DCCSR_SWDH_BIT) |
| 1655 | #define DMAC_DCCSR_SWDH_8 (1 << DMAC_DCCSR_SWDH_BIT) |
| 1656 | #define DMAC_DCCSR_SWDH_16 (2 << DMAC_DCCSR_SWDH_BIT) |
| 1657 | #define DMAC_DCCSR_DWDH_BIT 12 |
| 1658 | #define DMAC_DCCSR_DWDH_MASK (0x03 << DMAC_DCCSR_DWDH_BIT) |
| 1659 | #define DMAC_DCCSR_DWDH_32 (0 << DMAC_DCCSR_DWDH_BIT) |
| 1660 | #define DMAC_DCCSR_DWDH_8 (1 << DMAC_DCCSR_DWDH_BIT) |
| 1661 | #define DMAC_DCCSR_DWDH_16 (2 << DMAC_DCCSR_DWDH_BIT) |
| 1662 | #define DMAC_DCCSR_DS_BIT 8 |
| 1663 | #define DMAC_DCCSR_DS_MASK (0x07 << DMAC_DCCSR_DS_BIT) |
| 1664 | #define DMAC_DCCSR_DS_32b (0 << DMAC_DCCSR_DS_BIT) |
| 1665 | #define DMAC_DCCSR_DS_8b (1 << DMAC_DCCSR_DS_BIT) |
| 1666 | #define DMAC_DCCSR_DS_16b (2 << DMAC_DCCSR_DS_BIT) |
| 1667 | #define DMAC_DCCSR_DS_16B (3 << DMAC_DCCSR_DS_BIT) |
| 1668 | #define DMAC_DCCSR_DS_32B (4 << DMAC_DCCSR_DS_BIT) |
| 1669 | #define DMAC_DCCSR_TM (1 << 7) |
| 1670 | #define DMAC_DCCSR_AR (1 << 4) |
| 1671 | #define DMAC_DCCSR_TC (1 << 3) |
| 1672 | #define DMAC_DCCSR_HLT (1 << 2) |
| 1673 | #define DMAC_DCCSR_TCIE (1 << 1) |
| 1674 | #define DMAC_DCCSR_CHDE (1 << 0) |
| 1675 | |
| 1676 | #define DMAC_DMAIPR_CINT_BIT 8 |
| 1677 | #define DMAC_DMAIPR_CINT_MASK (0xff << DMAC_DMAIPR_CINT_BIT) |
| 1678 | |
| 1679 | #define DMAC_DMACR_PR_BIT 8 |
| 1680 | #define DMAC_DMACR_PR_MASK (0x03 << DMAC_DMACR_PR_BIT) |
| 1681 | #define DMAC_DMACR_PR_01234567 (0 << DMAC_DMACR_PR_BIT) |
| 1682 | #define DMAC_DMACR_PR_02314675 (1 << DMAC_DMACR_PR_BIT) |
| 1683 | #define DMAC_DMACR_PR_20136457 (2 << DMAC_DMACR_PR_BIT) |
| 1684 | #define DMAC_DMACR_PR_ROUNDROBIN (3 << DMAC_DMACR_PR_BIT) |
| 1685 | #define DMAC_DMACR_HTR (1 << 3) |
| 1686 | #define DMAC_DMACR_AER (1 << 2) |
| 1687 | #define DMAC_DMACR_DME (1 << 0) |
| 1688 | |
| 1689 | #define IRQ_DMA_0 32 |
| 1690 | #define NUM_DMA 6 |
| 1691 | |
| 1692 | #define DMAC_DSAR0 DMAC_DSAR(0) |
| 1693 | #define DMAC_DDAR0 DMAC_DDAR(0) |
| 1694 | #define DMAC_DTCR0 DMAC_DTCR(0) |
| 1695 | #define DMAC_DRSR0 DMAC_DRSR(0) |
| 1696 | #define DMAC_DCCSR0 DMAC_DCCSR(0) |
| 1697 | |
| 1698 | #define DMAC_DSAR1 DMAC_DSAR(1) |
| 1699 | #define DMAC_DDAR1 DMAC_DDAR(1) |
| 1700 | #define DMAC_DTCR1 DMAC_DTCR(1) |
| 1701 | #define DMAC_DRSR1 DMAC_DRSR(1) |
| 1702 | #define DMAC_DCCSR1 DMAC_DCCSR(1) |
| 1703 | |
| 1704 | #define DMAC_DSAR2 DMAC_DSAR(2) |
| 1705 | #define DMAC_DDAR2 DMAC_DDAR(2) |
| 1706 | #define DMAC_DTCR2 DMAC_DTCR(2) |
| 1707 | #define DMAC_DRSR2 DMAC_DRSR(2) |
| 1708 | #define DMAC_DCCSR2 DMAC_DCCSR(2) |
| 1709 | |
| 1710 | #define DMAC_DSAR3 DMAC_DSAR(3) |
| 1711 | #define DMAC_DDAR3 DMAC_DDAR(3) |
| 1712 | #define DMAC_DTCR3 DMAC_DTCR(3) |
| 1713 | #define DMAC_DRSR3 DMAC_DRSR(3) |
| 1714 | #define DMAC_DCCSR3 DMAC_DCCSR(3) |
| 1715 | |
| 1716 | #define DMAC_DSAR4 DMAC_DSAR(4) |
| 1717 | #define DMAC_DDAR4 DMAC_DDAR(4) |
| 1718 | #define DMAC_DTCR4 DMAC_DTCR(4) |
| 1719 | #define DMAC_DRSR4 DMAC_DRSR(4) |
| 1720 | #define DMAC_DCCSR4 DMAC_DCCSR(4) |
| 1721 | |
| 1722 | #define DMAC_DSAR5 DMAC_DSAR(5) |
| 1723 | #define DMAC_DDAR5 DMAC_DDAR(5) |
| 1724 | #define DMAC_DTCR5 DMAC_DTCR(5) |
| 1725 | #define DMAC_DRSR5 DMAC_DRSR(5) |
| 1726 | #define DMAC_DCCSR5 DMAC_DCCSR(5) |
| 1727 | |
| 1728 | #define DMAC_DSAR6 DMAC_DSAR(6) |
| 1729 | #define DMAC_DDAR6 DMAC_DDAR(6) |
| 1730 | #define DMAC_DTCR6 DMAC_DTCR(6) |
| 1731 | #define DMAC_DRSR6 DMAC_DRSR(6) |
| 1732 | #define DMAC_DCCSR6 DMAC_DCCSR(6) |
| 1733 | |
| 1734 | #define DMAC_DSAR7 DMAC_DSAR(7) |
| 1735 | #define DMAC_DDAR7 DMAC_DDAR(7) |
| 1736 | #define DMAC_DTCR7 DMAC_DTCR(7) |
| 1737 | #define DMAC_DRSR7 DMAC_DRSR(7) |
| 1738 | #define DMAC_DCCSR7 DMAC_DCCSR(7) |
| 1739 | |
| 1740 | |
| 1741 | |
| 1742 | /************************************************************************* |
| 1743 | * AIC ac97/i2s controller (sound) |
| 1744 | *************************************************************************/ |
| 1745 | #define AIC_FR REG32 (AIC_BASE + 0x000) |
| 1746 | #define AIC_CR REG32 (AIC_BASE + 0x004) |
| 1747 | #define AIC_ACCR1 REG32 (AIC_BASE + 0x008) |
| 1748 | #define AIC_ACCR2 REG32 (AIC_BASE + 0x00C) |
| 1749 | #define AIC_I2SCR REG32 (AIC_BASE + 0x010) |
| 1750 | #define AIC_SR REG32 (AIC_BASE + 0x014) |
| 1751 | #define AIC_ACSR REG32 (AIC_BASE + 0x018) |
| 1752 | #define AIC_I2SSR REG32 (AIC_BASE + 0x01C) |
| 1753 | #define AIC_ACCAR REG32 (AIC_BASE + 0x020) |
| 1754 | #define AIC_ACCDR REG32 (AIC_BASE + 0x024) |
| 1755 | #define AIC_ACSAR REG32 (AIC_BASE + 0x028) |
| 1756 | #define AIC_ACSDR REG32 (AIC_BASE + 0x02C) |
| 1757 | #define AIC_I2SDIV REG32 (AIC_BASE + 0x030) |
| 1758 | #define AIC_DR REG32 (AIC_BASE + 0x034) |
| 1759 | |
| 1760 | /* AIC Controller Configuration Register (AIC_FR) */ |
| 1761 | |
| 1762 | #define AIC_FR_RFTH_BIT 12 |
| 1763 | #define AIC_FR_RFTH_MASK (0xf << AIC_FR_RFTH_BIT) |
| 1764 | #define AIC_FR_TFTH_BIT 8 |
| 1765 | #define AIC_FR_TFTH_MASK (0xf << AIC_FR_TFTH_BIT) |
| 1766 | #define AIC_FR_AUSEL (1 << 4) |
| 1767 | #define AIC_FR_RST (1 << 3) |
| 1768 | #define AIC_FR_BCKD (1 << 2) |
| 1769 | #define AIC_FR_SYNCD (1 << 1) |
| 1770 | #define AIC_FR_ENB (1 << 0) |
| 1771 | |
| 1772 | /* AIC Controller Common Control Register (AIC_CR) */ |
| 1773 | |
| 1774 | #define AIC_CR_RDMS (1 << 15) |
| 1775 | #define AIC_CR_TDMS (1 << 14) |
| 1776 | #define AIC_CR_FLUSH (1 << 8) |
| 1777 | #define AIC_CR_EROR (1 << 6) |
| 1778 | #define AIC_CR_ETUR (1 << 5) |
| 1779 | #define AIC_CR_ERFS (1 << 4) |
| 1780 | #define AIC_CR_ETFS (1 << 3) |
| 1781 | #define AIC_CR_ENLBF (1 << 2) |
| 1782 | #define AIC_CR_ERPL (1 << 1) |
| 1783 | #define AIC_CR_EREC (1 << 0) |
| 1784 | |
| 1785 | /* AIC Controller AC-link Control Register 1 (AIC_ACCR1) */ |
| 1786 | |
| 1787 | #define AIC_ACCR1_RS_BIT 16 |
| 1788 | #define AIC_ACCR1_RS_MASK (0x3ff << AIC_ACCR1_RS_BIT) |
| 1789 | #define AIC_ACCR1_RS_SLOT12 (1 << 25) /* Slot 12 valid bit */ |
| 1790 | #define AIC_ACCR1_RS_SLOT11 (1 << 24) /* Slot 11 valid bit */ |
| 1791 | #define AIC_ACCR1_RS_SLOT10 (1 << 23) /* Slot 10 valid bit */ |
| 1792 | #define AIC_ACCR1_RS_SLOT9 (1 << 22) /* Slot 9 valid bit */ |
| 1793 | #define AIC_ACCR1_RS_SLOT8 (1 << 21) /* Slot 8 valid bit */ |
| 1794 | #define AIC_ACCR1_RS_SLOT7 (1 << 20) /* Slot 7 valid bit */ |
| 1795 | #define AIC_ACCR1_RS_SLOT6 (1 << 19) /* Slot 6 valid bit */ |
| 1796 | #define AIC_ACCR1_RS_SLOT5 (1 << 18) /* Slot 5 valid bit */ |
| 1797 | #define AIC_ACCR1_RS_SLOT4 (1 << 17) /* Slot 4 valid bit */ |
| 1798 | #define AIC_ACCR1_RS_SLOT3 (1 << 16) /* Slot 3 valid bit */ |
| 1799 | #define AIC_ACCR1_XS_BIT 0 |
| 1800 | #define AIC_ACCR1_XS_MASK (0x3ff << AIC_ACCR1_XS_BIT) |
| 1801 | #define AIC_ACCR1_XS_SLOT12 (1 << 9) /* Slot 12 valid bit */ |
| 1802 | #define AIC_ACCR1_XS_SLOT11 (1 << 8) /* Slot 11 valid bit */ |
| 1803 | #define AIC_ACCR1_XS_SLOT10 (1 << 7) /* Slot 10 valid bit */ |
| 1804 | #define AIC_ACCR1_XS_SLOT9 (1 << 6) /* Slot 9 valid bit */ |
| 1805 | #define AIC_ACCR1_XS_SLOT8 (1 << 5) /* Slot 8 valid bit */ |
| 1806 | #define AIC_ACCR1_XS_SLOT7 (1 << 4) /* Slot 7 valid bit */ |
| 1807 | #define AIC_ACCR1_XS_SLOT6 (1 << 3) /* Slot 6 valid bit */ |
| 1808 | #define AIC_ACCR1_XS_SLOT5 (1 << 2) /* Slot 5 valid bit */ |
| 1809 | #define AIC_ACCR1_XS_SLOT4 (1 << 1) /* Slot 4 valid bit */ |
| 1810 | #define AIC_ACCR1_XS_SLOT3 (1 << 0) /* Slot 3 valid bit */ |
| 1811 | |
| 1812 | /* AIC Controller AC-link Control Register 2 (AIC_ACCR2) */ |
| 1813 | |
| 1814 | #define AIC_ACCR2_ERSTO (1 << 18) |
| 1815 | #define AIC_ACCR2_ESADR (1 << 17) |
| 1816 | #define AIC_ACCR2_ECADT (1 << 16) |
| 1817 | #define AIC_ACCR2_OASS_BIT 8 |
| 1818 | #define AIC_ACCR2_OASS_MASK (0x3 << AIC_ACCR2_OASS_BIT) |
| 1819 | #define AIC_ACCR2_OASS_20BIT (0 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 20-bit */ |
| 1820 | #define AIC_ACCR2_OASS_18BIT (1 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 18-bit */ |
| 1821 | #define AIC_ACCR2_OASS_16BIT (2 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 16-bit */ |
| 1822 | #define AIC_ACCR2_OASS_8BIT (3 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 8-bit */ |
| 1823 | #define AIC_ACCR2_IASS_BIT 6 |
| 1824 | #define AIC_ACCR2_IASS_MASK (0x3 << AIC_ACCR2_IASS_BIT) |
| 1825 | #define AIC_ACCR2_IASS_20BIT (0 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 20-bit */ |
| 1826 | #define AIC_ACCR2_IASS_18BIT (1 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 18-bit */ |
| 1827 | #define AIC_ACCR2_IASS_16BIT (2 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 16-bit */ |
| 1828 | #define AIC_ACCR2_IASS_8BIT (3 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 8-bit */ |
| 1829 | #define AIC_ACCR2_SO (1 << 3) |
| 1830 | #define AIC_ACCR2_SR (1 << 2) |
| 1831 | #define AIC_ACCR2_SS (1 << 1) |
| 1832 | #define AIC_ACCR2_SA (1 << 0) |
| 1833 | |
| 1834 | /* AIC Controller I2S/MSB-justified Control Register (AIC_I2SCR) */ |
| 1835 | |
| 1836 | #define AIC_I2SCR_STPBK (1 << 12) |
| 1837 | #define AIC_I2SCR_WL_BIT 1 |
| 1838 | #define AIC_I2SCR_WL_MASK (0x7 << AIC_I2SCR_WL_BIT) |
| 1839 | #define AIC_I2SCR_WL_24BIT (0 << AIC_I2SCR_WL_BIT) /* Word Length is 24 bit */ |
| 1840 | #define AIC_I2SCR_WL_20BIT (1 << AIC_I2SCR_WL_BIT) /* Word Length is 20 bit */ |
| 1841 | #define AIC_I2SCR_WL_18BIT (2 << AIC_I2SCR_WL_BIT) /* Word Length is 18 bit */ |
| 1842 | #define AIC_I2SCR_WL_16BIT (3 << AIC_I2SCR_WL_BIT) /* Word Length is 16 bit */ |
| 1843 | #define AIC_I2SCR_WL_8BIT (4 << AIC_I2SCR_WL_BIT) /* Word Length is 8 bit */ |
| 1844 | #define AIC_I2SCR_AMSL (1 << 0) |
| 1845 | |
| 1846 | /* AIC Controller FIFO Status Register (AIC_SR) */ |
| 1847 | |
| 1848 | #define AIC_SR_RFL_BIT 24 |
| 1849 | #define AIC_SR_RFL_MASK (0x1f << AIC_SR_RFL_BIT) |
| 1850 | #define AIC_SR_TFL_BIT 8 |
| 1851 | #define AIC_SR_TFL_MASK (0x1f << AIC_SR_TFL_BIT) |
| 1852 | #define AIC_SR_ROR (1 << 6) |
| 1853 | #define AIC_SR_TUR (1 << 5) |
| 1854 | #define AIC_SR_RFS (1 << 4) |
| 1855 | #define AIC_SR_TFS (1 << 3) |
| 1856 | |
| 1857 | /* AIC Controller AC-link Status Register (AIC_ACSR) */ |
| 1858 | |
| 1859 | #define AIC_ACSR_CRDY (1 << 20) |
| 1860 | #define AIC_ACSR_CLPM (1 << 19) |
| 1861 | #define AIC_ACSR_RSTO (1 << 18) |
| 1862 | #define AIC_ACSR_SADR (1 << 17) |
| 1863 | #define AIC_ACSR_CADT (1 << 16) |
| 1864 | |
| 1865 | /* AIC Controller I2S/MSB-justified Status Register (AIC_I2SSR) */ |
| 1866 | |
| 1867 | #define AIC_I2SSR_BSY (1 << 2) |
| 1868 | |
| 1869 | /* AIC Controller AC97 codec Command Address Register (AIC_ACCAR) */ |
| 1870 | |
| 1871 | #define AIC_ACCAR_CAR_BIT 0 |
| 1872 | #define AIC_ACCAR_CAR_MASK (0xfffff << AIC_ACCAR_CAR_BIT) |
| 1873 | |
| 1874 | /* AIC Controller AC97 codec Command Data Register (AIC_ACCDR) */ |
| 1875 | |
| 1876 | #define AIC_ACCDR_CDR_BIT 0 |
| 1877 | #define AIC_ACCDR_CDR_MASK (0xfffff << AIC_ACCDR_CDR_BIT) |
| 1878 | |
| 1879 | /* AIC Controller AC97 codec Status Address Register (AIC_ACSAR) */ |
| 1880 | |
| 1881 | #define AIC_ACSAR_SAR_BIT 0 |
| 1882 | #define AIC_ACSAR_SAR_MASK (0xfffff << AIC_ACSAR_SAR_BIT) |
| 1883 | |
| 1884 | /* AIC Controller AC97 codec Status Data Register (AIC_ACSDR) */ |
| 1885 | |
| 1886 | #define AIC_ACSDR_SDR_BIT 0 |
| 1887 | #define AIC_ACSDR_SDR_MASK (0xfffff << AIC_ACSDR_SDR_BIT) |
| 1888 | |
| 1889 | /* AIC Controller I2S/MSB-justified Clock Divider Register (AIC_I2SDIV) */ |
| 1890 | |
| 1891 | #define AIC_I2SDIV_DIV_BIT 0 |
| 1892 | #define AIC_I2SDIV_DIV_MASK (0x7f << AIC_I2SDIV_DIV_BIT) |
| 1893 | #define AIC_I2SDIV_BITCLK_3072KHZ (0x0C << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 3.072MHz */ |
| 1894 | #define AIC_I2SDIV_BITCLK_2836KHZ (0x0D << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 2.836MHz */ |
| 1895 | #define AIC_I2SDIV_BITCLK_1418KHZ (0x1A << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 1.418MHz */ |
| 1896 | #define AIC_I2SDIV_BITCLK_1024KHZ (0x24 << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 1.024MHz */ |
| 1897 | #define AIC_I2SDIV_BITCLK_7089KHZ (0x34 << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 708.92KHz */ |
| 1898 | #define AIC_I2SDIV_BITCLK_512KHZ (0x48 << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 512.00KHz */ |
| 1899 | |
| 1900 | |
| 1901 | |
| 1902 | |
| 1903 | /************************************************************************* |
| 1904 | * LCD liquid crystal display |
| 1905 | *************************************************************************/ |
| 1906 | #define LCD_CFG REG32 (LCD_BASE + 0x00) |
| 1907 | #define LCD_VSYNC REG32 (LCD_BASE + 0x04) |
| 1908 | #define LCD_HSYNC REG32 (LCD_BASE + 0x08) |
| 1909 | #define LCD_VAT REG32 (LCD_BASE + 0x0c) |
| 1910 | #define LCD_DAH REG32 (LCD_BASE + 0x10) |
| 1911 | #define LCD_DAV REG32 (LCD_BASE + 0x14) |
| 1912 | #define LCD_PS REG32 (LCD_BASE + 0x18) |
| 1913 | #define LCD_CLS REG32 (LCD_BASE + 0x1c) |
| 1914 | #define LCD_SPL REG32 (LCD_BASE + 0x20) |
| 1915 | #define LCD_REV REG32 (LCD_BASE + 0x24) |
| 1916 | #define LCD_CTRL REG32 (LCD_BASE + 0x30) |
| 1917 | #define LCD_STATE REG32 (LCD_BASE + 0x34) |
| 1918 | #define LCD_IID REG32 (LCD_BASE + 0x38) |
| 1919 | #define LCD_DA0 REG32 (LCD_BASE + 0x40) |
| 1920 | #define LCD_SA0 REG32 (LCD_BASE + 0x44) |
| 1921 | #define LCD_FID0 REG32 (LCD_BASE + 0x48) |
| 1922 | #define LCD_CMD0 REG32 (LCD_BASE + 0x4c) |
| 1923 | #define LCD_DA1 REG32 (LCD_BASE + 0x50) |
| 1924 | #define LCD_SA1 REG32 (LCD_BASE + 0x54) |
| 1925 | #define LCD_FID1 REG32 (LCD_BASE + 0x58) |
| 1926 | #define LCD_CMD1 REG32 (LCD_BASE + 0x5c) |
| 1927 | |
| 1928 | #define LCD_CFG_PDW_BIT 4 |
| 1929 | #define LCD_CFG_PDW_MASK (0x03 << LCD_DEV_PDW_BIT) |
| 1930 | #define LCD_CFG_PDW_1 (0 << LCD_DEV_PDW_BIT) |
| 1931 | #define LCD_CFG_PDW_2 (1 << LCD_DEV_PDW_BIT) |
| 1932 | #define LCD_CFG_PDW_4 (2 << LCD_DEV_PDW_BIT) |
| 1933 | #define LCD_CFG_PDW_8 (3 << LCD_DEV_PDW_BIT) |
| 1934 | #define LCD_CFG_MODE_BIT 0 |
| 1935 | #define LCD_CFG_MODE_MASK (0x0f << LCD_DEV_MODE_BIT) |
| 1936 | #define LCD_CFG_MODE_GENERIC_TFT (0 << LCD_DEV_MODE_BIT) |
| 1937 | #define LCD_CFG_MODE_SHARP_HR (1 << LCD_DEV_MODE_BIT) |
| 1938 | #define LCD_CFG_MODE_CASIO_TFT (2 << LCD_DEV_MODE_BIT) |
| 1939 | #define LCD_CFG_MODE_SAMSUNG_ALPHA (3 << LCD_DEV_MODE_BIT) |
| 1940 | #define LCD_CFG_MODE_NONINTER_CCIR656 (4 << LCD_DEV_MODE_BIT) |
| 1941 | #define LCD_CFG_MODE_INTER_CCIR656 (5 << LCD_DEV_MODE_BIT) |
| 1942 | #define LCD_CFG_MODE_SINGLE_CSTN (8 << LCD_DEV_MODE_BIT) |
| 1943 | #define LCD_CFG_MODE_SINGLE_MSTN (9 << LCD_DEV_MODE_BIT) |
| 1944 | #define LCD_CFG_MODE_DUAL_CSTN (10 << LCD_DEV_MODE_BIT) |
| 1945 | #define LCD_CFG_MODE_DUAL_MSTN (11 << LCD_DEV_MODE_BIT) |
| 1946 | |
| 1947 | #define LCD_VSYNC_VPS_BIT 16 |
| 1948 | #define LCD_VSYNC_VPS_MASK (0xffff << LCD_VSYNC_VPS_BIT) |
| 1949 | #define LCD_VSYNC_VPE_BIT 0 |
| 1950 | #define LCD_VSYNC_VPE_MASK (0xffff << LCD_VSYNC_VPS_BIT) |
| 1951 | |
| 1952 | #define LCD_HSYNC_HPS_BIT 16 |
| 1953 | #define LCD_HSYNC_HPS_MASK (0xffff << LCD_HSYNC_HPS_BIT) |
| 1954 | #define LCD_HSYNC_HPE_BIT 0 |
| 1955 | #define LCD_HSYNC_HPE_MASK (0xffff << LCD_HSYNC_HPE_BIT) |
| 1956 | |
| 1957 | #define LCD_VAT_HT_BIT 16 |
| 1958 | #define LCD_VAT_HT_MASK (0xffff << LCD_VAT_HT_BIT) |
| 1959 | #define LCD_VAT_VT_BIT 0 |
| 1960 | #define LCD_VAT_VT_MASK (0xffff << LCD_VAT_VT_BIT) |
| 1961 | |
| 1962 | #define LCD_DAH_HDS_BIT 16 |
| 1963 | #define LCD_DAH_HDS_MASK (0xffff << LCD_DAH_HDS_BIT) |
| 1964 | #define LCD_DAH_HDE_BIT 0 |
| 1965 | #define LCD_DAH_HDE_MASK (0xffff << LCD_DAH_HDE_BIT) |
| 1966 | |
| 1967 | #define LCD_DAV_VDS_BIT 16 |
| 1968 | #define LCD_DAV_VDS_MASK (0xffff << LCD_DAV_VDS_BIT) |
| 1969 | #define LCD_DAV_VDE_BIT 0 |
| 1970 | #define LCD_DAV_VDE_MASK (0xffff << LCD_DAV_VDE_BIT) |
| 1971 | |
| 1972 | #define LCD_CTRL_BST_BIT 28 |
| 1973 | #define LCD_CTRL_BST_MASK (0x03 << LCD_CTRL_BST_BIT) |
| 1974 | #define LCD_CTRL_BST_4 (0 << LCD_CTRL_BST_BIT) |
| 1975 | #define LCD_CTRL_BST_8 (1 << LCD_CTRL_BST_BIT) |
| 1976 | #define LCD_CTRL_BST_16 (2 << LCD_CTRL_BST_BIT) |
| 1977 | #define LCD_CTRL_RGB555 (1 << 27) |
| 1978 | #define LCD_CTRL_OFUP (1 << 26) |
| 1979 | #define LCD_CTRL_FRC_BIT 24 |
| 1980 | #define LCD_CTRL_FRC_MASK (0x03 << LCD_CTRL_FRC_BIT) |
| 1981 | #define LCD_CTRL_FRC_16 (0 << LCD_CTRL_FRC_BIT) |
| 1982 | #define LCD_CTRL_FRC_4 (1 << LCD_CTRL_FRC_BIT) |
| 1983 | #define LCD_CTRL_FRC_2 (2 << LCD_CTRL_FRC_BIT) |
| 1984 | #define LCD_CTRL_PDD_BIT 16 |
| 1985 | #define LCD_CTRL_PDD_MASK (0xff << LCD_CTRL_PDD_BIT) |
| 1986 | #define LCD_CTRL_EOFM (1 << 13) |
| 1987 | #define LCD_CTRL_SOFM (1 << 12) |
| 1988 | #define LCD_CTRL_OFUM (1 << 11) |
| 1989 | #define LCD_CTRL_IFUM0 (1 << 10) |
| 1990 | #define LCD_CTRL_IFUM1 (1 << 9) |
| 1991 | #define LCD_CTRL_LDDM (1 << 8) |
| 1992 | #define LCD_CTRL_QDM (1 << 7) |
| 1993 | #define LCD_CTRL_BEDN (1 << 6) |
| 1994 | #define LCD_CTRL_PEDN (1 << 5) |
| 1995 | #define LCD_CTRL_DIS (1 << 4) |
| 1996 | #define LCD_CTRL_ENA (1 << 3) |
| 1997 | #define LCD_CTRL_BPP_BIT 0 |
| 1998 | #define LCD_CTRL_BPP_MASK (0x07 << LCD_CTRL_BPP_BIT) |
| 1999 | #define LCD_CTRL_BPP_1 (0 << LCD_CTRL_BPP_BIT) |
| 2000 | #define LCD_CTRL_BPP_2 (1 << LCD_CTRL_BPP_BIT) |
| 2001 | #define LCD_CTRL_BPP_4 (2 << LCD_CTRL_BPP_BIT) |
| 2002 | #define LCD_CTRL_BPP_8 (3 << LCD_CTRL_BPP_BIT) |
| 2003 | #define LCD_CTRL_BPP_16 (4 << LCD_CTRL_BPP_BIT) |
| 2004 | |
| 2005 | #define LCD_STATE_QD (1 << 7) |
| 2006 | #define LCD_STATE_EOF (1 << 5) |
| 2007 | #define LCD_STATE_SOF (1 << 4) |
| 2008 | #define LCD_STATE_OFU (1 << 3) |
| 2009 | #define LCD_STATE_IFU0 (1 << 2) |
| 2010 | #define LCD_STATE_IFU1 (1 << 1) |
| 2011 | #define LCD_STATE_LDD (1 << 0) |
| 2012 | |
| 2013 | #define LCD_CMD_SOFINT (1 << 31) |
| 2014 | #define LCD_CMD_EOFINT (1 << 30) |
| 2015 | #define LCD_CMD_PAL (1 << 28) |
| 2016 | #define LCD_CMD_LEN_BIT 0 |
| 2017 | #define LCD_CMD_LEN_MASK (0xffffff << LCD_CMD_LEN_BIT) |
| 2018 | |
| 2019 | |
| 2020 | |
| 2021 | |
| 2022 | /************************************************************************* |
| 2023 | * DES ? |
| 2024 | *************************************************************************/ |
| 2025 | #define DES_CR1 REG32 (DES_BASE + 0x000) |
| 2026 | #define DES_CR2 REG32 (DES_BASE + 0x004) |
| 2027 | #define DES_SR REG32 (DES_BASE + 0x008) |
| 2028 | #define DES_K1L REG32 (DES_BASE + 0x010) |
| 2029 | #define DES_K1R REG32 (DES_BASE + 0x014) |
| 2030 | #define DES_K2L REG32 (DES_BASE + 0x018) |
| 2031 | #define DES_K2R REG32 (DES_BASE + 0x01C) |
| 2032 | #define DES_K3L REG32 (DES_BASE + 0x020) |
| 2033 | #define DES_K3R REG32 (DES_BASE + 0x024) |
| 2034 | #define DES_IVL REG32 (DES_BASE + 0x028) |
| 2035 | #define DES_IVR REG32 (DES_BASE + 0x02C) |
| 2036 | #define DES_DIN REG32 (DES_BASE + 0x030) |
| 2037 | #define DES_DOUT REG32 (DES_BASE + 0x034) |
| 2038 | |
| 2039 | /* DES Control Register 1 (DES_CR1) */ |
| 2040 | |
| 2041 | #define DES_CR1_EN (1 << 0) |
| 2042 | |
| 2043 | /* DES Control Register 2 (DES_CR2) */ |
| 2044 | |
| 2045 | #define DES_CR2_ENDEC (1 << 3) |
| 2046 | #define DES_CR2_MODE (1 << 2) |
| 2047 | #define DES_CR2_ALG (1 << 1) |
| 2048 | #define DES_CR2_DMAE (1 << 0) |
| 2049 | |
| 2050 | /* DES State Register (DES_SR) */ |
| 2051 | |
| 2052 | #define DES_SR_IN_FULL (1 << 5) |
| 2053 | #define DES_SR_IN_LHF (1 << 4) |
| 2054 | #define DES_SR_IN_EMPTY (1 << 3) |
| 2055 | #define DES_SR_OUT_FULL (1 << 2) |
| 2056 | #define DES_SR_OUT_GHF (1 << 1) |
| 2057 | #define DES_SR_OUT_EMPTY (1 << 0) |
| 2058 | |
| 2059 | |
| 2060 | |
| 2061 | |
| 2062 | /************************************************************************* |
| 2063 | * CPM C? power management |
| 2064 | *************************************************************************/ |
| 2065 | #define CPM_CFCR REG32 (CPM_BASE+0x00) |
| 2066 | #define CPM_PLCR1 REG32 (CPM_BASE+0x10) |
| 2067 | #define CPM_OCR REG32 (CPM_BASE+0x1c) |
| 2068 | #define CPM_CFCR2 REG32 (CPM_BASE+0x60) |
| 2069 | #define CPM_LPCR REG32 (CPM_BASE+0x04) |
| 2070 | #define CPM_RSTR REG32 (CPM_BASE+0x08) |
| 2071 | #define CPM_MSCR REG32 (CPM_BASE+0x20) |
| 2072 | #define CPM_SCR REG32 (CPM_BASE+0x24) |
| 2073 | #define CPM_WRER REG32 (CPM_BASE+0x28) |
| 2074 | #define CPM_WFER REG32 (CPM_BASE+0x2c) |
| 2075 | #define CPM_WER REG32 (CPM_BASE+0x30) |
| 2076 | #define CPM_WSR REG32 (CPM_BASE+0x34) |
| 2077 | #define CPM_GSR0 REG32 (CPM_BASE+0x38) |
| 2078 | #define CPM_GSR1 REG32 (CPM_BASE+0x3c) |
| 2079 | #define CPM_GSR2 REG32 (CPM_BASE+0x40) |
| 2080 | #define CPM_SPR REG32 (CPM_BASE+0x44) |
| 2081 | #define CPM_GSR3 REG32 (CPM_BASE+0x48) |
| 2082 | |
| 2083 | #define CPM_CFCR_SSI (1 << 31) |
| 2084 | #define CPM_CFCR_LCD (1 << 30) |
| 2085 | #define CPM_CFCR_I2S (1 << 29) |
| 2086 | #define CPM_CFCR_UCS (1 << 28) |
| 2087 | #define CPM_CFCR_UFR_BIT 25 |
| 2088 | #define CPM_CFCR_UFR_MASK (0x07 << CPM_CFCR_UFR_BIT) |
| 2089 | #define CPM_CFCR_MSC (1 << 24) |
| 2090 | #define CPM_CFCR_CKOEN2 (1 << 23) |
| 2091 | #define CPM_CFCR_CKOEN1 (1 << 22) |
| 2092 | #define CPM_CFCR_UPE (1 << 20) |
| 2093 | #define CPM_CFCR_MFR_BIT 16 |
| 2094 | #define CPM_CFCR_MFR_MASK (0x0f << CPM_CFCR_MFR_BIT) |
| 2095 | #define CPM_CFCR_LFR_BIT 12 |
| 2096 | #define CPM_CFCR_LFR_MASK (0x0f << CPM_CFCR_LFR_BIT) |
| 2097 | #define CPM_CFCR_PFR_BIT 8 |
| 2098 | #define CPM_CFCR_PFR_MASK (0x0f << CPM_CFCR_PFR_BIT) |
| 2099 | #define CPM_CFCR_SFR_BIT 4 |
| 2100 | #define CPM_CFCR_SFR_MASK (0x0f << CPM_CFCR_SFR_BIT) |
| 2101 | #define CPM_CFCR_IFR_BIT 0 |
| 2102 | #define CPM_CFCR_IFR_MASK (0x0f << CPM_CFCR_IFR_BIT) |
| 2103 | |
| 2104 | #define CPM_PLCR1_PLL1FD_BIT 23 |
| 2105 | #define CPM_PLCR1_PLL1FD_MASK (0x1ff << CPM_PLCR1_PLL1FD_BIT) |
| 2106 | #define CPM_PLCR1_PLL1RD_BIT 18 |
| 2107 | #define CPM_PLCR1_PLL1RD_MASK (0x1f << CPM_PLCR1_PLL1RD_BIT) |
| 2108 | #define CPM_PLCR1_PLL1OD_BIT 16 |
| 2109 | #define CPM_PLCR1_PLL1OD_MASK (0x03 << CPM_PLCR1_PLL1OD_BIT) |
| 2110 | #define CPM_PLCR1_PLL1S (1 << 10) |
| 2111 | #define CPM_PLCR1_PLL1BP (1 << 9) |
| 2112 | #define CPM_PLCR1_PLL1EN (1 << 8) |
| 2113 | #define CPM_PLCR1_PLL1ST_BIT 0 |
| 2114 | #define CPM_PLCR1_PLL1ST_MASK (0xff << CPM_PLCR1_PLL1ST_BIT) |
| 2115 | |
| 2116 | #define CPM_OCR_O1ST_BIT 16 |
| 2117 | #define CPM_OCR_O1ST_MASK (0xff << CPM_OCR_O1ST_BIT) |
| 2118 | #define CPM_OCR_EXT_RTC_CLK (1<<8) |
| 2119 | #define CPM_OCR_SUSPEND_PHY1 (1<<7) |
| 2120 | #define CPM_OCR_SUSPEND_PHY0 (1<<6) |
| 2121 | |
| 2122 | #define CPM_CFCR2_PXFR_BIT 0 |
| 2123 | #define CPM_CFCR2_PXFR_MASK (0x1ff << CPM_CFCR2_PXFR_BIT) |
| 2124 | |
| 2125 | #define CPM_LPCR_DUTY_BIT 3 |
| 2126 | #define CPM_LPCR_DUTY_MASK (0x1f << CPM_LPCR_DUTY_BIT) |
| 2127 | #define CPM_LPCR_DOZE (1 << 2) |
| 2128 | #define CPM_LPCR_LPM_BIT 0 |
| 2129 | #define CPM_LPCR_LPM_MASK (0x03 << CPM_LPCR_LPM_BIT) |
| 2130 | #define CPM_LPCR_LPM_IDLE (0 << CPM_LPCR_LPM_BIT) |
| 2131 | #define CPM_LPCR_LPM_SLEEP (1 << CPM_LPCR_LPM_BIT) |
| 2132 | #define CPM_LPCR_LPM_HIBERNATE (2 << CPM_LPCR_LPM_BIT) |
| 2133 | |
| 2134 | #define CPM_RSTR_SR (1 << 2) |
| 2135 | #define CPM_RSTR_WR (1 << 1) |
| 2136 | #define CPM_RSTR_HR (1 << 0) |
| 2137 | |
| 2138 | #define CPM_MSCR_MSTP_BIT 0 |
| 2139 | #define CPM_MSCR_MSTP_MASK (0x1ffffff << CPM_MSCR_MSTP_BIT) |
| 2140 | #define CPM_MSCR_MSTP_UART0 0 |
| 2141 | #define CPM_MSCR_MSTP_UART1 1 |
| 2142 | #define CPM_MSCR_MSTP_UART2 2 |
| 2143 | #define CPM_MSCR_MSTP_OST 3 |
| 2144 | #define CPM_MSCR_MSTP_DMAC 5 |
| 2145 | #define CPM_MSCR_MSTP_UHC 6 |
| 2146 | #define CPM_MSCR_MSTP_LCD 7 |
| 2147 | #define CPM_MSCR_MSTP_I2C 8 |
| 2148 | #define CPM_MSCR_MSTP_AICPCLK 9 |
| 2149 | #define CPM_MSCR_MSTP_PWM0 10 |
| 2150 | #define CPM_MSCR_MSTP_PWM1 11 |
| 2151 | #define CPM_MSCR_MSTP_SSI 12 |
| 2152 | #define CPM_MSCR_MSTP_MSC 13 |
| 2153 | #define CPM_MSCR_MSTP_SCC 14 |
| 2154 | #define CPM_MSCR_MSTP_AICBCLK 18 |
| 2155 | #define CPM_MSCR_MSTP_UART3 20 |
| 2156 | #define CPM_MSCR_MSTP_ETH 21 |
| 2157 | #define CPM_MSCR_MSTP_KBC 22 |
| 2158 | #define CPM_MSCR_MSTP_CIM 23 |
| 2159 | #define CPM_MSCR_MSTP_UDC 24 |
| 2160 | #define CPM_MSCR_MSTP_UPRT 25 |
| 2161 | |
| 2162 | #define CPM_SCR_O1SE (1 << 4) |
| 2163 | #define CPM_SCR_HGP (1 << 3) |
| 2164 | #define CPM_SCR_HZP (1 << 2) |
| 2165 | #define CPM_SCR_HZM (1 << 1) |
| 2166 | |
| 2167 | #define CPM_WRER_RE_BIT 0 |
| 2168 | #define CPM_WRER_RE_MASK (0xffff << CPM_WRER_RE_BIT) |
| 2169 | |
| 2170 | #define CPM_WFER_FE_BIT 0 |
| 2171 | #define CPM_WFER_FE_MASK (0xffff << CPM_WFER_FE_BIT) |
| 2172 | |
| 2173 | #define CPM_WER_WERTC (1 << 31) |
| 2174 | #define CPM_WER_WEETH (1 << 30) |
| 2175 | #define CPM_WER_WE_BIT 0 |
| 2176 | #define CPM_WER_WE_MASK (0xffff << CPM_WER_WE_BIT) |
| 2177 | |
| 2178 | #define CPM_WSR_WSRTC (1 << 31) |
| 2179 | #define CPM_WSR_WSETH (1 << 30) |
| 2180 | #define CPM_WSR_WS_BIT 0 |
| 2181 | #define CPM_WSR_WS_MASK (0xffff << CPM_WSR_WS_BIT) |
| 2182 | |
| 2183 | |
| 2184 | |
| 2185 | |
| 2186 | /************************************************************************* |
| 2187 | * SSI ? (audio serial bus?) |
| 2188 | *************************************************************************/ |
| 2189 | #define SSI_DR REG32 (SSI_BASE + 0x001) |
| 2190 | #define SSI_CR0 REG16 (SSI_BASE + 0x004) |
| 2191 | #define SSI_CR1 REG32 (SSI_BASE + 0x008) |
| 2192 | #define SSI_SR REG32 (SSI_BASE + 0x00C) |
| 2193 | #define SSI_ITR REG16 (SSI_BASE + 0x010) |
| 2194 | #define SSI_ICR REG8 (SSI_BASE + 0x014) |
| 2195 | #define SSI_GR REG16 (SSI_BASE + 0x018) |
| 2196 | |
| 2197 | /* SSI Data Register (SSI_DR) */ |
| 2198 | |
| 2199 | #define SSI_DR_GPC_BIT 0 |
| 2200 | #define SSI_DR_GPC_MASK (0x1ff << SSI_DR_GPC_BIT) |
| 2201 | |
| 2202 | /* SSI Control Register 0 (SSI_CR0) */ |
| 2203 | |
| 2204 | #define SSI_CR0_SSIE (1 << 15) |
| 2205 | #define SSI_CR0_TIE (1 << 14) |
| 2206 | #define SSI_CR0_RIE (1 << 13) |
| 2207 | #define SSI_CR0_TEIE (1 << 12) |
| 2208 | #define SSI_CR0_REIE (1 << 11) |
| 2209 | #define SSI_CR0_LOOP (1 << 10) |
| 2210 | #define SSI_CR0_RFINE (1 << 9) |
| 2211 | #define SSI_CR0_RFINC (1 << 8) |
| 2212 | #define SSI_CR0_FSEL (1 << 6) |
| 2213 | #define SSI_CR0_TFLUSH (1 << 2) |
| 2214 | #define SSI_CR0_RFLUSH (1 << 1) |
| 2215 | #define SSI_CR0_DISREV (1 << 0) |
| 2216 | |
| 2217 | /* SSI Control Register 1 (SSI_CR1) */ |
| 2218 | |
| 2219 | #define SSI_CR1_FRMHL_BIT 30 |
| 2220 | #define SSI_CR1_FRMHL_MASK (0x3 << SSI_CR1_FRMHL_BIT) |
| 2221 | #define SSI_CR1_FRMHL_CELOW_CE2LOW (0 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is low valid and SSI_CE2_ is low valid */ |
| 2222 | #define SSI_CR1_FRMHL_CEHIGH_CE2LOW (1 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is high valid and SSI_CE2_ is low valid */ |
| 2223 | #define SSI_CR1_FRMHL_CELOW_CE2HIGH (2 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is low valid and SSI_CE2_ is high valid */ |
| 2224 | #define SSI_CR1_FRMHL_CEHIGH_CE2HIGH (3 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is high valid and SSI_CE2_ is high valid */ |
| 2225 | #define SSI_CR1_TFVCK_BIT 28 |
| 2226 | #define SSI_CR1_TFVCK_MASK (0x3 << SSI_CR1_TFVCK_BIT) |
| 2227 | #define SSI_CR1_TFVCK_0 (0 << SSI_CR1_TFVCK_BIT) |
| 2228 | #define SSI_CR1_TFVCK_1 (1 << SSI_CR1_TFVCK_BIT) |
| 2229 | #define SSI_CR1_TFVCK_2 (2 << SSI_CR1_TFVCK_BIT) |
| 2230 | #define SSI_CR1_TFVCK_3 (3 << SSI_CR1_TFVCK_BIT) |
| 2231 | #define SSI_CR1_TCKFI_BIT 26 |
| 2232 | #define SSI_CR1_TCKFI_MASK (0x3 << SSI_CR1_TCKFI_BIT) |
| 2233 | #define SSI_CR1_TCKFI_0 (0 << SSI_CR1_TCKFI_BIT) |
| 2234 | #define SSI_CR1_TCKFI_1 (1 << SSI_CR1_TCKFI_BIT) |
| 2235 | #define SSI_CR1_TCKFI_2 (2 << SSI_CR1_TCKFI_BIT) |
| 2236 | #define SSI_CR1_TCKFI_3 (3 << SSI_CR1_TCKFI_BIT) |
| 2237 | #define SSI_CR1_LFST (1 << 25) |
| 2238 | #define SSI_CR1_ITFRM (1 << 24) |
| 2239 | #define SSI_CR1_UNFIN (1 << 23) |
| 2240 | #define SSI_CR1_MULTS (1 << 22) |
| 2241 | #define SSI_CR1_FMAT_BIT 20 |
| 2242 | #define SSI_CR1_FMAT_MASK (0x3 << SSI_CR1_FMAT_BIT) |
| 2243 | #define SSI_CR1_FMAT_SPI (0 << SSI_CR1_FMAT_BIT) /* Motorola¡¯s SPI format */ |
| 2244 | #define SSI_CR1_FMAT_SSP (1 << SSI_CR1_FMAT_BIT) /* TI's SSP format */ |
| 2245 | #define SSI_CR1_FMAT_MW1 (2 << SSI_CR1_FMAT_BIT) /* National Microwire 1 format */ |
| 2246 | #define SSI_CR1_FMAT_MW2 (3 << SSI_CR1_FMAT_BIT) /* National Microwire 2 format */ |
| 2247 | #define SSI_CR1_MCOM_BIT 12 |
| 2248 | #define SSI_CR1_MCOM_MASK (0xf << SSI_CR1_MCOM_BIT) |
| 2249 | #define SSI_CR1_MCOM_1BIT (0x0 << SSI_CR1_MCOM_BIT) /* 1-bit command selected */ |
| 2250 | #define SSI_CR1_MCOM_2BIT (0x1 << SSI_CR1_MCOM_BIT) /* 2-bit command selected */ |
| 2251 | #define SSI_CR1_MCOM_3BIT (0x2 << SSI_CR1_MCOM_BIT) /* 3-bit command selected */ |
| 2252 | #define SSI_CR1_MCOM_4BIT (0x3 << SSI_CR1_MCOM_BIT) /* 4-bit command selected */ |
| 2253 | #define SSI_CR1_MCOM_5BIT (0x4 << SSI_CR1_MCOM_BIT) /* 5-bit command selected */ |
| 2254 | #define SSI_CR1_MCOM_6BIT (0x5 << SSI_CR1_MCOM_BIT) /* 6-bit command selected */ |
| 2255 | #define SSI_CR1_MCOM_7BIT (0x6 << SSI_CR1_MCOM_BIT) /* 7-bit command selected */ |
| 2256 | #define SSI_CR1_MCOM_8BIT (0x7 << SSI_CR1_MCOM_BIT) /* 8-bit command selected */ |
| 2257 | #define SSI_CR1_MCOM_9BIT (0x8 << SSI_CR1_MCOM_BIT) /* 9-bit command selected */ |
| 2258 | #define SSI_CR1_MCOM_10BIT (0x9 << SSI_CR1_MCOM_BIT) /* 10-bit command selected */ |
| 2259 | #define SSI_CR1_MCOM_11BIT (0xA << SSI_CR1_MCOM_BIT) /* 11-bit command selected */ |
| 2260 | #define SSI_CR1_MCOM_12BIT (0xB << SSI_CR1_MCOM_BIT) /* 12-bit command selected */ |
| 2261 | #define SSI_CR1_MCOM_13BIT (0xC << SSI_CR1_MCOM_BIT) /* 13-bit command selected */ |
| 2262 | #define SSI_CR1_MCOM_14BIT (0xD << SSI_CR1_MCOM_BIT) /* 14-bit command selected */ |
| 2263 | #define SSI_CR1_MCOM_15BIT (0xE << SSI_CR1_MCOM_BIT) /* 15-bit command selected */ |
| 2264 | #define SSI_CR1_MCOM_16BIT (0xF << SSI_CR1_MCOM_BIT) /* 16-bit command selected */ |
| 2265 | #define SSI_CR1_TTRG_BIT 10 |
| 2266 | #define SSI_CR1_TTRG_MASK (0x3 << SSI_CR1_TTRG_BIT) |
| 2267 | #define SSI_CR1_TTRG_1 (0 << SSI_CR1_TTRG_BIT)/* Less than or equal to 1 */ |
| 2268 | #define SSI_CR1_TTRG_4 (1 << SSI_CR1_TTRG_BIT) /* Less than or equal to 4 */ |
| 2269 | #define SSI_CR1_TTRG_8 (2 << SSI_CR1_TTRG_BIT) /* Less than or equal to 8 */ |
| 2270 | #define SSI_CR1_TTRG_14 (3 << SSI_CR1_TTRG_BIT) /* Less than or equal to 14 */ |
| 2271 | #define SSI_CR1_RTRG_BIT 8 |
| 2272 | #define SSI_CR1_RTRG_MASK (0x3 << SSI_CR1_RTRG_BIT) |
| 2273 | #define SSI_CR1_RTRG_1 (0 << SSI_CR1_RTRG_BIT) /* More than or equal to 1 */ |
| 2274 | #define SSI_CR1_RTRG_4 (1 << SSI_CR1_RTRG_BIT) /* More than or equal to 4 */ |
| 2275 | #define SSI_CR1_RTRG_8 (2 << SSI_CR1_RTRG_BIT) /* More than or equal to 8 */ |
| 2276 | #define SSI_CR1_RTRG_14 (3 << SSI_CR1_RTRG_BIT) /* More than or equal to 14 */ |
| 2277 | #define SSI_CR1_FLEN_BIT 4 |
| 2278 | #define SSI_CR1_FLEN_MASK (0xf << SSI_CR1_FLEN_BIT) |
| 2279 | #define SSI_CR1_FLEN_2BIT (0x0 << SSI_CR1_FLEN_BIT) |
| 2280 | #define SSI_CR1_FLEN_3BIT (0x1 << SSI_CR1_FLEN_BIT) |
| 2281 | #define SSI_CR1_FLEN_4BIT (0x2 << SSI_CR1_FLEN_BIT) |
| 2282 | #define SSI_CR1_FLEN_5BIT (0x3 << SSI_CR1_FLEN_BIT) |
| 2283 | #define SSI_CR1_FLEN_6BIT (0x4 << SSI_CR1_FLEN_BIT) |
| 2284 | #define SSI_CR1_FLEN_7BIT (0x5 << SSI_CR1_FLEN_BIT) |
| 2285 | #define SSI_CR1_FLEN_8BIT (0x6 << SSI_CR1_FLEN_BIT) |
| 2286 | #define SSI_CR1_FLEN_9BIT (0x7 << SSI_CR1_FLEN_BIT) |
| 2287 | #define SSI_CR1_FLEN_10BIT (0x8 << SSI_CR1_FLEN_BIT) |
| 2288 | #define SSI_CR1_FLEN_11BIT (0x9 << SSI_CR1_FLEN_BIT) |
| 2289 | #define SSI_CR1_FLEN_12BIT (0xA << SSI_CR1_FLEN_BIT) |
| 2290 | #define SSI_CR1_FLEN_13BIT (0xB << SSI_CR1_FLEN_BIT) |
| 2291 | #define SSI_CR1_FLEN_14BIT (0xC << SSI_CR1_FLEN_BIT) |
| 2292 | #define SSI_CR1_FLEN_15BIT (0xD << SSI_CR1_FLEN_BIT) |
| 2293 | #define SSI_CR1_FLEN_16BIT (0xE << SSI_CR1_FLEN_BIT) |
| 2294 | #define SSI_CR1_FLEN_17BIT (0xF << SSI_CR1_FLEN_BIT) |
| 2295 | #define SSI_CR1_PHA (1 << 1) |
| 2296 | #define SSI_CR1_POL (1 << 0) |
| 2297 | |
| 2298 | /* SSI Status Register (SSI_SR) */ |
| 2299 | |
| 2300 | #define SSI_SR_TFIFONUM_BIT 13 |
| 2301 | #define SSI_SR_TFIFONUM_MASK (0x1f << SSI_SR_TFIFONUM_BIT) |
| 2302 | #define SSI_SR_RFIFONUM_BIT 8 |
| 2303 | #define SSI_SR_RFIFONUM_MASK (0x1f << SSI_SR_RFIFONUM_BIT) |
| 2304 | #define SSI_SR_END (1 << 7) |
| 2305 | #define SSI_SR_BUSY (1 << 6) |
| 2306 | #define SSI_SR_TFF (1 << 5) |
| 2307 | #define SSI_SR_RFE (1 << 4) |
| 2308 | #define SSI_SR_TFHE (1 << 3) |
| 2309 | #define SSI_SR_RFHF (1 << 2) |
| 2310 | #define SSI_SR_UNDR (1 << 1) |
| 2311 | #define SSI_SR_OVER (1 << 0) |
| 2312 | |
| 2313 | /* SSI Interval Time Control Register (SSI_ITR) */ |
| 2314 | |
| 2315 | #define SSI_ITR_CNTCLK (1 << 15) |
| 2316 | #define SSI_ITR_IVLTM_BIT 0 |
| 2317 | #define SSI_ITR_IVLTM_MASK (0x7fff << SSI_ITR_IVLTM_BIT) |
| 2318 | |
| 2319 | |
| 2320 | //################### operations ###################################### |
| 2321 | |
| 2322 | static __inline__ void udelay (unsigned us): |
| 2323 | for unsigned i = 0; i < us; ++i: |
| 2324 | for unsigned k = 0; k < 100; ++k: |
| 2325 | GPIO_GPDR (0) = GPIO_GPDR (0) |
| 2326 | |
| 2327 | #ifndef __KERNEL__ |
| 2328 | static __inline__ void cdelay (unsigned ds): |
| 2329 | Iris::my_receiver.set_alarm (ds * (HZ / 100)) |
| 2330 | Iris::Cap ().call (~0) |
| 2331 | #endif |
| 2332 | |
| 2333 | /*************************************************************************** |
| 2334 | * MSC |
| 2335 | ***************************************************************************/ |
| 2336 | |
| 2337 | #define msc_start_op() ( MSC_STRPCL = MSC_STRPCL_START_OP | MSC_STRPCL_CLOCK_CONTROL_START ) |
| 2338 | |
| 2339 | #define msc_set_resto(to) ( MSC_RESTO = to ) |
| 2340 | #define msc_set_rdto(to) ( MSC_RDTO = to ) |
| 2341 | #define msc_set_cmd(cmd) ( MSC_CMD = cmd ) |
| 2342 | #define msc_set_arg(arg) ( MSC_ARG = arg ) |
| 2343 | #define msc_set_nob(nob) ( MSC_NOB = nob ) |
| 2344 | #define msc_get_nob() ( MSC_NOB ) |
| 2345 | #define msc_set_blklen(len) ( MSC_BLKLEN = len ) |
| 2346 | #define msc_set_cmdat(cmdat) ( MSC_CMDAT = cmdat ) |
| 2347 | #define msc_set_cmdat_ioabort() ( MSC_CMDAT |= MSC_CMDAT_IO_ABORT ) |
| 2348 | #define msc_clear_cmdat_ioabort() ( MSC_CMDAT &= ~MSC_CMDAT_IO_ABORT ) |
| 2349 | |
| 2350 | #define msc_set_cmdat_bus_width1() do { MSC_CMDAT &= ~MSC_CMDAT_BUS_WIDTH_MASK; MSC_CMDAT |= MSC_CMDAT_BUS_WIDTH_1BIT; } while(0) |
| 2351 | |
| 2352 | #define msc_set_cmdat_bus_width4() do { MSC_CMDAT &= ~MSC_CMDAT_BUS_WIDTH_MASK; MSC_CMDAT |= MSC_CMDAT_BUS_WIDTH_4BIT; } while(0) |
| 2353 | |
| 2354 | #define msc_set_cmdat_dma_en() ( MSC_CMDAT |= MSC_CMDAT_DMA_EN ) |
| 2355 | #define msc_set_cmdat_init() ( MSC_CMDAT |= MSC_CMDAT_INIT ) |
| 2356 | #define msc_set_cmdat_busy() ( MSC_CMDAT |= MSC_CMDAT_BUSY ) |
| 2357 | #define msc_set_cmdat_stream() ( MSC_CMDAT |= MSC_CMDAT_STREAM_BLOCK ) |
| 2358 | #define msc_set_cmdat_block() ( MSC_CMDAT &= ~MSC_CMDAT_STREAM_BLOCK ) |
| 2359 | #define msc_set_cmdat_read() ( MSC_CMDAT &= ~MSC_CMDAT_WRITE_READ ) |
| 2360 | #define msc_set_cmdat_write() ( MSC_CMDAT |= MSC_CMDAT_WRITE_READ ) |
| 2361 | #define msc_set_cmdat_data_en() ( MSC_CMDAT |= MSC_CMDAT_DATA_EN ) |
| 2362 | |
| 2363 | /* r is MSC_CMDAT_RESPONSE_FORMAT_Rx or MSC_CMDAT_RESPONSE_FORMAT_NONE */ |
| 2364 | #define msc_set_cmdat_res_format(r) do { MSC_CMDAT &= ~MSC_CMDAT_RESPONSE_FORMAT_MASK; MSC_CMDAT |= (r); } while(0) |
| 2365 | |
| 2366 | #define msc_clear_cmdat() do { MSC_CMDAT &= ~( MSC_CMDAT_IO_ABORT | MSC_CMDAT_DMA_EN | MSC_CMDAT_INIT | MSC_CMDAT_BUSY | MSC_CMDAT_STREAM_BLOCK | MSC_CMDAT_WRITE_READ | MSC_CMDAT_DATA_EN | MSC_CMDAT_RESPONSE_FORMAT_MASK ); } while (0) |
| 2367 | |
| 2368 | #define msc_get_imask() ( MSC_IMASK ) |
| 2369 | #define msc_mask_all_intrs() ( MSC_IMASK = 0xff ) |
| 2370 | #define msc_unmask_all_intrs() ( MSC_IMASK = 0x00 ) |
| 2371 | #define msc_mask_rd() ( MSC_IMASK |= MSC_IMASK_RXFIFO_RD_REQ ) |
| 2372 | #define msc_unmask_rd() ( MSC_IMASK &= ~MSC_IMASK_RXFIFO_RD_REQ ) |
| 2373 | #define msc_mask_wr() ( MSC_IMASK |= MSC_IMASK_TXFIFO_WR_REQ ) |
| 2374 | #define msc_unmask_wr() ( MSC_IMASK &= ~MSC_IMASK_TXFIFO_WR_REQ ) |
| 2375 | #define msc_mask_endcmdres() ( MSC_IMASK |= MSC_IMASK_END_CMD_RES ) |
| 2376 | #define msc_unmask_endcmdres() ( MSC_IMASK &= ~MSC_IMASK_END_CMD_RES ) |
| 2377 | #define msc_mask_datatrandone() ( MSC_IMASK |= MSC_IMASK_DATA_TRAN_DONE ) |
| 2378 | #define msc_unmask_datatrandone() ( MSC_IMASK &= ~MSC_IMASK_DATA_TRAN_DONE ) |
| 2379 | #define msc_mask_prgdone() ( MSC_IMASK |= MSC_IMASK_PRG_DONE ) |
| 2380 | #define msc_unmask_prgdone() ( MSC_IMASK &= ~MSC_IMASK_PRG_DONE ) |
| 2381 | |
| 2382 | /* n=0,1,2,3,4,5,6,7 */ |
| 2383 | #define msc_set_clkrt(n) do { MSC_CLKRT = n; } while(0) |
| 2384 | |
| 2385 | #define msc_get_ireg() ( MSC_IREG ) |
| 2386 | #define msc_ireg_rd() ( MSC_IREG & MSC_IRXFIFO_RD_REQ ) |
| 2387 | #define msc_ireg_wr() ( MSC_IREG & MSC_ITXFIFO_WR_REQ ) |
| 2388 | #define msc_ireg_end_cmd_res() ( MSC_IREG & MSC_IEND_CMD_RES ) |
| 2389 | #define msc_ireg_data_tran_done() ( MSC_IREG & MSC_IDATA_TRAN_DONE ) |
| 2390 | #define msc_ireg_prg_done() ( MSC_IREG & MSC_IPRG_DONE ) |
| 2391 | #define msc_ireg_clear_end_cmd_res() ( MSC_IREG = MSC_IEND_CMD_RES ) |
| 2392 | #define msc_ireg_clear_data_tran_done() ( MSC_IREG = MSC_IDATA_TRAN_DONE ) |
| 2393 | #define msc_ireg_clear_prg_done() ( MSC_IREG = MSC_IPRG_DONE ) |
| 2394 | |
| 2395 | #define msc_get_stat() ( MSC_STAT ) |
| 2396 | #define msc_stat_not_end_cmd_res() ( (MSC_STAT & MSC_STAT_END_CMD_RES) == 0) |
| 2397 | #define msc_stat_crc_err() ( MSC_STAT & (MSC_STAT_CRC_RES_ERR | MSC_STAT_CRC_READ_ERROR | MSC_STAT_CRC_WRITE_ERROR_YES) ) |
| 2398 | #define msc_stat_res_crc_err() ( MSC_STAT & MSC_STAT_CRC_RES_ERR ) |
| 2399 | #define msc_stat_rd_crc_err() ( MSC_STAT & MSC_STAT_CRC_READ_ERROR ) |
| 2400 | #define msc_stat_wr_crc_err() ( MSC_STAT & MSC_STAT_CRC_WRITE_ERROR_YES ) |
| 2401 | #define msc_stat_resto_err() ( MSC_STAT & MSC_STAT_TIME_OUT_RES ) |
| 2402 | #define msc_stat_rdto_err() ( MSC_STAT & MSC_STAT_TIME_OUT_READ ) |
| 2403 | |
| 2404 | #define msc_rd_resfifo() ( MSC_RES ) |
| 2405 | #define msc_rd_rxfifo() ( MSC_RXFIFO ) |
| 2406 | #define msc_wr_txfifo(v) ( MSC_TXFIFO = v ) |
| 2407 | |
| 2408 | #define msc_reset() do { MSC_STRPCL = MSC_STRPCL_RESET; while (MSC_STAT & MSC_STAT_IS_RESETTING); } while (0) |
| 2409 | |
| 2410 | #define msc_start_clk() do { MSC_STRPCL = MSC_STRPCL_CLOCK_CONTROL_START; } while (0) |
| 2411 | |
| 2412 | #define msc_stop_clk() do { MSC_STRPCL = MSC_STRPCL_CLOCK_CONTROL_STOP; } while (0) |
| 2413 | |
| 2414 | #define MMC_CLK 19169200 |
| 2415 | #define SD_CLK 24576000 |
| 2416 | |
| 2417 | /* msc_clk should little than pclk and little than clk retrieve from card */ |
| 2418 | static __inline__ unsigned msc_calc_clk_divisor (bool is_sd, unsigned dev_clk, unsigned msc_clk): |
| 2419 | unsigned rate, ret |
| 2420 | rate = is_sd ? SD_CLK : MMC_CLK |
| 2421 | if msc_clk && msc_clk < dev_clk: |
| 2422 | dev_clk = msc_clk |
| 2423 | for ret = 0; dev_clk < rate; ++ret, rate >>= 1: |
| 2424 | return ret |
| 2425 | return 0 |
| 2426 | |
| 2427 | /* divide rate to little than or equal to 400kHz */ |
| 2428 | static __inline__ unsigned msc_calc_slow_clk_divisor (bool is_sd): |
| 2429 | unsigned rate, ret |
| 2430 | rate = (is_sd ? SD_CLK : MMC_CLK) / 1000 / 400 |
| 2431 | for ret = 0; rate > 0; rate >>= 1, ++ret: |
| 2432 | return ret |
| 2433 | |
| 2434 | /*************************************************************************** |
| 2435 | * RTC |
| 2436 | ***************************************************************************/ |
| 2437 | |
| 2438 | #define rtc_start() ( RTC_RCR |= RTC_RCR_START ) |
| 2439 | #define rtc_stop() ( RTC_RCR &= ~RTC_RCR_START ) |
| 2440 | |
| 2441 | #define rtc_enable_alarm() ( RTC_RCR |= RTC_RCR_AE ) |
| 2442 | #define rtc_disable_alarm() ( RTC_RCR &= ~RTC_RCR_AE ) |
| 2443 | #define rtc_enable_alarm_irq() ( RTC_RCR |= RTC_RCR_AIE ) |
| 2444 | #define rtc_disable_alarm_irq() ( RTC_RCR &= ~RTC_RCR_AIE ) |
| 2445 | |
| 2446 | #define rtc_enable_1hz_irq() ( RTC_RCR |= RTC_RCR_HZIE ) |
| 2447 | #define rtc_disable_1hz_irq() ( RTC_RCR &= ~RTC_RCR_HZIE ) |
| 2448 | |
| 2449 | #define rtc_is_alarm_flag() ( RTC_RCR & RTC_RCR_AF ) |
| 2450 | #define rtc_is_1hz_flag() ( RTC_RCR & RTC_RCR_HZ ) |
| 2451 | #define rtc_clear_alarm_flag() ( RTC_RCR &= ~RTC_RCR_AF ) |
| 2452 | #define rtc_clear_1hz_flag() ( RTC_RCR &= ~RTC_RCR_HZ ) |
| 2453 | |
| 2454 | #define rtc_set_second(s) ( RTC_RSR = (s) ) |
| 2455 | #define rtc_get_second() RTC_RSR |
| 2456 | #define rtc_set_alarm(s) ( RTC_RSAR = (s) ) |
| 2457 | #define rtc_get_alarm() RTC_RSAR |
| 2458 | |
| 2459 | #define rtc_adjust_1hz(f32k) ( RTC_RGR = (RTC_RGR & ~(RTC_DIV_MASK | RTC_RGR_ADJ_MASK)) | f32k | 0 ) |
| 2460 | #define rtc_lock_1hz() ( RTC_RGR |= RTC_RGR_LOCK ) |
| 2461 | |
| 2462 | |
| 2463 | /*************************************************************************** |
| 2464 | * FIR |
| 2465 | ***************************************************************************/ |
| 2466 | |
| 2467 | /* enable/disable fir unit */ |
| 2468 | #define fir_enable() ( FIR_CR1 |= FIR_CR1_FIRUE ) |
| 2469 | #define fir_disable() ( FIR_CR1 &= ~FIR_CR1_FIRUE ) |
| 2470 | |
| 2471 | /* enable/disable address comparison */ |
| 2472 | #define fir_enable_ac() ( FIR_CR1 |= FIR_CR1_ACE ) |
| 2473 | #define fir_disable_ac() ( FIR_CR1 &= ~FIR_CR1_ACE ) |
| 2474 | |
| 2475 | /* select frame end mode as underrun or normal */ |
| 2476 | #define fir_set_eous() ( FIR_CR1 |= FIR_CR1_EOUS ) |
| 2477 | #define fir_clear_eous() ( FIR_CR1 &= ~FIR_CR1_EOUS ) |
| 2478 | |
| 2479 | /* enable/disable transmitter idle interrupt */ |
| 2480 | #define fir_enable_tii() ( FIR_CR1 |= FIR_CR1_TIIE ) |
| 2481 | #define fir_disable_tii() ( FIR_CR1 &= ~FIR_CR1_TIIE ) |
| 2482 | |
| 2483 | /* enable/disable transmit FIFO service request interrupt */ |
| 2484 | #define fir_enable_tfi() ( FIR_CR1 |= FIR_CR1_TFIE ) |
| 2485 | #define fir_disable_tfi() ( FIR_CR1 &= ~FIR_CR1_TFIE ) |
| 2486 | |
| 2487 | /* enable/disable receive FIFO service request interrupt */ |
| 2488 | #define fir_enable_rfi() ( FIR_CR1 |= FIR_CR1_RFIE ) |
| 2489 | #define fir_disable_rfi() ( FIR_CR1 &= ~FIR_CR1_RFIE ) |
| 2490 | |
| 2491 | /* enable/disable tx function */ |
| 2492 | #define fir_tx_enable() ( FIR_CR1 |= FIR_CR1_TXE ) |
| 2493 | #define fir_tx_disable() ( FIR_CR1 &= ~FIR_CR1_TXE ) |
| 2494 | |
| 2495 | /* enable/disable rx function */ |
| 2496 | #define fir_rx_enable() ( FIR_CR1 |= FIR_CR1_RXE ) |
| 2497 | #define fir_rx_disable() ( FIR_CR1 &= ~FIR_CR1_RXE ) |
| 2498 | |
| 2499 | |
| 2500 | /* enable/disable serial infrared interaction pulse (SIP) */ |
| 2501 | #define fir_enable_sip() ( FIR_CR2 |= FIR_CR2_SIPE ) |
| 2502 | #define fir_disable_sip() ( FIR_CR2 &= ~FIR_CR2_SIPE ) |
| 2503 | |
| 2504 | /* un-inverted CRC value is sent out */ |
| 2505 | #define fir_enable_bcrc() ( FIR_CR2 |= FIR_CR2_BCRC ) |
| 2506 | |
| 2507 | /* inverted CRC value is sent out */ |
| 2508 | #define fir_disable_bcrc() ( FIR_CR2 &= ~FIR_CR2_BCRC ) |
| 2509 | |
| 2510 | /* enable/disable Transmit Frame Length Register */ |
| 2511 | #define fir_enable_tflr() ( FIR_CR2 |= FIR_CR2_TFLRS ) |
| 2512 | #define fir_disable_tflr() ( FIR_CR2 &= ~FIR_CR2_TFLRS ) |
| 2513 | |
| 2514 | /* Preamble is transmitted in idle state */ |
| 2515 | #define fir_set_iss() ( FIR_CR2 |= FIR_CR2_ISS ) |
| 2516 | |
| 2517 | /* Abort symbol is transmitted in idle state */ |
| 2518 | #define fir_clear_iss() ( FIR_CR2 &= ~FIR_CR2_ISS ) |
| 2519 | |
| 2520 | /* enable/disable loopback mode */ |
| 2521 | #define fir_enable_loopback() ( FIR_CR2 |= FIR_CR2_LMS ) |
| 2522 | #define fir_disable_loopback() ( FIR_CR2 &= ~FIR_CR2_LMS ) |
| 2523 | |
| 2524 | /* select transmit pin polarity */ |
| 2525 | #define fir_tpp_negative() ( FIR_CR2 |= FIR_CR2_TPPS ) |
| 2526 | #define fir_tpp_positive() ( FIR_CR2 &= ~FIR_CR2_TPPS ) |
| 2527 | |
| 2528 | /* select receive pin polarity */ |
| 2529 | #define fir_rpp_negative() ( FIR_CR2 |= FIR_CR2_RPPS ) |
| 2530 | #define fir_rpp_positive() ( FIR_CR2 &= ~FIR_CR2_RPPS ) |
| 2531 | |
| 2532 | /* n=16,32,64,128 */ |
| 2533 | #define fir_set_txfifo_trigger(n) do { FIR_CR2 &= ~FIR_CR2_TTRG_MASK; FIR_CR2 |= FIR_CR2_TTRG_##n; } while (0) |
| 2534 | |
| 2535 | /* n=16,32,64,128 */ |
| 2536 | #define fir_set_rxfifo_trigger(n) do { FIR_CR2 &= ~FIR_CR2_RTRG_MASK; FIR_CR2 |= FIR_CR2_RTRG_##n; } while (0) |
| 2537 | |
| 2538 | |
| 2539 | /* FIR status checking */ |
| 2540 | |
| 2541 | #define fir_test_rfw() ( FIR_SR & FIR_SR_RFW ) |
| 2542 | #define fir_test_rfa() ( FIR_SR & FIR_SR_RFA ) |
| 2543 | #define fir_test_tfrtl() ( FIR_SR & FIR_SR_TFRTL ) |
| 2544 | #define fir_test_rfrtl() ( FIR_SR & FIR_SR_RFRTL ) |
| 2545 | #define fir_test_urun() ( FIR_SR & FIR_SR_URUN ) |
| 2546 | #define fir_test_rfte() ( FIR_SR & FIR_SR_RFTE ) |
| 2547 | #define fir_test_orun() ( FIR_SR & FIR_SR_ORUN ) |
| 2548 | #define fir_test_crce() ( FIR_SR & FIR_SR_CRCE ) |
| 2549 | #define fir_test_fend() ( FIR_SR & FIR_SR_FEND ) |
| 2550 | #define fir_test_tff() ( FIR_SR & FIR_SR_TFF ) |
| 2551 | #define fir_test_rfe() ( FIR_SR & FIR_SR_RFE ) |
| 2552 | #define fir_test_tidle() ( FIR_SR & FIR_SR_TIDLE ) |
| 2553 | #define fir_test_rb() ( FIR_SR & FIR_SR_RB ) |
| 2554 | |
| 2555 | #define fir_clear_status() do { FIR_SR |= FIR_SR_RFW | FIR_SR_RFA | FIR_SR_URUN; } while (0) |
| 2556 | |
| 2557 | #define fir_clear_rfw() ( FIR_SR |= FIR_SR_RFW ) |
| 2558 | #define fir_clear_rfa() ( FIR_SR |= FIR_SR_RFA ) |
| 2559 | #define fir_clear_urun() ( FIR_SR |= FIR_SR_URUN ) |
| 2560 | |
| 2561 | #define fir_set_tflr(len) do { FIR_TFLR = len; } while (0) |
| 2562 | |
| 2563 | #define fir_set_addr(a) ( FIR_AR = (a) ) |
| 2564 | |
| 2565 | #define fir_write_data(data) ( FIR_TDR = data ) |
| 2566 | #define fir_read_data(data) ( data = FIR_RDR ) |
| 2567 | |
| 2568 | /*************************************************************************** |
| 2569 | * SCC |
| 2570 | ***************************************************************************/ |
| 2571 | |
| 2572 | #define scc_enable(base) ( SCC_CR(base) |= SCC_CR_SCCE ) |
| 2573 | #define scc_disable(base) ( SCC_CR(base) &= ~SCC_CR_SCCE ) |
| 2574 | |
| 2575 | #define scc_set_tx_mode(base) ( SCC_CR(base) |= SCC_CR_TRS ) |
| 2576 | #define scc_set_rx_mode(base) ( SCC_CR(base) &= ~SCC_CR_TRS ) |
| 2577 | |
| 2578 | #define scc_enable_t2r(base) ( SCC_CR(base) |= SCC_CR_T2R ) |
| 2579 | #define scc_disable_t2r(base) ( SCC_CR(base) &= ~SCC_CR_T2R ) |
| 2580 | |
| 2581 | #define scc_clk_as_devclk(base) do { SCC_CR(base) &= ~SCC_CR_FDIV_MASK; SCC_CR(base) |= SCC_CR_FDIV_1; } while (0) |
| 2582 | |
| 2583 | #define scc_clk_as_half_devclk(base) do { SCC_CR(base) &= ~SCC_CR_FDIV_MASK; SCC_CR(base) |= SCC_CR_FDIV_2; } while (0) |
| 2584 | |
| 2585 | /* n=1,4,8,14 */ |
| 2586 | #define scc_set_fifo_trigger(base, n) do { SCC_CR(base) &= ~SCC_CR_TRIG_MASK; SCC_CR(base) |= SCC_CR_TRIG_##n; } while (0) |
| 2587 | |
| 2588 | #define scc_set_protocol(base, p) do { if (p) SCC_CR(base) |= SCC_CR_TP; else SCC_CR(base) &= ~SCC_CR_TP; } while (0) |
| 2589 | |
| 2590 | #define scc_flush_fifo(base) ( SCC_CR(base) |= SCC_CR_FLUSH ) |
| 2591 | |
| 2592 | #define scc_set_invert_mode(base) ( SCC_CR(base) |= SCC_CR_CONV ) |
| 2593 | #define scc_set_direct_mode(base) ( SCC_CR(base) &= ~SCC_CR_CONV ) |
| 2594 | |
| 2595 | #define SCC_ERR_INTRS ( SCC_CR_ECIE | SCC_CR_EPIE | SCC_CR_RETIE | SCC_CR_EOIE ) |
| 2596 | #define SCC_ALL_INTRS ( SCC_CR_TXIE | SCC_CR_RXIE | SCC_CR_TENDIE | SCC_CR_RTOIE | SCC_CR_ECIE | SCC_CR_EPIE | SCC_CR_RETIE | SCC_CR_EOIE ) |
| 2597 | |
| 2598 | #define scc_enable_err_intrs(base) ( SCC_CR(base) |= SCC_ERR_INTRS ) |
| 2599 | #define scc_disable_err_intrs(base) ( SCC_CR(base) &= ~SCC_ERR_INTRS ) |
| 2600 | |
| 2601 | #define SCC_ALL_ERRORS ( SCC_SR_ORER | SCC_SR_RTO | SCC_SR_PER | SCC_SR_RETR_3 | SCC_SR_ECNTO) |
| 2602 | |
| 2603 | #define scc_clear_errors(base) ( SCC_SR(base) &= ~SCC_ALL_ERRORS ) |
| 2604 | |
| 2605 | #define scc_enable_all_intrs(base) ( SCC_CR(base) |= SCC_ALL_INTRS ) |
| 2606 | #define scc_disable_all_intrs(base) ( SCC_CR(base) &= ~SCC_ALL_INTRS ) |
| 2607 | |
| 2608 | #define scc_enable_tx_intr(base) ( SCC_CR(base) |= SCC_CR_TXIE | SCC_CR_TENDIE ) |
| 2609 | #define scc_disable_tx_intr(base) ( SCC_CR(base) &= ~(SCC_CR_TXIE | SCC_CR_TENDIE) ) |
| 2610 | |
| 2611 | #define scc_enable_rx_intr(base) ( SCC_CR(base) |= SCC_CR_RXIE) |
| 2612 | #define scc_disable_rx_intr(base) ( SCC_CR(base) &= ~SCC_CR_RXIE) |
| 2613 | |
| 2614 | #define scc_set_tsend(base) ( SCC_CR(base) |= SCC_CR_TSEND ) |
| 2615 | #define scc_clear_tsend(base) ( SCC_CR(base) &= ~SCC_CR_TSEND ) |
| 2616 | |
| 2617 | #define scc_set_clockstop(base) ( SCC_CR(base) |= SCC_CR_CLKSTP ) |
| 2618 | #define scc_clear_clockstop(base) ( SCC_CR(base) &= ~SCC_CR_CLKSTP ) |
| 2619 | |
| 2620 | #define scc_clockstop_low(base) do { SCC_CR(base) &= ~SCC_CR_PX_MASK; SCC_CR(base) |= SCC_CR_PX_STOP_LOW; } while (0) |
| 2621 | |
| 2622 | #define scc_clockstop_high(base) do { SCC_CR(base) &= ~SCC_CR_PX_MASK; SCC_CR(base) |= SCC_CR_PX_STOP_HIGH; } while (0) |
| 2623 | |
| 2624 | |
| 2625 | /* SCC status checking */ |
| 2626 | #define scc_check_transfer_status(base) ( SCC_SR(base) & SCC_SR_TRANS ) |
| 2627 | #define scc_check_rx_overrun_error(base) ( SCC_SR(base) & SCC_SR_ORER ) |
| 2628 | #define scc_check_rx_timeout(base) ( SCC_SR(base) & SCC_SR_RTO ) |
| 2629 | #define scc_check_parity_error(base) ( SCC_SR(base) & SCC_SR_PER ) |
| 2630 | #define scc_check_txfifo_trigger(base) ( SCC_SR(base) & SCC_SR_TFTG ) |
| 2631 | #define scc_check_rxfifo_trigger(base) ( SCC_SR(base) & SCC_SR_RFTG ) |
| 2632 | #define scc_check_tx_end(base) ( SCC_SR(base) & SCC_SR_TEND ) |
| 2633 | #define scc_check_retx_3(base) ( SCC_SR(base) & SCC_SR_RETR_3 ) |
| 2634 | #define scc_check_ecnt_overflow(base) ( SCC_SR(base) & SCC_SR_ECNTO ) |
| 2635 | |
| 2636 | |
| 2637 | /*************************************************************************** |
| 2638 | * WDT |
| 2639 | ***************************************************************************/ |
| 2640 | |
| 2641 | #define wdt_set_count(count) ( WDT_WTCNT = (count) ) |
| 2642 | #define wdt_start() ( WDT_WTCSR |= WDT_WTCSR_START ) |
| 2643 | #define wdt_stop() ( WDT_WTCSR &= ~WDT_WTCSR_START ) |
| 2644 | |
| 2645 | |
| 2646 | /*************************************************************************** |
| 2647 | * OST |
| 2648 | ***************************************************************************/ |
| 2649 | |
| 2650 | #define ost_enable_all() ( OST_TER |= 0x07 ) |
| 2651 | #define ost_disable_all() ( OST_TER &= ~0x07 ) |
| 2652 | #define ost_enable_channel(n) ( OST_TER |= (1 << (n)) ) |
| 2653 | #define ost_disable_channel(n) ( OST_TER &= ~(1 << (n)) ) |
| 2654 | #define ost_set_reload(n, val) ( OST_TRDR (n) = (val) ) |
| 2655 | #define ost_set_count(n, val) ( OST_TCNT (n) = (val) ) |
| 2656 | #define ost_get_count(n) ( OST_TCNT (n) ) |
| 2657 | #define ost_set_clock(n, cs) ( OST_TCSR (n) = OST_TCSR (n) & ~OST_TCSR_CKS_MASK | (cs) ) |
| 2658 | #define ost_set_mode(n, val) ( OST_TCSR (n) = (val) ) |
| 2659 | #define ost_enable_interrupt(n) ( OST_TCSR (n) |= OST_TCSR_UIE ) |
| 2660 | #define ost_disable_interrupt(n) ( OST_TCSR (n) &= ~OST_TCSR_UIE ) |
| 2661 | #define ost_uf_detected(n) ( OST_TCSR (n) & OST_TCSR_UF ) |
| 2662 | #define ost_clear_uf(n) ( OST_TCSR (n) &= ~OST_TCSR_UF ) |
| 2663 | #define ost_is_busy(n) ( OST_TCSR (n) & OST_TCSR_BUSY ) |
| 2664 | #define ost_clear_busy(n) ( OST_TCSR (n) &= ~OST_TCSR_BUSY ) |
| 2665 | |
| 2666 | /*************************************************************************** |
| 2667 | * UART |
| 2668 | ***************************************************************************/ |
| 2669 | |
| 2670 | #define uart_enable(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_FCR) |= UARTFCR_UUE | UARTFCR_FE ) |
| 2671 | #define uart_disable(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_FCR) = ~UARTFCR_UUE ) |
| 2672 | |
| 2673 | #define uart_enable_transmit_irq(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_IER) |= UARTIER_TIE ) |
| 2674 | #define uart_disable_transmit_irq(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_IER) &= ~UARTIER_TIE ) |
| 2675 | |
| 2676 | #define uart_enable_receive_irq(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_IER) |= UARTIER_RIE | UARTIER_RLIE | UARTIER_RTIE ) |
| 2677 | #define uart_disable_receive_irq(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_IER) &= ~(UARTIER_RIE | UARTIER_RLIE | UARTIER_RTIE) ) |
| 2678 | |
| 2679 | #define uart_enable_loopback(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_MCR) |= UARTMCR_LOOP ) |
| 2680 | #define uart_disable_loopback(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_MCR) &= ~UARTMCR_LOOP ) |
| 2681 | |
| 2682 | #define uart_set_8n1(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_LCR) = UARTLCR_WLEN_8 ) |
| 2683 | |
| 2684 | #define uart_set_baud(n, devclk, baud) do { REG8(UART_BASE + UART_OFF*(n) + OFF_LCR) |= UARTLCR_DLAB; REG8(UART_BASE + UART_OFF*(n) + OFF_DLLR) = (devclk / 16 / baud) & 0xff; REG8(UART_BASE + UART_OFF*(n) + OFF_DLHR) = ((devclk / 16 / baud) >> 8) & 0xff; REG8(UART_BASE + UART_OFF*(n) + OFF_LCR) &= ~UARTLCR_DLAB; } while (0) |
| 2685 | |
| 2686 | #define uart_parity_error(n) ( (REG8(UART_BASE + UART_OFF*(n) + OFF_LSR) & UARTLSR_PER) != 0 ) |
| 2687 | |
| 2688 | #define uart_clear_errors(n) ( REG8(UART_BASE + UART_OFF*(n) + OFF_LSR) &= ~(UARTLSR_ORER | UARTLSR_BRK | UARTLSR_FER | UARTLSR_PER | UARTLSR_RFER) ) |
| 2689 | |
| 2690 | #define uart_transmit_fifo_empty(n) ( (REG8(UART_BASE + UART_OFF*(n) + OFF_LSR) & UARTLSR_TDRQ) != 0 ) |
| 2691 | |
| 2692 | #define uart_transmit_end(n) ( (REG8(UART_BASE + UART_OFF*(n) + OFF_LSR) & UARTLSR_TEMT) != 0 ) |
| 2693 | |
| 2694 | #define uart_transmit_char(n, ch) REG8(UART_BASE + UART_OFF*(n) + OFF_TDR) = (ch) |
| 2695 | |
| 2696 | #define uart_receive_fifo_full(n) ( (REG8(UART_BASE + UART_OFF*(n) + OFF_LSR) & UARTLSR_DR) != 0 ) |
| 2697 | |
| 2698 | #define uart_receive_ready(n) ( (REG8(UART_BASE + UART_OFF*(n) + OFF_LSR) & UARTLSR_DR) != 0 ) |
| 2699 | |
| 2700 | #define uart_receive_char(n) REG8(UART_BASE + UART_OFF*(n) + OFF_RDR) |
| 2701 | |
| 2702 | #define uart_disable_irda() ( REG8(IRDA_BASE + OFF_SIRCR) &= ~(SIRCR_TSIRE | SIRCR_RSIRE) ) |
| 2703 | #define uart_enable_irda() /* Tx high pulse as 0, Rx low pulse as 0 */ ( REG8(IRDA_BASE + OFF_SIRCR) = SIRCR_TSIRE | SIRCR_RSIRE | SIRCR_RXPL | SIRCR_TPWS ) |
| 2704 | |
| 2705 | |
| 2706 | /*************************************************************************** |
| 2707 | * INTC |
| 2708 | ***************************************************************************/ |
| 2709 | #define intc_unmask_irq(n) ( INTC_IMCR = (1 << (n)) ) |
| 2710 | #define intc_mask_irq(n) ( INTC_IMSR = (1 << (n)) ) |
| 2711 | #define intc_ack_irq(n) ( INTC_IPR = (1 << (n)) ) |
| 2712 | |
| 2713 | /*************************************************************************** |
| 2714 | * CIM |
| 2715 | ***************************************************************************/ |
| 2716 | |
| 2717 | #define cim_enable() ( CIM_CTRL |= CIM_CTRL_ENA ) |
| 2718 | #define cim_disable() ( CIM_CTRL &= ~CIM_CTRL_ENA ) |
| 2719 | |
| 2720 | #define cim_input_data_inverse() ( CIM_CFG |= CIM_CFG_INV_DAT ) |
| 2721 | #define cim_input_data_normal() ( CIM_CFG &= ~CIM_CFG_INV_DAT ) |
| 2722 | |
| 2723 | #define cim_vsync_active_low() ( CIM_CFG |= CIM_CFG_VSP ) |
| 2724 | #define cim_vsync_active_high() ( CIM_CFG &= ~CIM_CFG_VSP ) |
| 2725 | |
| 2726 | #define cim_hsync_active_low() ( CIM_CFG |= CIM_CFG_HSP ) |
| 2727 | #define cim_hsync_active_high() ( CIM_CFG &= ~CIM_CFG_HSP ) |
| 2728 | |
| 2729 | #define cim_sample_data_at_pclk_falling_edge() ( CIM_CFG |= CIM_CFG_PCP ) |
| 2730 | #define cim_sample_data_at_pclk_rising_edge() ( CIM_CFG &= ~CIM_CFG_PCP ) |
| 2731 | |
| 2732 | #define cim_enable_dummy_zero() ( CIM_CFG |= CIM_CFG_DUMMY_ZERO ) |
| 2733 | #define cim_disable_dummy_zero() ( CIM_CFG &= ~CIM_CFG_DUMMY_ZERO ) |
| 2734 | |
| 2735 | #define cim_select_external_vsync() ( CIM_CFG |= CIM_CFG_EXT_VSYNC ) |
| 2736 | #define cim_select_internal_vsync() ( CIM_CFG &= ~CIM_CFG_EXT_VSYNC ) |
| 2737 | |
| 2738 | /* n=0-7 */ |
| 2739 | #define cim_set_data_packing_mode(n) do { CIM_CFG &= ~CIM_CFG_PACK_MASK; CIM_CFG |= (CIM_CFG_PACK_##n); } while (0) |
| 2740 | |
| 2741 | #define cim_enable_ccir656_progressive_mode() do { CIM_CFG &= ~CIM_CFG_DSM_MASK; CIM_CFG |= CIM_CFG_DSM_CPM; } while (0) |
| 2742 | |
| 2743 | #define cim_enable_ccir656_interlace_mode() do { CIM_CFG &= ~CIM_CFG_DSM_MASK; CIM_CFG |= CIM_CFG_DSM_CIM; } while (0) |
| 2744 | |
| 2745 | #define cim_enable_gated_clock_mode() do { CIM_CFG &= ~CIM_CFG_DSM_MASK; CIM_CFG |= CIM_CFG_DSM_GCM; } while (0) |
| 2746 | |
| 2747 | #define cim_enable_nongated_clock_mode() do { CIM_CFG &= ~CIM_CFG_DSM_MASK; CIM_CFG |= CIM_CFG_DSM_NGCM; } while (0) |
| 2748 | |
| 2749 | /* sclk:system bus clock |
| 2750 | * mclk: CIM master clock |
| 2751 | */ |
| 2752 | #define cim_set_master_clk(sclk, mclk) do { CIM_CTRL &= ~CIM_CTRL_MCLKDIV_MASK; CIM_CTRL |= (((sclk)/(mclk) - 1) << CIM_CTRL_MCLKDIV_BIT); } while (0) |
| 2753 | |
| 2754 | #define cim_enable_sof_intr() ( CIM_CTRL |= CIM_CTRL_DMA_SOFM ) |
| 2755 | #define cim_disable_sof_intr() ( CIM_CTRL &= ~CIM_CTRL_DMA_SOFM ) |
| 2756 | |
| 2757 | #define cim_enable_eof_intr() ( CIM_CTRL |= CIM_CTRL_DMA_EOFM ) |
| 2758 | #define cim_disable_eof_intr() ( CIM_CTRL &= ~CIM_CTRL_DMA_EOFM ) |
| 2759 | |
| 2760 | #define cim_enable_stop_intr() ( CIM_CTRL |= CIM_CTRL_DMA_STOPM ) |
| 2761 | #define cim_disable_stop_intr() ( CIM_CTRL &= ~CIM_CTRL_DMA_STOPM ) |
| 2762 | |
| 2763 | #define cim_enable_trig_intr() ( CIM_CTRL |= CIM_CTRL_RXF_TRIGM ) |
| 2764 | #define cim_disable_trig_intr() ( CIM_CTRL &= ~CIM_CTRL_RXF_TRIGM ) |
| 2765 | |
| 2766 | #define cim_enable_rxfifo_overflow_intr() ( CIM_CTRL |= CIM_CTRL_RXF_OFM ) |
| 2767 | #define cim_disable_rxfifo_overflow_intr() ( CIM_CTRL &= ~CIM_CTRL_RXF_OFM ) |
| 2768 | |
| 2769 | /* n=1-16 */ |
| 2770 | #define cim_set_frame_rate(n) do { CIM_CTRL &= ~CIM_CTRL_FRC_MASK; CIM_CTRL |= CIM_CTRL_FRC_##n; } while (0) |
| 2771 | |
| 2772 | #define cim_enable_dma() ( CIM_CTRL |= CIM_CTRL_DMA_EN ) |
| 2773 | #define cim_disable_dma() ( CIM_CTRL &= ~CIM_CTRL_DMA_EN ) |
| 2774 | |
| 2775 | #define cim_reset_rxfifo() ( CIM_CTRL |= CIM_CTRL_RXF_RST ) |
| 2776 | #define cim_unreset_rxfifo() ( CIM_CTRL &= ~CIM_CTRL_RXF_RST ) |
| 2777 | |
| 2778 | /* n=4,8,12,16,20,24,28,32 */ |
| 2779 | #define cim_set_rxfifo_trigger(n) do { CIM_CTRL &= ~CIM_CTRL_RXF_TRIG_MASK; CIM_CTRL |= CIM_CTRL_RXF_TRIG_##n; } while (0) |
| 2780 | |
| 2781 | #define cim_clear_state() ( CIM_STATE = 0 ) |
| 2782 | |
| 2783 | #define cim_disable_done() ( CIM_STATE & CIM_STATE_VDD ) |
| 2784 | #define cim_rxfifo_empty() ( CIM_STATE & CIM_STATE_RXF_EMPTY ) |
| 2785 | #define cim_rxfifo_reach_trigger() ( CIM_STATE & CIM_STATE_RXF_TRIG ) |
| 2786 | #define cim_rxfifo_overflow() ( CIM_STATE & CIM_STATE_RXF_OF ) |
| 2787 | #define cim_clear_rxfifo_overflow() ( CIM_STATE &= ~CIM_STATE_RXF_OF ) |
| 2788 | #define cim_dma_stop() ( CIM_STATE & CIM_STATE_DMA_STOP ) |
| 2789 | #define cim_dma_eof() ( CIM_STATE & CIM_STATE_DMA_EOF ) |
| 2790 | #define cim_dma_sof() ( CIM_STATE & CIM_STATE_DMA_SOF ) |
| 2791 | |
| 2792 | #define cim_get_iid() ( CIM_IID ) |
| 2793 | #define cim_get_image_data() ( CIM_RXFIFO ) |
| 2794 | #define cim_get_dam_cmd() ( CIM_CMD ) |
| 2795 | |
| 2796 | #define cim_set_da(a) ( CIM_DA = (a) ) |
| 2797 | |
| 2798 | /*************************************************************************** |
| 2799 | * PWM |
| 2800 | ***************************************************************************/ |
| 2801 | |
| 2802 | /* n is the pwm channel (0,1,..) */ |
| 2803 | #define pwm_enable_module(n) ( PWM_CTR(n) |= PWM_CTR_EN ) |
| 2804 | #define pwm_disable_module(n) ( PWM_CTR(n) &= ~PWM_CTR_EN ) |
| 2805 | #define pwm_graceful_shutdown_mode(n) ( PWM_CTR(n) &= ~PWM_CTR_SD ) |
| 2806 | #define pwm_abrupt_shutdown_mode(n) ( PWM_CTR(n) |= PWM_CTR_SD ) |
| 2807 | #define pwm_set_full_duty(n) ( PWM_DUT(n) |= PWM_DUT_FDUTY ) |
| 2808 | |
| 2809 | #define pwm_set_prescale(n, p) ( PWM_CTR(n) = ((PWM_CTR(n) & ~PWM_CTR_PRESCALE_MASK) | (p) ) ) |
| 2810 | #define pwm_set_period(n, p) ( PWM_PER(n) = ( (PWM_PER(n) & ~PWM_PER_PERIOD_MASK) | (p) ) ) |
| 2811 | #define pwm_set_duty(n, d) ( PWM_DUT(n) = ( (PWM_DUT(n) & ~(PWM_DUT_FDUTY | PWM_DUT_DUTY_MASK)) | (d) ) ) |
| 2812 | |
| 2813 | /*************************************************************************** |
| 2814 | * EMC |
| 2815 | ***************************************************************************/ |
| 2816 | |
| 2817 | #define emc_enable_split() ( EMC_BCR = EMC_BCR_BRE ) |
| 2818 | #define emc_disable_split() ( EMC_BCR = 0 ) |
| 2819 | |
| 2820 | #define emc_smem_bus_width(n) /* 8, 16 or 32*/ ( EMC_SMCR = (EMC_SMCR & EMC_SMCR_BW_MASK) | EMC_SMCR_BW_##n##BIT ) |
| 2821 | #define emc_smem_byte_control() ( EMC_SMCR = (EMC_SMCR | EMC_SMCR_BCM ) ) |
| 2822 | #define emc_normal_smem() ( EMC_SMCR = (EMC_SMCR & ~EMC_SMCR_SMT ) ) |
| 2823 | #define emc_burst_smem() ( EMC_SMCR = (EMC_SMCR | EMC_SMCR_SMT ) ) |
| 2824 | #define emc_smem_burstlen(n) /* 4, 8, 16 or 32 */ ( EMC_SMCR = (EMC_SMCR & EMC_SMCR_BL_MASK) | (EMC_SMCR_BL_##n) ) |
| 2825 | |
| 2826 | /*************************************************************************** |
| 2827 | * GPIO |
| 2828 | ***************************************************************************/ |
| 2829 | |
| 2830 | #define GPIO_PW_I_PORT 3 |
| 2831 | #define GPIO_PW_I 1 |
| 2832 | #define GPIO_MCU_PORT 2 |
| 2833 | #define GPIO_MCU 1 |
| 2834 | #define GPIO_LED_EN_PORT 2 |
| 2835 | #define GPIO_LED_EN 28 |
| 2836 | #define GPIO_DISP_OFF_N_PORT 2 |
| 2837 | #define GPIO_DISP_OFF_N 29 |
| 2838 | #define GPIO_PWM0_PORT 2 |
| 2839 | #define GPIO_PWM0 30 |
| 2840 | #define GPIO_RTC_IRQ_PORT 3 |
| 2841 | #define GPIO_RTC_IRQ 0 |
| 2842 | #define GPIO_USB_CLK_EN_PORT 0 |
| 2843 | #define GPIO_USB_CLK_EN 29 |
| 2844 | #define GPIO_CHARG_STAT_PORT 3 |
| 2845 | #define GPIO_CHARG_STAT 29 |
| 2846 | #define GPIO_TS_PENIRQ_PORT 2 |
| 2847 | #define GPIO_TS_PENIRQ 4 |
| 2848 | #define GPIO_CAPS_PORT 0 |
| 2849 | #define GPIO_CAPS 27 |
| 2850 | #define GPIO_SCROLL_PORT 0 |
| 2851 | #define GPIO_SCROLL 9 |
| 2852 | #define GPIO_NUM_PORT 2 |
| 2853 | #define GPIO_NUM 22 |
| 2854 | #define GPIO_TP_LEFT_PORT 0 |
| 2855 | #define GPIO_TP_LEFT 16 |
| 2856 | #define GPIO_TP_RIGHT_PORT 0 |
| 2857 | #define GPIO_TP_RIGHT 13 |
| 2858 | #define GPIO_PWM_ENABLE_PORT 2 |
| 2859 | #define GPIO_PWM_ENABLE 30 |
| 2860 | #define GPIO_KBD_NUM_ROWS 8 |
| 2861 | #define GPIO_KBD_NUM_COLS 17 |
| 2862 | #define GPIO_KBD_COL_PORT 3 |
| 2863 | #define GPIO_KBD_COL_MASK 0x2000ffff |
| 2864 | #define GPIO_KBD_ROW_PORT 0 |
| 2865 | #define GPIO_KBD_ROW_MASK 0x000000ff |
| 2866 | #define GPIO_KBD_ROW_HALF 0x00005555 |
| 2867 | |
| 2868 | #define GPIO_HALF(x) (((x) & 0xf) << 1) |
| 2869 | |
| 2870 | static __inline__ void gpio_as_gpio (unsigned port, unsigned pin): |
| 2871 | unsigned mask = 3 << GPIO_HALF (pin) |
| 2872 | if pin < 16: |
| 2873 | GPIO_GPALR (port) &= ~mask |
| 2874 | else: |
| 2875 | GPIO_GPAUR (port) &= ~mask |
| 2876 | |
| 2877 | static __inline__ void gpio_as_input (unsigned port, unsigned pin): |
| 2878 | #if 0 |
| 2879 | unsigned mask = 3 << GPIO_HALF (pin) |
| 2880 | if pin < 16: |
| 2881 | GPIO_GPIDLR (port) &= ~mask |
| 2882 | else: |
| 2883 | GPIO_GPIDUR (port) &= ~mask |
| 2884 | #else |
| 2885 | GPIO_GPDIR (port) &= ~(1 << pin) |
| 2886 | #endif |
| 2887 | |
| 2888 | static __inline__ void gpio_as_output (unsigned port, unsigned pin): |
| 2889 | #if 0 |
| 2890 | unsigned half = 1 << GPIO_HALF (pin) |
| 2891 | if pin < 16: |
| 2892 | GPIO_GPIDLR (port) = (GPIO_GPIDLR (port) & ~(3 * half)) | half |
| 2893 | else: |
| 2894 | GPIO_GPIDUR (port) = (GPIO_GPIDUR (port) & ~(3 * half)) | half |
| 2895 | #else |
| 2896 | GPIO_GPDIR (port) |= 1 << pin |
| 2897 | #endif |
| 2898 | |
| 2899 | static __inline__ void gpio_irq (unsigned port, unsigned pin, unsigned how): |
| 2900 | unsigned half = 1 << GPIO_HALF (pin) |
| 2901 | if pin < 16: |
| 2902 | GPIO_GPIDLR (port) = (GPIO_GPIDLR (port) & ~(3 * half)) | (how * half) |
| 2903 | else: |
| 2904 | GPIO_GPIDUR (port) = (GPIO_GPIDUR (port) & ~(3 * half)) | (how * half) |
| 2905 | |
| 2906 | static __inline__ void gpio_irq_low (unsigned port, unsigned pin): |
| 2907 | gpio_irq (port, pin, GPIO_IRQ_LOLEVEL) |
| 2908 | |
| 2909 | static __inline__ void gpio_irq_high (unsigned port, unsigned pin): |
| 2910 | gpio_irq (port, pin, GPIO_IRQ_HILEVEL) |
| 2911 | |
| 2912 | static __inline__ void gpio_irq_fall (unsigned port, unsigned pin): |
| 2913 | gpio_irq (port, pin, GPIO_IRQ_FALLEDG) |
| 2914 | |
| 2915 | static __inline__ void gpio_irq_rise (unsigned port, unsigned pin): |
| 2916 | gpio_irq (port, pin, GPIO_IRQ_RAISEDG) |
| 2917 | |
| 2918 | /* Init the alternate function pins */ |
| 2919 | |
| 2920 | static __inline__ void gpio_as_ssi (): |
| 2921 | GPIO_GPALR (2) = (GPIO_GPALR (2) & 0xFC00FFFF) | 0x01550000 |
| 2922 | |
| 2923 | static __inline__ void gpio_as_uart3 (): |
| 2924 | GPIO_GPAUR (0) = (GPIO_GPAUR (0) & 0xFFFF0000) | 0x00005555 |
| 2925 | |
| 2926 | static __inline__ void gpio_as_uart2 (): |
| 2927 | GPIO_GPALR (3) = (GPIO_GPALR (3) & 0x3FFFFFFF) | 0x40000000 |
| 2928 | GPIO_GPAUR (3) = (GPIO_GPAUR (3) & 0xF3FFFFFF) | 0x04000000 |
| 2929 | |
| 2930 | static __inline__ void gpio_as_uart1 (): |
| 2931 | GPIO_GPAUR (0) = (GPIO_GPAUR (0) & 0xFFF0FFFF) | 0x00050000 |
| 2932 | |
| 2933 | static __inline__ void gpio_as_uart0 (): |
| 2934 | GPIO_GPAUR (3) = (GPIO_GPAUR (3) & 0x0FFFFFFF) | 0x50000000 |
| 2935 | |
| 2936 | |
| 2937 | static __inline__ void gpio_as_scc0 (): |
| 2938 | GPIO_GPALR (2) = (GPIO_GPALR (2) & 0xFFFFFFCC) | 0x00000011 |
| 2939 | |
| 2940 | static __inline__ void gpio_as_scc1 (): |
| 2941 | GPIO_GPALR (2) = (GPIO_GPALR (2) & 0xFFFFFF33) | 0x00000044 |
| 2942 | |
| 2943 | static __inline__ void gpio_as_scc (): |
| 2944 | gpio_as_scc0 () |
| 2945 | gpio_as_scc1 () |
| 2946 | |
| 2947 | static __inline__ void gpio_as_dma (): |
| 2948 | GPIO_GPALR (0) = (GPIO_GPALR (0) & 0x00FFFFFF) | 0x55000000 |
| 2949 | GPIO_GPAUR (0) = (GPIO_GPAUR (0) & 0xFF0FFFFF) | 0x00500000 |
| 2950 | |
| 2951 | static __inline__ void gpio_as_msc (): |
| 2952 | GPIO_GPALR (1) = (GPIO_GPALR (1) & 0xFFFF000F) | 0x00005550 |
| 2953 | |
| 2954 | static __inline__ void gpio_as_pcmcia (): |
| 2955 | GPIO_GPAUR (2) = (GPIO_GPAUR (2) & 0xF000FFFF) | 0x05550000 |
| 2956 | |
| 2957 | static __inline__ void gpio_as_emc (): |
| 2958 | GPIO_GPALR (2) = (GPIO_GPALR (2) & 0x3FFFFFFF) | 0x40000000 |
| 2959 | GPIO_GPAUR (2) = (GPIO_GPAUR (2) & 0xFFFF0000) | 0x00005555 |
| 2960 | |
| 2961 | static __inline__ void gpio_as_lcd_slave (): |
| 2962 | GPIO_GPALR (1) = (GPIO_GPALR (1) & 0x0000FFFF) | 0x55550000 |
| 2963 | GPIO_GPAUR (1) = (GPIO_GPAUR (1) & 0x00000000) | 0x55555555 |
| 2964 | |
| 2965 | static __inline__ void gpio_as_lcd_master (): |
| 2966 | GPIO_GPALR (1) = (GPIO_GPALR (1) & 0x0000FFFF) | 0x55550000 |
| 2967 | GPIO_GPAUR (1) = (GPIO_GPAUR (1) & 0x00000000) | 0x556A5555 |
| 2968 | |
| 2969 | static __inline__ void gpio_as_usb (): |
| 2970 | GPIO_GPAUR (0) = (GPIO_GPAUR (0) & 0x00FFFFFF) | 0x55000000 |
| 2971 | |
| 2972 | static __inline__ void gpio_as_ac97 (): |
| 2973 | GPIO_GPALR (2) = (GPIO_GPALR (2) & 0xC3FF03FF) | 0x24005400 |
| 2974 | |
| 2975 | static __inline__ void gpio_as_i2s_slave (): |
| 2976 | GPIO_GPALR (2) = (GPIO_GPALR (2) & 0xC3FF0CFF) | 0x14005100 |
| 2977 | |
| 2978 | static __inline__ void gpio_as_i2s_master (): |
| 2979 | GPIO_GPALR (2) = (GPIO_GPALR (2) & 0xC3FF0CFF) | 0x28005100 |
| 2980 | |
| 2981 | static __inline__ void gpio_as_eth (): |
| 2982 | GPIO_GPAUR (3) = (GPIO_GPAUR (3) & 0xFC000000) | 0x01555555 |
| 2983 | |
| 2984 | static __inline__ void gpio_as_pwm (): |
| 2985 | GPIO_GPAUR (2) = (GPIO_GPAUR (2) & 0x0FFFFFFF) | 0x50000000 |
| 2986 | |
| 2987 | static __inline__ void gpio_as_ps2 (): |
| 2988 | GPIO_GPALR (1) = (GPIO_GPALR (1) & 0xFFFFFFF0) | 0x00000005 |
| 2989 | |
| 2990 | static __inline__ void gpio_as_uprt (): |
| 2991 | GPIO_GPALR (1) = (GPIO_GPALR (1) & 0x0000000F) | 0x55555550 |
| 2992 | GPIO_GPALR (3) = (GPIO_GPALR (3) & 0xC0000000) | 0x15555555 |
| 2993 | |
| 2994 | static __inline__ void gpio_as_cim (): |
| 2995 | GPIO_GPALR (0) = (GPIO_GPALR (0) & 0xFF000000) | 0x00555555 |
| 2996 | |
| 2997 | /*************************************************************************** |
| 2998 | * HARB |
| 2999 | ***************************************************************************/ |
| 3000 | |
| 3001 | #define harb_usb0_udc() do { HARB_HAPOR &= ~HARB_HAPOR_UCHSEL; } while (0) |
| 3002 | |
| 3003 | #define harb_usb0_uhc() do { HARB_HAPOR |= HARB_HAPOR_UCHSEL; } while (0) |
| 3004 | |
| 3005 | #define harb_set_priority(n) do { HARB_HAPOR = ((HARB_HAPOR & ~HARB_HAPOR_PRIO_MASK) | n); } while (0) |
| 3006 | |
| 3007 | /*************************************************************************** |
| 3008 | * I2C |
| 3009 | ***************************************************************************/ |
| 3010 | |
| 3011 | #define i2c_enable() ( I2C_CR |= I2C_CR_I2CE ) |
| 3012 | #define i2c_disable() ( I2C_CR &= ~I2C_CR_I2CE ) |
| 3013 | |
| 3014 | #define i2c_send_start() ( I2C_CR |= I2C_CR_STA ) |
| 3015 | #define i2c_send_stop() ( I2C_CR |= I2C_CR_STO ) |
| 3016 | #define i2c_send_ack() ( I2C_CR &= ~I2C_CR_AC ) |
| 3017 | #define i2c_send_nack() ( I2C_CR |= I2C_CR_AC ) |
| 3018 | |
| 3019 | #define i2c_set_drf() ( I2C_SR |= I2C_SR_DRF ) |
| 3020 | #define i2c_clear_drf() ( I2C_SR &= ~I2C_SR_DRF ) |
| 3021 | #define i2c_check_drf() ( I2C_SR & I2C_SR_DRF ) |
| 3022 | |
| 3023 | #define i2c_received_ack() ( !(I2C_SR & I2C_SR_ACKF) ) |
| 3024 | #define i2c_is_busy() ( I2C_SR & I2C_SR_BUSY ) |
| 3025 | #define i2c_transmit_ended() ( I2C_SR & I2C_SR_TEND ) |
| 3026 | |
| 3027 | #define i2c_set_clk(dev_clk, i2c_clk) ( I2C_GR = (dev_clk) / (16*(i2c_clk)) - 1 ) |
| 3028 | |
| 3029 | #define i2c_read() ( I2C_DR ) |
| 3030 | #define i2c_write(val) ( I2C_DR = (val) ) |
| 3031 | |
| 3032 | #ifndef __KERNEL__ |
| 3033 | static __inline__ void i2c_open (): |
| 3034 | i2c_set_clk (JZ_EXTAL, 10000) |
| 3035 | i2c_enable () |
| 3036 | |
| 3037 | // Note that this kills messages from the queue. |
| 3038 | static __inline__ void i2c_close (): |
| 3039 | cdelay (30) |
| 3040 | i2c_disable () |
| 3041 | |
| 3042 | static __inline__ bool i2c_send (unsigned data): |
| 3043 | unsigned timeout = 10000 |
| 3044 | i2c_write (data) |
| 3045 | i2c_set_drf () |
| 3046 | while i2c_check_drf () != 0: |
| 3047 | while !i2c_transmit_ended (): |
| 3048 | while !i2c_received_ack (): |
| 3049 | if !--timeout: |
| 3050 | return false |
| 3051 | return true |
| 3052 | |
| 3053 | static __inline__ unsigned i2c_write_page (unsigned dev, unsigned addr, char const *data, unsigned count): |
| 3054 | unsigned timeout = 5 |
| 3055 | i2c_send_start () |
| 3056 | if !i2c_send ((dev << 1) | I2C_WRITE): |
| 3057 | i2c_send_stop () |
| 3058 | return 0 |
| 3059 | if !i2c_send (addr): |
| 3060 | i2c_send_stop () |
| 3061 | return 0 |
| 3062 | if count > 8: |
| 3063 | count = 8 |
| 3064 | unsigned i |
| 3065 | for i = 0; i < count; ++i: |
| 3066 | if !i2c_send (*data++): |
| 3067 | break |
| 3068 | i2c_send_stop () |
| 3069 | return i |
| 3070 | #endif |
| 3071 | |
| 3072 | /*************************************************************************** |
| 3073 | * UDC |
| 3074 | ***************************************************************************/ |
| 3075 | |
| 3076 | #define udc_set_16bit_phy() ( UDC_DevCFGR |= UDC_DevCFGR_PI ) |
| 3077 | #define udc_set_8bit_phy() ( UDC_DevCFGR &= ~UDC_DevCFGR_PI ) |
| 3078 | |
| 3079 | #define udc_enable_sync_frame() ( UDC_DevCFGR |= UDC_DevCFGR_SS ) |
| 3080 | #define udc_disable_sync_frame() ( UDC_DevCFGR &= ~UDC_DevCFGR_SS ) |
| 3081 | |
| 3082 | #define udc_self_powered() ( UDC_DevCFGR |= UDC_DevCFGR_SP ) |
| 3083 | #define udc_bus_powered() ( UDC_DevCFGR &= ~UDC_DevCFGR_SP ) |
| 3084 | |
| 3085 | #define udc_enable_remote_wakeup() ( UDC_DevCFGR |= UDC_DevCFGR_RW ) |
| 3086 | #define udc_disable_remote_wakeup() ( UDC_DevCFGR &= ~UDC_DevCFGR_RW ) |
| 3087 | |
| 3088 | #define udc_set_speed_high() do { UDC_DevCFGR &= ~UDC_DevCFGR_SPD_MASK; UDC_DevCFGR |= UDC_DevCFGR_SPD_HS; } while (0) |
| 3089 | |
| 3090 | #define udc_set_speed_full() do { UDC_DevCFGR &= ~UDC_DevCFGR_SPD_MASK; UDC_DevCFGR |= UDC_DevCFGR_SPD_FS; } while (0) |
| 3091 | |
| 3092 | #define udc_set_speed_low() do { UDC_DevCFGR &= ~UDC_DevCFGR_SPD_MASK; UDC_DevCFGR |= UDC_DevCFGR_SPD_LS; } while (0) |
| 3093 | |
| 3094 | |
| 3095 | #define udc_set_dma_mode() ( UDC_DevCR |= UDC_DevCR_DM ) |
| 3096 | #define udc_set_slave_mode() ( UDC_DevCR &= ~UDC_DevCR_DM ) |
| 3097 | #define udc_set_big_endian() ( UDC_DevCR |= UDC_DevCR_BE ) |
| 3098 | #define udc_set_little_endian() ( UDC_DevCR &= ~UDC_DevCR_BE ) |
| 3099 | #define udc_generate_resume() ( UDC_DevCR |= UDC_DevCR_RES ) |
| 3100 | #define udc_clear_resume() ( UDC_DevCR &= ~UDC_DevCR_RES ) |
| 3101 | |
| 3102 | |
| 3103 | #define udc_get_enumarated_speed() ( UDC_DevSR & UDC_DevSR_ENUMSPD_MASK ) |
| 3104 | #define udc_suspend_detected() ( UDC_DevSR & UDC_DevSR_SUSP ) |
| 3105 | #define udc_get_alternate_setting() ( (UDC_DevSR & UDC_DevSR_ALT_MASK) >> UDC_DevSR_ALT_BIT ) |
| 3106 | #define udc_get_interface_number() ( (UDC_DevSR & UDC_DevSR_INTF_MASK) >> UDC_DevSR_INTF_BIT ) |
| 3107 | #define udc_get_config_number() ( (UDC_DevSR & UDC_DevSR_CFG_MASK) >> UDC_DevSR_CFG_BIT ) |
| 3108 | |
| 3109 | |
| 3110 | #define udc_sof_detected(r) ( (r) & UDC_DevIntR_SOF ) |
| 3111 | #define udc_usb_suspend_detected(r) ( (r) & UDC_DevIntR_US ) |
| 3112 | #define udc_usb_reset_detected(r) ( (r) & UDC_DevIntR_UR ) |
| 3113 | #define udc_set_interface_detected(r) ( (r) & UDC_DevIntR_SI ) |
| 3114 | #define udc_set_config_detected(r) ( (r) & UDC_DevIntR_SC ) |
| 3115 | |
| 3116 | #define udc_clear_sof() ( UDC_DevIntR |= UDC_DevIntR_SOF ) |
| 3117 | #define udc_clear_usb_suspend() ( UDC_DevIntR |= UDC_DevIntR_US ) |
| 3118 | #define udc_clear_usb_reset() ( UDC_DevIntR |= UDC_DevIntR_UR ) |
| 3119 | #define udc_clear_set_interface() ( UDC_DevIntR |= UDC_DevIntR_SI ) |
| 3120 | #define udc_clear_set_config() ( UDC_DevIntR |= UDC_DevIntR_SC ) |
| 3121 | |
| 3122 | #define udc_mask_sof() ( UDC_DevIntMR |= UDC_DevIntR_SOF ) |
| 3123 | #define udc_mask_usb_suspend() ( UDC_DevIntMR |= UDC_DevIntR_US ) |
| 3124 | #define udc_mask_usb_reset() ( UDC_DevIntMR |= UDC_DevIntR_UR ) |
| 3125 | #define udc_mask_set_interface() ( UDC_DevIntMR |= UDC_DevIntR_SI ) |
| 3126 | #define udc_mask_set_config() ( UDC_DevIntMR |= UDC_DevIntR_SC ) |
| 3127 | #define udc_mask_all_dev_intrs() ( UDC_DevIntMR = UDC_DevIntR_SOF | UDC_DevIntR_US | UDC_DevIntR_UR | UDC_DevIntR_SI | UDC_DevIntR_SC ) |
| 3128 | |
| 3129 | #define udc_unmask_sof() ( UDC_DevIntMR &= ~UDC_DevIntR_SOF ) |
| 3130 | #define udc_unmask_usb_suspend() ( UDC_DevIntMR &= ~UDC_DevIntR_US ) |
| 3131 | #define udc_unmask_usb_reset() ( UDC_DevIntMR &= ~UDC_DevIntR_UR ) |
| 3132 | #define udc_unmask_set_interface() ( UDC_DevIntMR &= ~UDC_DevIntR_SI ) |
| 3133 | #define udc_unmask_set_config() ( UDC_DevIntMR &= ~UDC_DevIntR_SC ) |
| 3134 | #if 0 |
| 3135 | #define udc_unmask_all_dev_intrs() ( UDC_DevIntMR = ~(UDC_DevIntR_SOF | UDC_DevIntR_US | UDC_DevIntR_UR | UDC_DevIntR_SI | UDC_DevIntR_SC) ) |
| 3136 | #else |
| 3137 | #define udc_unmask_all_dev_intrs() ( UDC_DevIntMR = 0x00000000 ) |
| 3138 | #endif |
| 3139 | |
| 3140 | |
| 3141 | #define udc_ep0out_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_OUTEP_MASK) >> (UDC_EPIntR_OUTEP_BIT + 0)) & 0x1 ) |
| 3142 | #define udc_ep5out_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_OUTEP_MASK) >> (UDC_EPIntR_OUTEP_BIT + 5)) & 0x1 ) |
| 3143 | #define udc_ep6out_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_OUTEP_MASK) >> (UDC_EPIntR_OUTEP_BIT + 6)) & 0x1 ) |
| 3144 | #define udc_ep7out_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_OUTEP_MASK) >> (UDC_EPIntR_OUTEP_BIT + 7)) & 0x1 ) |
| 3145 | |
| 3146 | #define udc_ep0in_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_INEP_MASK) >> (UDC_EPIntR_INEP_BIT + 0)) & 0x1 ) |
| 3147 | #define udc_ep1in_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_INEP_MASK) >> (UDC_EPIntR_INEP_BIT + 1)) & 0x1 ) |
| 3148 | #define udc_ep2in_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_INEP_MASK) >> (UDC_EPIntR_INEP_BIT + 2)) & 0x1 ) |
| 3149 | #define udc_ep3in_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_INEP_MASK) >> (UDC_EPIntR_INEP_BIT + 3)) & 0x1 ) |
| 3150 | #define udc_ep4in_irq_detected(epintr) ( (((epintr) & UDC_EPIntR_INEP_MASK) >> (UDC_EPIntR_INEP_BIT + 4)) & 0x1 ) |
| 3151 | |
| 3152 | |
| 3153 | #define udc_mask_ep0out_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_OUTEP_BIT + 0)) ) |
| 3154 | #define udc_mask_ep5out_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_OUTEP_BIT + 5)) ) |
| 3155 | #define udc_mask_ep6out_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_OUTEP_BIT + 6)) ) |
| 3156 | #define udc_mask_ep7out_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_OUTEP_BIT + 7)) ) |
| 3157 | |
| 3158 | #define udc_unmask_ep0out_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_OUTEP_BIT + 0)) ) |
| 3159 | #define udc_unmask_ep5out_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_OUTEP_BIT + 5)) ) |
| 3160 | #define udc_unmask_ep6out_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_OUTEP_BIT + 6)) ) |
| 3161 | #define udc_unmask_ep7out_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_OUTEP_BIT + 7)) ) |
| 3162 | |
| 3163 | #define udc_mask_ep0in_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_INEP_BIT + 0)) ) |
| 3164 | #define udc_mask_ep1in_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_INEP_BIT + 1)) ) |
| 3165 | #define udc_mask_ep2in_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_INEP_BIT + 2)) ) |
| 3166 | #define udc_mask_ep3in_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_INEP_BIT + 3)) ) |
| 3167 | #define udc_mask_ep4in_irq() ( UDC_EPIntMR |= (1 << (UDC_EPIntMR_INEP_BIT + 4)) ) |
| 3168 | |
| 3169 | #define udc_unmask_ep0in_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_INEP_BIT + 0)) ) |
| 3170 | #define udc_unmask_ep1in_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_INEP_BIT + 1)) ) |
| 3171 | #define udc_unmask_ep2in_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_INEP_BIT + 2)) ) |
| 3172 | #define udc_unmask_ep3in_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_INEP_BIT + 3)) ) |
| 3173 | #define udc_unmask_ep4in_irq() ( UDC_EPIntMR &= ~(1 << (UDC_EPIntMR_INEP_BIT + 4)) ) |
| 3174 | |
| 3175 | #define udc_mask_all_ep_intrs() ( UDC_EPIntMR = 0xffffffff ) |
| 3176 | #define udc_unmask_all_ep_intrs() ( UDC_EPIntMR = 0x00000000 ) |
| 3177 | |
| 3178 | |
| 3179 | /* ep0 only CTRL, ep1 only INTR, ep2/3/5/6 only BULK, ep4/7 only ISO */ |
| 3180 | static __inline__ void udc_config_endpoint_type (): |
| 3181 | UDC_EP0InCR = (UDC_EP0InCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_CTRL |
| 3182 | UDC_EP0OutCR = (UDC_EP0OutCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_CTRL |
| 3183 | UDC_EP1InCR = (UDC_EP1InCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_INTR |
| 3184 | UDC_EP2InCR = (UDC_EP2InCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_BULK |
| 3185 | UDC_EP3InCR = (UDC_EP3InCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_BULK |
| 3186 | UDC_EP4InCR = (UDC_EP4InCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_ISO |
| 3187 | UDC_EP5OutCR = (UDC_EP5OutCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_BULK |
| 3188 | UDC_EP6OutCR = (UDC_EP6OutCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_BULK |
| 3189 | UDC_EP7OutCR = (UDC_EP7OutCR & ~UDC_EPCR_ET_MASK) | UDC_EPCR_ET_ISO |
| 3190 | |
| 3191 | #define udc_enable_ep0out_snoop_mode() ( UDC_EP0OutCR |= UDC_EPCR_SN ) |
| 3192 | #define udc_enable_ep5out_snoop_mode() ( UDC_EP5OutCR |= UDC_EPCR_SN ) |
| 3193 | #define udc_enable_ep6out_snoop_mode() ( UDC_EP6OutCR |= UDC_EPCR_SN ) |
| 3194 | #define udc_enable_ep7out_snoop_mode() ( UDC_EP7OutCR |= UDC_EPCR_SN ) |
| 3195 | |
| 3196 | #define udc_disable_ep0out_snoop_mode() ( UDC_EP0OutCR &= ~UDC_EPCR_SN ) |
| 3197 | #define udc_disable_ep5out_snoop_mode() ( UDC_EP5OutCR &= ~UDC_EPCR_SN ) |
| 3198 | #define udc_disable_ep6out_snoop_mode() ( UDC_EP6OutCR &= ~UDC_EPCR_SN ) |
| 3199 | #define udc_disable_ep7out_snoop_mode() ( UDC_EP7OutCR &= ~UDC_EPCR_SN ) |
| 3200 | |
| 3201 | #define udc_flush_ep0in_fifo() ( UDC_EP0InCR |= UDC_EPCR_F ) |
| 3202 | #define udc_flush_ep1in_fifo() ( UDC_EP1InCR |= UDC_EPCR_F ) |
| 3203 | #define udc_flush_ep2in_fifo() ( UDC_EP2InCR |= UDC_EPCR_F ) |
| 3204 | #define udc_flush_ep3in_fifo() ( UDC_EP3InCR |= UDC_EPCR_F ) |
| 3205 | #define udc_flush_ep4in_fifo() ( UDC_EP4InCR |= UDC_EPCR_F ) |
| 3206 | |
| 3207 | #define udc_unflush_ep0in_fifo() ( UDC_EP0InCR &= ~UDC_EPCR_F ) |
| 3208 | #define udc_unflush_ep1in_fifo() ( UDC_EP1InCR &= ~UDC_EPCR_F ) |
| 3209 | #define udc_unflush_ep2in_fifo() ( UDC_EP2InCR &= ~UDC_EPCR_F ) |
| 3210 | #define udc_unflush_ep3in_fifo() ( UDC_EP3InCR &= ~UDC_EPCR_F ) |
| 3211 | #define udc_unflush_ep4in_fifo() ( UDC_EP4InCR &= ~UDC_EPCR_F ) |
| 3212 | |
| 3213 | #define udc_enable_ep0in_stall() ( UDC_EP0InCR |= UDC_EPCR_S ) |
| 3214 | #define udc_enable_ep0out_stall() ( UDC_EP0OutCR |= UDC_EPCR_S ) |
| 3215 | #define udc_enable_ep1in_stall() ( UDC_EP1InCR |= UDC_EPCR_S ) |
| 3216 | #define udc_enable_ep2in_stall() ( UDC_EP2InCR |= UDC_EPCR_S ) |
| 3217 | #define udc_enable_ep3in_stall() ( UDC_EP3InCR |= UDC_EPCR_S ) |
| 3218 | #define udc_enable_ep4in_stall() ( UDC_EP4InCR |= UDC_EPCR_S ) |
| 3219 | #define udc_enable_ep5out_stall() ( UDC_EP5OutCR |= UDC_EPCR_S ) |
| 3220 | #define udc_enable_ep6out_stall() ( UDC_EP6OutCR |= UDC_EPCR_S ) |
| 3221 | #define udc_enable_ep7out_stall() ( UDC_EP7OutCR |= UDC_EPCR_S ) |
| 3222 | |
| 3223 | #define udc_disable_ep0in_stall() ( UDC_EP0InCR &= ~UDC_EPCR_S ) |
| 3224 | #define udc_disable_ep0out_stall() ( UDC_EP0OutCR &= ~UDC_EPCR_S ) |
| 3225 | #define udc_disable_ep1in_stall() ( UDC_EP1InCR &= ~UDC_EPCR_S ) |
| 3226 | #define udc_disable_ep2in_stall() ( UDC_EP2InCR &= ~UDC_EPCR_S ) |
| 3227 | #define udc_disable_ep3in_stall() ( UDC_EP3InCR &= ~UDC_EPCR_S ) |
| 3228 | #define udc_disable_ep4in_stall() ( UDC_EP4InCR &= ~UDC_EPCR_S ) |
| 3229 | #define udc_disable_ep5out_stall() ( UDC_EP5OutCR &= ~UDC_EPCR_S ) |
| 3230 | #define udc_disable_ep6out_stall() ( UDC_EP6OutCR &= ~UDC_EPCR_S ) |
| 3231 | #define udc_disable_ep7out_stall() ( UDC_EP7OutCR &= ~UDC_EPCR_S ) |
| 3232 | |
| 3233 | |
| 3234 | #define udc_ep0out_packet_size() ( (UDC_EP0OutSR & UDC_EPSR_RXPKTSIZE_MASK) >> UDC_EPSR_RXPKTSIZE_BIT ) |
| 3235 | #define udc_ep5out_packet_size() ( (UDC_EP5OutSR & UDC_EPSR_RXPKTSIZE_MASK) >> UDC_EPSR_RXPKTSIZE_BIT ) |
| 3236 | #define udc_ep6out_packet_size() ( (UDC_EP6OutSR & UDC_EPSR_RXPKTSIZE_MASK) >> UDC_EPSR_RXPKTSIZE_BIT ) |
| 3237 | #define udc_ep7out_packet_size() ( (UDC_EP7OutSR & UDC_EPSR_RXPKTSIZE_MASK) >> UDC_EPSR_RXPKTSIZE_BIT ) |
| 3238 | |
| 3239 | #define udc_ep0in_received_intoken() ( (UDC_EP0InSR & UDC_EPSR_IN) ) |
| 3240 | #define udc_ep1in_received_intoken() ( (UDC_EP1InSR & UDC_EPSR_IN) ) |
| 3241 | #define udc_ep2in_received_intoken() ( (UDC_EP2InSR & UDC_EPSR_IN) ) |
| 3242 | #define udc_ep3in_received_intoken() ( (UDC_EP3InSR & UDC_EPSR_IN) ) |
| 3243 | #define udc_ep4in_received_intoken() ( (UDC_EP4InSR & UDC_EPSR_IN) ) |
| 3244 | |
| 3245 | #define udc_ep0out_received_none() ( (UDC_EP0OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_NONE ) |
| 3246 | #define udc_ep0out_received_data() ( (UDC_EP0OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVDATA ) |
| 3247 | #define udc_ep0out_received_setup() ( (UDC_EP0OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVSETUP ) |
| 3248 | |
| 3249 | #define udc_ep5out_received_none() ( (UDC_EP5OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_NONE ) |
| 3250 | #define udc_ep5out_received_data() ( (UDC_EP5OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVDATA ) |
| 3251 | #define udc_ep5out_received_setup() ( (UDC_EP5OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVSETUP ) |
| 3252 | |
| 3253 | #define udc_ep6out_received_none() ( (UDC_EP6OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_NONE ) |
| 3254 | #define udc_ep6out_received_data() ( (UDC_EP6OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVDATA ) |
| 3255 | #define udc_ep6out_received_setup() ( (UDC_EP6OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVSETUP ) |
| 3256 | |
| 3257 | #define udc_ep7out_received_none() ( (UDC_EP7OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_NONE ) |
| 3258 | #define udc_ep7out_received_data() ( (UDC_EP7OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVDATA ) |
| 3259 | #define udc_ep7out_received_setup() ( (UDC_EP7OutSR & UDC_EPSR_OUT_MASK) == UDC_EPSR_OUT_RCVSETUP ) |
| 3260 | |
| 3261 | /* ep7out ISO only */ |
| 3262 | #define udc_ep7out_get_pid() ( (UDC_EP7OutSR & UDC_EPSR_PID_MASK) >> UDC_EPSR_PID_BIT ) |
| 3263 | |
| 3264 | |
| 3265 | #define udc_ep0in_set_buffer_size(n) ( UDC_EP0InBSR = (n) ) |
| 3266 | #define udc_ep1in_set_buffer_size(n) ( UDC_EP1InBSR = (n) ) |
| 3267 | #define udc_ep2in_set_buffer_size(n) ( UDC_EP2InBSR = (n) ) |
| 3268 | #define udc_ep3in_set_buffer_size(n) ( UDC_EP3InBSR = (n) ) |
| 3269 | #define udc_ep4in_set_buffer_size(n) ( UDC_EP4InBSR = (n) ) |
| 3270 | |
| 3271 | #define udc_ep0out_get_frame_number(n) ( UDC_EP0OutPFNR ) |
| 3272 | #define udc_ep5out_get_frame_number(n) ( UDC_EP5OutPFNR ) |
| 3273 | #define udc_ep6out_get_frame_number(n) ( UDC_EP6OutPFNR ) |
| 3274 | #define udc_ep7out_get_frame_number(n) ( UDC_EP7OutPFNR ) |
| 3275 | |
| 3276 | |
| 3277 | #define udc_ep0in_set_max_packet_size(n) ( UDC_EP0InMPSR = (n) ) |
| 3278 | #define udc_ep0out_set_max_packet_size(n) ( UDC_EP0OutMPSR = (n) ) |
| 3279 | #define udc_ep1in_set_max_packet_size(n) ( UDC_EP1InMPSR = (n) ) |
| 3280 | #define udc_ep2in_set_max_packet_size(n) ( UDC_EP2InMPSR = (n) ) |
| 3281 | #define udc_ep3in_set_max_packet_size(n) ( UDC_EP3InMPSR = (n) ) |
| 3282 | #define udc_ep4in_set_max_packet_size(n) ( UDC_EP4InMPSR = (n) ) |
| 3283 | #define udc_ep5out_set_max_packet_size(n) ( UDC_EP5OutMPSR = (n) ) |
| 3284 | #define udc_ep6out_set_max_packet_size(n) ( UDC_EP6OutMPSR = (n) ) |
| 3285 | #define udc_ep7out_set_max_packet_size(n) ( UDC_EP7OutMPSR = (n) ) |
| 3286 | |
| 3287 | /* set to 0xFFFF for UDC */ |
| 3288 | #define udc_set_setup_command_address(n) ( UDC_STCMAR = (n) ) |
| 3289 | |
| 3290 | /* Init and configure EPxInfR(x=0,1,2,3,4,5,6,7) |
| 3291 | * c: Configuration number to which this endpoint belongs |
| 3292 | * i: Interface number to which this endpoint belongs |
| 3293 | * a: Alternate setting to which this endpoint belongs |
| 3294 | * p: max Packet size of this endpoint |
| 3295 | */ |
| 3296 | |
| 3297 | static __inline__ void udc_ep0info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3298 | UDC_EP0InfR &= ~UDC_EPInfR_MPS_MASK |
| 3299 | UDC_EP0InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3300 | UDC_EP0InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3301 | UDC_EP0InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3302 | UDC_EP0InfR &= ~UDC_EPInfR_IFN_MASK |
| 3303 | UDC_EP0InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3304 | UDC_EP0InfR &= ~UDC_EPInfR_CGN_MASK |
| 3305 | UDC_EP0InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3306 | UDC_EP0InfR &= ~UDC_EPInfR_EPT_MASK |
| 3307 | UDC_EP0InfR |= UDC_EPInfR_EPT_CTRL |
| 3308 | UDC_EP0InfR &= ~UDC_EPInfR_EPD |
| 3309 | UDC_EP0InfR |= UDC_EPInfR_EPD_OUT |
| 3310 | UDC_EP0InfR &= ~UDC_EPInfR_EPN_MASK |
| 3311 | UDC_EP0InfR |= (0 << UDC_EPInfR_EPN_BIT) |
| 3312 | |
| 3313 | static __inline__ void udc_ep1info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3314 | UDC_EP1InfR &= ~UDC_EPInfR_MPS_MASK |
| 3315 | UDC_EP1InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3316 | UDC_EP1InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3317 | UDC_EP1InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3318 | UDC_EP1InfR &= ~UDC_EPInfR_IFN_MASK |
| 3319 | UDC_EP1InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3320 | UDC_EP1InfR &= ~UDC_EPInfR_CGN_MASK |
| 3321 | UDC_EP1InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3322 | UDC_EP1InfR &= ~UDC_EPInfR_EPT_MASK |
| 3323 | UDC_EP1InfR |= UDC_EPInfR_EPT_INTR |
| 3324 | UDC_EP1InfR &= ~UDC_EPInfR_EPD |
| 3325 | UDC_EP1InfR |= UDC_EPInfR_EPD_IN |
| 3326 | UDC_EP1InfR &= ~UDC_EPInfR_EPN_MASK |
| 3327 | UDC_EP1InfR |= (1 << UDC_EPInfR_EPN_BIT) |
| 3328 | |
| 3329 | static __inline__ void udc_ep2info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3330 | UDC_EP2InfR &= ~UDC_EPInfR_MPS_MASK |
| 3331 | UDC_EP2InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3332 | UDC_EP2InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3333 | UDC_EP2InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3334 | UDC_EP2InfR &= ~UDC_EPInfR_IFN_MASK |
| 3335 | UDC_EP2InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3336 | UDC_EP2InfR &= ~UDC_EPInfR_CGN_MASK |
| 3337 | UDC_EP2InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3338 | UDC_EP2InfR &= ~UDC_EPInfR_EPT_MASK |
| 3339 | UDC_EP2InfR |= UDC_EPInfR_EPT_BULK |
| 3340 | UDC_EP2InfR &= ~UDC_EPInfR_EPD |
| 3341 | UDC_EP2InfR |= UDC_EPInfR_EPD_IN |
| 3342 | UDC_EP2InfR &= ~UDC_EPInfR_EPN_MASK |
| 3343 | UDC_EP2InfR |= (2 << UDC_EPInfR_EPN_BIT) |
| 3344 | |
| 3345 | static __inline__ void udc_ep3info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3346 | UDC_EP3InfR &= ~UDC_EPInfR_MPS_MASK |
| 3347 | UDC_EP3InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3348 | UDC_EP3InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3349 | UDC_EP3InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3350 | UDC_EP3InfR &= ~UDC_EPInfR_IFN_MASK |
| 3351 | UDC_EP3InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3352 | UDC_EP3InfR &= ~UDC_EPInfR_CGN_MASK |
| 3353 | UDC_EP3InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3354 | UDC_EP3InfR &= ~UDC_EPInfR_EPT_MASK |
| 3355 | UDC_EP3InfR |= UDC_EPInfR_EPT_BULK |
| 3356 | UDC_EP3InfR &= ~UDC_EPInfR_EPD |
| 3357 | UDC_EP3InfR |= UDC_EPInfR_EPD_IN |
| 3358 | UDC_EP3InfR &= ~UDC_EPInfR_EPN_MASK |
| 3359 | UDC_EP3InfR |= (3 << UDC_EPInfR_EPN_BIT) |
| 3360 | |
| 3361 | static __inline__ void udc_ep4info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3362 | UDC_EP4InfR &= ~UDC_EPInfR_MPS_MASK |
| 3363 | UDC_EP4InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3364 | UDC_EP4InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3365 | UDC_EP4InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3366 | UDC_EP4InfR &= ~UDC_EPInfR_IFN_MASK |
| 3367 | UDC_EP4InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3368 | UDC_EP4InfR &= ~UDC_EPInfR_CGN_MASK |
| 3369 | UDC_EP4InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3370 | UDC_EP4InfR &= ~UDC_EPInfR_EPT_MASK |
| 3371 | UDC_EP4InfR |= UDC_EPInfR_EPT_ISO |
| 3372 | UDC_EP4InfR &= ~UDC_EPInfR_EPD |
| 3373 | UDC_EP4InfR |= UDC_EPInfR_EPD_IN |
| 3374 | UDC_EP4InfR &= ~UDC_EPInfR_EPN_MASK |
| 3375 | UDC_EP4InfR |= (4 << UDC_EPInfR_EPN_BIT) |
| 3376 | |
| 3377 | static __inline__ void udc_ep5info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3378 | UDC_EP5InfR &= ~UDC_EPInfR_MPS_MASK |
| 3379 | UDC_EP5InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3380 | UDC_EP5InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3381 | UDC_EP5InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3382 | UDC_EP5InfR &= ~UDC_EPInfR_IFN_MASK |
| 3383 | UDC_EP5InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3384 | UDC_EP5InfR &= ~UDC_EPInfR_CGN_MASK |
| 3385 | UDC_EP5InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3386 | UDC_EP5InfR &= ~UDC_EPInfR_EPT_MASK |
| 3387 | UDC_EP5InfR |= UDC_EPInfR_EPT_BULK |
| 3388 | UDC_EP5InfR &= ~UDC_EPInfR_EPD |
| 3389 | UDC_EP5InfR |= UDC_EPInfR_EPD_OUT |
| 3390 | UDC_EP5InfR &= ~UDC_EPInfR_EPN_MASK |
| 3391 | UDC_EP5InfR |= (5 << UDC_EPInfR_EPN_BIT) |
| 3392 | |
| 3393 | static __inline__ void udc_ep6info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3394 | UDC_EP6InfR &= ~UDC_EPInfR_MPS_MASK |
| 3395 | UDC_EP6InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3396 | UDC_EP6InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3397 | UDC_EP6InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3398 | UDC_EP6InfR &= ~UDC_EPInfR_IFN_MASK |
| 3399 | UDC_EP6InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3400 | UDC_EP6InfR &= ~UDC_EPInfR_CGN_MASK |
| 3401 | UDC_EP6InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3402 | UDC_EP6InfR &= ~UDC_EPInfR_EPT_MASK |
| 3403 | UDC_EP6InfR |= UDC_EPInfR_EPT_BULK |
| 3404 | UDC_EP6InfR &= ~UDC_EPInfR_EPD |
| 3405 | UDC_EP6InfR |= UDC_EPInfR_EPD_OUT |
| 3406 | UDC_EP6InfR &= ~UDC_EPInfR_EPN_MASK |
| 3407 | UDC_EP6InfR |= (6 << UDC_EPInfR_EPN_BIT) |
| 3408 | |
| 3409 | static __inline__ void udc_ep7info_init (unsigned c, unsigned i, unsigned a, unsigned p): |
| 3410 | UDC_EP7InfR &= ~UDC_EPInfR_MPS_MASK |
| 3411 | UDC_EP7InfR |= ((p) << UDC_EPInfR_MPS_BIT) |
| 3412 | UDC_EP7InfR &= ~UDC_EPInfR_ALTS_MASK |
| 3413 | UDC_EP7InfR |= ((a) << UDC_EPInfR_ALTS_BIT) |
| 3414 | UDC_EP7InfR &= ~UDC_EPInfR_IFN_MASK |
| 3415 | UDC_EP7InfR |= ((i) << UDC_EPInfR_IFN_BIT) |
| 3416 | UDC_EP7InfR &= ~UDC_EPInfR_CGN_MASK |
| 3417 | UDC_EP7InfR |= ((c) << UDC_EPInfR_CGN_BIT) |
| 3418 | UDC_EP7InfR &= ~UDC_EPInfR_EPT_MASK |
| 3419 | UDC_EP7InfR |= UDC_EPInfR_EPT_ISO |
| 3420 | UDC_EP7InfR &= ~UDC_EPInfR_EPD |
| 3421 | UDC_EP7InfR |= UDC_EPInfR_EPD_OUT |
| 3422 | UDC_EP7InfR &= ~UDC_EPInfR_EPN_MASK |
| 3423 | UDC_EP7InfR |= (7 << UDC_EPInfR_EPN_BIT) |
| 3424 | |
| 3425 | |
| 3426 | /*************************************************************************** |
| 3427 | * DMAC |
| 3428 | ***************************************************************************/ |
| 3429 | |
| 3430 | /* n is the DMA channel (0 - 7) */ |
| 3431 | |
| 3432 | #define dmac_enable_all_channels() ( DMAC_DMACR |= DMAC_DMACR_DME | DMAC_DMACR_PR_ROUNDROBIN ) |
| 3433 | #define dmac_disable_all_channels() ( DMAC_DMACR &= ~DMAC_DMACR_DME ) |
| 3434 | |
| 3435 | /* p=0,1,2,3 */ |
| 3436 | #define dmac_set_priority(p) ( DMAC_DMACR = (DMAC_DMACR & ~DMAC_DMACR_PR_MASK) | ((p) << DMAC_DMACR_PR_BIT) ) |
| 3437 | |
| 3438 | #define dmac_test_halt_error() ( DMAC_DMACR & DMAC_DMACR_HTR ) |
| 3439 | #define dmac_test_addr_error() ( DMAC_DMACR & DMAC_DMACR_AER ) |
| 3440 | |
| 3441 | #define dmac_enable_channel(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_CHDE ) |
| 3442 | #define dmac_disable_channel(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_CHDE ) |
| 3443 | #define dmac_channel_enabled(n) ( DMAC_DCCSR(n) & DMAC_DCCSR_CHDE ) |
| 3444 | |
| 3445 | #define dmac_channel_enable_irq(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_TCIE ) |
| 3446 | #define dmac_channel_disable_irq(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_TCIE ) |
| 3447 | |
| 3448 | #define dmac_channel_transmit_halt_detected(n) ( DMAC_DCCSR(n) & DMAC_DCCSR_HLT ) |
| 3449 | #define dmac_channel_transmit_end_detected(n) ( DMAC_DCCSR(n) & DMAC_DCCSR_TC ) |
| 3450 | #define dmac_channel_address_error_detected(n) ( DMAC_DCCSR(n) & DMAC_DCCSR_AR ) |
| 3451 | |
| 3452 | #define dmac_channel_clear_transmit_halt(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_HLT ) |
| 3453 | #define dmac_channel_clear_transmit_end(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_TC ) |
| 3454 | #define dmac_channel_clear_address_error(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_AR ) |
| 3455 | |
| 3456 | #define dmac_channel_set_single_mode(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_TM ) |
| 3457 | #define dmac_channel_set_block_mode(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_TM ) |
| 3458 | |
| 3459 | #define dmac_channel_set_transfer_unit_32bit(n) (DMAC_DCCSR (n) = (DMAC_DCCSR & ~DMAC_DCCSR_DS_MASK) | DMAC_DCCSR_DS_32b) |
| 3460 | |
| 3461 | #define dmac_channel_set_transfer_unit_16bit(n) (DMAC_DCCSR(n) = (DMAC_DCCSR(n) & ~DMAC_DCCSR_DS_MASK) | DMAC_DCCSR_DS_16b) |
| 3462 | |
| 3463 | #define dmac_channel_set_transfer_unit_8bit(n) (DMAC_DCCSR(n) = (DMAC_DCCSR(n) & ~DMAC_DCCSR_DS_MASK) | DMAC_DCCSR_DS_8b) |
| 3464 | |
| 3465 | #define dmac_channel_set_transfer_unit_16byte(n) (DMAC_DCCSR(n) = (DMAC_DCCSR(n) & ~DMAC_DCCSR_DS_MASK) | DMAC_DCCSR_DS_16B) |
| 3466 | |
| 3467 | #define dmac_channel_set_transfer_unit_32byte(n) (DMAC_DCCSR(n) = (DMAC_DCCSR(n) & ~DMAC_DCCSR_DS_MASK) | DMAC_DCCSR_DS_32B) |
| 3468 | |
| 3469 | /* w=8,16,32 */ |
| 3470 | #define dmac_channel_set_dest_port_width(n,w) (DMAC_DCCSR(n) = (MAC_DCCSR(n) & ~DMAC_DCCSR_DWDH_MASK) | DMAC_DCCSR_DWDH_##w) |
| 3471 | |
| 3472 | /* w=8,16,32 */ |
| 3473 | #define dmac_channel_set_src_port_width(n,w) (DMAC_DCCSR(n) = (MAC_DCCSR(n) & ~DMAC_DCCSR_SWDH_MASK) | DMAC_DCCSR_SWDH_##w) |
| 3474 | |
| 3475 | /* v=0-15 */ |
| 3476 | #define dmac_channel_set_rdil(n,v) (DMAC_DCCSR(n) = (MAC_DCCSR(n) & ~DMAC_DCCSR_RDIL_MASK) | ((v) << DMAC_DCCSR_RDIL_BIT)) |
| 3477 | |
| 3478 | #define dmac_channel_dest_addr_fixed(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_DAM ) |
| 3479 | #define dmac_channel_dest_addr_increment(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_DAM ) |
| 3480 | |
| 3481 | #define dmac_channel_src_addr_fixed(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_SAM ) |
| 3482 | #define dmac_channel_src_addr_increment(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_SAM ) |
| 3483 | |
| 3484 | #define dmac_channel_set_eop_high(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_EOPM ) |
| 3485 | #define dmac_channel_set_eop_low(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_EOPM ) |
| 3486 | |
| 3487 | #define dmac_channel_set_erdm(n,m) (DMAC_DCCSR(n) = (MAC_DCCSR(n) & ~DMAC_DCCSR_SWDH_MASK;) | ((m) << DMAC_DCCSR_ERDM_BIT)) |
| 3488 | |
| 3489 | #define dmac_channel_set_eackm(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_EACKM ) |
| 3490 | #define dmac_channel_clear_eackm(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_EACKM ) |
| 3491 | |
| 3492 | #define dmac_channel_set_eacks(n) ( DMAC_DCCSR(n) |= DMAC_DCCSR_EACKS ) |
| 3493 | #define dmac_channel_clear_eacks(n) ( DMAC_DCCSR(n) &= ~DMAC_DCCSR_EACKS ) |
| 3494 | |
| 3495 | |
| 3496 | #define dmac_channel_irq_detected(n) ( DMAC_DCCSR(n) & (DMAC_DCCSR_TC | DMAC_DCCSR_AR) ) |
| 3497 | |
| 3498 | static __inline__ int dmac_get_irq (): |
| 3499 | int i |
| 3500 | for i = 0; i < NUM_DMA; i++: |
| 3501 | if dmac_channel_irq_detected(i): |
| 3502 | return i |
| 3503 | return -1 |
| 3504 | |
| 3505 | /*************************************************************************** |
| 3506 | * AIC (AC'97 & I2S Controller) |
| 3507 | ***************************************************************************/ |
| 3508 | |
| 3509 | #define aic_enable() ( AIC_FR |= AIC_FR_ENB ) |
| 3510 | #define aic_disable() ( AIC_FR &= ~AIC_FR_ENB ) |
| 3511 | #define aic_reset() ( AIC_FR |= AIC_FR_RST ) |
| 3512 | #define aic_select_ac97() ( AIC_FR &= ~AIC_FR_AUSEL ) |
| 3513 | #define aic_select_i2s() ( AIC_FR |= AIC_FR_AUSEL ) |
| 3514 | |
| 3515 | #define i2s_as_master() ( AIC_FR |= AIC_FR_BCKD | AIC_FR_SYNCD ) |
| 3516 | #define i2s_as_slave() ( AIC_FR &= ~(AIC_FR_BCKD | AIC_FR_SYNCD) ) |
| 3517 | |
| 3518 | #define aic_set_transmit_trigger(n) (AIC_FR = (IC_FR & ~AIC_FR_TFTH_MASK;) | ((n) << AIC_FR_TFTH_BIT)) |
| 3519 | |
| 3520 | #define aic_set_receive_trigger(n) (AIC_FR = (IC_FR & ~AIC_FR_RFTH_MASK;) | ((n) << AIC_FR_RFTH_BIT)) |
| 3521 | |
| 3522 | #define aic_enable_record() ( AIC_CR |= AIC_CR_EREC ) |
| 3523 | #define aic_disable_record() ( AIC_CR &= ~AIC_CR_EREC ) |
| 3524 | #define aic_enable_replay() ( AIC_CR |= AIC_CR_ERPL ) |
| 3525 | #define aic_disable_replay() ( AIC_CR &= ~AIC_CR_ERPL ) |
| 3526 | #define aic_enable_loopback() ( AIC_CR |= AIC_CR_ENLBF ) |
| 3527 | #define aic_disable_loopback() ( AIC_CR &= ~AIC_CR_ENLBF ) |
| 3528 | |
| 3529 | #define aic_flush_fifo() ( AIC_CR |= AIC_CR_FLUSH ) |
| 3530 | #define aic_unflush_fifo() ( AIC_CR &= ~AIC_CR_FLUSH ) |
| 3531 | |
| 3532 | #define aic_enable_transmit_intr() ( AIC_CR |= (AIC_CR_ETFS | AIC_CR_ETUR) ) |
| 3533 | #define aic_disable_transmit_intr() ( AIC_CR &= ~(AIC_CR_ETFS | AIC_CR_ETUR) ) |
| 3534 | #define aic_enable_receive_intr() ( AIC_CR |= (AIC_CR_ERFS | AIC_CR_EROR) ) |
| 3535 | #define aic_disable_receive_intr() ( AIC_CR &= ~(AIC_CR_ERFS | AIC_CR_EROR) ) |
| 3536 | |
| 3537 | #define aic_enable_transmit_dma() ( AIC_CR |= AIC_CR_TDMS ) |
| 3538 | #define aic_disable_transmit_dma() ( AIC_CR &= ~AIC_CR_TDMS ) |
| 3539 | #define aic_enable_receive_dma() ( AIC_CR |= AIC_CR_RDMS ) |
| 3540 | #define aic_disable_receive_dma() ( AIC_CR &= ~AIC_CR_RDMS ) |
| 3541 | |
| 3542 | #define aic_enable_mono2stereo() |
| 3543 | #define aic_disable_mono2stereo() |
| 3544 | #define aic_enable_byteswap() |
| 3545 | #define aic_disable_byteswap() |
| 3546 | #define aic_enable_unsignadj() |
| 3547 | #define aic_disable_unsignadj() |
| 3548 | |
| 3549 | #define AC97_PCM_XS_L_FRONT AIC_ACCR1_XS_SLOT3 |
| 3550 | #define AC97_PCM_XS_R_FRONT AIC_ACCR1_XS_SLOT4 |
| 3551 | #define AC97_PCM_XS_CENTER AIC_ACCR1_XS_SLOT6 |
| 3552 | #define AC97_PCM_XS_L_SURR AIC_ACCR1_XS_SLOT7 |
| 3553 | #define AC97_PCM_XS_R_SURR AIC_ACCR1_XS_SLOT8 |
| 3554 | #define AC97_PCM_XS_LFE AIC_ACCR1_XS_SLOT9 |
| 3555 | |
| 3556 | #define AC97_PCM_RS_L_FRONT AIC_ACCR1_RS_SLOT3 |
| 3557 | #define AC97_PCM_RS_R_FRONT AIC_ACCR1_RS_SLOT4 |
| 3558 | #define AC97_PCM_RS_CENTER AIC_ACCR1_RS_SLOT6 |
| 3559 | #define AC97_PCM_RS_L_SURR AIC_ACCR1_RS_SLOT7 |
| 3560 | #define AC97_PCM_RS_R_SURR AIC_ACCR1_RS_SLOT8 |
| 3561 | #define AC97_PCM_RS_LFE AIC_ACCR1_RS_SLOT9 |
| 3562 | |
| 3563 | #define ac97_set_xs_none() ( AIC_ACCR1 &= ~AIC_ACCR1_XS_MASK ) |
| 3564 | #define ac97_set_xs_mono() (AIC_ACCR1 = (AIC_ACCR1 & ~AIC_ACCR1_XS_MASK) | AC97_PCM_XS_R_FRONT) |
| 3565 | #define ac97_set_xs_stereo() (AIC_ACCR1 = (AIC_ACCR1 & ~AIC_ACCR1_XS_MASK | AC97_PCM_XS_L_FRONT) | AC97_PCM_XS_R_FRONT) |
| 3566 | |
| 3567 | /* In fact, only stereo is support now. */ |
| 3568 | #define ac97_set_rs_none() ( AIC_ACCR1 &= ~AIC_ACCR1_RS_MASK ) |
| 3569 | #define ac97_set_rs_mono() (AIC_ACCR1 = (AIC_ACCR1 & ~AIC_ACCR1_RS_MASK) | AC97_PCM_RS_R_FRONT) |
| 3570 | #define ac97_set_rs_stereo() (AIC_ACCR1 = (AIC_ACCR1 & ~AIC_ACCR1_RS_MASK | AC97_PCM_RS_L_FRONT) | AC97_PCM_RS_R_FRONT) |
| 3571 | |
| 3572 | static __inline__ void ac97_warm_reset_codec (): |
| 3573 | AIC_ACCR2 |= AIC_ACCR2_SA |
| 3574 | AIC_ACCR2 |= AIC_ACCR2_SS |
| 3575 | udelay(1) |
| 3576 | AIC_ACCR2 &= ~AIC_ACCR2_SS |
| 3577 | AIC_ACCR2 &= ~AIC_ACCR2_SA |
| 3578 | |
| 3579 | #define Jz_AC97_RESET_BUG 1 |
| 3580 | |
| 3581 | #ifndef Jz_AC97_RESET_BUG |
| 3582 | static __inline__ void ac97_cold_reset_codec (): |
| 3583 | AIC_ACCR2 |= AIC_ACCR2_SA |
| 3584 | AIC_ACCR2 &= ~AIC_ACCR2_SS |
| 3585 | AIC_ACCR2 |= AIC_ACCR2_SR |
| 3586 | udelay(1) |
| 3587 | AIC_ACCR2 &= ~AIC_ACCR2_SR |
| 3588 | AIC_ACCR2 &= ~AIC_ACCR2_SA |
| 3589 | #else |
| 3590 | static __inline__ void ac97_cold_reset_codec (): |
| 3591 | //gpio_as_output(70); /* SDATA_OUT */ |
| 3592 | //gpio_as_output(71); /* SDATA_IN */ |
| 3593 | //gpio_as_output(78); /* SYNC */ |
| 3594 | //gpio_as_output(69); /* RESET# */ |
| 3595 | GPIO_GPDIR (2) |= 0x000040e0 |
| 3596 | GPIO_GPDR (2) &= ~0x000040e0 |
| 3597 | udelay (10) |
| 3598 | GPIO_GPDR (2) |= 0x00000020 |
| 3599 | udelay (1) |
| 3600 | gpio_as_ac97 () |
| 3601 | #endif |
| 3602 | |
| 3603 | /* n=8,16,18,20 */ |
| 3604 | #define ac97_set_iass(n) ( AIC_ACCR2 = (AIC_ACCR2 & ~AIC_ACCR2_IASS_MASK) | AIC_ACCR2_IASS_##n##BIT ) |
| 3605 | #define ac97_set_oass(n) ( AIC_ACCR2 = (AIC_ACCR2 & ~AIC_ACCR2_OASS_MASK) | AIC_ACCR2_OASS_##n##BIT ) |
| 3606 | |
| 3607 | #define i2s_select_i2s() ( AIC_I2SCR &= ~AIC_I2SCR_AMSL ) |
| 3608 | #define i2s_select_left_justified() ( AIC_I2SCR |= AIC_I2SCR_AMSL ) |
| 3609 | |
| 3610 | /* n=8,16,18,20,24 */ |
| 3611 | #define i2s_set_sample_size(n) ( AIC_I2SCR = (AIC_I2SCR & ~AIC_I2SCR_WL_MASK) | AIC_I2SCR_WL_##n##BIT ) |
| 3612 | |
| 3613 | #define i2s_stop_clock() ( AIC_I2SCR |= AIC_I2SCR_STPBK ) |
| 3614 | #define i2s_start_clock() ( AIC_I2SCR &= ~AIC_I2SCR_STPBK ) |
| 3615 | |
| 3616 | #define aic_transmit_request() ( AIC_SR & AIC_SR_TFS ) |
| 3617 | #define aic_receive_request() ( AIC_SR & AIC_SR_RFS ) |
| 3618 | #define aic_transmit_underrun() ( AIC_SR & AIC_SR_TUR ) |
| 3619 | #define aic_receive_overrun() ( AIC_SR & AIC_SR_ROR ) |
| 3620 | |
| 3621 | #define aic_clear_errors() ( AIC_SR &= ~(AIC_SR_TUR | AIC_SR_ROR) ) |
| 3622 | |
| 3623 | #define aic_get_transmit_resident() ( (AIC_SR & AIC_SR_TFL_MASK) >> AIC_SR_TFL_BIT ) |
| 3624 | #define aic_get_receive_count() ( (AIC_SR & AIC_SR_RFL_MASK) >> AIC_SR_RFL_BIT ) |
| 3625 | |
| 3626 | #define ac97_command_transmitted() ( AIC_ACSR & AIC_ACSR_CADT ) |
| 3627 | #define ac97_status_received() ( AIC_ACSR & AIC_ACSR_SADR ) |
| 3628 | #define ac97_status_receive_timeout() ( AIC_ACSR & AIC_ACSR_RSTO ) |
| 3629 | #define ac97_codec_is_low_power_mode() ( AIC_ACSR & AIC_ACSR_CLPM ) |
| 3630 | #define ac97_codec_is_ready() ( AIC_ACSR & AIC_ACSR_CRDY ) |
| 3631 | |
| 3632 | #define i2s_is_busy() ( AIC_I2SSR & AIC_I2SSR_BSY ) |
| 3633 | |
| 3634 | #define CODEC_READ_CMD (1 << 19) |
| 3635 | #define CODEC_WRITE_CMD (0 << 19) |
| 3636 | #define CODEC_INDEX_BIT 12 |
| 3637 | #define CODEC_INDEX_MASK (0x7f << CODEC_INDEX_BIT) /* 18:12 */ |
| 3638 | #define CODEC_DATA_BIT 4 |
| 3639 | #define CODEC_DATA_MASK (0x0ffff << 4) /* 19:4 */ |
| 3640 | |
| 3641 | #define ac97_out_rcmd_addr(reg) ( AIC_ACCAR = CODEC_READ_CMD | ((reg) << CODEC_INDEX_BIT) ) |
| 3642 | |
| 3643 | #define ac97_out_wcmd_addr(reg) ( AIC_ACCAR = CODEC_WRITE_CMD | ((reg) << CODEC_INDEX_BIT) ) |
| 3644 | |
| 3645 | #define ac97_out_data(value) ( AIC_ACCDR = ((value) << CODEC_DATA_BIT) ) |
| 3646 | |
| 3647 | #define ac97_in_data() ( (AIC_ACSDR & CODEC_DATA_MASK) >> CODEC_DATA_BIT ) |
| 3648 | |
| 3649 | #define ac97_in_status_addr() ( (AIC_ACSAR & CODEC_INDEX_MASK) >> CODEC_INDEX_BIT ) |
| 3650 | |
| 3651 | #define i2s_set_sample_rate(i2sclk, sync) ( AIC_I2SDIV = ((i2sclk) / (4*64)) / (sync) ) |
| 3652 | |
| 3653 | #define aic_write_tfifo(v) ( AIC_DR = (v) ) |
| 3654 | #define aic_read_rfifo() ( AIC_DR ) |
| 3655 | |
| 3656 | // |
| 3657 | // Define next ops for AC97 compatible |
| 3658 | // |
| 3659 | |
| 3660 | #define AC97_ACSR AIC_ACSR |
| 3661 | |
| 3662 | #define ac97_enable() aic_enable(); aic_select_ac97() |
| 3663 | #define ac97_disable() aic_disable() |
| 3664 | #define ac97_reset() aic_reset() |
| 3665 | |
| 3666 | #define ac97_set_transmit_trigger(n) aic_set_transmit_trigger(n) |
| 3667 | #define ac97_set_receive_trigger(n) aic_set_receive_trigger(n) |
| 3668 | |
| 3669 | #define ac97_enable_record() aic_enable_record() |
| 3670 | #define ac97_disable_record() aic_disable_record() |
| 3671 | #define ac97_enable_replay() aic_enable_replay() |
| 3672 | #define ac97_disable_replay() aic_disable_replay() |
| 3673 | #define ac97_enable_loopback() aic_enable_loopback() |
| 3674 | #define ac97_disable_loopback() aic_disable_loopback() |
| 3675 | |
| 3676 | #define ac97_enable_transmit_dma() aic_enable_transmit_dma() |
| 3677 | #define ac97_disable_transmit_dma() aic_disable_transmit_dma() |
| 3678 | #define ac97_enable_receive_dma() aic_enable_receive_dma() |
| 3679 | #define ac97_disable_receive_dma() aic_disable_receive_dma() |
| 3680 | |
| 3681 | #define ac97_transmit_request() aic_transmit_request() |
| 3682 | #define ac97_receive_request() aic_receive_request() |
| 3683 | #define ac97_transmit_underrun() aic_transmit_underrun() |
| 3684 | #define ac97_receive_overrun() aic_receive_overrun() |
| 3685 | |
| 3686 | #define ac97_clear_errors() aic_clear_errors() |
| 3687 | |
| 3688 | #define ac97_get_transmit_resident() aic_get_transmit_resident() |
| 3689 | #define ac97_get_receive_count() aic_get_receive_count() |
| 3690 | |
| 3691 | #define ac97_enable_transmit_intr() aic_enable_transmit_intr() |
| 3692 | #define ac97_disable_transmit_intr() aic_disable_transmit_intr() |
| 3693 | #define ac97_enable_receive_intr() aic_enable_receive_intr() |
| 3694 | #define ac97_disable_receive_intr() aic_disable_receive_intr() |
| 3695 | |
| 3696 | #define ac97_write_tfifo(v) aic_write_tfifo(v) |
| 3697 | #define ac97_read_rfifo() aic_read_rfifo() |
| 3698 | |
| 3699 | // |
| 3700 | // Define next ops for I2S compatible |
| 3701 | // |
| 3702 | |
| 3703 | #define I2S_ACSR AIC_I2SSR |
| 3704 | |
| 3705 | #define i2s_enable() aic_enable(); aic_select_i2s() |
| 3706 | #define i2s_disable() aic_disable() |
| 3707 | #define i2s_reset() aic_reset() |
| 3708 | |
| 3709 | #define i2s_set_transmit_trigger(n) aic_set_transmit_trigger(n) |
| 3710 | #define i2s_set_receive_trigger(n) aic_set_receive_trigger(n) |
| 3711 | |
| 3712 | #define i2s_enable_record() aic_enable_record() |
| 3713 | #define i2s_disable_record() aic_disable_record() |
| 3714 | #define i2s_enable_replay() aic_enable_replay() |
| 3715 | #define i2s_disable_replay() aic_disable_replay() |
| 3716 | #define i2s_enable_loopback() aic_enable_loopback() |
| 3717 | #define i2s_disable_loopback() aic_disable_loopback() |
| 3718 | |
| 3719 | #define i2s_enable_transmit_dma() aic_enable_transmit_dma() |
| 3720 | #define i2s_disable_transmit_dma() aic_disable_transmit_dma() |
| 3721 | #define i2s_enable_receive_dma() aic_enable_receive_dma() |
| 3722 | #define i2s_disable_receive_dma() aic_disable_receive_dma() |
| 3723 | |
| 3724 | #define i2s_transmit_request() aic_transmit_request() |
| 3725 | #define i2s_receive_request() aic_receive_request() |
| 3726 | #define i2s_transmit_underrun() aic_transmit_underrun() |
| 3727 | #define i2s_receive_overrun() aic_receive_overrun() |
| 3728 | |
| 3729 | #define i2s_clear_errors() aic_clear_errors() |
| 3730 | |
| 3731 | #define i2s_get_transmit_resident() aic_get_transmit_resident() |
| 3732 | #define i2s_get_receive_count() aic_get_receive_count() |
| 3733 | |
| 3734 | #define i2s_enable_transmit_intr() aic_enable_transmit_intr() |
| 3735 | #define i2s_disable_transmit_intr() aic_disable_transmit_intr() |
| 3736 | #define i2s_enable_receive_intr() aic_enable_receive_intr() |
| 3737 | #define i2s_disable_receive_intr() aic_disable_receive_intr() |
| 3738 | |
| 3739 | #define i2s_write_tfifo(v) aic_write_tfifo(v) |
| 3740 | #define i2s_read_rfifo() aic_read_rfifo() |
| 3741 | |
| 3742 | static __inline__ void i2s_reset_codec (): |
| 3743 | //gpio_as_output(70); /* SDATA_OUT */ |
| 3744 | //gpio_as_output(71); /* SDATA_IN */ |
| 3745 | //gpio_as_output(78); /* SYNC */ |
| 3746 | //gpio_as_output(69); /* RESET# */ |
| 3747 | GPIO_GPDIR (2) |= 0x000040e0 |
| 3748 | GPIO_GPDR (2) &= ~0x000040e0 |
| 3749 | gpio_as_i2s_master() |
| 3750 | |
| 3751 | |
| 3752 | /*************************************************************************** |
| 3753 | * LCD |
| 3754 | ***************************************************************************/ |
| 3755 | |
| 3756 | #define lcd_set_dis() ( LCD_CTRL |= LCD_CTRL_DIS ) |
| 3757 | #define lcd_clr_dis() ( LCD_CTRL &= ~LCD_CTRL_DIS ) |
| 3758 | |
| 3759 | #define lcd_set_ena() ( LCD_CTRL |= LCD_CTRL_ENA ) |
| 3760 | #define lcd_clr_ena() ( LCD_CTRL &= ~LCD_CTRL_ENA ) |
| 3761 | |
| 3762 | /* n=1,2,4,8,16 */ |
| 3763 | #define lcd_set_bpp(n) ( LCD_CTRL = (LCD_CTRL & ~LCD_CTRL_BPP_MASK) | LCD_CTRL_BPP_##n ) |
| 3764 | |
| 3765 | /* n=4,8,16 */ |
| 3766 | #define lcd_set_burst_length(n) (LCD_CTRL = (LCD_CTRL & ~LCD_CTRL_BST_MASK) | LCD_CTRL_BST_n##) |
| 3767 | |
| 3768 | #define lcd_select_rgb565() ( LCD_CTRL &= ~LCD_CTRL_RGB555 ) |
| 3769 | #define lcd_select_rgb555() ( LCD_CTRL |= LCD_CTRL_RGB555 ) |
| 3770 | |
| 3771 | #define lcd_set_ofup() ( LCD_CTRL |= LCD_CTRL_OFUP ) |
| 3772 | #define lcd_clr_ofup() ( LCD_CTRL &= ~LCD_CTRL_OFUP ) |
| 3773 | |
| 3774 | /* n=2,4,16 */ |
| 3775 | #define lcd_set_stn_frc(n) (LCD_CTRL = (LCD_CTRL & ~LCD_CTRL_FRC_MASK) | LCD_CTRL_FRC_n##) |
| 3776 | |
| 3777 | |
| 3778 | #define lcd_pixel_endian_little() ( LCD_CTRL |= LCD_CTRL_PEDN ) |
| 3779 | #define lcd_pixel_endian_big() ( LCD_CTRL &= ~LCD_CTRL_PEDN ) |
| 3780 | |
| 3781 | #define lcd_reverse_byte_endian() ( LCD_CTRL |= LCD_CTRL_BEDN ) |
| 3782 | #define lcd_normal_byte_endian() ( LCD_CTRL &= ~LCD_CTRL_BEDN ) |
| 3783 | |
| 3784 | #define lcd_enable_eof_intr() ( LCD_CTRL |= LCD_CTRL_EOFM ) |
| 3785 | #define lcd_disable_eof_intr() ( LCD_CTRL &= ~LCD_CTRL_EOFM ) |
| 3786 | |
| 3787 | #define lcd_enable_sof_intr() ( LCD_CTRL |= LCD_CTRL_SOFM ) |
| 3788 | #define lcd_disable_sof_intr() ( LCD_CTRL &= ~LCD_CTRL_SOFM ) |
| 3789 | |
| 3790 | #define lcd_enable_ofu_intr() ( LCD_CTRL |= LCD_CTRL_OFUM ) |
| 3791 | #define lcd_disable_ofu_intr() ( LCD_CTRL &= ~LCD_CTRL_OFUM ) |
| 3792 | |
| 3793 | #define lcd_enable_ifu0_intr() ( LCD_CTRL |= LCD_CTRL_IFUM0 ) |
| 3794 | #define lcd_disable_ifu0_intr() ( LCD_CTRL &= ~LCD_CTRL_IFUM0 ) |
| 3795 | |
| 3796 | #define lcd_enable_ifu1_intr() ( LCD_CTRL |= LCD_CTRL_IFUM1 ) |
| 3797 | #define lcd_disable_ifu1_intr() ( LCD_CTRL &= ~LCD_CTRL_IFUM1 ) |
| 3798 | |
| 3799 | #define lcd_enable_ldd_intr() ( LCD_CTRL |= LCD_CTRL_LDDM ) |
| 3800 | #define lcd_disable_ldd_intr() ( LCD_CTRL &= ~LCD_CTRL_LDDM ) |
| 3801 | |
| 3802 | #define lcd_enable_qd_intr() ( LCD_CTRL |= LCD_CTRL_QDM ) |
| 3803 | #define lcd_disable_qd_intr() ( LCD_CTRL &= ~LCD_CTRL_QDM ) |
| 3804 | |
| 3805 | |
| 3806 | /* LCD status register indication */ |
| 3807 | |
| 3808 | #define lcd_quick_disable_done() ( LCD_STATE & LCD_STATE_QD ) |
| 3809 | #define lcd_disable_done() ( LCD_STATE & LCD_STATE_LDD ) |
| 3810 | #define lcd_infifo0_underrun() ( LCD_STATE & LCD_STATE_IFU0 ) |
| 3811 | #define lcd_infifo1_underrun() ( LCD_STATE & LCD_STATE_IFU1 ) |
| 3812 | #define lcd_outfifo_underrun() ( LCD_STATE & LCD_STATE_OFU ) |
| 3813 | #define lcd_start_of_frame() ( LCD_STATE & LCD_STATE_SOF ) |
| 3814 | #define lcd_end_of_frame() ( LCD_STATE & LCD_STATE_EOF ) |
| 3815 | |
| 3816 | #define lcd_clr_outfifounderrun() ( LCD_STATE &= ~LCD_STATE_OFU ) |
| 3817 | #define lcd_clr_sof() ( LCD_STATE &= ~LCD_STATE_SOF ) |
| 3818 | #define lcd_clr_eof() ( LCD_STATE &= ~LCD_STATE_EOF ) |
| 3819 | |
| 3820 | #define lcd_panel_white() ( LCD_DEV |= LCD_DEV_WHITE ) |
| 3821 | #define lcd_panel_black() ( LCD_DEV &= ~LCD_DEV_WHITE ) |
| 3822 | |
| 3823 | /* n=1,2,4,8 for single mono-STN |
| 3824 | * n=4,8 for dual mono-STN |
| 3825 | */ |
| 3826 | #define lcd_set_panel_datawidth(n) (LCD_DEV = (LCD_DEV & ~LCD_DEV_PDW_MASK) | LCD_DEV_PDW_n##) |
| 3827 | |
| 3828 | /* m=LCD_DEV_MODE_GENERUIC_TFT_xxx */ |
| 3829 | #define lcd_set_panel_mode(m) (LCD_DEV = (LCD_DEV & ~LCD_DEV_MODE_MASK) | (m)) |
| 3830 | |
| 3831 | /* n = 0-255 */ |
| 3832 | #define lcd_disable_ac_bias() ( LCD_IO = 0xff ) |
| 3833 | #define lcd_set_ac_bias(n) (LCD_IO = (LCD_IO & ~LCD_IO_ACB_MASK) | ((n) << LCD_IO_ACB_BIT)) |
| 3834 | |
| 3835 | #define lcd_io_set_dir() ( LCD_IO |= LCD_IO_DIR ) |
| 3836 | #define lcd_io_clr_dir() ( LCD_IO &= ~LCD_IO_DIR ) |
| 3837 | |
| 3838 | #define lcd_io_set_dep() ( LCD_IO |= LCD_IO_DEP ) |
| 3839 | #define lcd_io_clr_dep() ( LCD_IO &= ~LCD_IO_DEP ) |
| 3840 | |
| 3841 | #define lcd_io_set_vsp() ( LCD_IO |= LCD_IO_VSP ) |
| 3842 | #define lcd_io_clr_vsp() ( LCD_IO &= ~LCD_IO_VSP ) |
| 3843 | |
| 3844 | #define lcd_io_set_hsp() ( LCD_IO |= LCD_IO_HSP ) |
| 3845 | #define lcd_io_clr_hsp() ( LCD_IO &= ~LCD_IO_HSP ) |
| 3846 | |
| 3847 | #define lcd_io_set_pcp() ( LCD_IO |= LCD_IO_PCP ) |
| 3848 | #define lcd_io_clr_pcp() ( LCD_IO &= ~LCD_IO_PCP ) |
| 3849 | |
| 3850 | #define lcd_vsync_get_vps() ( (LCD_VSYNC & LCD_VSYNC_VPS_MASK) >> LCD_VSYNC_VPS_BIT ) |
| 3851 | |
| 3852 | #define lcd_vsync_get_vpe() ( (LCD_VSYNC & LCD_VSYNC_VPE_MASK) >> LCD_VSYNC_VPE_BIT ) |
| 3853 | #define lcd_vsync_set_vpe(n) (LCD_VSYNC = (LCD_VSYNC & ~LCD_VSYNC_VPE_MASK) | (n) << LCD_VSYNC_VPE_BIT) |
| 3854 | |
| 3855 | #define lcd_hsync_get_hps() ( (LCD_HSYNC & LCD_HSYNC_HPS_MASK) >> LCD_HSYNC_HPS_BIT ) |
| 3856 | #define lcd_hsync_set_hps(n) (LCD_HSYNC = (LCD_HSYNC & ~LCD_HSYNC_HPS_MASK) | (n) << LCD_HSYNC_HPS_BIT) |
| 3857 | |
| 3858 | #define lcd_hsync_get_hpe() ( (LCD_HSYNC & LCD_HSYNC_HPE_MASK) >> LCD_VSYNC_HPE_BIT ) |
| 3859 | #define lcd_hsync_set_hpe(n) (LCD_HSYNC = (LCD_HSYNC & ~LCD_HSYNC_HPE_MASK) | (n) << LCD_HSYNC_HPE_BIT) |
| 3860 | |
| 3861 | #define lcd_vat_get_ht() ( (LCD_VAT & LCD_VAT_HT_MASK) >> LCD_VAT_HT_BIT ) |
| 3862 | #define lcd_vat_set_ht(n) (LCD_VAT = (LCD_VAT & ~LCD_VAT_HT_MASK) | (n) << LCD_VAT_HT_BIT) |
| 3863 | |
| 3864 | #define lcd_vat_get_vt() ( (LCD_VAT & LCD_VAT_VT_MASK) >> LCD_VAT_VT_BIT ) |
| 3865 | #define lcd_vat_set_vt(n) (LCD_VAT = (LCD_VAT & ~LCD_VAT_VT_MASK) | (n) << LCD_VAT_VT_BIT) |
| 3866 | |
| 3867 | #define lcd_dah_get_hds() ( (LCD_DAH & LCD_DAH_HDS_MASK) >> LCD_DAH_HDS_BIT ) |
| 3868 | #define lcd_dah_set_hds(n) (LCD_DAH = (LCD_DAH & ~LCD_DAH_HDS_MASK) | (n) << LCD_DAH_HDS_BIT) |
| 3869 | |
| 3870 | #define lcd_dah_get_hde() ( (LCD_DAH & LCD_DAH_HDE_MASK) >> LCD_DAH_HDE_BIT ) |
| 3871 | #define lcd_dah_set_hde(n) (LCD_DAH = (LCD_DAH & ~LCD_DAH_HDE_MASK) | (n) << LCD_DAH_HDE_BIT) |
| 3872 | |
| 3873 | #define lcd_dav_get_vds() ( (LCD_DAV & LCD_DAV_VDS_MASK) >> LCD_DAV_VDS_BIT ) |
| 3874 | #define lcd_dav_set_vds(n) (LCD_DAV = (LCD_DAV & ~LCD_DAV_VDS_MASK) | (n) << LCD_DAV_VDS_BIT) |
| 3875 | |
| 3876 | #define lcd_dav_get_vde() ( (LCD_DAV & LCD_DAV_VDE_MASK) >> LCD_DAV_VDE_BIT ) |
| 3877 | #define lcd_dav_set_vde(n) (LCD_DAV = (LCD_DAV & ~LCD_DAV_VDE_MASK) | (n) << LCD_DAV_VDE_BIT) |
| 3878 | |
| 3879 | #define lcd_cmd0_set_sofint() ( LCD_CMD0 |= LCD_CMD_SOFINT ) |
| 3880 | #define lcd_cmd0_clr_sofint() ( LCD_CMD0 &= ~LCD_CMD_SOFINT ) |
| 3881 | #define lcd_cmd1_set_sofint() ( LCD_CMD1 |= LCD_CMD_SOFINT ) |
| 3882 | #define lcd_cmd1_clr_sofint() ( LCD_CMD1 &= ~LCD_CMD_SOFINT ) |
| 3883 | |
| 3884 | #define lcd_cmd0_set_eofint() ( LCD_CMD0 |= LCD_CMD_EOFINT ) |
| 3885 | #define lcd_cmd0_clr_eofint() ( LCD_CMD0 &= ~LCD_CMD_EOFINT ) |
| 3886 | #define lcd_cmd1_set_eofint() ( LCD_CMD1 |= LCD_CMD_EOFINT ) |
| 3887 | #define lcd_cmd1_clr_eofint() ( LCD_CMD1 &= ~LCD_CMD_EOFINT ) |
| 3888 | |
| 3889 | #define lcd_cmd0_set_pal() ( LCD_CMD0 |= LCD_CMD_PAL ) |
| 3890 | #define lcd_cmd0_clr_pal() ( LCD_CMD0 &= ~LCD_CMD_PAL ) |
| 3891 | |
| 3892 | #define lcd_cmd0_get_len() ( (LCD_CMD0 & LCD_CMD_LEN_MASK) >> LCD_CMD_LEN_BIT ) |
| 3893 | #define lcd_cmd1_get_len() ( (LCD_CMD1 & LCD_CMD_LEN_MASK) >> LCD_CMD_LEN_BIT ) |
| 3894 | |
| 3895 | |
| 3896 | |
| 3897 | /*************************************************************************** |
| 3898 | * DES |
| 3899 | ***************************************************************************/ |
| 3900 | |
| 3901 | |
| 3902 | /*************************************************************************** |
| 3903 | * CPM |
| 3904 | ***************************************************************************/ |
| 3905 | #define cpm_plcr1_fd() ((CPM_PLCR1 & CPM_PLCR1_PLL1FD_MASK) >> CPM_PLCR1_PLL1FD_BIT) |
| 3906 | #define cpm_plcr1_rd() ((CPM_PLCR1 & CPM_PLCR1_PLL1RD_MASK) >> CPM_PLCR1_PLL1RD_BIT) |
| 3907 | #define cpm_plcr1_od() ((CPM_PLCR1 & CPM_PLCR1_PLL1OD_MASK) >> CPM_PLCR1_PLL1OD_BIT) |
| 3908 | #define cpm_cfcr_mfr() ((CPM_CFCR & CPM_CFCR_MFR_MASK) >> CPM_CFCR_MFR_BIT) |
| 3909 | #define cpm_cfcr_pfr() ((CPM_CFCR & CPM_CFCR_PFR_MASK) >> CPM_CFCR_PFR_BIT) |
| 3910 | #define cpm_cfcr_sfr() ((CPM_CFCR & CPM_CFCR_SFR_MASK) >> CPM_CFCR_SFR_BIT) |
| 3911 | #define cpm_cfcr_ifr() ((CPM_CFCR & CPM_CFCR_IFR_MASK) >> CPM_CFCR_IFR_BIT) |
| 3912 | |
| 3913 | static __inline__ unsigned int cpm_divisor_encode (unsigned int n): |
| 3914 | unsigned encode[10] = {1,2,3,4,6,8,12,16,24,32} |
| 3915 | for unsigned i = 0; i < 10; ++i: |
| 3916 | if n < encode[i]: |
| 3917 | return i |
| 3918 | return 10 |
| 3919 | |
| 3920 | #define cpm_set_mclk_div(n) ( CPM_CFCR = (CPM_CFCR & ~CPM_CFCR_MFR_MASK) | ((n) << (CPM_CFCR_MFR_BIT)) ) |
| 3921 | |
| 3922 | #define cpm_set_pclk_div(n) ( CPM_CFCR = (CPM_CFCR & ~CPM_CFCR_PFR_MASK) | ((n) << (CPM_CFCR_PFR_BIT)) ) |
| 3923 | |
| 3924 | #define cpm_set_sclk_div(n) ( CPM_CFCR = (CPM_CFCR & ~CPM_CFCR_SFR_MASK) | ((n) << (CPM_CFCR_SFR_BIT)) ) |
| 3925 | |
| 3926 | #define cpm_set_iclk_div(n) ( CPM_CFCR = (CPM_CFCR & ~CPM_CFCR_IFR_MASK) | ((n) << (CPM_CFCR_IFR_BIT)) ) |
| 3927 | |
| 3928 | #define cpm_set_lcdclk_div(n) ( CPM_CFCR = (CPM_CFCR & ~CPM_CFCR_LFR_MASK) | ((n) << (CPM_CFCR_LFR_BIT)) ) |
| 3929 | |
| 3930 | #define cpm_enable_cko1() (CPM_CFCR |= CPM_CFCR_CKOEN1) |
| 3931 | #define cpm_enable_cko2() (CPM_CFCR |= CPM_CFCR_CKOEN2) |
| 3932 | #define cpm_disable_cko1() (CPM_CFCR &= ~CPM_CFCR_CKOEN1) |
| 3933 | #define cpm_disable_cko2() (CPM_CFCR &= ~CPM_CFCR_CKOEN2) |
| 3934 | |
| 3935 | static __inline__ void cpm_select_msc_clk (bool type): |
| 3936 | if type == 0: |
| 3937 | CPM_CFCR &= ~CPM_CFCR_MSC |
| 3938 | else: |
| 3939 | CPM_CFCR |= CPM_CFCR_MSC |
| 3940 | CPM_CFCR |= CPM_CFCR_UPE |
| 3941 | |
| 3942 | #define cpm_idle_mode() ( (CPM_LPCR = (CPM_LPCR & ~CPM_LPCR_LPM_MASK) | CPM_LPCR_LPM_IDLE) ) |
| 3943 | #define cpm_sleep_mode() ( (CPM_LPCR = (CPM_LPCR & ~CPM_LPCR_LPM_MASK) | CPM_LPCR_LPM_SLEEP) ) |
| 3944 | #define cpm_hibernate_mode() (CPM_LPCR = (CPM_LPCR & ~CPM_LPCR_LPM_MASK) | CPM_LPCR_LPM_HIBERNATE) |
| 3945 | |
| 3946 | #define cpm_start_uart0() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_UART0)) |
| 3947 | #define cpm_start_uart1() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_UART1)) |
| 3948 | #define cpm_start_uart2() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_UART2)) |
| 3949 | #define cpm_start_uart3() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_UART3)) |
| 3950 | #define cpm_start_ost() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_OST)) |
| 3951 | #define cpm_start_dmac() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_DMAC)) |
| 3952 | #define cpm_start_uhc() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_UHC)) |
| 3953 | #define cpm_start_lcd() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_LCD)) |
| 3954 | #define cpm_start_i2c() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_I2C)) |
| 3955 | #define cpm_start_aic_pclk() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_AICPCLK)) |
| 3956 | #define cpm_start_aic_bitclk() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_AICBCLK)) |
| 3957 | #define cpm_start_pwm0() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_PWM0)) |
| 3958 | #define cpm_start_pwm1() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_PWM1)) |
| 3959 | #define cpm_start_ssi() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_SSI)) |
| 3960 | #define cpm_start_msc() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_MSC)) |
| 3961 | #define cpm_start_scc() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_SCC)) |
| 3962 | #define cpm_start_eth() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_ETH)) |
| 3963 | #define cpm_start_kbc() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_KBC)) |
| 3964 | #define cpm_start_cim() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_CIM)) |
| 3965 | #define cpm_start_udc() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_UDC)) |
| 3966 | #define cpm_start_uprt() (CPM_MSCR &= ~(1 << CPM_MSCR_MSTP_UPRT)) |
| 3967 | #define cpm_start_all() (CPM_MSCR = 0) |
| 3968 | #define cpm_stop_uart0() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_UART0)) |
| 3969 | #define cpm_stop_uart1() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_UART1)) |
| 3970 | #define cpm_stop_uart2() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_UART2)) |
| 3971 | #define cpm_stop_uart3() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_UART3)) |
| 3972 | #define cpm_stop_ost() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_OST)) |
| 3973 | #define cpm_stop_dmac() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_DMAC)) |
| 3974 | #define cpm_stop_uhc() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_UHC)) |
| 3975 | #define cpm_stop_lcd() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_LCD)) |
| 3976 | #define cpm_stop_i2c() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_I2C)) |
| 3977 | #define cpm_stop_aic_pclk() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_AICPCLK)) |
| 3978 | #define cpm_stop_aic_bitclk() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_AICBCLK)) |
| 3979 | #define cpm_stop_pwm0() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_PWM0)) |
| 3980 | #define cpm_stop_pwm1() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_PWM1)) |
| 3981 | #define cpm_stop_ssi() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_SSI)) |
| 3982 | #define cpm_stop_msc() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_MSC)) |
| 3983 | #define cpm_stop_scc() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_SCC)) |
| 3984 | #define cpm_stop_eth() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_ETH)) |
| 3985 | #define cpm_stop_kbc() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_KBC)) |
| 3986 | #define cpm_stop_cim() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_CIM)) |
| 3987 | #define cpm_stop_udc() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_UDC)) |
| 3988 | #define cpm_stop_uprt() (CPM_MSCR |= (1 << CPM_MSCR_MSTP_UPRT)) |
| 3989 | #define cpm_stop_all() (CPM_MSCR = 0xffffffff) |
| 3990 | |
| 3991 | static __inline__ unsigned cpm_get_pllout (): |
| 3992 | unsigned int nf, nr, no, pllout |
| 3993 | unsigned long plcr = CPM_PLCR1 |
| 3994 | unsigned long od[4] = {1, 2, 2, 4} |
| 3995 | if plcr & CPM_PLCR1_PLL1EN: |
| 3996 | nf = (plcr & CPM_PLCR1_PLL1FD_MASK) >> CPM_PLCR1_PLL1FD_BIT |
| 3997 | nr = (plcr & CPM_PLCR1_PLL1RD_MASK) >> CPM_PLCR1_PLL1RD_BIT |
| 3998 | no = od[((plcr & CPM_PLCR1_PLL1OD_MASK) >> CPM_PLCR1_PLL1OD_BIT)] |
| 3999 | pllout = (JZ_EXTAL) / ((nr + 2) * no) * (nf + 2) |
| 4000 | else: |
| 4001 | pllout = JZ_EXTAL |
| 4002 | return pllout |
| 4003 | |
| 4004 | static __inline__ unsigned cpm_get_iclk (): |
| 4005 | unsigned int iclk |
| 4006 | int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32} |
| 4007 | unsigned long cfcr = CPM_CFCR |
| 4008 | unsigned long plcr = CPM_PLCR1 |
| 4009 | if plcr & CPM_PLCR1_PLL1EN: |
| 4010 | iclk = cpm_get_pllout () / div[(cfcr & CPM_CFCR_IFR_MASK) >> CPM_CFCR_IFR_BIT] |
| 4011 | else: |
| 4012 | iclk = JZ_EXTAL |
| 4013 | return iclk |
| 4014 | |
| 4015 | static __inline__ unsigned cpm_get_sclk (): |
| 4016 | unsigned int sclk |
| 4017 | int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32} |
| 4018 | unsigned long cfcr = CPM_CFCR |
| 4019 | unsigned long plcr = CPM_PLCR1 |
| 4020 | if plcr & CPM_PLCR1_PLL1EN: |
| 4021 | sclk = cpm_get_pllout () / div[(cfcr & CPM_CFCR_SFR_MASK) >> CPM_CFCR_SFR_BIT] |
| 4022 | else: |
| 4023 | sclk = JZ_EXTAL |
| 4024 | return sclk |
| 4025 | |
| 4026 | static __inline__ unsigned cpm_get_mclk (): |
| 4027 | unsigned int mclk |
| 4028 | int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32} |
| 4029 | unsigned long cfcr = CPM_CFCR |
| 4030 | unsigned long plcr = CPM_PLCR1 |
| 4031 | if plcr & CPM_PLCR1_PLL1EN: |
| 4032 | mclk = cpm_get_pllout () / div[(cfcr & CPM_CFCR_MFR_MASK) >> CPM_CFCR_MFR_BIT] |
| 4033 | else |
| 4034 | mclk = JZ_EXTAL |
| 4035 | return mclk |
| 4036 | |
| 4037 | static __inline__ unsigned cpm_get_pclk (): |
| 4038 | unsigned int devclk |
| 4039 | int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32} |
| 4040 | unsigned long cfcr = CPM_CFCR |
| 4041 | unsigned long plcr = CPM_PLCR1 |
| 4042 | if plcr & CPM_PLCR1_PLL1EN: |
| 4043 | devclk = cpm_get_pllout () / div[(cfcr & CPM_CFCR_PFR_MASK) >> CPM_CFCR_PFR_BIT] |
| 4044 | else: |
| 4045 | devclk = JZ_EXTAL |
| 4046 | return devclk |
| 4047 | |
| 4048 | static __inline__ unsigned cpm_get_lcdclk (): |
| 4049 | unsigned int lcdclk |
| 4050 | unsigned long cfcr = CPM_CFCR |
| 4051 | unsigned long plcr = CPM_PLCR1 |
| 4052 | if plcr & CPM_PLCR1_PLL1EN: |
| 4053 | lcdclk = cpm_get_pllout () / (((cfcr & CPM_CFCR_LFR_MASK) >> CPM_CFCR_LFR_BIT) + 1) |
| 4054 | else: |
| 4055 | lcdclk = JZ_EXTAL |
| 4056 | return lcdclk |
| 4057 | |
| 4058 | static __inline__ unsigned cpm_get_pixclk (): |
| 4059 | unsigned int pixclk |
| 4060 | unsigned long cfcr2 = CPM_CFCR2 |
| 4061 | pixclk = cpm_get_pllout () / (cfcr2 + 1) |
| 4062 | return pixclk |
| 4063 | |
| 4064 | static __inline__ unsigned cpm_get_devclk (): |
| 4065 | return JZ_EXTAL |
| 4066 | |
| 4067 | static __inline__ unsigned cpm_get_rtcclk (): |
| 4068 | return RTC_CLOCK |
| 4069 | |
| 4070 | static __inline__ unsigned cpm_get_uartclk (): |
| 4071 | return JZ_EXTAL; |
| 4072 | |
| 4073 | static __inline__ unsigned cpm_get_usbclk (): |
| 4074 | unsigned int usbclk |
| 4075 | unsigned long cfcr = CPM_CFCR |
| 4076 | if cfcr & CPM_CFCR_MSC: |
| 4077 | usbclk = 48000000 |
| 4078 | else: |
| 4079 | usbclk = cpm_get_pllout () / (((cfcr &CPM_CFCR_UFR_MASK) >> CPM_CFCR_UFR_BIT) + 1) |
| 4080 | return usbclk |
| 4081 | |
| 4082 | static __inline__ unsigned cpm_get_i2sclk (): |
| 4083 | unsigned int i2sclk |
| 4084 | unsigned long cfcr = CPM_CFCR |
| 4085 | i2sclk = cpm_get_pllout () / ((cfcr & CPM_CFCR_I2S) ? 2: 1) |
| 4086 | return i2sclk |
| 4087 | |
| 4088 | static __inline__ unsigned cpm_get_mscclk (): |
| 4089 | if CPM_CFCR & CPM_CFCR_I2S: |
| 4090 | return 24000000 |
| 4091 | else: |
| 4092 | return 16000000 |
| 4093 | |
| 4094 | /*************************************************************************** |
| 4095 | * SSI |
| 4096 | ***************************************************************************/ |
| 4097 | |
| 4098 | #define ssi_enable() ( SSI_CR0 |= SSI_CR0_SSIE ) |
| 4099 | #define ssi_disable() ( SSI_CR0 &= ~SSI_CR0_SSIE ) |
| 4100 | #define ssi_select_ce() ( SSI_CR0 &= ~SSI_CR0_FSEL ) |
| 4101 | |
| 4102 | #define ssi_normal_mode() ( SSI_ITR &= ~SSI_ITR_IVLTM_MASK ) |
| 4103 | |
| 4104 | #define ssi_select_ce2() (SSI_CR1 = (SSI_CR0 & ~SSI_CR1_MULTS) | SSI_CR0_FSEL) |
| 4105 | |
| 4106 | #define ssi_select_gpc() (SSI_CR0 = (SSI_CR1 & ~SSI_CR0_FSEL) | SSI_CR1_MULTS) |
| 4107 | |
| 4108 | #define ssi_enable_tx_intr() ( SSI_CR0 |= SSI_CR0_TIE | SSI_CR0_TEIE ) |
| 4109 | |
| 4110 | #define ssi_disable_tx_intr() ( SSI_CR0 &= ~(SSI_CR0_TIE | SSI_CR0_TEIE) ) |
| 4111 | |
| 4112 | #define ssi_enable_rx_intr() ( SSI_CR0 |= SSI_CR0_RIE | SSI_CR0_REIE ) |
| 4113 | |
| 4114 | #define ssi_disable_rx_intr() ( SSI_CR0 &= ~(SSI_CR0_RIE | SSI_CR0_REIE) ) |
| 4115 | |
| 4116 | #define ssi_enable_loopback() ( SSI_CR0 |= SSI_CR0_LOOP ) |
| 4117 | #define ssi_disable_loopback() ( SSI_CR0 &= ~SSI_CR0_LOOP ) |
| 4118 | |
| 4119 | #define ssi_enable_receive() ( SSI_CR0 &= ~SSI_CR0_DISREV ) |
| 4120 | #define ssi_disable_receive() ( SSI_CR0 |= SSI_CR0_DISREV ) |
| 4121 | |
| 4122 | #define ssi_finish_receive() ( SSI_CR0 |= (SSI_CR0_RFINE | SSI_CR0_RFINC) ) |
| 4123 | |
| 4124 | #define ssi_disable_recvfinish() ( SSI_CR0 &= ~(SSI_CR0_RFINE | SSI_CR0_RFINC) ) |
| 4125 | |
| 4126 | #define ssi_flush_txfifo() ( SSI_CR0 |= SSI_CR0_TFLUSH ) |
| 4127 | #define ssi_flush_rxfifo() ( SSI_CR0 |= SSI_CR0_RFLUSH ) |
| 4128 | |
| 4129 | #define ssi_flush_fifo() ( SSI_CR0 |= SSI_CR0_TFLUSH | SSI_CR0_RFLUSH ) |
| 4130 | |
| 4131 | #define ssi_finish_transmit() ( SSI_CR1 &= ~SSI_CR1_UNFIN ) |
| 4132 | |
| 4133 | static __inline__ void ssi_spi_format (): |
| 4134 | SSI_CR1 &= ~SSI_CR1_FMAT_MASK |
| 4135 | SSI_CR1 |= SSI_CR1_FMAT_SPI |
| 4136 | SSI_CR1 &= ~(SSI_CR1_TFVCK_MASK|SSI_CR1_TCKFI_MASK) |
| 4137 | SSI_CR1 |= (SSI_CR1_TFVCK_1 | SSI_CR1_TCKFI_1) |
| 4138 | |
| 4139 | /* TI's SSP format, must clear SSI_CR1.UNFIN */ |
| 4140 | #define ssi_ssp_format() SSI_CR1 = (SSI_CR1 & ~(SSI_CR1_FMAT_MASK |SSI_CR1_UNFIN)) (|= SSI_CR1_FMAT_SSP) |
| 4141 | |
| 4142 | /* National's Microwire format, must clear SSI_CR0.RFINE, and set max delay */ |
| 4143 | static __inline__ void ssi_microwire_format (): |
| 4144 | SSI_CR1 &= ~SSI_CR1_FMAT_MASK |
| 4145 | SSI_CR1 |= SSI_CR1_FMAT_MW1 |
| 4146 | SSI_CR1 &= ~(SSI_CR1_TFVCK_MASK|SSI_CR1_TCKFI_MASK) |
| 4147 | SSI_CR1 |= (SSI_CR1_TFVCK_3 | SSI_CR1_TCKFI_3) |
| 4148 | SSI_CR0 &= ~SSI_CR0_RFINE |
| 4149 | |
| 4150 | /* CE# level (FRMHL), CE# in interval time (ITFRM), |
| 4151 | clock phase and polarity (PHA POL), |
| 4152 | interval time (SSIITR), interval characters/frame (SSIICR) */ |
| 4153 | |
| 4154 | /* frmhl,endian,mcom,flen,pha,pol MASK */ |
| 4155 | #define SSICR1_MISC_MASK ( SSI_CR1_FRMHL_MASK | SSI_CR1_LFST | SSI_CR1_MCOM_MASK | SSI_CR1_FLEN_MASK | SSI_CR1_PHA | SSI_CR1_POL ) |
| 4156 | |
| 4157 | #define ssi_spi_set_misc(frmhl,endian,flen,mcom,pha,pol) do { SSI_CR1 &= ~SSICR1_MISC_MASK; SSI_CR1 |= ((frmhl) << 30) | ((endian) << 25) | (((mcom) - 1) << 12) | (((flen) - 2) << 4) | ((pha) << 1) | (pol); } while(0) |
| 4158 | |
| 4159 | /* Transfer with MSB or LSB first */ |
| 4160 | #define ssi_set_msb() ( SSI_CR1 &= ~SSI_CR1_LFST ) |
| 4161 | #define ssi_set_lsb() ( SSI_CR1 |= SSI_CR1_LFST ) |
| 4162 | |
| 4163 | #define ssi_set_frame_length(n) ( SSI_CR1 = (SSI_CR1 & ~SSI_CR1_FLEN_MASK) | (((n) - 2) << 4) ) |
| 4164 | |
| 4165 | /* n = 1 - 16 */ |
| 4166 | #define ssi_set_microwire_command_length(n) ( SSI_CR1 = ((SSI_CR1 & ~SSI_CR1_MCOM_MASK) | SSI_CR1_MCOM_##n##BIT) ) |
| 4167 | |
| 4168 | /* Set the clock phase for SPI */ |
| 4169 | #define ssi_set_spi_clock_phase(n) ( SSI_CR1 = ((SSI_CR1 & ~SSI_CR1_PHA) | ((n&0x1) << 1))) |
| 4170 | |
| 4171 | /* Set the clock polarity for SPI */ |
| 4172 | #define ssi_set_spi_clock_polarity(n) ( SSI_CR1 = ((SSI_CR1 & ~SSI_CR1_POL) | (n&0x1)) ) |
| 4173 | |
| 4174 | /* n = 1,4,8,14 */ |
| 4175 | #define ssi_set_tx_trigger(n) do { SSI_CR1 &= ~SSI_CR1_TTRG_MASK; SSI_CR1 |= SSI_CR1_TTRG_##n; } while (0) |
| 4176 | |
| 4177 | /* n = 1,4,8,14 */ |
| 4178 | #define ssi_set_rx_trigger(n) do { SSI_CR1 &= ~SSI_CR1_RTRG_MASK; SSI_CR1 |= SSI_CR1_RTRG_##n; } while (0) |
| 4179 | |
| 4180 | #define ssi_get_txfifo_count() ( (SSI_SR & SSI_SR_TFIFONUM_MASK) >> SSI_SR_TFIFONUM_BIT ) |
| 4181 | |
| 4182 | #define ssi_get_rxfifo_count() ( (SSI_SR & SSI_SR_RFIFONUM_MASK) >> SSI_SR_RFIFONUM_BIT ) |
| 4183 | |
| 4184 | #define ssi_clear_errors() ( SSI_SR &= ~(SSI_SR_UNDR | SSI_SR_OVER) ) |
| 4185 | |
| 4186 | #define ssi_transfer_end() ( SSI_SR & SSI_SR_END ) |
| 4187 | #define ssi_is_busy() ( SSI_SR & SSI_SR_BUSY ) |
| 4188 | |
| 4189 | #define ssi_txfifo_full() ( SSI_SR & SSI_SR_TFF ) |
| 4190 | #define ssi_rxfifo_empty() ( SSI_SR & SSI_SR_RFE ) |
| 4191 | #define ssi_rxfifo_noempty() ( SSI_SR & SSI_SR_RFHF ) |
| 4192 | #define ssi_rxfifo_half_full() ( SSI_SR & SSI_SR_RFHF ) |
| 4193 | #define ssi_txfifo_half_empty() ( SSI_SR & SSI_SR_TFHE ) |
| 4194 | #define ssi_underrun() ( SSI_SR & SSI_SR_UNDR ) |
| 4195 | #define ssi_overrun() ( SSI_SR & SSI_SR_OVER ) |
| 4196 | |
| 4197 | #define ssi_set_clk(dev_clk, ssi_clk) ( SSI_GR = (dev_clk) / (2*(ssi_clk)) - 1 ) |
| 4198 | |
| 4199 | #define ssi_receive_data() SSI_DR |
| 4200 | #define ssi_transmit_data(v) ( SSI_DR = (v) ) |
| 4201 | |
| 4202 | #endif |
| 4203 |
Branches:
master
