Root/nandboot/include/jz4740.h

1/*
2 * jz4740.h
3 *
4 * JZ4740 definitions.
5 *
6 * Copyright (c) 2005-2008 Ingenic Semiconductor Inc.
7 *
8 */
9#ifndef __JZ4740_H__
10#define __JZ4740_H__
11
12#ifndef __ASSEMBLY__
13
14#include <types.h>
15
16#define REG8(addr) *((volatile u8 *)(addr))
17#define REG16(addr) *((volatile u16 *)(addr))
18#define REG32(addr) *((volatile u32 *)(addr))
19
20#else
21
22#define REG8(addr) (addr)
23#define REG16(addr) (addr)
24#define REG32(addr) (addr)
25
26#endif /* !ASSEMBLY */
27
28//----------------------------------------------------------------------
29// Boot ROM Specification
30//
31
32/* NOR Boot config */
33#define JZ4740_NORBOOT_8BIT 0x00000000 /* 8-bit data bus flash */
34#define JZ4740_NORBOOT_16BIT 0x10101010 /* 16-bit data bus flash */
35#define JZ4740_NORBOOT_32BIT 0x20202020 /* 32-bit data bus flash */
36
37/* NAND Boot config */
38#define JZ4740_NANDBOOT_B8R3 0xffffffff /* 8-bit bus & 3 row cycles */
39#define JZ4740_NANDBOOT_B8R2 0xf0f0f0f0 /* 8-bit bus & 2 row cycles */
40#define JZ4740_NANDBOOT_B16R3 0x0f0f0f0f /* 16-bit bus & 3 row cycles */
41#define JZ4740_NANDBOOT_B16R2 0x00000000 /* 16-bit bus & 2 row cycles */
42
43
44//----------------------------------------------------------------------
45// Register Definitions
46//
47#define CPM_BASE 0xB0000000
48#define INTC_BASE 0xB0001000
49#define TCU_BASE 0xB0002000
50#define WDT_BASE 0xB0002000
51#define RTC_BASE 0xB0003000
52#define GPIO_BASE 0xB0010000
53#define AIC_BASE 0xB0020000
54#define ICDC_BASE 0xB0020000
55#define MSC_BASE 0xB0021000
56#define UART0_BASE 0xB0030000
57#define I2C_BASE 0xB0042000
58#define SSI_BASE 0xB0043000
59#define SADC_BASE 0xB0070000
60#define EMC_BASE 0xB3010000
61#define DMAC_BASE 0xB3020000
62#define UHC_BASE 0xB3030000
63#define UDC_BASE 0xB3040000
64#define LCD_BASE 0xB3050000
65#define SLCD_BASE 0xB3050000
66#define CIM_BASE 0xB3060000
67#define ETH_BASE 0xB3100000
68
69
70/*************************************************************************
71 * INTC (Interrupt Controller)
72 *************************************************************************/
73#define INTC_ISR (INTC_BASE + 0x00)
74#define INTC_IMR (INTC_BASE + 0x04)
75#define INTC_IMSR (INTC_BASE + 0x08)
76#define INTC_IMCR (INTC_BASE + 0x0c)
77#define INTC_IPR (INTC_BASE + 0x10)
78
79#define REG_INTC_ISR REG32(INTC_ISR)
80#define REG_INTC_IMR REG32(INTC_IMR)
81#define REG_INTC_IMSR REG32(INTC_IMSR)
82#define REG_INTC_IMCR REG32(INTC_IMCR)
83#define REG_INTC_IPR REG32(INTC_IPR)
84
85// 1st-level interrupts
86#define IRQ_I2C 1
87#define IRQ_UHC 3
88#define IRQ_UART0 9
89#define IRQ_SADC 12
90#define IRQ_MSC 14
91#define IRQ_RTC 15
92#define IRQ_SSI 16
93#define IRQ_CIM 17
94#define IRQ_AIC 18
95#define IRQ_ETH 19
96#define IRQ_DMAC 20
97#define IRQ_TCU2 21
98#define IRQ_TCU1 22
99#define IRQ_TCU0 23
100#define IRQ_UDC 24
101#define IRQ_GPIO3 25
102#define IRQ_GPIO2 26
103#define IRQ_GPIO1 27
104#define IRQ_GPIO0 28
105#define IRQ_IPU 29
106#define IRQ_LCD 30
107
108// 2nd-level interrupts
109#define IRQ_DMA_0 32 /* 32 to 37 for DMAC channel 0 to 5 */
110#define IRQ_GPIO_0 48 /* 48 to 175 for GPIO pin 0 to 127 */
111
112
113/*************************************************************************
114 * RTC
115 *************************************************************************/
116#define RTC_RCR (RTC_BASE + 0x00) /* RTC Control Register */
117#define RTC_RSR (RTC_BASE + 0x04) /* RTC Second Register */
118#define RTC_RSAR (RTC_BASE + 0x08) /* RTC Second Alarm Register */
119#define RTC_RGR (RTC_BASE + 0x0c) /* RTC Regulator Register */
120
121#define RTC_HCR (RTC_BASE + 0x20) /* Hibernate Control Register */
122#define RTC_HWFCR (RTC_BASE + 0x24) /* Hibernate Wakeup Filter Counter Reg */
123#define RTC_HRCR (RTC_BASE + 0x28) /* Hibernate Reset Counter Register */
124#define RTC_HWCR (RTC_BASE + 0x2c) /* Hibernate Wakeup Control Register */
125#define RTC_HWRSR (RTC_BASE + 0x30) /* Hibernate Wakeup Status Register */
126#define RTC_HSPR (RTC_BASE + 0x34) /* Hibernate Scratch Pattern Register */
127
128#define REG_RTC_RCR REG32(RTC_RCR)
129#define REG_RTC_RSR REG32(RTC_RSR)
130#define REG_RTC_RSAR REG32(RTC_RSAR)
131#define REG_RTC_RGR REG32(RTC_RGR)
132#define REG_RTC_HCR REG32(RTC_HCR)
133#define REG_RTC_HWFCR REG32(RTC_HWFCR)
134#define REG_RTC_HRCR REG32(RTC_HRCR)
135#define REG_RTC_HWCR REG32(RTC_HWCR)
136#define REG_RTC_HWRSR REG32(RTC_HWRSR)
137#define REG_RTC_HSPR REG32(RTC_HSPR)
138
139/* RTC Control Register */
140#define RTC_RCR_WRDY (1 << 7) /* Write Ready Flag */
141#define RTC_RCR_HZ (1 << 6) /* 1Hz Flag */
142#define RTC_RCR_HZIE (1 << 5) /* 1Hz Interrupt Enable */
143#define RTC_RCR_AF (1 << 4) /* Alarm Flag */
144#define RTC_RCR_AIE (1 << 3) /* Alarm Interrupt Enable */
145#define RTC_RCR_AE (1 << 2) /* Alarm Enable */
146#define RTC_RCR_RTCE (1 << 0) /* RTC Enable */
147
148/* RTC Regulator Register */
149#define RTC_RGR_LOCK (1 << 31) /* Lock Bit */
150#define RTC_RGR_ADJC_BIT 16
151#define RTC_RGR_ADJC_MASK (0x3ff << RTC_RGR_ADJC_BIT)
152#define RTC_RGR_NC1HZ_BIT 0
153#define RTC_RGR_NC1HZ_MASK (0xffff << RTC_RGR_NC1HZ_BIT)
154
155/* Hibernate Control Register */
156#define RTC_HCR_PD (1 << 0) /* Power Down */
157
158/* Hibernate Wakeup Filter Counter Register */
159#define RTC_HWFCR_BIT 5
160#define RTC_HWFCR_MASK (0x7ff << RTC_HWFCR_BIT)
161
162/* Hibernate Reset Counter Register */
163#define RTC_HRCR_BIT 5
164#define RTC_HRCR_MASK (0x7f << RTC_HRCR_BIT)
165
166/* Hibernate Wakeup Control Register */
167#define RTC_HWCR_EALM (1 << 0) /* RTC alarm wakeup enable */
168
169/* Hibernate Wakeup Status Register */
170#define RTC_HWRSR_HR (1 << 5) /* Hibernate reset */
171#define RTC_HWRSR_PPR (1 << 4) /* PPR reset */
172#define RTC_HWRSR_PIN (1 << 1) /* Wakeup pin status bit */
173#define RTC_HWRSR_ALM (1 << 0) /* RTC alarm status bit */
174
175
176/*************************************************************************
177 * CPM (Clock reset and Power control Management)
178 *************************************************************************/
179#define CPM_CPCCR (CPM_BASE+0x00)
180#define CPM_CPPCR (CPM_BASE+0x10)
181#define CPM_I2SCDR (CPM_BASE+0x60)
182#define CPM_LPCDR (CPM_BASE+0x64)
183#define CPM_MSCCDR (CPM_BASE+0x68)
184#define CPM_UHCCDR (CPM_BASE+0x6C)
185
186#define CPM_LCR (CPM_BASE+0x04)
187#define CPM_CLKGR (CPM_BASE+0x20)
188#define CPM_SCR (CPM_BASE+0x24)
189
190#define CPM_HCR (CPM_BASE+0x30)
191#define CPM_HWFCR (CPM_BASE+0x34)
192#define CPM_HRCR (CPM_BASE+0x38)
193#define CPM_HWCR (CPM_BASE+0x3c)
194#define CPM_HWSR (CPM_BASE+0x40)
195#define CPM_HSPR (CPM_BASE+0x44)
196
197#define CPM_RSR (CPM_BASE+0x08)
198
199
200#define REG_CPM_CPCCR REG32(CPM_CPCCR)
201#define REG_CPM_CPPCR REG32(CPM_CPPCR)
202#define REG_CPM_I2SCDR REG32(CPM_I2SCDR)
203#define REG_CPM_LPCDR REG32(CPM_LPCDR)
204#define REG_CPM_MSCCDR REG32(CPM_MSCCDR)
205#define REG_CPM_UHCCDR REG32(CPM_UHCCDR)
206
207#define REG_CPM_LCR REG32(CPM_LCR)
208#define REG_CPM_CLKGR REG32(CPM_CLKGR)
209#define REG_CPM_SCR REG32(CPM_SCR)
210#define REG_CPM_HCR REG32(CPM_HCR)
211#define REG_CPM_HWFCR REG32(CPM_HWFCR)
212#define REG_CPM_HRCR REG32(CPM_HRCR)
213#define REG_CPM_HWCR REG32(CPM_HWCR)
214#define REG_CPM_HWSR REG32(CPM_HWSR)
215#define REG_CPM_HSPR REG32(CPM_HSPR)
216
217#define REG_CPM_RSR REG32(CPM_RSR)
218
219
220/* Clock Control Register */
221#define CPM_CPCCR_I2CS (1 << 31)
222#define CPM_CPCCR_CLKOEN (1 << 30)
223#define CPM_CPCCR_UCS (1 << 29)
224#define CPM_CPCCR_UDIV_BIT 23
225#define CPM_CPCCR_UDIV_MASK (0x3f << CPM_CPCCR_UDIV_BIT)
226#define CPM_CPCCR_CE (1 << 22)
227#define CPM_CPCCR_PCS (1 << 21)
228#define CPM_CPCCR_LDIV_BIT 16
229#define CPM_CPCCR_LDIV_MASK (0x1f << CPM_CPCCR_LDIV_BIT)
230#define CPM_CPCCR_MDIV_BIT 12
231#define CPM_CPCCR_MDIV_MASK (0x0f << CPM_CPCCR_MDIV_BIT)
232#define CPM_CPCCR_PDIV_BIT 8
233#define CPM_CPCCR_PDIV_MASK (0x0f << CPM_CPCCR_PDIV_BIT)
234#define CPM_CPCCR_HDIV_BIT 4
235#define CPM_CPCCR_HDIV_MASK (0x0f << CPM_CPCCR_HDIV_BIT)
236#define CPM_CPCCR_CDIV_BIT 0
237#define CPM_CPCCR_CDIV_MASK (0x0f << CPM_CPCCR_CDIV_BIT)
238
239/* I2S Clock Divider Register */
240#define CPM_I2SCDR_I2SDIV_BIT 0
241#define CPM_I2SCDR_I2SDIV_MASK (0x1ff << CPM_I2SCDR_I2SDIV_BIT)
242
243/* LCD Pixel Clock Divider Register */
244#define CPM_LPCDR_PIXDIV_BIT 0
245#define CPM_LPCDR_PIXDIV_MASK (0x1ff << CPM_LPCDR_PIXDIV_BIT)
246
247/* MSC Clock Divider Register */
248#define CPM_MSCCDR_MSCDIV_BIT 0
249#define CPM_MSCCDR_MSCDIV_MASK (0x1f << CPM_MSCCDR_MSCDIV_BIT)
250
251/* PLL Control Register */
252#define CPM_CPPCR_PLLM_BIT 23
253#define CPM_CPPCR_PLLM_MASK (0x1ff << CPM_CPPCR_PLLM_BIT)
254#define CPM_CPPCR_PLLN_BIT 18
255#define CPM_CPPCR_PLLN_MASK (0x1f << CPM_CPPCR_PLLN_BIT)
256#define CPM_CPPCR_PLLOD_BIT 16
257#define CPM_CPPCR_PLLOD_MASK (0x03 << CPM_CPPCR_PLLOD_BIT)
258#define CPM_CPPCR_PLLS (1 << 10)
259#define CPM_CPPCR_PLLBP (1 << 9)
260#define CPM_CPPCR_PLLEN (1 << 8)
261#define CPM_CPPCR_PLLST_BIT 0
262#define CPM_CPPCR_PLLST_MASK (0xff << CPM_CPPCR_PLLST_BIT)
263
264/* Low Power Control Register */
265#define CPM_LCR_DOZE_DUTY_BIT 3
266#define CPM_LCR_DOZE_DUTY_MASK (0x1f << CPM_LCR_DOZE_DUTY_BIT)
267#define CPM_LCR_DOZE_ON (1 << 2)
268#define CPM_LCR_LPM_BIT 0
269#define CPM_LCR_LPM_MASK (0x3 << CPM_LCR_LPM_BIT)
270  #define CPM_LCR_LPM_IDLE (0x0 << CPM_LCR_LPM_BIT)
271  #define CPM_LCR_LPM_SLEEP (0x1 << CPM_LCR_LPM_BIT)
272
273/* Clock Gate Register */
274#define CPM_CLKGR_UART1 (1 << 15)
275#define CPM_CLKGR_UHC (1 << 14)
276#define CPM_CLKGR_IPU (1 << 13)
277#define CPM_CLKGR_DMAC (1 << 12)
278#define CPM_CLKGR_UDC (1 << 11)
279#define CPM_CLKGR_LCD (1 << 10)
280#define CPM_CLKGR_CIM (1 << 9)
281#define CPM_CLKGR_SADC (1 << 8)
282#define CPM_CLKGR_MSC (1 << 7)
283#define CPM_CLKGR_AIC1 (1 << 6)
284#define CPM_CLKGR_AIC2 (1 << 5)
285#define CPM_CLKGR_SSI (1 << 4)
286#define CPM_CLKGR_I2C (1 << 3)
287#define CPM_CLKGR_RTC (1 << 2)
288#define CPM_CLKGR_TCU (1 << 1)
289#define CPM_CLKGR_UART0 (1 << 0)
290
291/* Sleep Control Register */
292#define CPM_SCR_O1ST_BIT 8
293#define CPM_SCR_O1ST_MASK (0xff << CPM_SCR_O1ST_BIT)
294#define CPM_SCR_USBPHY_ENABLE (1 << 6)
295#define CPM_SCR_OSC_ENABLE (1 << 4)
296
297/* Hibernate Control Register */
298#define CPM_HCR_PD (1 << 0)
299
300/* Wakeup Filter Counter Register in Hibernate Mode */
301#define CPM_HWFCR_TIME_BIT 0
302#define CPM_HWFCR_TIME_MASK (0x3ff << CPM_HWFCR_TIME_BIT)
303
304/* Reset Counter Register in Hibernate Mode */
305#define CPM_HRCR_TIME_BIT 0
306#define CPM_HRCR_TIME_MASK (0x7f << CPM_HRCR_TIME_BIT)
307
308/* Wakeup Control Register in Hibernate Mode */
309#define CPM_HWCR_WLE_LOW (0 << 2)
310#define CPM_HWCR_WLE_HIGH (1 << 2)
311#define CPM_HWCR_PIN_WAKEUP (1 << 1)
312#define CPM_HWCR_RTC_WAKEUP (1 << 0)
313
314/* Wakeup Status Register in Hibernate Mode */
315#define CPM_HWSR_WSR_PIN (1 << 1)
316#define CPM_HWSR_WSR_RTC (1 << 0)
317
318/* Reset Status Register */
319#define CPM_RSR_HR (1 << 2)
320#define CPM_RSR_WR (1 << 1)
321#define CPM_RSR_PR (1 << 0)
322
323
324/*************************************************************************
325 * TCU (Timer Counter Unit)
326 *************************************************************************/
327#define TCU_TSR (TCU_BASE + 0x1C) /* Timer Stop Register */
328#define TCU_TSSR (TCU_BASE + 0x2C) /* Timer Stop Set Register */
329#define TCU_TSCR (TCU_BASE + 0x3C) /* Timer Stop Clear Register */
330#define TCU_TER (TCU_BASE + 0x10) /* Timer Counter Enable Register */
331#define TCU_TESR (TCU_BASE + 0x14) /* Timer Counter Enable Set Register */
332#define TCU_TECR (TCU_BASE + 0x18) /* Timer Counter Enable Clear Register */
333#define TCU_TFR (TCU_BASE + 0x20) /* Timer Flag Register */
334#define TCU_TFSR (TCU_BASE + 0x24) /* Timer Flag Set Register */
335#define TCU_TFCR (TCU_BASE + 0x28) /* Timer Flag Clear Register */
336#define TCU_TMR (TCU_BASE + 0x30) /* Timer Mask Register */
337#define TCU_TMSR (TCU_BASE + 0x34) /* Timer Mask Set Register */
338#define TCU_TMCR (TCU_BASE + 0x38) /* Timer Mask Clear Register */
339#define TCU_TDFR0 (TCU_BASE + 0x40) /* Timer Data Full Register */
340#define TCU_TDHR0 (TCU_BASE + 0x44) /* Timer Data Half Register */
341#define TCU_TCNT0 (TCU_BASE + 0x48) /* Timer Counter Register */
342#define TCU_TCSR0 (TCU_BASE + 0x4C) /* Timer Control Register */
343#define TCU_TDFR1 (TCU_BASE + 0x50)
344#define TCU_TDHR1 (TCU_BASE + 0x54)
345#define TCU_TCNT1 (TCU_BASE + 0x58)
346#define TCU_TCSR1 (TCU_BASE + 0x5C)
347#define TCU_TDFR2 (TCU_BASE + 0x60)
348#define TCU_TDHR2 (TCU_BASE + 0x64)
349#define TCU_TCNT2 (TCU_BASE + 0x68)
350#define TCU_TCSR2 (TCU_BASE + 0x6C)
351#define TCU_TDFR3 (TCU_BASE + 0x70)
352#define TCU_TDHR3 (TCU_BASE + 0x74)
353#define TCU_TCNT3 (TCU_BASE + 0x78)
354#define TCU_TCSR3 (TCU_BASE + 0x7C)
355#define TCU_TDFR4 (TCU_BASE + 0x80)
356#define TCU_TDHR4 (TCU_BASE + 0x84)
357#define TCU_TCNT4 (TCU_BASE + 0x88)
358#define TCU_TCSR4 (TCU_BASE + 0x8C)
359#define TCU_TDFR5 (TCU_BASE + 0x90)
360#define TCU_TDHR5 (TCU_BASE + 0x94)
361#define TCU_TCNT5 (TCU_BASE + 0x98)
362#define TCU_TCSR5 (TCU_BASE + 0x9C)
363
364#define REG_TCU_TSR REG32(TCU_TSR)
365#define REG_TCU_TSSR REG32(TCU_TSSR)
366#define REG_TCU_TSCR REG32(TCU_TSCR)
367#define REG_TCU_TER REG8(TCU_TER)
368#define REG_TCU_TESR REG8(TCU_TESR)
369#define REG_TCU_TECR REG8(TCU_TECR)
370#define REG_TCU_TFR REG32(TCU_TFR)
371#define REG_TCU_TFSR REG32(TCU_TFSR)
372#define REG_TCU_TFCR REG32(TCU_TFCR)
373#define REG_TCU_TMR REG32(TCU_TMR)
374#define REG_TCU_TMSR REG32(TCU_TMSR)
375#define REG_TCU_TMCR REG32(TCU_TMCR)
376#define REG_TCU_TDFR0 REG16(TCU_TDFR0)
377#define REG_TCU_TDHR0 REG16(TCU_TDHR0)
378#define REG_TCU_TCNT0 REG16(TCU_TCNT0)
379#define REG_TCU_TCSR0 REG16(TCU_TCSR0)
380#define REG_TCU_TDFR1 REG16(TCU_TDFR1)
381#define REG_TCU_TDHR1 REG16(TCU_TDHR1)
382#define REG_TCU_TCNT1 REG16(TCU_TCNT1)
383#define REG_TCU_TCSR1 REG16(TCU_TCSR1)
384#define REG_TCU_TDFR2 REG16(TCU_TDFR2)
385#define REG_TCU_TDHR2 REG16(TCU_TDHR2)
386#define REG_TCU_TCNT2 REG16(TCU_TCNT2)
387#define REG_TCU_TCSR2 REG16(TCU_TCSR2)
388#define REG_TCU_TDFR3 REG16(TCU_TDFR3)
389#define REG_TCU_TDHR3 REG16(TCU_TDHR3)
390#define REG_TCU_TCNT3 REG16(TCU_TCNT3)
391#define REG_TCU_TCSR3 REG16(TCU_TCSR3)
392#define REG_TCU_TDFR4 REG16(TCU_TDFR4)
393#define REG_TCU_TDHR4 REG16(TCU_TDHR4)
394#define REG_TCU_TCNT4 REG16(TCU_TCNT4)
395#define REG_TCU_TCSR4 REG16(TCU_TCSR4)
396
397// n = 0,1,2,3,4,5
398#define TCU_TDFR(n) (TCU_BASE + (0x40 + (n)*0x10)) /* Timer Data Full Reg */
399#define TCU_TDHR(n) (TCU_BASE + (0x44 + (n)*0x10)) /* Timer Data Half Reg */
400#define TCU_TCNT(n) (TCU_BASE + (0x48 + (n)*0x10)) /* Timer Counter Reg */
401#define TCU_TCSR(n) (TCU_BASE + (0x4C + (n)*0x10)) /* Timer Control Reg */
402
403#define REG_TCU_TDFR(n) REG16(TCU_TDFR((n)))
404#define REG_TCU_TDHR(n) REG16(TCU_TDHR((n)))
405#define REG_TCU_TCNT(n) REG16(TCU_TCNT((n)))
406#define REG_TCU_TCSR(n) REG16(TCU_TCSR((n)))
407
408// Register definitions
409#define TCU_TCSR_PWM_SD (1 << 9)
410#define TCU_TCSR_PWM_INITL_HIGH (1 << 8)
411#define TCU_TCSR_PWM_EN (1 << 7)
412#define TCU_TCSR_PRESCALE_BIT 3
413#define TCU_TCSR_PRESCALE_MASK (0x7 << TCU_TCSR_PRESCALE_BIT)
414  #define TCU_TCSR_PRESCALE1 (0x0 << TCU_TCSR_PRESCALE_BIT)
415  #define TCU_TCSR_PRESCALE4 (0x1 << TCU_TCSR_PRESCALE_BIT)
416  #define TCU_TCSR_PRESCALE16 (0x2 << TCU_TCSR_PRESCALE_BIT)
417  #define TCU_TCSR_PRESCALE64 (0x3 << TCU_TCSR_PRESCALE_BIT)
418  #define TCU_TCSR_PRESCALE256 (0x4 << TCU_TCSR_PRESCALE_BIT)
419  #define TCU_TCSR_PRESCALE1024 (0x5 << TCU_TCSR_PRESCALE_BIT)
420#define TCU_TCSR_EXT_EN (1 << 2)
421#define TCU_TCSR_RTC_EN (1 << 1)
422#define TCU_TCSR_PCK_EN (1 << 0)
423
424#define TCU_TER_TCEN5 (1 << 5)
425#define TCU_TER_TCEN4 (1 << 4)
426#define TCU_TER_TCEN3 (1 << 3)
427#define TCU_TER_TCEN2 (1 << 2)
428#define TCU_TER_TCEN1 (1 << 1)
429#define TCU_TER_TCEN0 (1 << 0)
430
431#define TCU_TESR_TCST5 (1 << 5)
432#define TCU_TESR_TCST4 (1 << 4)
433#define TCU_TESR_TCST3 (1 << 3)
434#define TCU_TESR_TCST2 (1 << 2)
435#define TCU_TESR_TCST1 (1 << 1)
436#define TCU_TESR_TCST0 (1 << 0)
437
438#define TCU_TECR_TCCL5 (1 << 5)
439#define TCU_TECR_TCCL4 (1 << 4)
440#define TCU_TECR_TCCL3 (1 << 3)
441#define TCU_TECR_TCCL2 (1 << 2)
442#define TCU_TECR_TCCL1 (1 << 1)
443#define TCU_TECR_TCCL0 (1 << 0)
444
445#define TCU_TFR_HFLAG5 (1 << 21)
446#define TCU_TFR_HFLAG4 (1 << 20)
447#define TCU_TFR_HFLAG3 (1 << 19)
448#define TCU_TFR_HFLAG2 (1 << 18)
449#define TCU_TFR_HFLAG1 (1 << 17)
450#define TCU_TFR_HFLAG0 (1 << 16)
451#define TCU_TFR_FFLAG5 (1 << 5)
452#define TCU_TFR_FFLAG4 (1 << 4)
453#define TCU_TFR_FFLAG3 (1 << 3)
454#define TCU_TFR_FFLAG2 (1 << 2)
455#define TCU_TFR_FFLAG1 (1 << 1)
456#define TCU_TFR_FFLAG0 (1 << 0)
457
458#define TCU_TFSR_HFLAG5 (1 << 21)
459#define TCU_TFSR_HFLAG4 (1 << 20)
460#define TCU_TFSR_HFLAG3 (1 << 19)
461#define TCU_TFSR_HFLAG2 (1 << 18)
462#define TCU_TFSR_HFLAG1 (1 << 17)
463#define TCU_TFSR_HFLAG0 (1 << 16)
464#define TCU_TFSR_FFLAG5 (1 << 5)
465#define TCU_TFSR_FFLAG4 (1 << 4)
466#define TCU_TFSR_FFLAG3 (1 << 3)
467#define TCU_TFSR_FFLAG2 (1 << 2)
468#define TCU_TFSR_FFLAG1 (1 << 1)
469#define TCU_TFSR_FFLAG0 (1 << 0)
470
471#define TCU_TFCR_HFLAG5 (1 << 21)
472#define TCU_TFCR_HFLAG4 (1 << 20)
473#define TCU_TFCR_HFLAG3 (1 << 19)
474#define TCU_TFCR_HFLAG2 (1 << 18)
475#define TCU_TFCR_HFLAG1 (1 << 17)
476#define TCU_TFCR_HFLAG0 (1 << 16)
477#define TCU_TFCR_FFLAG5 (1 << 5)
478#define TCU_TFCR_FFLAG4 (1 << 4)
479#define TCU_TFCR_FFLAG3 (1 << 3)
480#define TCU_TFCR_FFLAG2 (1 << 2)
481#define TCU_TFCR_FFLAG1 (1 << 1)
482#define TCU_TFCR_FFLAG0 (1 << 0)
483
484#define TCU_TMR_HMASK5 (1 << 21)
485#define TCU_TMR_HMASK4 (1 << 20)
486#define TCU_TMR_HMASK3 (1 << 19)
487#define TCU_TMR_HMASK2 (1 << 18)
488#define TCU_TMR_HMASK1 (1 << 17)
489#define TCU_TMR_HMASK0 (1 << 16)
490#define TCU_TMR_FMASK5 (1 << 5)
491#define TCU_TMR_FMASK4 (1 << 4)
492#define TCU_TMR_FMASK3 (1 << 3)
493#define TCU_TMR_FMASK2 (1 << 2)
494#define TCU_TMR_FMASK1 (1 << 1)
495#define TCU_TMR_FMASK0 (1 << 0)
496
497#define TCU_TMSR_HMST5 (1 << 21)
498#define TCU_TMSR_HMST4 (1 << 20)
499#define TCU_TMSR_HMST3 (1 << 19)
500#define TCU_TMSR_HMST2 (1 << 18)
501#define TCU_TMSR_HMST1 (1 << 17)
502#define TCU_TMSR_HMST0 (1 << 16)
503#define TCU_TMSR_FMST5 (1 << 5)
504#define TCU_TMSR_FMST4 (1 << 4)
505#define TCU_TMSR_FMST3 (1 << 3)
506#define TCU_TMSR_FMST2 (1 << 2)
507#define TCU_TMSR_FMST1 (1 << 1)
508#define TCU_TMSR_FMST0 (1 << 0)
509
510#define TCU_TMCR_HMCL5 (1 << 21)
511#define TCU_TMCR_HMCL4 (1 << 20)
512#define TCU_TMCR_HMCL3 (1 << 19)
513#define TCU_TMCR_HMCL2 (1 << 18)
514#define TCU_TMCR_HMCL1 (1 << 17)
515#define TCU_TMCR_HMCL0 (1 << 16)
516#define TCU_TMCR_FMCL5 (1 << 5)
517#define TCU_TMCR_FMCL4 (1 << 4)
518#define TCU_TMCR_FMCL3 (1 << 3)
519#define TCU_TMCR_FMCL2 (1 << 2)
520#define TCU_TMCR_FMCL1 (1 << 1)
521#define TCU_TMCR_FMCL0 (1 << 0)
522
523#define TCU_TSR_WDTS (1 << 16)
524#define TCU_TSR_STOP5 (1 << 5)
525#define TCU_TSR_STOP4 (1 << 4)
526#define TCU_TSR_STOP3 (1 << 3)
527#define TCU_TSR_STOP2 (1 << 2)
528#define TCU_TSR_STOP1 (1 << 1)
529#define TCU_TSR_STOP0 (1 << 0)
530
531#define TCU_TSSR_WDTSS (1 << 16)
532#define TCU_TSSR_STPS5 (1 << 5)
533#define TCU_TSSR_STPS4 (1 << 4)
534#define TCU_TSSR_STPS3 (1 << 3)
535#define TCU_TSSR_STPS2 (1 << 2)
536#define TCU_TSSR_STPS1 (1 << 1)
537#define TCU_TSSR_STPS0 (1 << 0)
538
539#define TCU_TSSR_WDTSC (1 << 16)
540#define TCU_TSSR_STPC5 (1 << 5)
541#define TCU_TSSR_STPC4 (1 << 4)
542#define TCU_TSSR_STPC3 (1 << 3)
543#define TCU_TSSR_STPC2 (1 << 2)
544#define TCU_TSSR_STPC1 (1 << 1)
545#define TCU_TSSR_STPC0 (1 << 0)
546
547
548/*************************************************************************
549 * WDT (WatchDog Timer)
550 *************************************************************************/
551#define WDT_TDR (WDT_BASE + 0x00)
552#define WDT_TCER (WDT_BASE + 0x04)
553#define WDT_TCNT (WDT_BASE + 0x08)
554#define WDT_TCSR (WDT_BASE + 0x0C)
555
556#define REG_WDT_TDR REG16(WDT_TDR)
557#define REG_WDT_TCER REG8(WDT_TCER)
558#define REG_WDT_TCNT REG16(WDT_TCNT)
559#define REG_WDT_TCSR REG16(WDT_TCSR)
560
561// Register definition
562#define WDT_TCSR_PRESCALE_BIT 3
563#define WDT_TCSR_PRESCALE_MASK (0x7 << WDT_TCSR_PRESCALE_BIT)
564  #define WDT_TCSR_PRESCALE1 (0x0 << WDT_TCSR_PRESCALE_BIT)
565  #define WDT_TCSR_PRESCALE4 (0x1 << WDT_TCSR_PRESCALE_BIT)
566  #define WDT_TCSR_PRESCALE16 (0x2 << WDT_TCSR_PRESCALE_BIT)
567  #define WDT_TCSR_PRESCALE64 (0x3 << WDT_TCSR_PRESCALE_BIT)
568  #define WDT_TCSR_PRESCALE256 (0x4 << WDT_TCSR_PRESCALE_BIT)
569  #define WDT_TCSR_PRESCALE1024 (0x5 << WDT_TCSR_PRESCALE_BIT)
570#define WDT_TCSR_EXT_EN (1 << 2)
571#define WDT_TCSR_RTC_EN (1 << 1)
572#define WDT_TCSR_PCK_EN (1 << 0)
573
574#define WDT_TCER_TCEN (1 << 0)
575
576
577/*************************************************************************
578 * DMAC (DMA Controller)
579 *************************************************************************/
580
581#define MAX_DMA_NUM 6 /* max 6 channels */
582
583#define DMAC_DSAR(n) (DMAC_BASE + (0x00 + (n) * 0x20)) /* DMA source address */
584#define DMAC_DTAR(n) (DMAC_BASE + (0x04 + (n) * 0x20)) /* DMA target address */
585#define DMAC_DTCR(n) (DMAC_BASE + (0x08 + (n) * 0x20)) /* DMA transfer count */
586#define DMAC_DRSR(n) (DMAC_BASE + (0x0c + (n) * 0x20)) /* DMA request source */
587#define DMAC_DCCSR(n) (DMAC_BASE + (0x10 + (n) * 0x20)) /* DMA control/status */
588#define DMAC_DCMD(n) (DMAC_BASE + (0x14 + (n) * 0x20)) /* DMA command */
589#define DMAC_DDA(n) (DMAC_BASE + (0x18 + (n) * 0x20)) /* DMA descriptor address */
590#define DMAC_DMACR (DMAC_BASE + 0x0300) /* DMA control register */
591#define DMAC_DMAIPR (DMAC_BASE + 0x0304) /* DMA interrupt pending */
592#define DMAC_DMADBR (DMAC_BASE + 0x0308) /* DMA doorbell */
593#define DMAC_DMADBSR (DMAC_BASE + 0x030C) /* DMA doorbell set */
594
595// channel 0
596#define DMAC_DSAR0 DMAC_DSAR(0)
597#define DMAC_DTAR0 DMAC_DTAR(0)
598#define DMAC_DTCR0 DMAC_DTCR(0)
599#define DMAC_DRSR0 DMAC_DRSR(0)
600#define DMAC_DCCSR0 DMAC_DCCSR(0)
601#define DMAC_DCMD0 DMAC_DCMD(0)
602#define DMAC_DDA0 DMAC_DDA(0)
603
604// channel 1
605#define DMAC_DSAR1 DMAC_DSAR(1)
606#define DMAC_DTAR1 DMAC_DTAR(1)
607#define DMAC_DTCR1 DMAC_DTCR(1)
608#define DMAC_DRSR1 DMAC_DRSR(1)
609#define DMAC_DCCSR1 DMAC_DCCSR(1)
610#define DMAC_DCMD1 DMAC_DCMD(1)
611#define DMAC_DDA1 DMAC_DDA(1)
612
613// channel 2
614#define DMAC_DSAR2 DMAC_DSAR(2)
615#define DMAC_DTAR2 DMAC_DTAR(2)
616#define DMAC_DTCR2 DMAC_DTCR(2)
617#define DMAC_DRSR2 DMAC_DRSR(2)
618#define DMAC_DCCSR2 DMAC_DCCSR(2)
619#define DMAC_DCMD2 DMAC_DCMD(2)
620#define DMAC_DDA2 DMAC_DDA(2)
621
622// channel 3
623#define DMAC_DSAR3 DMAC_DSAR(3)
624#define DMAC_DTAR3 DMAC_DTAR(3)
625#define DMAC_DTCR3 DMAC_DTCR(3)
626#define DMAC_DRSR3 DMAC_DRSR(3)
627#define DMAC_DCCSR3 DMAC_DCCSR(3)
628#define DMAC_DCMD3 DMAC_DCMD(3)
629#define DMAC_DDA3 DMAC_DDA(3)
630
631// channel 4
632#define DMAC_DSAR4 DMAC_DSAR(4)
633#define DMAC_DTAR4 DMAC_DTAR(4)
634#define DMAC_DTCR4 DMAC_DTCR(4)
635#define DMAC_DRSR4 DMAC_DRSR(4)
636#define DMAC_DCCSR4 DMAC_DCCSR(4)
637#define DMAC_DCMD4 DMAC_DCMD(4)
638#define DMAC_DDA4 DMAC_DDA(4)
639
640// channel 5
641#define DMAC_DSAR5 DMAC_DSAR(5)
642#define DMAC_DTAR5 DMAC_DTAR(5)
643#define DMAC_DTCR5 DMAC_DTCR(5)
644#define DMAC_DRSR5 DMAC_DRSR(5)
645#define DMAC_DCCSR5 DMAC_DCCSR(5)
646#define DMAC_DCMD5 DMAC_DCMD(5)
647#define DMAC_DDA5 DMAC_DDA(5)
648
649#define REG_DMAC_DSAR(n) REG32(DMAC_DSAR((n)))
650#define REG_DMAC_DTAR(n) REG32(DMAC_DTAR((n)))
651#define REG_DMAC_DTCR(n) REG32(DMAC_DTCR((n)))
652#define REG_DMAC_DRSR(n) REG32(DMAC_DRSR((n)))
653#define REG_DMAC_DCCSR(n) REG32(DMAC_DCCSR((n)))
654#define REG_DMAC_DCMD(n) REG32(DMAC_DCMD((n)))
655#define REG_DMAC_DDA(n) REG32(DMAC_DDA((n)))
656#define REG_DMAC_DMACR REG32(DMAC_DMACR)
657#define REG_DMAC_DMAIPR REG32(DMAC_DMAIPR)
658#define REG_DMAC_DMADBR REG32(DMAC_DMADBR)
659#define REG_DMAC_DMADBSR REG32(DMAC_DMADBSR)
660
661// DMA request source register
662#define DMAC_DRSR_RS_BIT 0
663#define DMAC_DRSR_RS_MASK (0x1f << DMAC_DRSR_RS_BIT)
664  #define DMAC_DRSR_RS_AUTO (8 << DMAC_DRSR_RS_BIT)
665  #define DMAC_DRSR_RS_UART0OUT (20 << DMAC_DRSR_RS_BIT)
666  #define DMAC_DRSR_RS_UART0IN (21 << DMAC_DRSR_RS_BIT)
667  #define DMAC_DRSR_RS_SSIOUT (22 << DMAC_DRSR_RS_BIT)
668  #define DMAC_DRSR_RS_SSIIN (23 << DMAC_DRSR_RS_BIT)
669  #define DMAC_DRSR_RS_AICOUT (24 << DMAC_DRSR_RS_BIT)
670  #define DMAC_DRSR_RS_AICIN (25 << DMAC_DRSR_RS_BIT)
671  #define DMAC_DRSR_RS_MSCOUT (26 << DMAC_DRSR_RS_BIT)
672  #define DMAC_DRSR_RS_MSCIN (27 << DMAC_DRSR_RS_BIT)
673  #define DMAC_DRSR_RS_TCU (28 << DMAC_DRSR_RS_BIT)
674  #define DMAC_DRSR_RS_SADC (29 << DMAC_DRSR_RS_BIT)
675  #define DMAC_DRSR_RS_SLCD (30 << DMAC_DRSR_RS_BIT)
676
677// DMA channel control/status register
678#define DMAC_DCCSR_NDES (1 << 31) /* descriptor (0) or not (1) ? */
679#define DMAC_DCCSR_CDOA_BIT 16 /* copy of DMA offset address */
680#define DMAC_DCCSR_CDOA_MASK (0xff << DMAC_DCCSR_CDOA_BIT)
681#define DMAC_DCCSR_INV (1 << 6) /* descriptor invalid */
682#define DMAC_DCCSR_AR (1 << 4) /* address error */
683#define DMAC_DCCSR_TT (1 << 3) /* transfer terminated */
684#define DMAC_DCCSR_HLT (1 << 2) /* DMA halted */
685#define DMAC_DCCSR_CT (1 << 1) /* count terminated */
686#define DMAC_DCCSR_EN (1 << 0) /* channel enable bit */
687
688// DMA channel command register
689#define DMAC_DCMD_SAI (1 << 23) /* source address increment */
690#define DMAC_DCMD_DAI (1 << 22) /* dest address increment */
691#define DMAC_DCMD_RDIL_BIT 16 /* request detection interval length */
692#define DMAC_DCMD_RDIL_MASK (0x0f << DMAC_DCMD_RDIL_BIT)
693  #define DMAC_DCMD_RDIL_IGN (0 << DMAC_DCMD_RDIL_BIT)
694  #define DMAC_DCMD_RDIL_2 (1 << DMAC_DCMD_RDIL_BIT)
695  #define DMAC_DCMD_RDIL_4 (2 << DMAC_DCMD_RDIL_BIT)
696  #define DMAC_DCMD_RDIL_8 (3 << DMAC_DCMD_RDIL_BIT)
697  #define DMAC_DCMD_RDIL_12 (4 << DMAC_DCMD_RDIL_BIT)
698  #define DMAC_DCMD_RDIL_16 (5 << DMAC_DCMD_RDIL_BIT)
699  #define DMAC_DCMD_RDIL_20 (6 << DMAC_DCMD_RDIL_BIT)
700  #define DMAC_DCMD_RDIL_24 (7 << DMAC_DCMD_RDIL_BIT)
701  #define DMAC_DCMD_RDIL_28 (8 << DMAC_DCMD_RDIL_BIT)
702  #define DMAC_DCMD_RDIL_32 (9 << DMAC_DCMD_RDIL_BIT)
703  #define DMAC_DCMD_RDIL_48 (10 << DMAC_DCMD_RDIL_BIT)
704  #define DMAC_DCMD_RDIL_60 (11 << DMAC_DCMD_RDIL_BIT)
705  #define DMAC_DCMD_RDIL_64 (12 << DMAC_DCMD_RDIL_BIT)
706  #define DMAC_DCMD_RDIL_124 (13 << DMAC_DCMD_RDIL_BIT)
707  #define DMAC_DCMD_RDIL_128 (14 << DMAC_DCMD_RDIL_BIT)
708  #define DMAC_DCMD_RDIL_200 (15 << DMAC_DCMD_RDIL_BIT)
709#define DMAC_DCMD_SWDH_BIT 14 /* source port width */
710#define DMAC_DCMD_SWDH_MASK (0x03 << DMAC_DCMD_SWDH_BIT)
711  #define DMAC_DCMD_SWDH_32 (0 << DMAC_DCMD_SWDH_BIT)
712  #define DMAC_DCMD_SWDH_8 (1 << DMAC_DCMD_SWDH_BIT)
713  #define DMAC_DCMD_SWDH_16 (2 << DMAC_DCMD_SWDH_BIT)
714#define DMAC_DCMD_DWDH_BIT 12 /* dest port width */
715#define DMAC_DCMD_DWDH_MASK (0x03 << DMAC_DCMD_DWDH_BIT)
716  #define DMAC_DCMD_DWDH_32 (0 << DMAC_DCMD_DWDH_BIT)
717  #define DMAC_DCMD_DWDH_8 (1 << DMAC_DCMD_DWDH_BIT)
718  #define DMAC_DCMD_DWDH_16 (2 << DMAC_DCMD_DWDH_BIT)
719#define DMAC_DCMD_DS_BIT 8 /* transfer data size of a data unit */
720#define DMAC_DCMD_DS_MASK (0x07 << DMAC_DCMD_DS_BIT)
721  #define DMAC_DCMD_DS_32BIT (0 << DMAC_DCMD_DS_BIT)
722  #define DMAC_DCMD_DS_8BIT (1 << DMAC_DCMD_DS_BIT)
723  #define DMAC_DCMD_DS_16BIT (2 << DMAC_DCMD_DS_BIT)
724  #define DMAC_DCMD_DS_16BYTE (3 << DMAC_DCMD_DS_BIT)
725  #define DMAC_DCMD_DS_32BYTE (4 << DMAC_DCMD_DS_BIT)
726#define DMAC_DCMD_TM (1 << 7) /* transfer mode: 0-single 1-block */
727#define DMAC_DCMD_DES_V (1 << 4) /* descriptor valid flag */
728#define DMAC_DCMD_DES_VM (1 << 3) /* descriptor valid mask: 1:support V-bit */
729#define DMAC_DCMD_DES_VIE (1 << 2) /* DMA valid error interrupt enable */
730#define DMAC_DCMD_TIE (1 << 1) /* DMA transfer interrupt enable */
731#define DMAC_DCMD_LINK (1 << 0) /* descriptor link enable */
732
733// DMA descriptor address register
734#define DMAC_DDA_BASE_BIT 12 /* descriptor base address */
735#define DMAC_DDA_BASE_MASK (0x0fffff << DMAC_DDA_BASE_BIT)
736#define DMAC_DDA_OFFSET_BIT 4 /* descriptor offset address */
737#define DMAC_DDA_OFFSET_MASK (0x0ff << DMAC_DDA_OFFSET_BIT)
738
739// DMA control register
740#define DMAC_DMACR_PR_BIT 8 /* channel priority mode */
741#define DMAC_DMACR_PR_MASK (0x03 << DMAC_DMACR_PR_BIT)
742  #define DMAC_DMACR_PR_012345 (0 << DMAC_DMACR_PR_BIT)
743  #define DMAC_DMACR_PR_023145 (1 << DMAC_DMACR_PR_BIT)
744  #define DMAC_DMACR_PR_201345 (2 << DMAC_DMACR_PR_BIT)
745  #define DMAC_DMACR_PR_RR (3 << DMAC_DMACR_PR_BIT) /* round robin */
746#define DMAC_DMACR_HLT (1 << 3) /* DMA halt flag */
747#define DMAC_DMACR_AR (1 << 2) /* address error flag */
748#define DMAC_DMACR_DMAE (1 << 0) /* DMA enable bit */
749
750// DMA doorbell register
751#define DMAC_DMADBR_DB5 (1 << 5) /* doorbell for channel 5 */
752#define DMAC_DMADBR_DB4 (1 << 5) /* doorbell for channel 4 */
753#define DMAC_DMADBR_DB3 (1 << 5) /* doorbell for channel 3 */
754#define DMAC_DMADBR_DB2 (1 << 5) /* doorbell for channel 2 */
755#define DMAC_DMADBR_DB1 (1 << 5) /* doorbell for channel 1 */
756#define DMAC_DMADBR_DB0 (1 << 5) /* doorbell for channel 0 */
757
758// DMA doorbell set register
759#define DMAC_DMADBSR_DBS5 (1 << 5) /* enable doorbell for channel 5 */
760#define DMAC_DMADBSR_DBS4 (1 << 5) /* enable doorbell for channel 4 */
761#define DMAC_DMADBSR_DBS3 (1 << 5) /* enable doorbell for channel 3 */
762#define DMAC_DMADBSR_DBS2 (1 << 5) /* enable doorbell for channel 2 */
763#define DMAC_DMADBSR_DBS1 (1 << 5) /* enable doorbell for channel 1 */
764#define DMAC_DMADBSR_DBS0 (1 << 5) /* enable doorbell for channel 0 */
765
766// DMA interrupt pending register
767#define DMAC_DMAIPR_CIRQ5 (1 << 5) /* irq pending status for channel 5 */
768#define DMAC_DMAIPR_CIRQ4 (1 << 4) /* irq pending status for channel 4 */
769#define DMAC_DMAIPR_CIRQ3 (1 << 3) /* irq pending status for channel 3 */
770#define DMAC_DMAIPR_CIRQ2 (1 << 2) /* irq pending status for channel 2 */
771#define DMAC_DMAIPR_CIRQ1 (1 << 1) /* irq pending status for channel 1 */
772#define DMAC_DMAIPR_CIRQ0 (1 << 0) /* irq pending status for channel 0 */
773
774
775/*************************************************************************
776 * GPIO (General-Purpose I/O Ports)
777 *************************************************************************/
778#define MAX_GPIO_NUM 128
779
780//n = 0,1,2,3
781#define GPIO_PXPIN(n) (GPIO_BASE + (0x00 + (n)*0x100)) /* PIN Level Register */
782#define GPIO_PXDAT(n) (GPIO_BASE + (0x10 + (n)*0x100)) /* Port Data Register */
783#define GPIO_PXDATS(n) (GPIO_BASE + (0x14 + (n)*0x100)) /* Port Data Set Register */
784#define GPIO_PXDATC(n) (GPIO_BASE + (0x18 + (n)*0x100)) /* Port Data Clear Register */
785#define GPIO_PXIM(n) (GPIO_BASE + (0x20 + (n)*0x100)) /* Interrupt Mask Register */
786#define GPIO_PXIMS(n) (GPIO_BASE + (0x24 + (n)*0x100)) /* Interrupt Mask Set Reg */
787#define GPIO_PXIMC(n) (GPIO_BASE + (0x28 + (n)*0x100)) /* Interrupt Mask Clear Reg */
788#define GPIO_PXPE(n) (GPIO_BASE + (0x30 + (n)*0x100)) /* Pull Enable Register */
789#define GPIO_PXPES(n) (GPIO_BASE + (0x34 + (n)*0x100)) /* Pull Enable Set Reg. */
790#define GPIO_PXPEC(n) (GPIO_BASE + (0x38 + (n)*0x100)) /* Pull Enable Clear Reg. */
791#define GPIO_PXFUN(n) (GPIO_BASE + (0x40 + (n)*0x100)) /* Function Register */
792#define GPIO_PXFUNS(n) (GPIO_BASE + (0x44 + (n)*0x100)) /* Function Set Register */
793#define GPIO_PXFUNC(n) (GPIO_BASE + (0x48 + (n)*0x100)) /* Function Clear Register */
794#define GPIO_PXSEL(n) (GPIO_BASE + (0x50 + (n)*0x100)) /* Select Register */
795#define GPIO_PXSELS(n) (GPIO_BASE + (0x54 + (n)*0x100)) /* Select Set Register */
796#define GPIO_PXSELC(n) (GPIO_BASE + (0x58 + (n)*0x100)) /* Select Clear Register */
797#define GPIO_PXDIR(n) (GPIO_BASE + (0x60 + (n)*0x100)) /* Direction Register */
798#define GPIO_PXDIRS(n) (GPIO_BASE + (0x64 + (n)*0x100)) /* Direction Set Register */
799#define GPIO_PXDIRC(n) (GPIO_BASE + (0x68 + (n)*0x100)) /* Direction Clear Register */
800#define GPIO_PXTRG(n) (GPIO_BASE + (0x70 + (n)*0x100)) /* Trigger Register */
801#define GPIO_PXTRGS(n) (GPIO_BASE + (0x74 + (n)*0x100)) /* Trigger Set Register */
802#define GPIO_PXTRGC(n) (GPIO_BASE + (0x78 + (n)*0x100)) /* Trigger Set Register */
803#define GPIO_PXFLG(n) (GPIO_BASE + (0x80 + (n)*0x100)) /* Port Flag Register */
804#define GPIO_PXFLGC(n) (GPIO_BASE + (0x14 + (n)*0x100)) /* Port Flag clear Register */
805
806#define REG_GPIO_PXPIN(n) REG32(GPIO_PXPIN((n))) /* PIN level */
807#define REG_GPIO_PXDAT(n) REG32(GPIO_PXDAT((n))) /* 1: interrupt pending */
808#define REG_GPIO_PXDATS(n) REG32(GPIO_PXDATS((n)))
809#define REG_GPIO_PXDATC(n) REG32(GPIO_PXDATC((n)))
810#define REG_GPIO_PXIM(n) REG32(GPIO_PXIM((n))) /* 1: mask pin interrupt */
811#define REG_GPIO_PXIMS(n) REG32(GPIO_PXIMS((n)))
812#define REG_GPIO_PXIMC(n) REG32(GPIO_PXIMC((n)))
813#define REG_GPIO_PXPE(n) REG32(GPIO_PXPE((n))) /* 1: disable pull up/down */
814#define REG_GPIO_PXPES(n) REG32(GPIO_PXPES((n)))
815#define REG_GPIO_PXPEC(n) REG32(GPIO_PXPEC((n)))
816#define REG_GPIO_PXFUN(n) REG32(GPIO_PXFUN((n))) /* 0:GPIO or intr, 1:FUNC */
817#define REG_GPIO_PXFUNS(n) REG32(GPIO_PXFUNS((n)))
818#define REG_GPIO_PXFUNC(n) REG32(GPIO_PXFUNC((n)))
819#define REG_GPIO_PXSEL(n) REG32(GPIO_PXSEL((n))) /* 0:GPIO/Fun0,1:intr/fun1*/
820#define REG_GPIO_PXSELS(n) REG32(GPIO_PXSELS((n)))
821#define REG_GPIO_PXSELC(n) REG32(GPIO_PXSELC((n)))
822#define REG_GPIO_PXDIR(n) REG32(GPIO_PXDIR((n))) /* 0:input/low-level-trig/falling-edge-trig, 1:output/high-level-trig/rising-edge-trig */
823#define REG_GPIO_PXDIRS(n) REG32(GPIO_PXDIRS((n)))
824#define REG_GPIO_PXDIRC(n) REG32(GPIO_PXDIRC((n)))
825#define REG_GPIO_PXTRG(n) REG32(GPIO_PXTRG((n))) /* 0:level-trigger, 1:edge-trigger */
826#define REG_GPIO_PXTRGS(n) REG32(GPIO_PXTRGS((n)))
827#define REG_GPIO_PXTRGC(n) REG32(GPIO_PXTRGC((n)))
828#define REG_GPIO_PXFLG(n) REG32(GPIO_PXFLG((n))) /* interrupt flag */
829#define REG_GPIO_PXFLGC(n) REG32(GPIO_PXFLGC((n))) /* interrupt flag */
830
831
832/*************************************************************************
833 * UART
834 *************************************************************************/
835
836#define IRDA_BASE UART0_BASE
837#define UART_BASE UART0_BASE
838#define UART_OFF 0x1000
839
840/* Register Offset */
841#define OFF_RDR (0x00) /* R 8b H'xx */
842#define OFF_TDR (0x00) /* W 8b H'xx */
843#define OFF_DLLR (0x00) /* RW 8b H'00 */
844#define OFF_DLHR (0x04) /* RW 8b H'00 */
845#define OFF_IER (0x04) /* RW 8b H'00 */
846#define OFF_ISR (0x08) /* R 8b H'01 */
847#define OFF_FCR (0x08) /* W 8b H'00 */
848#define OFF_LCR (0x0C) /* RW 8b H'00 */
849#define OFF_MCR (0x10) /* RW 8b H'00 */
850#define OFF_LSR (0x14) /* R 8b H'00 */
851#define OFF_MSR (0x18) /* R 8b H'00 */
852#define OFF_SPR (0x1C) /* RW 8b H'00 */
853#define OFF_SIRCR (0x20) /* RW 8b H'00, UART0 */
854#define OFF_UMR (0x24) /* RW 8b H'00, UART M Register */
855#define OFF_UACR (0x28) /* RW 8b H'00, UART Add Cycle Register */
856
857/* Register Address */
858#define UART0_RDR (UART0_BASE + OFF_RDR)
859#define UART0_TDR (UART0_BASE + OFF_TDR)
860#define UART0_DLLR (UART0_BASE + OFF_DLLR)
861#define UART0_DLHR (UART0_BASE + OFF_DLHR)
862#define UART0_IER (UART0_BASE + OFF_IER)
863#define UART0_ISR (UART0_BASE + OFF_ISR)
864#define UART0_FCR (UART0_BASE + OFF_FCR)
865#define UART0_LCR (UART0_BASE + OFF_LCR)
866#define UART0_MCR (UART0_BASE + OFF_MCR)
867#define UART0_LSR (UART0_BASE + OFF_LSR)
868#define UART0_MSR (UART0_BASE + OFF_MSR)
869#define UART0_SPR (UART0_BASE + OFF_SPR)
870#define UART0_SIRCR (UART0_BASE + OFF_SIRCR)
871#define UART0_UMR (UART0_BASE + OFF_UMR)
872#define UART0_UACR (UART0_BASE + OFF_UACR)
873
874/*
875 * Define macros for UART_IER
876 * UART Interrupt Enable Register
877 */
878#define UART_IER_RIE (1 << 0) /* 0: receive fifo "full" interrupt disable */
879#define UART_IER_TIE (1 << 1) /* 0: transmit fifo "empty" interrupt disable */
880#define UART_IER_RLIE (1 << 2) /* 0: receive line status interrupt disable */
881#define UART_IER_MIE (1 << 3) /* 0: modem status interrupt disable */
882#define UART_IER_RTIE (1 << 4) /* 0: receive timeout interrupt disable */
883
884/*
885 * Define macros for UART_ISR
886 * UART Interrupt Status Register
887 */
888#define UART_ISR_IP (1 << 0) /* 0: interrupt is pending 1: no interrupt */
889#define UART_ISR_IID (7 << 1) /* Source of Interrupt */
890#define UART_ISR_IID_MSI (0 << 1) /* Modem status interrupt */
891#define UART_ISR_IID_THRI (1 << 1) /* Transmitter holding register empty */
892#define UART_ISR_IID_RDI (2 << 1) /* Receiver data interrupt */
893#define UART_ISR_IID_RLSI (3 << 1) /* Receiver line status interrupt */
894#define UART_ISR_FFMS (3 << 6) /* FIFO mode select, set when UART_FCR.FE is set to 1 */
895#define UART_ISR_FFMS_NO_FIFO (0 << 6)
896#define UART_ISR_FFMS_FIFO_MODE (3 << 6)
897
898/*
899 * Define macros for UART_FCR
900 * UART FIFO Control Register
901 */
902#define UART_FCR_FE (1 << 0) /* 0: non-FIFO mode 1: FIFO mode */
903#define UART_FCR_RFLS (1 << 1) /* write 1 to flush receive FIFO */
904#define UART_FCR_TFLS (1 << 2) /* write 1 to flush transmit FIFO */
905#define UART_FCR_DMS (1 << 3) /* 0: disable DMA mode */
906#define UART_FCR_UUE (1 << 4) /* 0: disable UART */
907#define UART_FCR_RTRG (3 << 6) /* Receive FIFO Data Trigger */
908#define UART_FCR_RTRG_1 (0 << 6)
909#define UART_FCR_RTRG_4 (1 << 6)
910#define UART_FCR_RTRG_8 (2 << 6)
911#define UART_FCR_RTRG_15 (3 << 6)
912
913/*
914 * Define macros for UART_LCR
915 * UART Line Control Register
916 */
917#define UART_LCR_WLEN (3 << 0) /* word length */
918#define UART_LCR_WLEN_5 (0 << 0)
919#define UART_LCR_WLEN_6 (1 << 0)
920#define UART_LCR_WLEN_7 (2 << 0)
921#define UART_LCR_WLEN_8 (3 << 0)
922#define UART_LCR_STOP (1 << 2) /* 0: 1 stop bit when word length is 5,6,7,8
923                       1: 1.5 stop bits when 5; 2 stop bits when 6,7,8 */
924#define UART_LCR_STOP_1 (0 << 2) /* 0: 1 stop bit when word length is 5,6,7,8
925                       1: 1.5 stop bits when 5; 2 stop bits when 6,7,8 */
926#define UART_LCR_STOP_2 (1 << 2) /* 0: 1 stop bit when word length is 5,6,7,8
927                       1: 1.5 stop bits when 5; 2 stop bits when 6,7,8 */
928
929#define UART_LCR_PE (1 << 3) /* 0: parity disable */
930#define UART_LCR_PROE (1 << 4) /* 0: even parity 1: odd parity */
931#define UART_LCR_SPAR (1 << 5) /* 0: sticky parity disable */
932#define UART_LCR_SBRK (1 << 6) /* write 0 normal, write 1 send break */
933#define UART_LCR_DLAB (1 << 7) /* 0: access UART_RDR/TDR/IER 1: access UART_DLLR/DLHR */
934
935/*
936 * Define macros for UART_LSR
937 * UART Line Status Register
938 */
939#define UART_LSR_DR (1 << 0) /* 0: receive FIFO is empty 1: receive data is ready */
940#define UART_LSR_ORER (1 << 1) /* 0: no overrun error */
941#define UART_LSR_PER (1 << 2) /* 0: no parity error */
942#define UART_LSR_FER (1 << 3) /* 0; no framing error */
943#define UART_LSR_BRK (1 << 4) /* 0: no break detected 1: receive a break signal */
944#define UART_LSR_TDRQ (1 << 5) /* 1: transmit FIFO half "empty" */
945#define UART_LSR_TEMT (1 << 6) /* 1: transmit FIFO and shift registers empty */
946#define UART_LSR_RFER (1 << 7) /* 0: no receive error 1: receive error in FIFO mode */
947
948/*
949 * Define macros for UART_MCR
950 * UART Modem Control Register
951 */
952#define UART_MCR_DTR (1 << 0) /* 0: DTR_ ouput high */
953#define UART_MCR_RTS (1 << 1) /* 0: RTS_ output high */
954#define UART_MCR_OUT1 (1 << 2) /* 0: UART_MSR.RI is set to 0 and RI_ input high */
955#define UART_MCR_OUT2 (1 << 3) /* 0: UART_MSR.DCD is set to 0 and DCD_ input high */
956#define UART_MCR_LOOP (1 << 4) /* 0: normal 1: loopback mode */
957#define UART_MCR_MCE (1 << 7) /* 0: modem function is disable */
958
959/*
960 * Define macros for UART_MSR
961 * UART Modem Status Register
962 */
963#define UART_MSR_DCTS (1 << 0) /* 0: no change on CTS_ pin since last read of UART_MSR */
964#define UART_MSR_DDSR (1 << 1) /* 0: no change on DSR_ pin since last read of UART_MSR */
965#define UART_MSR_DRI (1 << 2) /* 0: no change on RI_ pin since last read of UART_MSR */
966#define UART_MSR_DDCD (1 << 3) /* 0: no change on DCD_ pin since last read of UART_MSR */
967#define UART_MSR_CTS (1 << 4) /* 0: CTS_ pin is high */
968#define UART_MSR_DSR (1 << 5) /* 0: DSR_ pin is high */
969#define UART_MSR_RI (1 << 6) /* 0: RI_ pin is high */
970#define UART_MSR_DCD (1 << 7) /* 0: DCD_ pin is high */
971
972/*
973 * Define macros for SIRCR
974 * Slow IrDA Control Register
975 */
976#define SIRCR_TSIRE (1 << 0) /* 0: transmitter is in UART mode 1: IrDA mode */
977#define SIRCR_RSIRE (1 << 1) /* 0: receiver is in UART mode 1: IrDA mode */
978#define SIRCR_TPWS (1 << 2) /* 0: transmit 0 pulse width is 3/16 of bit length
979                       1: 0 pulse width is 1.6us for 115.2Kbps */
980#define SIRCR_TXPL (1 << 3) /* 0: encoder generates a positive pulse for 0 */
981#define SIRCR_RXPL (1 << 4) /* 0: decoder interprets positive pulse as 0 */
982
983
984/*************************************************************************
985 * AIC (AC97/I2S Controller)
986 *************************************************************************/
987#define AIC_FR (AIC_BASE + 0x000)
988#define AIC_CR (AIC_BASE + 0x004)
989#define AIC_ACCR1 (AIC_BASE + 0x008)
990#define AIC_ACCR2 (AIC_BASE + 0x00C)
991#define AIC_I2SCR (AIC_BASE + 0x010)
992#define AIC_SR (AIC_BASE + 0x014)
993#define AIC_ACSR (AIC_BASE + 0x018)
994#define AIC_I2SSR (AIC_BASE + 0x01C)
995#define AIC_ACCAR (AIC_BASE + 0x020)
996#define AIC_ACCDR (AIC_BASE + 0x024)
997#define AIC_ACSAR (AIC_BASE + 0x028)
998#define AIC_ACSDR (AIC_BASE + 0x02C)
999#define AIC_I2SDIV (AIC_BASE + 0x030)
1000#define AIC_DR (AIC_BASE + 0x034)
1001
1002#define REG_AIC_FR REG32(AIC_FR)
1003#define REG_AIC_CR REG32(AIC_CR)
1004#define REG_AIC_ACCR1 REG32(AIC_ACCR1)
1005#define REG_AIC_ACCR2 REG32(AIC_ACCR2)
1006#define REG_AIC_I2SCR REG32(AIC_I2SCR)
1007#define REG_AIC_SR REG32(AIC_SR)
1008#define REG_AIC_ACSR REG32(AIC_ACSR)
1009#define REG_AIC_I2SSR REG32(AIC_I2SSR)
1010#define REG_AIC_ACCAR REG32(AIC_ACCAR)
1011#define REG_AIC_ACCDR REG32(AIC_ACCDR)
1012#define REG_AIC_ACSAR REG32(AIC_ACSAR)
1013#define REG_AIC_ACSDR REG32(AIC_ACSDR)
1014#define REG_AIC_I2SDIV REG32(AIC_I2SDIV)
1015#define REG_AIC_DR REG32(AIC_DR)
1016
1017/* AIC Controller Configuration Register (AIC_FR) */
1018
1019#define AIC_FR_RFTH_BIT 12 /* Receive FIFO Threshold */
1020#define AIC_FR_RFTH_MASK (0xf << AIC_FR_RFTH_BIT)
1021#define AIC_FR_TFTH_BIT 8 /* Transmit FIFO Threshold */
1022#define AIC_FR_TFTH_MASK (0xf << AIC_FR_TFTH_BIT)
1023#define AIC_FR_ICDC (1 << 5) /* External(0) or Internal CODEC(1) */
1024#define AIC_FR_AUSEL (1 << 4) /* AC97(0) or I2S/MSB-justified(1) */
1025#define AIC_FR_RST (1 << 3) /* AIC registers reset */
1026#define AIC_FR_BCKD (1 << 2) /* I2S BIT_CLK direction, 0:input,1:output */
1027#define AIC_FR_SYNCD (1 << 1) /* I2S SYNC direction, 0:input,1:output */
1028#define AIC_FR_ENB (1 << 0) /* AIC enable bit */
1029
1030/* AIC Controller Common Control Register (AIC_CR) */
1031
1032#define AIC_CR_OSS_BIT 19 /* Output Sample Size from memory (AIC V2 only) */
1033#define AIC_CR_OSS_MASK (0x7 << AIC_CR_OSS_BIT)
1034  #define AIC_CR_OSS_8BIT (0x0 << AIC_CR_OSS_BIT)
1035  #define AIC_CR_OSS_16BIT (0x1 << AIC_CR_OSS_BIT)
1036  #define AIC_CR_OSS_18BIT (0x2 << AIC_CR_OSS_BIT)
1037  #define AIC_CR_OSS_20BIT (0x3 << AIC_CR_OSS_BIT)
1038  #define AIC_CR_OSS_24BIT (0x4 << AIC_CR_OSS_BIT)
1039#define AIC_CR_ISS_BIT 16 /* Input Sample Size from memory (AIC V2 only) */
1040#define AIC_CR_ISS_MASK (0x7 << AIC_CR_ISS_BIT)
1041  #define AIC_CR_ISS_8BIT (0x0 << AIC_CR_ISS_BIT)
1042  #define AIC_CR_ISS_16BIT (0x1 << AIC_CR_ISS_BIT)
1043  #define AIC_CR_ISS_18BIT (0x2 << AIC_CR_ISS_BIT)
1044  #define AIC_CR_ISS_20BIT (0x3 << AIC_CR_ISS_BIT)
1045  #define AIC_CR_ISS_24BIT (0x4 << AIC_CR_ISS_BIT)
1046#define AIC_CR_RDMS (1 << 15) /* Receive DMA enable */
1047#define AIC_CR_TDMS (1 << 14) /* Transmit DMA enable */
1048#define AIC_CR_M2S (1 << 11) /* Mono to Stereo enable */
1049#define AIC_CR_ENDSW (1 << 10) /* Endian switch enable */
1050#define AIC_CR_AVSTSU (1 << 9) /* Signed <-> Unsigned toggle enable */
1051#define AIC_CR_FLUSH (1 << 8) /* Flush FIFO */
1052#define AIC_CR_EROR (1 << 6) /* Enable ROR interrupt */
1053#define AIC_CR_ETUR (1 << 5) /* Enable TUR interrupt */
1054#define AIC_CR_ERFS (1 << 4) /* Enable RFS interrupt */
1055#define AIC_CR_ETFS (1 << 3) /* Enable TFS interrupt */
1056#define AIC_CR_ENLBF (1 << 2) /* Enable Loopback Function */
1057#define AIC_CR_ERPL (1 << 1) /* Enable Playback Function */
1058#define AIC_CR_EREC (1 << 0) /* Enable Record Function */
1059
1060/* AIC Controller AC-link Control Register 1 (AIC_ACCR1) */
1061
1062#define AIC_ACCR1_RS_BIT 16 /* Receive Valid Slots */
1063#define AIC_ACCR1_RS_MASK (0x3ff << AIC_ACCR1_RS_BIT)
1064  #define AIC_ACCR1_RS_SLOT12 (1 << 25) /* Slot 12 valid bit */
1065  #define AIC_ACCR1_RS_SLOT11 (1 << 24) /* Slot 11 valid bit */
1066  #define AIC_ACCR1_RS_SLOT10 (1 << 23) /* Slot 10 valid bit */
1067  #define AIC_ACCR1_RS_SLOT9 (1 << 22) /* Slot 9 valid bit, LFE */
1068  #define AIC_ACCR1_RS_SLOT8 (1 << 21) /* Slot 8 valid bit, Surround Right */
1069  #define AIC_ACCR1_RS_SLOT7 (1 << 20) /* Slot 7 valid bit, Surround Left */
1070  #define AIC_ACCR1_RS_SLOT6 (1 << 19) /* Slot 6 valid bit, PCM Center */
1071  #define AIC_ACCR1_RS_SLOT5 (1 << 18) /* Slot 5 valid bit */
1072  #define AIC_ACCR1_RS_SLOT4 (1 << 17) /* Slot 4 valid bit, PCM Right */
1073  #define AIC_ACCR1_RS_SLOT3 (1 << 16) /* Slot 3 valid bit, PCM Left */
1074#define AIC_ACCR1_XS_BIT 0 /* Transmit Valid Slots */
1075#define AIC_ACCR1_XS_MASK (0x3ff << AIC_ACCR1_XS_BIT)
1076  #define AIC_ACCR1_XS_SLOT12 (1 << 9) /* Slot 12 valid bit */
1077  #define AIC_ACCR1_XS_SLOT11 (1 << 8) /* Slot 11 valid bit */
1078  #define AIC_ACCR1_XS_SLOT10 (1 << 7) /* Slot 10 valid bit */
1079  #define AIC_ACCR1_XS_SLOT9 (1 << 6) /* Slot 9 valid bit, LFE */
1080  #define AIC_ACCR1_XS_SLOT8 (1 << 5) /* Slot 8 valid bit, Surround Right */
1081  #define AIC_ACCR1_XS_SLOT7 (1 << 4) /* Slot 7 valid bit, Surround Left */
1082  #define AIC_ACCR1_XS_SLOT6 (1 << 3) /* Slot 6 valid bit, PCM Center */
1083  #define AIC_ACCR1_XS_SLOT5 (1 << 2) /* Slot 5 valid bit */
1084  #define AIC_ACCR1_XS_SLOT4 (1 << 1) /* Slot 4 valid bit, PCM Right */
1085  #define AIC_ACCR1_XS_SLOT3 (1 << 0) /* Slot 3 valid bit, PCM Left */
1086
1087/* AIC Controller AC-link Control Register 2 (AIC_ACCR2) */
1088
1089#define AIC_ACCR2_ERSTO (1 << 18) /* Enable RSTO interrupt */
1090#define AIC_ACCR2_ESADR (1 << 17) /* Enable SADR interrupt */
1091#define AIC_ACCR2_ECADT (1 << 16) /* Enable CADT interrupt */
1092#define AIC_ACCR2_OASS_BIT 8 /* Output Sample Size for AC-link */
1093#define AIC_ACCR2_OASS_MASK (0x3 << AIC_ACCR2_OASS_BIT)
1094  #define AIC_ACCR2_OASS_20BIT (0 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 20-bit */
1095  #define AIC_ACCR2_OASS_18BIT (1 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 18-bit */
1096  #define AIC_ACCR2_OASS_16BIT (2 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 16-bit */
1097  #define AIC_ACCR2_OASS_8BIT (3 << AIC_ACCR2_OASS_BIT) /* Output Audio Sample Size is 8-bit */
1098#define AIC_ACCR2_IASS_BIT 6 /* Output Sample Size for AC-link */
1099#define AIC_ACCR2_IASS_MASK (0x3 << AIC_ACCR2_IASS_BIT)
1100  #define AIC_ACCR2_IASS_20BIT (0 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 20-bit */
1101  #define AIC_ACCR2_IASS_18BIT (1 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 18-bit */
1102  #define AIC_ACCR2_IASS_16BIT (2 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 16-bit */
1103  #define AIC_ACCR2_IASS_8BIT (3 << AIC_ACCR2_IASS_BIT) /* Input Audio Sample Size is 8-bit */
1104#define AIC_ACCR2_SO (1 << 3) /* SDATA_OUT output value */
1105#define AIC_ACCR2_SR (1 << 2) /* RESET# pin level */
1106#define AIC_ACCR2_SS (1 << 1) /* SYNC pin level */
1107#define AIC_ACCR2_SA (1 << 0) /* SYNC and SDATA_OUT alternation */
1108
1109/* AIC Controller I2S/MSB-justified Control Register (AIC_I2SCR) */
1110
1111#define AIC_I2SCR_STPBK (1 << 12) /* Stop BIT_CLK for I2S/MSB-justified */
1112#define AIC_I2SCR_WL_BIT 1 /* Input/Output Sample Size for I2S/MSB-justified */
1113#define AIC_I2SCR_WL_MASK (0x7 << AIC_I2SCR_WL_BIT)
1114  #define AIC_I2SCR_WL_24BIT (0 << AIC_I2SCR_WL_BIT) /* Word Length is 24 bit */
1115  #define AIC_I2SCR_WL_20BIT (1 << AIC_I2SCR_WL_BIT) /* Word Length is 20 bit */
1116  #define AIC_I2SCR_WL_18BIT (2 << AIC_I2SCR_WL_BIT) /* Word Length is 18 bit */
1117  #define AIC_I2SCR_WL_16BIT (3 << AIC_I2SCR_WL_BIT) /* Word Length is 16 bit */
1118  #define AIC_I2SCR_WL_8BIT (4 << AIC_I2SCR_WL_BIT) /* Word Length is 8 bit */
1119#define AIC_I2SCR_AMSL (1 << 0) /* 0:I2S, 1:MSB-justified */
1120
1121/* AIC Controller FIFO Status Register (AIC_SR) */
1122
1123#define AIC_SR_RFL_BIT 24 /* Receive FIFO Level */
1124#define AIC_SR_RFL_MASK (0x3f << AIC_SR_RFL_BIT)
1125#define AIC_SR_TFL_BIT 8 /* Transmit FIFO level */
1126#define AIC_SR_TFL_MASK (0x3f << AIC_SR_TFL_BIT)
1127#define AIC_SR_ROR (1 << 6) /* Receive FIFO Overrun */
1128#define AIC_SR_TUR (1 << 5) /* Transmit FIFO Underrun */
1129#define AIC_SR_RFS (1 << 4) /* Receive FIFO Service Request */
1130#define AIC_SR_TFS (1 << 3) /* Transmit FIFO Service Request */
1131
1132/* AIC Controller AC-link Status Register (AIC_ACSR) */
1133
1134#define AIC_ACSR_SLTERR (1 << 21) /* Slot Error Flag */
1135#define AIC_ACSR_CRDY (1 << 20) /* External CODEC Ready Flag */
1136#define AIC_ACSR_CLPM (1 << 19) /* External CODEC low power mode flag */
1137#define AIC_ACSR_RSTO (1 << 18) /* External CODEC regs read status timeout */
1138#define AIC_ACSR_SADR (1 << 17) /* External CODEC regs status addr and data received */
1139#define AIC_ACSR_CADT (1 << 16) /* Command Address and Data Transmitted */
1140
1141/* AIC Controller I2S/MSB-justified Status Register (AIC_I2SSR) */
1142
1143#define AIC_I2SSR_BSY (1 << 2) /* AIC Busy in I2S/MSB-justified format */
1144
1145/* AIC Controller AC97 codec Command Address Register (AIC_ACCAR) */
1146
1147#define AIC_ACCAR_CAR_BIT 0
1148#define AIC_ACCAR_CAR_MASK (0xfffff << AIC_ACCAR_CAR_BIT)
1149
1150/* AIC Controller AC97 codec Command Data Register (AIC_ACCDR) */
1151
1152#define AIC_ACCDR_CDR_BIT 0
1153#define AIC_ACCDR_CDR_MASK (0xfffff << AIC_ACCDR_CDR_BIT)
1154
1155/* AIC Controller AC97 codec Status Address Register (AIC_ACSAR) */
1156
1157#define AIC_ACSAR_SAR_BIT 0
1158#define AIC_ACSAR_SAR_MASK (0xfffff << AIC_ACSAR_SAR_BIT)
1159
1160/* AIC Controller AC97 codec Status Data Register (AIC_ACSDR) */
1161
1162#define AIC_ACSDR_SDR_BIT 0
1163#define AIC_ACSDR_SDR_MASK (0xfffff << AIC_ACSDR_SDR_BIT)
1164
1165/* AIC Controller I2S/MSB-justified Clock Divider Register (AIC_I2SDIV) */
1166
1167#define AIC_I2SDIV_DIV_BIT 0
1168#define AIC_I2SDIV_DIV_MASK (0x7f << AIC_I2SDIV_DIV_BIT)
1169  #define AIC_I2SDIV_BITCLK_3072KHZ (0x0C << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 3.072MHz */
1170  #define AIC_I2SDIV_BITCLK_2836KHZ (0x0D << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 2.836MHz */
1171  #define AIC_I2SDIV_BITCLK_1418KHZ (0x1A << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 1.418MHz */
1172  #define AIC_I2SDIV_BITCLK_1024KHZ (0x24 << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 1.024MHz */
1173  #define AIC_I2SDIV_BITCLK_7089KHZ (0x34 << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 708.92KHz */
1174  #define AIC_I2SDIV_BITCLK_512KHZ (0x48 << AIC_I2SDIV_DIV_BIT) /* BIT_CLK of 512.00KHz */
1175
1176
1177/*************************************************************************
1178 * ICDC (Internal CODEC)
1179 *************************************************************************/
1180#define ICDC_CR (ICDC_BASE + 0x0400) /* ICDC Control Register */
1181#define ICDC_APWAIT (ICDC_BASE + 0x0404) /* Anti-Pop WAIT Stage Timing Control Register */
1182#define ICDC_APPRE (ICDC_BASE + 0x0408) /* Anti-Pop HPEN-PRE Stage Timing Control Register */
1183#define ICDC_APHPEN (ICDC_BASE + 0x040C) /* Anti-Pop HPEN Stage Timing Control Register */
1184#define ICDC_APSR (ICDC_BASE + 0x0410) /* Anti-Pop Status Register */
1185#define ICDC_CDCCR1 (ICDC_BASE + 0x0080)
1186#define ICDC_CDCCR2 (ICDC_BASE + 0x0084)
1187
1188#define REG_ICDC_CR REG32(ICDC_CR)
1189#define REG_ICDC_APWAIT REG32(ICDC_APWAIT)
1190#define REG_ICDC_APPRE REG32(ICDC_APPRE)
1191#define REG_ICDC_APHPEN REG32(ICDC_APHPEN)
1192#define REG_ICDC_APSR REG32(ICDC_APSR)
1193#define REG_ICDC_CDCCR1 REG32(ICDC_CDCCR1)
1194#define REG_ICDC_CDCCR2 REG32(ICDC_CDCCR2)
1195
1196/* ICDC Control Register */
1197#define ICDC_CR_LINVOL_BIT 24 /* LINE Input Volume Gain: GAIN=LINVOL*1.5-34.5 */
1198#define ICDC_CR_LINVOL_MASK (0x1f << ICDC_CR_LINVOL_BIT)
1199#define ICDC_CR_ASRATE_BIT 20 /* Audio Sample Rate */
1200#define ICDC_CR_ASRATE_MASK (0x0f << ICDC_CR_ASRATE_BIT)
1201  #define ICDC_CR_ASRATE_8000 (0x0 << ICDC_CR_ASRATE_BIT)
1202  #define ICDC_CR_ASRATE_11025 (0x1 << ICDC_CR_ASRATE_BIT)
1203  #define ICDC_CR_ASRATE_12000 (0x2 << ICDC_CR_ASRATE_BIT)
1204  #define ICDC_CR_ASRATE_16000 (0x3 << ICDC_CR_ASRATE_BIT)
1205  #define ICDC_CR_ASRATE_22050 (0x4 << ICDC_CR_ASRATE_BIT)
1206  #define ICDC_CR_ASRATE_24000 (0x5 << ICDC_CR_ASRATE_BIT)
1207  #define ICDC_CR_ASRATE_32000 (0x6 << ICDC_CR_ASRATE_BIT)
1208  #define ICDC_CR_ASRATE_44100 (0x7 << ICDC_CR_ASRATE_BIT)
1209  #define ICDC_CR_ASRATE_48000 (0x8 << ICDC_CR_ASRATE_BIT)
1210#define ICDC_CR_MICBG_BIT 18 /* MIC Boost Gain */
1211#define ICDC_CR_MICBG_MASK (0x3 << ICDC_CR_MICBG_BIT)
1212  #define ICDC_CR_MICBG_0DB (0x0 << ICDC_CR_MICBG_BIT)
1213  #define ICDC_CR_MICBG_6DB (0x1 << ICDC_CR_MICBG_BIT)
1214  #define ICDC_CR_MICBG_12DB (0x2 << ICDC_CR_MICBG_BIT)
1215  #define ICDC_CR_MICBG_20DB (0x3 << ICDC_CR_MICBG_BIT)
1216#define ICDC_CR_HPVOL_BIT 16 /* Headphone Volume Gain */
1217#define ICDC_CR_HPVOL_MASK (0x3 << ICDC_CR_HPVOL_BIT)
1218  #define ICDC_CR_HPVOL_0DB (0x0 << ICDC_CR_HPVOL_BIT)
1219  #define ICDC_CR_HPVOL_2DB (0x1 << ICDC_CR_HPVOL_BIT)
1220  #define ICDC_CR_HPVOL_4DB (0x2 << ICDC_CR_HPVOL_BIT)
1221  #define ICDC_CR_HPVOL_6DB (0x3 << ICDC_CR_HPVOL_BIT)
1222#define ICDC_CR_ELINEIN (1 << 13) /* Enable LINE Input */
1223#define ICDC_CR_EMIC (1 << 12) /* Enable MIC Input */
1224#define ICDC_CR_SW1ON (1 << 11) /* Switch 1 in CODEC is on */
1225#define ICDC_CR_EADC (1 << 10) /* Enable ADC */
1226#define ICDC_CR_SW2ON (1 << 9) /* Switch 2 in CODEC is on */
1227#define ICDC_CR_EDAC (1 << 8) /* Enable DAC */
1228#define ICDC_CR_HPMUTE (1 << 5) /* Headphone Mute */
1229#define ICDC_CR_HPTON (1 << 4) /* Headphone Amplifier Trun On */
1230#define ICDC_CR_HPTOFF (1 << 3) /* Headphone Amplifier Trun Off */
1231#define ICDC_CR_TAAP (1 << 2) /* Turn Around of the Anti-Pop Procedure */
1232#define ICDC_CR_EAP (1 << 1) /* Enable Anti-Pop Procedure */
1233#define ICDC_CR_SUSPD (1 << 0) /* CODEC Suspend */
1234
1235/* Anti-Pop WAIT Stage Timing Control Register */
1236#define ICDC_APWAIT_WAITSN_BIT 0
1237#define ICDC_APWAIT_WAITSN_MASK (0x7ff << ICDC_APWAIT_WAITSN_BIT)
1238
1239/* Anti-Pop HPEN-PRE Stage Timing Control Register */
1240#define ICDC_APPRE_PRESN_BIT 0
1241#define ICDC_APPRE_PRESN_MASK (0x1ff << ICDC_APPRE_PRESN_BIT)
1242
1243/* Anti-Pop HPEN Stage Timing Control Register */
1244#define ICDC_APHPEN_HPENSN_BIT 0
1245#define ICDC_APHPEN_HPENSN_MASK (0x3fff << ICDC_APHPEN_HPENSN_BIT)
1246
1247/* Anti-Pop Status Register */
1248#define ICDC_SR_HPST_BIT 14 /* Headphone Amplifier State */
1249#define ICDC_SR_HPST_MASK (0x7 << ICDC_SR_HPST_BIT)
1250#define ICDC_SR_HPST_HP_OFF (0x0 << ICDC_SR_HPST_BIT) /* HP amplifier is off */
1251#define ICDC_SR_HPST_TON_WAIT (0x1 << ICDC_SR_HPST_BIT) /* wait state in turn-on */
1252  #define ICDC_SR_HPST_TON_PRE (0x2 << ICDC_SR_HPST_BIT) /* pre-enable state in turn-on */
1253#define ICDC_SR_HPST_TON_HPEN (0x3 << ICDC_SR_HPST_BIT) /* HP enable state in turn-on */
1254  #define ICDC_SR_HPST_TOFF_HPEN (0x4 << ICDC_SR_HPST_BIT) /* HP enable state in turn-off */
1255  #define ICDC_SR_HPST_TOFF_PRE (0x5 << ICDC_SR_HPST_BIT) /* pre-enable state in turn-off */
1256  #define ICDC_SR_HPST_TOFF_WAIT (0x6 << ICDC_SR_HPST_BIT) /* wait state in turn-off */
1257  #define ICDC_SR_HPST_HP_ON (0x7 << ICDC_SR_HPST_BIT) /* HP amplifier is on */
1258#define ICDC_SR_SNCNT_BIT 0 /* Sample Number Counter */
1259#define ICDC_SR_SNCNT_MASK (0x3fff << ICDC_SR_SNCNT_BIT)
1260
1261
1262/*************************************************************************
1263 * I2C
1264 *************************************************************************/
1265#define I2C_DR (I2C_BASE + 0x000)
1266#define I2C_CR (I2C_BASE + 0x004)
1267#define I2C_SR (I2C_BASE + 0x008)
1268#define I2C_GR (I2C_BASE + 0x00C)
1269
1270#define REG_I2C_DR REG8(I2C_DR)
1271#define REG_I2C_CR REG8(I2C_CR)
1272#define REG_I2C_SR REG8(I2C_SR)
1273#define REG_I2C_GR REG16(I2C_GR)
1274
1275/* I2C Control Register (I2C_CR) */
1276
1277#define I2C_CR_IEN (1 << 4)
1278#define I2C_CR_STA (1 << 3)
1279#define I2C_CR_STO (1 << 2)
1280#define I2C_CR_AC (1 << 1)
1281#define I2C_CR_I2CE (1 << 0)
1282
1283/* I2C Status Register (I2C_SR) */
1284
1285#define I2C_SR_STX (1 << 4)
1286#define I2C_SR_BUSY (1 << 3)
1287#define I2C_SR_TEND (1 << 2)
1288#define I2C_SR_DRF (1 << 1)
1289#define I2C_SR_ACKF (1 << 0)
1290
1291
1292/*************************************************************************
1293 * SSI
1294 *************************************************************************/
1295#define SSI_DR (SSI_BASE + 0x000)
1296#define SSI_CR0 (SSI_BASE + 0x004)
1297#define SSI_CR1 (SSI_BASE + 0x008)
1298#define SSI_SR (SSI_BASE + 0x00C)
1299#define SSI_ITR (SSI_BASE + 0x010)
1300#define SSI_ICR (SSI_BASE + 0x014)
1301#define SSI_GR (SSI_BASE + 0x018)
1302
1303#define REG_SSI_DR REG32(SSI_DR)
1304#define REG_SSI_CR0 REG16(SSI_CR0)
1305#define REG_SSI_CR1 REG32(SSI_CR1)
1306#define REG_SSI_SR REG32(SSI_SR)
1307#define REG_SSI_ITR REG16(SSI_ITR)
1308#define REG_SSI_ICR REG8(SSI_ICR)
1309#define REG_SSI_GR REG16(SSI_GR)
1310
1311/* SSI Data Register (SSI_DR) */
1312
1313#define SSI_DR_GPC_BIT 0
1314#define SSI_DR_GPC_MASK (0x1ff << SSI_DR_GPC_BIT)
1315
1316/* SSI Control Register 0 (SSI_CR0) */
1317
1318#define SSI_CR0_SSIE (1 << 15)
1319#define SSI_CR0_TIE (1 << 14)
1320#define SSI_CR0_RIE (1 << 13)
1321#define SSI_CR0_TEIE (1 << 12)
1322#define SSI_CR0_REIE (1 << 11)
1323#define SSI_CR0_LOOP (1 << 10)
1324#define SSI_CR0_RFINE (1 << 9)
1325#define SSI_CR0_RFINC (1 << 8)
1326#define SSI_CR0_FSEL (1 << 6)
1327#define SSI_CR0_TFLUSH (1 << 2)
1328#define SSI_CR0_RFLUSH (1 << 1)
1329#define SSI_CR0_DISREV (1 << 0)
1330
1331/* SSI Control Register 1 (SSI_CR1) */
1332
1333#define SSI_CR1_FRMHL_BIT 30
1334#define SSI_CR1_FRMHL_MASK (0x3 << SSI_CR1_FRMHL_BIT)
1335  #define SSI_CR1_FRMHL_CELOW_CE2LOW (0 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is low valid and SSI_CE2_ is low valid */
1336  #define SSI_CR1_FRMHL_CEHIGH_CE2LOW (1 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is high valid and SSI_CE2_ is low valid */
1337  #define SSI_CR1_FRMHL_CELOW_CE2HIGH (2 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is low valid and SSI_CE2_ is high valid */
1338  #define SSI_CR1_FRMHL_CEHIGH_CE2HIGH (3 << SSI_CR1_FRMHL_BIT) /* SSI_CE_ is high valid and SSI_CE2_ is high valid */
1339#define SSI_CR1_TFVCK_BIT 28
1340#define SSI_CR1_TFVCK_MASK (0x3 << SSI_CR1_TFVCK_BIT)
1341  #define SSI_CR1_TFVCK_0 (0 << SSI_CR1_TFVCK_BIT)
1342  #define SSI_CR1_TFVCK_1 (1 << SSI_CR1_TFVCK_BIT)
1343  #define SSI_CR1_TFVCK_2 (2 << SSI_CR1_TFVCK_BIT)
1344  #define SSI_CR1_TFVCK_3 (3 << SSI_CR1_TFVCK_BIT)
1345#define SSI_CR1_TCKFI_BIT 26
1346#define SSI_CR1_TCKFI_MASK (0x3 << SSI_CR1_TCKFI_BIT)
1347  #define SSI_CR1_TCKFI_0 (0 << SSI_CR1_TCKFI_BIT)
1348  #define SSI_CR1_TCKFI_1 (1 << SSI_CR1_TCKFI_BIT)
1349  #define SSI_CR1_TCKFI_2 (2 << SSI_CR1_TCKFI_BIT)
1350  #define SSI_CR1_TCKFI_3 (3 << SSI_CR1_TCKFI_BIT)
1351#define SSI_CR1_LFST (1 << 25)
1352#define SSI_CR1_ITFRM (1 << 24)
1353#define SSI_CR1_UNFIN (1 << 23)
1354#define SSI_CR1_MULTS (1 << 22)
1355#define SSI_CR1_FMAT_BIT 20
1356#define SSI_CR1_FMAT_MASK (0x3 << SSI_CR1_FMAT_BIT)
1357  #define SSI_CR1_FMAT_SPI (0 << SSI_CR1_FMAT_BIT) /* Motorola¡¯s SPI format */
1358  #define SSI_CR1_FMAT_SSP (1 << SSI_CR1_FMAT_BIT) /* TI's SSP format */
1359  #define SSI_CR1_FMAT_MW1 (2 << SSI_CR1_FMAT_BIT) /* National Microwire 1 format */
1360  #define SSI_CR1_FMAT_MW2 (3 << SSI_CR1_FMAT_BIT) /* National Microwire 2 format */
1361#define SSI_CR1_TTRG_BIT 16
1362#define SSI_CR1_TTRG_MASK (0xf << SSI_CR1_TTRG_BIT)
1363  #define SSI_CR1_TTRG_1 (0 << SSI_CR1_TTRG_BIT)
1364  #define SSI_CR1_TTRG_8 (1 << SSI_CR1_TTRG_BIT)
1365  #define SSI_CR1_TTRG_16 (2 << SSI_CR1_TTRG_BIT)
1366  #define SSI_CR1_TTRG_24 (3 << SSI_CR1_TTRG_BIT)
1367  #define SSI_CR1_TTRG_32 (4 << SSI_CR1_TTRG_BIT)
1368  #define SSI_CR1_TTRG_40 (5 << SSI_CR1_TTRG_BIT)
1369  #define SSI_CR1_TTRG_48 (6 << SSI_CR1_TTRG_BIT)
1370  #define SSI_CR1_TTRG_56 (7 << SSI_CR1_TTRG_BIT)
1371  #define SSI_CR1_TTRG_64 (8 << SSI_CR1_TTRG_BIT)
1372  #define SSI_CR1_TTRG_72 (9 << SSI_CR1_TTRG_BIT)
1373  #define SSI_CR1_TTRG_80 (10<< SSI_CR1_TTRG_BIT)
1374  #define SSI_CR1_TTRG_88 (11<< SSI_CR1_TTRG_BIT)
1375  #define SSI_CR1_TTRG_96 (12<< SSI_CR1_TTRG_BIT)
1376  #define SSI_CR1_TTRG_104 (13<< SSI_CR1_TTRG_BIT)
1377  #define SSI_CR1_TTRG_112 (14<< SSI_CR1_TTRG_BIT)
1378  #define SSI_CR1_TTRG_120 (15<< SSI_CR1_TTRG_BIT)
1379#define SSI_CR1_MCOM_BIT 12
1380#define SSI_CR1_MCOM_MASK (0xf << SSI_CR1_MCOM_BIT)
1381  #define SSI_CR1_MCOM_1BIT (0x0 << SSI_CR1_MCOM_BIT) /* 1-bit command selected */
1382  #define SSI_CR1_MCOM_2BIT (0x1 << SSI_CR1_MCOM_BIT) /* 2-bit command selected */
1383  #define SSI_CR1_MCOM_3BIT (0x2 << SSI_CR1_MCOM_BIT) /* 3-bit command selected */
1384  #define SSI_CR1_MCOM_4BIT (0x3 << SSI_CR1_MCOM_BIT) /* 4-bit command selected */
1385  #define SSI_CR1_MCOM_5BIT (0x4 << SSI_CR1_MCOM_BIT) /* 5-bit command selected */
1386  #define SSI_CR1_MCOM_6BIT (0x5 << SSI_CR1_MCOM_BIT) /* 6-bit command selected */
1387  #define SSI_CR1_MCOM_7BIT (0x6 << SSI_CR1_MCOM_BIT) /* 7-bit command selected */
1388  #define SSI_CR1_MCOM_8BIT (0x7 << SSI_CR1_MCOM_BIT) /* 8-bit command selected */
1389  #define SSI_CR1_MCOM_9BIT (0x8 << SSI_CR1_MCOM_BIT) /* 9-bit command selected */
1390  #define SSI_CR1_MCOM_10BIT (0x9 << SSI_CR1_MCOM_BIT) /* 10-bit command selected */
1391  #define SSI_CR1_MCOM_11BIT (0xA << SSI_CR1_MCOM_BIT) /* 11-bit command selected */
1392  #define SSI_CR1_MCOM_12BIT (0xB << SSI_CR1_MCOM_BIT) /* 12-bit command selected */
1393  #define SSI_CR1_MCOM_13BIT (0xC << SSI_CR1_MCOM_BIT) /* 13-bit command selected */
1394  #define SSI_CR1_MCOM_14BIT (0xD << SSI_CR1_MCOM_BIT) /* 14-bit command selected */
1395  #define SSI_CR1_MCOM_15BIT (0xE << SSI_CR1_MCOM_BIT) /* 15-bit command selected */
1396  #define SSI_CR1_MCOM_16BIT (0xF << SSI_CR1_MCOM_BIT) /* 16-bit command selected */
1397#define SSI_CR1_RTRG_BIT 8
1398#define SSI_CR1_RTRG_MASK (0xf << SSI_CR1_RTRG_BIT)
1399  #define SSI_CR1_RTRG_1 (0 << SSI_CR1_RTRG_BIT)
1400  #define SSI_CR1_RTRG_8 (1 << SSI_CR1_RTRG_BIT)
1401  #define SSI_CR1_RTRG_16 (2 << SSI_CR1_RTRG_BIT)
1402  #define SSI_CR1_RTRG_24 (3 << SSI_CR1_RTRG_BIT)
1403  #define SSI_CR1_RTRG_32 (4 << SSI_CR1_RTRG_BIT)
1404  #define SSI_CR1_RTRG_40 (5 << SSI_CR1_RTRG_BIT)
1405  #define SSI_CR1_RTRG_48 (6 << SSI_CR1_RTRG_BIT)
1406  #define SSI_CR1_RTRG_56 (7 << SSI_CR1_RTRG_BIT)
1407  #define SSI_CR1_RTRG_64 (8 << SSI_CR1_RTRG_BIT)
1408  #define SSI_CR1_RTRG_72 (9 << SSI_CR1_RTRG_BIT)
1409  #define SSI_CR1_RTRG_80 (10<< SSI_CR1_RTRG_BIT)
1410  #define SSI_CR1_RTRG_88 (11<< SSI_CR1_RTRG_BIT)
1411  #define SSI_CR1_RTRG_96 (12<< SSI_CR1_RTRG_BIT)
1412  #define SSI_CR1_RTRG_104 (13<< SSI_CR1_RTRG_BIT)
1413  #define SSI_CR1_RTRG_112 (14<< SSI_CR1_RTRG_BIT)
1414  #define SSI_CR1_RTRG_120 (15<< SSI_CR1_RTRG_BIT)
1415#define SSI_CR1_FLEN_BIT 4
1416#define SSI_CR1_FLEN_MASK (0xf << SSI_CR1_FLEN_BIT)
1417  #define SSI_CR1_FLEN_2BIT (0x0 << SSI_CR1_FLEN_BIT)
1418  #define SSI_CR1_FLEN_3BIT (0x1 << SSI_CR1_FLEN_BIT)
1419  #define SSI_CR1_FLEN_4BIT (0x2 << SSI_CR1_FLEN_BIT)
1420  #define SSI_CR1_FLEN_5BIT (0x3 << SSI_CR1_FLEN_BIT)
1421  #define SSI_CR1_FLEN_6BIT (0x4 << SSI_CR1_FLEN_BIT)
1422  #define SSI_CR1_FLEN_7BIT (0x5 << SSI_CR1_FLEN_BIT)
1423  #define SSI_CR1_FLEN_8BIT (0x6 << SSI_CR1_FLEN_BIT)
1424  #define SSI_CR1_FLEN_9BIT (0x7 << SSI_CR1_FLEN_BIT)
1425  #define SSI_CR1_FLEN_10BIT (0x8 << SSI_CR1_FLEN_BIT)
1426  #define SSI_CR1_FLEN_11BIT (0x9 << SSI_CR1_FLEN_BIT)
1427  #define SSI_CR1_FLEN_12BIT (0xA << SSI_CR1_FLEN_BIT)
1428  #define SSI_CR1_FLEN_13BIT (0xB << SSI_CR1_FLEN_BIT)
1429  #define SSI_CR1_FLEN_14BIT (0xC << SSI_CR1_FLEN_BIT)
1430  #define SSI_CR1_FLEN_15BIT (0xD << SSI_CR1_FLEN_BIT)
1431  #define SSI_CR1_FLEN_16BIT (0xE << SSI_CR1_FLEN_BIT)
1432  #define SSI_CR1_FLEN_17BIT (0xF << SSI_CR1_FLEN_BIT)
1433#define SSI_CR1_PHA (1 << 1)
1434#define SSI_CR1_POL (1 << 0)
1435
1436/* SSI Status Register (SSI_SR) */
1437
1438#define SSI_SR_TFIFONUM_BIT 16
1439#define SSI_SR_TFIFONUM_MASK (0xff << SSI_SR_TFIFONUM_BIT)
1440#define SSI_SR_RFIFONUM_BIT 8
1441#define SSI_SR_RFIFONUM_MASK (0xff << SSI_SR_RFIFONUM_BIT)
1442#define SSI_SR_END (1 << 7)
1443#define SSI_SR_BUSY (1 << 6)
1444#define SSI_SR_TFF (1 << 5)
1445#define SSI_SR_RFE (1 << 4)
1446#define SSI_SR_TFHE (1 << 3)
1447#define SSI_SR_RFHF (1 << 2)
1448#define SSI_SR_UNDR (1 << 1)
1449#define SSI_SR_OVER (1 << 0)
1450
1451/* SSI Interval Time Control Register (SSI_ITR) */
1452
1453#define SSI_ITR_CNTCLK (1 << 15)
1454#define SSI_ITR_IVLTM_BIT 0
1455#define SSI_ITR_IVLTM_MASK (0x7fff << SSI_ITR_IVLTM_BIT)
1456
1457
1458/*************************************************************************
1459 * MSC
1460 *************************************************************************/
1461#define MSC_STRPCL (MSC_BASE + 0x000)
1462#define MSC_STAT (MSC_BASE + 0x004)
1463#define MSC_CLKRT (MSC_BASE + 0x008)
1464#define MSC_CMDAT (MSC_BASE + 0x00C)
1465#define MSC_RESTO (MSC_BASE + 0x010)
1466#define MSC_RDTO (MSC_BASE + 0x014)
1467#define MSC_BLKLEN (MSC_BASE + 0x018)
1468#define MSC_NOB (MSC_BASE + 0x01C)
1469#define MSC_SNOB (MSC_BASE + 0x020)
1470#define MSC_IMASK (MSC_BASE + 0x024)
1471#define MSC_IREG (MSC_BASE + 0x028)
1472#define MSC_CMD (MSC_BASE + 0x02C)
1473#define MSC_ARG (MSC_BASE + 0x030)
1474#define MSC_RES (MSC_BASE + 0x034)
1475#define MSC_RXFIFO (MSC_BASE + 0x038)
1476#define MSC_TXFIFO (MSC_BASE + 0x03C)
1477
1478#define REG_MSC_STRPCL REG16(MSC_STRPCL)
1479#define REG_MSC_STAT REG32(MSC_STAT)
1480#define REG_MSC_CLKRT REG16(MSC_CLKRT)
1481#define REG_MSC_CMDAT REG32(MSC_CMDAT)
1482#define REG_MSC_RESTO REG16(MSC_RESTO)
1483#define REG_MSC_RDTO REG16(MSC_RDTO)
1484#define REG_MSC_BLKLEN REG16(MSC_BLKLEN)
1485#define REG_MSC_NOB REG16(MSC_NOB)
1486#define REG_MSC_SNOB REG16(MSC_SNOB)
1487#define REG_MSC_IMASK REG16(MSC_IMASK)
1488#define REG_MSC_IREG REG16(MSC_IREG)
1489#define REG_MSC_CMD REG8(MSC_CMD)
1490#define REG_MSC_ARG REG32(MSC_ARG)
1491#define REG_MSC_RES REG16(MSC_RES)
1492#define REG_MSC_RXFIFO REG32(MSC_RXFIFO)
1493#define REG_MSC_TXFIFO REG32(MSC_TXFIFO)
1494
1495/* MSC Clock and Control Register (MSC_STRPCL) */
1496
1497#define MSC_STRPCL_EXIT_MULTIPLE (1 << 7)
1498#define MSC_STRPCL_EXIT_TRANSFER (1 << 6)
1499#define MSC_STRPCL_START_READWAIT (1 << 5)
1500#define MSC_STRPCL_STOP_READWAIT (1 << 4)
1501#define MSC_STRPCL_RESET (1 << 3)
1502#define MSC_STRPCL_START_OP (1 << 2)
1503#define MSC_STRPCL_CLOCK_CONTROL_BIT 0
1504#define MSC_STRPCL_CLOCK_CONTROL_MASK (0x3 << MSC_STRPCL_CLOCK_CONTROL_BIT)
1505  #define MSC_STRPCL_CLOCK_CONTROL_STOP (0x1 << MSC_STRPCL_CLOCK_CONTROL_BIT) /* Stop MMC/SD clock */
1506  #define MSC_STRPCL_CLOCK_CONTROL_START (0x2 << MSC_STRPCL_CLOCK_CONTROL_BIT) /* Start MMC/SD clock */
1507
1508/* MSC Status Register (MSC_STAT) */
1509
1510#define MSC_STAT_IS_RESETTING (1 << 15)
1511#define MSC_STAT_SDIO_INT_ACTIVE (1 << 14)
1512#define MSC_STAT_PRG_DONE (1 << 13)
1513#define MSC_STAT_DATA_TRAN_DONE (1 << 12)
1514#define MSC_STAT_END_CMD_RES (1 << 11)
1515#define MSC_STAT_DATA_FIFO_AFULL (1 << 10)
1516#define MSC_STAT_IS_READWAIT (1 << 9)
1517#define MSC_STAT_CLK_EN (1 << 8)
1518#define MSC_STAT_DATA_FIFO_FULL (1 << 7)
1519#define MSC_STAT_DATA_FIFO_EMPTY (1 << 6)
1520#define MSC_STAT_CRC_RES_ERR (1 << 5)
1521#define MSC_STAT_CRC_READ_ERROR (1 << 4)
1522#define MSC_STAT_CRC_WRITE_ERROR_BIT 2
1523#define MSC_STAT_CRC_WRITE_ERROR_MASK (0x3 << MSC_STAT_CRC_WRITE_ERROR_BIT)
1524  #define MSC_STAT_CRC_WRITE_ERROR_NO (0 << MSC_STAT_CRC_WRITE_ERROR_BIT) /* No error on transmission of data */
1525  #define MSC_STAT_CRC_WRITE_ERROR (1 << MSC_STAT_CRC_WRITE_ERROR_BIT) /* Card observed erroneous transmission of data */
1526  #define MSC_STAT_CRC_WRITE_ERROR_NOSTS (2 << MSC_STAT_CRC_WRITE_ERROR_BIT) /* No CRC status is sent back */
1527#define MSC_STAT_TIME_OUT_RES (1 << 1)
1528#define MSC_STAT_TIME_OUT_READ (1 << 0)
1529
1530/* MSC Bus Clock Control Register (MSC_CLKRT) */
1531
1532#define MSC_CLKRT_CLK_RATE_BIT 0
1533#define MSC_CLKRT_CLK_RATE_MASK (0x7 << MSC_CLKRT_CLK_RATE_BIT)
1534  #define MSC_CLKRT_CLK_RATE_DIV_1 (0x0 << MSC_CLKRT_CLK_RATE_BIT) /* CLK_SRC */
1535  #define MSC_CLKRT_CLK_RATE_DIV_2 (0x1 << MSC_CLKRT_CLK_RATE_BIT) /* 1/2 of CLK_SRC */
1536  #define MSC_CLKRT_CLK_RATE_DIV_4 (0x2 << MSC_CLKRT_CLK_RATE_BIT) /* 1/4 of CLK_SRC */
1537  #define MSC_CLKRT_CLK_RATE_DIV_8 (0x3 << MSC_CLKRT_CLK_RATE_BIT) /* 1/8 of CLK_SRC */
1538  #define MSC_CLKRT_CLK_RATE_DIV_16 (0x4 << MSC_CLKRT_CLK_RATE_BIT) /* 1/16 of CLK_SRC */
1539  #define MSC_CLKRT_CLK_RATE_DIV_32 (0x5 << MSC_CLKRT_CLK_RATE_BIT) /* 1/32 of CLK_SRC */
1540  #define MSC_CLKRT_CLK_RATE_DIV_64 (0x6 << MSC_CLKRT_CLK_RATE_BIT) /* 1/64 of CLK_SRC */
1541  #define MSC_CLKRT_CLK_RATE_DIV_128 (0x7 << MSC_CLKRT_CLK_RATE_BIT) /* 1/128 of CLK_SRC */
1542
1543/* MSC Command Sequence Control Register (MSC_CMDAT) */
1544
1545#define MSC_CMDAT_IO_ABORT (1 << 11)
1546#define MSC_CMDAT_BUS_WIDTH_BIT 9
1547#define MSC_CMDAT_BUS_WIDTH_MASK (0x3 << MSC_CMDAT_BUS_WIDTH_BIT)
1548  #define MSC_CMDAT_BUS_WIDTH_1BIT (0x0 << MSC_CMDAT_BUS_WIDTH_BIT) /* 1-bit data bus */
1549  #define MSC_CMDAT_BUS_WIDTH_4BIT (0x2 << MSC_CMDAT_BUS_WIDTH_BIT) /* 4-bit data bus */
1550  #define CMDAT_BUS_WIDTH1 (0x0 << MSC_CMDAT_BUS_WIDTH_BIT)
1551  #define CMDAT_BUS_WIDTH4 (0x2 << MSC_CMDAT_BUS_WIDTH_BIT)
1552#define MSC_CMDAT_DMA_EN (1 << 8)
1553#define MSC_CMDAT_INIT (1 << 7)
1554#define MSC_CMDAT_BUSY (1 << 6)
1555#define MSC_CMDAT_STREAM_BLOCK (1 << 5)
1556#define MSC_CMDAT_WRITE (1 << 4)
1557#define MSC_CMDAT_READ (0 << 4)
1558#define MSC_CMDAT_DATA_EN (1 << 3)
1559#define MSC_CMDAT_RESPONSE_BIT 0
1560#define MSC_CMDAT_RESPONSE_MASK (0x7 << MSC_CMDAT_RESPONSE_BIT)
1561  #define MSC_CMDAT_RESPONSE_NONE (0x0 << MSC_CMDAT_RESPONSE_BIT) /* No response */
1562  #define MSC_CMDAT_RESPONSE_R1 (0x1 << MSC_CMDAT_RESPONSE_BIT) /* Format R1 and R1b */
1563  #define MSC_CMDAT_RESPONSE_R2 (0x2 << MSC_CMDAT_RESPONSE_BIT) /* Format R2 */
1564  #define MSC_CMDAT_RESPONSE_R3 (0x3 << MSC_CMDAT_RESPONSE_BIT) /* Format R3 */
1565  #define MSC_CMDAT_RESPONSE_R4 (0x4 << MSC_CMDAT_RESPONSE_BIT) /* Format R4 */
1566  #define MSC_CMDAT_RESPONSE_R5 (0x5 << MSC_CMDAT_RESPONSE_BIT) /* Format R5 */
1567  #define MSC_CMDAT_RESPONSE_R6 (0x6 << MSC_CMDAT_RESPONSE_BIT) /* Format R6 */
1568
1569#define CMDAT_DMA_EN (1 << 8)
1570#define CMDAT_INIT (1 << 7)
1571#define CMDAT_BUSY (1 << 6)
1572#define CMDAT_STREAM (1 << 5)
1573#define CMDAT_WRITE (1 << 4)
1574#define CMDAT_DATA_EN (1 << 3)
1575
1576/* MSC Interrupts Mask Register (MSC_IMASK) */
1577
1578#define MSC_IMASK_SDIO (1 << 7)
1579#define MSC_IMASK_TXFIFO_WR_REQ (1 << 6)
1580#define MSC_IMASK_RXFIFO_RD_REQ (1 << 5)
1581#define MSC_IMASK_END_CMD_RES (1 << 2)
1582#define MSC_IMASK_PRG_DONE (1 << 1)
1583#define MSC_IMASK_DATA_TRAN_DONE (1 << 0)
1584
1585
1586/* MSC Interrupts Status Register (MSC_IREG) */
1587
1588#define MSC_IREG_SDIO (1 << 7)
1589#define MSC_IREG_TXFIFO_WR_REQ (1 << 6)
1590#define MSC_IREG_RXFIFO_RD_REQ (1 << 5)
1591#define MSC_IREG_END_CMD_RES (1 << 2)
1592#define MSC_IREG_PRG_DONE (1 << 1)
1593#define MSC_IREG_DATA_TRAN_DONE (1 << 0)
1594
1595
1596/*************************************************************************
1597 * EMC (External Memory Controller)
1598 *************************************************************************/
1599#define EMC_BCR (EMC_BASE + 0x0) /* BCR */
1600
1601#define EMC_SMCR0 (EMC_BASE + 0x10) /* Static Memory Control Register 0 */
1602#define EMC_SMCR1 (EMC_BASE + 0x14) /* Static Memory Control Register 1 */
1603#define EMC_SMCR2 (EMC_BASE + 0x18) /* Static Memory Control Register 2 */
1604#define EMC_SMCR3 (EMC_BASE + 0x1c) /* Static Memory Control Register 3 */
1605#define EMC_SMCR4 (EMC_BASE + 0x20) /* Static Memory Control Register 4 */
1606#define EMC_SACR0 (EMC_BASE + 0x30) /* Static Memory Bank 0 Addr Config Reg */
1607#define EMC_SACR1 (EMC_BASE + 0x34) /* Static Memory Bank 1 Addr Config Reg */
1608#define EMC_SACR2 (EMC_BASE + 0x38) /* Static Memory Bank 2 Addr Config Reg */
1609#define EMC_SACR3 (EMC_BASE + 0x3c) /* Static Memory Bank 3 Addr Config Reg */
1610#define EMC_SACR4 (EMC_BASE + 0x40) /* Static Memory Bank 4 Addr Config Reg */
1611
1612#define EMC_NFCSR (EMC_BASE + 0x050) /* NAND Flash Control/Status Register */
1613#define EMC_NFECR (EMC_BASE + 0x100) /* NAND Flash ECC Control Register */
1614#define EMC_NFECC (EMC_BASE + 0x104) /* NAND Flash ECC Data Register */
1615#define EMC_NFPAR0 (EMC_BASE + 0x108) /* NAND Flash RS Parity 0 Register */
1616#define EMC_NFPAR1 (EMC_BASE + 0x10c) /* NAND Flash RS Parity 1 Register */
1617#define EMC_NFPAR2 (EMC_BASE + 0x110) /* NAND Flash RS Parity 2 Register */
1618#define EMC_NFINTS (EMC_BASE + 0x114) /* NAND Flash Interrupt Status Register */
1619#define EMC_NFINTE (EMC_BASE + 0x118) /* NAND Flash Interrupt Enable Register */
1620#define EMC_NFERR0 (EMC_BASE + 0x11c) /* NAND Flash RS Error Report 0 Register */
1621#define EMC_NFERR1 (EMC_BASE + 0x120) /* NAND Flash RS Error Report 1 Register */
1622#define EMC_NFERR2 (EMC_BASE + 0x124) /* NAND Flash RS Error Report 2 Register */
1623#define EMC_NFERR3 (EMC_BASE + 0x128) /* NAND Flash RS Error Report 3 Register */
1624
1625#define EMC_DMCR (EMC_BASE + 0x80) /* DRAM Control Register */
1626#define EMC_RTCSR (EMC_BASE + 0x84) /* Refresh Time Control/Status Register */
1627#define EMC_RTCNT (EMC_BASE + 0x88) /* Refresh Timer Counter */
1628#define EMC_RTCOR (EMC_BASE + 0x8c) /* Refresh Time Constant Register */
1629#define EMC_DMAR0 (EMC_BASE + 0x90) /* SDRAM Bank 0 Addr Config Register */
1630#define EMC_SDMR0 (EMC_BASE + 0xa000) /* Mode Register of SDRAM bank 0 */
1631
1632#define REG_EMC_BCR REG32(EMC_BCR)
1633
1634#define REG_EMC_SMCR0 REG32(EMC_SMCR0)
1635#define REG_EMC_SMCR1 REG32(EMC_SMCR1)
1636#define REG_EMC_SMCR2 REG32(EMC_SMCR2)
1637#define REG_EMC_SMCR3 REG32(EMC_SMCR3)
1638#define REG_EMC_SMCR4 REG32(EMC_SMCR4)
1639#define REG_EMC_SACR0 REG32(EMC_SACR0)
1640#define REG_EMC_SACR1 REG32(EMC_SACR1)
1641#define REG_EMC_SACR2 REG32(EMC_SACR2)
1642#define REG_EMC_SACR3 REG32(EMC_SACR3)
1643#define REG_EMC_SACR4 REG32(EMC_SACR4)
1644
1645#define REG_EMC_NFCSR REG32(EMC_NFCSR)
1646#define REG_EMC_NFECR REG32(EMC_NFECR)
1647#define REG_EMC_NFECC REG32(EMC_NFECC)
1648#define REG_EMC_NFPAR0 REG32(EMC_NFPAR0)
1649#define REG_EMC_NFPAR1 REG32(EMC_NFPAR1)
1650#define REG_EMC_NFPAR2 REG32(EMC_NFPAR2)
1651#define REG_EMC_NFINTS REG32(EMC_NFINTS)
1652#define REG_EMC_NFINTE REG32(EMC_NFINTE)
1653#define REG_EMC_NFERR0 REG32(EMC_NFERR0)
1654#define REG_EMC_NFERR1 REG32(EMC_NFERR1)
1655#define REG_EMC_NFERR2 REG32(EMC_NFERR2)
1656#define REG_EMC_NFERR3 REG32(EMC_NFERR3)
1657
1658#define REG_EMC_DMCR REG32(EMC_DMCR)
1659#define REG_EMC_RTCSR REG16(EMC_RTCSR)
1660#define REG_EMC_RTCNT REG16(EMC_RTCNT)
1661#define REG_EMC_RTCOR REG16(EMC_RTCOR)
1662#define REG_EMC_DMAR0 REG32(EMC_DMAR0)
1663
1664/* Static Memory Control Register */
1665#define EMC_SMCR_STRV_BIT 24
1666#define EMC_SMCR_STRV_MASK (0x0f << EMC_SMCR_STRV_BIT)
1667#define EMC_SMCR_TAW_BIT 20
1668#define EMC_SMCR_TAW_MASK (0x0f << EMC_SMCR_TAW_BIT)
1669#define EMC_SMCR_TBP_BIT 16
1670#define EMC_SMCR_TBP_MASK (0x0f << EMC_SMCR_TBP_BIT)
1671#define EMC_SMCR_TAH_BIT 12
1672#define EMC_SMCR_TAH_MASK (0x07 << EMC_SMCR_TAH_BIT)
1673#define EMC_SMCR_TAS_BIT 8
1674#define EMC_SMCR_TAS_MASK (0x07 << EMC_SMCR_TAS_BIT)
1675#define EMC_SMCR_BW_BIT 6
1676#define EMC_SMCR_BW_MASK (0x03 << EMC_SMCR_BW_BIT)
1677  #define EMC_SMCR_BW_8BIT (0 << EMC_SMCR_BW_BIT)
1678  #define EMC_SMCR_BW_16BIT (1 << EMC_SMCR_BW_BIT)
1679  #define EMC_SMCR_BW_32BIT (2 << EMC_SMCR_BW_BIT)
1680#define EMC_SMCR_BCM (1 << 3)
1681#define EMC_SMCR_BL_BIT 1
1682#define EMC_SMCR_BL_MASK (0x03 << EMC_SMCR_BL_BIT)
1683  #define EMC_SMCR_BL_4 (0 << EMC_SMCR_BL_BIT)
1684  #define EMC_SMCR_BL_8 (1 << EMC_SMCR_BL_BIT)
1685  #define EMC_SMCR_BL_16 (2 << EMC_SMCR_BL_BIT)
1686  #define EMC_SMCR_BL_32 (3 << EMC_SMCR_BL_BIT)
1687#define EMC_SMCR_SMT (1 << 0)
1688
1689/* Static Memory Bank Addr Config Reg */
1690#define EMC_SACR_BASE_BIT 8
1691#define EMC_SACR_BASE_MASK (0xff << EMC_SACR_BASE_BIT)
1692#define EMC_SACR_MASK_BIT 0
1693#define EMC_SACR_MASK_MASK (0xff << EMC_SACR_MASK_BIT)
1694
1695/* NAND Flash Control/Status Register */
1696#define EMC_NFCSR_NFCE4 (1 << 7) /* NAND Flash Enable */
1697#define EMC_NFCSR_NFE4 (1 << 6) /* NAND Flash FCE# Assertion Enable */
1698#define EMC_NFCSR_NFCE3 (1 << 5)
1699#define EMC_NFCSR_NFE3 (1 << 4)
1700#define EMC_NFCSR_NFCE2 (1 << 3)
1701#define EMC_NFCSR_NFE2 (1 << 2)
1702#define EMC_NFCSR_NFCE1 (1 << 1)
1703#define EMC_NFCSR_NFE1 (1 << 0)
1704
1705/* NAND Flash ECC Control Register */
1706#define EMC_NFECR_PRDY (1 << 4) /* Parity Ready */
1707#define EMC_NFECR_RS_DECODING (0 << 3) /* RS is in decoding phase */
1708#define EMC_NFECR_RS_ENCODING (1 << 3) /* RS is in encoding phase */
1709#define EMC_NFECR_HAMMING (0 << 2) /* Select HAMMING Correction Algorithm */
1710#define EMC_NFECR_RS (1 << 2) /* Select RS Correction Algorithm */
1711#define EMC_NFECR_ERST (1 << 1) /* ECC Reset */
1712#define EMC_NFECR_ECCE (1 << 0) /* ECC Enable */
1713
1714/* NAND Flash ECC Data Register */
1715#define EMC_NFECC_ECC2_BIT 16
1716#define EMC_NFECC_ECC2_MASK (0xff << EMC_NFECC_ECC2_BIT)
1717#define EMC_NFECC_ECC1_BIT 8
1718#define EMC_NFECC_ECC1_MASK (0xff << EMC_NFECC_ECC1_BIT)
1719#define EMC_NFECC_ECC0_BIT 0
1720#define EMC_NFECC_ECC0_MASK (0xff << EMC_NFECC_ECC0_BIT)
1721
1722/* NAND Flash Interrupt Status Register */
1723#define EMC_NFINTS_ERRCNT_BIT 29 /* Error Count */
1724#define EMC_NFINTS_ERRCNT_MASK (0x7 << EMC_NFINTS_ERRCNT_BIT)
1725#define EMC_NFINTS_PADF (1 << 4) /* Padding Finished */
1726#define EMC_NFINTS_DECF (1 << 3) /* Decoding Finished */
1727#define EMC_NFINTS_ENCF (1 << 2) /* Encoding Finished */
1728#define EMC_NFINTS_UNCOR (1 << 1) /* Uncorrectable Error Occurred */
1729#define EMC_NFINTS_ERR (1 << 0) /* Error Occurred */
1730
1731/* NAND Flash Interrupt Enable Register */
1732#define EMC_NFINTE_PADFE (1 << 4) /* Padding Finished Interrupt Enable */
1733#define EMC_NFINTE_DECFE (1 << 3) /* Decoding Finished Interrupt Enable */
1734#define EMC_NFINTE_ENCFE (1 << 2) /* Encoding Finished Interrupt Enable */
1735#define EMC_NFINTE_UNCORE (1 << 1) /* Uncorrectable Error Occurred Intr Enable */
1736#define EMC_NFINTE_ERRE (1 << 0) /* Error Occurred Interrupt */
1737
1738/* NAND Flash RS Error Report Register */
1739#define EMC_NFERR_INDEX_BIT 16 /* Error Symbol Index */
1740#define EMC_NFERR_INDEX_MASK (0x1ff << EMC_NFERR_INDEX_BIT)
1741#define EMC_NFERR_MASK_BIT 0 /* Error Symbol Value */
1742#define EMC_NFERR_MASK_MASK (0x1ff << EMC_NFERR_MASK_BIT)
1743
1744
1745/* DRAM Control Register */
1746#define EMC_DMCR_BW_BIT 31
1747#define EMC_DMCR_BW (1 << EMC_DMCR_BW_BIT)
1748#define EMC_DMCR_CA_BIT 26
1749#define EMC_DMCR_CA_MASK (0x07 << EMC_DMCR_CA_BIT)
1750  #define EMC_DMCR_CA_8 (0 << EMC_DMCR_CA_BIT)
1751  #define EMC_DMCR_CA_9 (1 << EMC_DMCR_CA_BIT)
1752  #define EMC_DMCR_CA_10 (2 << EMC_DMCR_CA_BIT)
1753  #define EMC_DMCR_CA_11 (3 << EMC_DMCR_CA_BIT)
1754  #define EMC_DMCR_CA_12 (4 << EMC_DMCR_CA_BIT)
1755#define EMC_DMCR_RMODE (1 << 25)
1756#define EMC_DMCR_RFSH (1 << 24)
1757#define EMC_DMCR_MRSET (1 << 23)
1758#define EMC_DMCR_RA_BIT 20
1759#define EMC_DMCR_RA_MASK (0x03 << EMC_DMCR_RA_BIT)
1760  #define EMC_DMCR_RA_11 (0 << EMC_DMCR_RA_BIT)
1761  #define EMC_DMCR_RA_12 (1 << EMC_DMCR_RA_BIT)
1762  #define EMC_DMCR_RA_13 (2 << EMC_DMCR_RA_BIT)
1763#define EMC_DMCR_BA_BIT 19
1764#define EMC_DMCR_BA (1 << EMC_DMCR_BA_BIT)
1765#define EMC_DMCR_PDM (1 << 18)
1766#define EMC_DMCR_EPIN (1 << 17)
1767#define EMC_DMCR_TRAS_BIT 13
1768#define EMC_DMCR_TRAS_MASK (0x07 << EMC_DMCR_TRAS_BIT)
1769#define EMC_DMCR_RCD_BIT 11
1770#define EMC_DMCR_RCD_MASK (0x03 << EMC_DMCR_RCD_BIT)
1771#define EMC_DMCR_TPC_BIT 8
1772#define EMC_DMCR_TPC_MASK (0x07 << EMC_DMCR_TPC_BIT)
1773#define EMC_DMCR_TRWL_BIT 5
1774#define EMC_DMCR_TRWL_MASK (0x03 << EMC_DMCR_TRWL_BIT)
1775#define EMC_DMCR_TRC_BIT 2
1776#define EMC_DMCR_TRC_MASK (0x07 << EMC_DMCR_TRC_BIT)
1777#define EMC_DMCR_TCL_BIT 0
1778#define EMC_DMCR_TCL_MASK (0x03 << EMC_DMCR_TCL_BIT)
1779
1780/* Refresh Time Control/Status Register */
1781#define EMC_RTCSR_CMF (1 << 7)
1782#define EMC_RTCSR_CKS_BIT 0
1783#define EMC_RTCSR_CKS_MASK (0x07 << EMC_RTCSR_CKS_BIT)
1784  #define EMC_RTCSR_CKS_DISABLE (0 << EMC_RTCSR_CKS_BIT)
1785  #define EMC_RTCSR_CKS_4 (1 << EMC_RTCSR_CKS_BIT)
1786  #define EMC_RTCSR_CKS_16 (2 << EMC_RTCSR_CKS_BIT)
1787  #define EMC_RTCSR_CKS_64 (3 << EMC_RTCSR_CKS_BIT)
1788  #define EMC_RTCSR_CKS_256 (4 << EMC_RTCSR_CKS_BIT)
1789  #define EMC_RTCSR_CKS_1024 (5 << EMC_RTCSR_CKS_BIT)
1790  #define EMC_RTCSR_CKS_2048 (6 << EMC_RTCSR_CKS_BIT)
1791  #define EMC_RTCSR_CKS_4096 (7 << EMC_RTCSR_CKS_BIT)
1792
1793/* SDRAM Bank Address Configuration Register */
1794#define EMC_DMAR_BASE_BIT 8
1795#define EMC_DMAR_BASE_MASK (0xff << EMC_DMAR_BASE_BIT)
1796#define EMC_DMAR_MASK_BIT 0
1797#define EMC_DMAR_MASK_MASK (0xff << EMC_DMAR_MASK_BIT)
1798
1799/* Mode Register of SDRAM bank 0 */
1800#define EMC_SDMR_BM (1 << 9) /* Write Burst Mode */
1801#define EMC_SDMR_OM_BIT 7 /* Operating Mode */
1802#define EMC_SDMR_OM_MASK (3 << EMC_SDMR_OM_BIT)
1803  #define EMC_SDMR_OM_NORMAL (0 << EMC_SDMR_OM_BIT)
1804#define EMC_SDMR_CAS_BIT 4 /* CAS Latency */
1805#define EMC_SDMR_CAS_MASK (7 << EMC_SDMR_CAS_BIT)
1806  #define EMC_SDMR_CAS_1 (1 << EMC_SDMR_CAS_BIT)
1807  #define EMC_SDMR_CAS_2 (2 << EMC_SDMR_CAS_BIT)
1808  #define EMC_SDMR_CAS_3 (3 << EMC_SDMR_CAS_BIT)
1809#define EMC_SDMR_BT_BIT 3 /* Burst Type */
1810#define EMC_SDMR_BT_MASK (1 << EMC_SDMR_BT_BIT)
1811  #define EMC_SDMR_BT_SEQ (0 << EMC_SDMR_BT_BIT) /* Sequential */
1812  #define EMC_SDMR_BT_INT (1 << EMC_SDMR_BT_BIT) /* Interleave */
1813#define EMC_SDMR_BL_BIT 0 /* Burst Length */
1814#define EMC_SDMR_BL_MASK (7 << EMC_SDMR_BL_BIT)
1815  #define EMC_SDMR_BL_1 (0 << EMC_SDMR_BL_BIT)
1816  #define EMC_SDMR_BL_2 (1 << EMC_SDMR_BL_BIT)
1817  #define EMC_SDMR_BL_4 (2 << EMC_SDMR_BL_BIT)
1818  #define EMC_SDMR_BL_8 (3 << EMC_SDMR_BL_BIT)
1819
1820#define EMC_SDMR_CAS2_16BIT \
1821  (EMC_SDMR_CAS_2 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_2)
1822#define EMC_SDMR_CAS2_32BIT \
1823  (EMC_SDMR_CAS_2 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_4)
1824#define EMC_SDMR_CAS3_16BIT \
1825  (EMC_SDMR_CAS_3 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_2)
1826#define EMC_SDMR_CAS3_32BIT \
1827  (EMC_SDMR_CAS_3 | EMC_SDMR_BT_SEQ | EMC_SDMR_BL_4)
1828
1829
1830/*************************************************************************
1831 * CIM
1832 *************************************************************************/
1833#define CIM_CFG (CIM_BASE + 0x0000)
1834#define CIM_CTRL (CIM_BASE + 0x0004)
1835#define CIM_STATE (CIM_BASE + 0x0008)
1836#define CIM_IID (CIM_BASE + 0x000C)
1837#define CIM_RXFIFO (CIM_BASE + 0x0010)
1838#define CIM_DA (CIM_BASE + 0x0020)
1839#define CIM_FA (CIM_BASE + 0x0024)
1840#define CIM_FID (CIM_BASE + 0x0028)
1841#define CIM_CMD (CIM_BASE + 0x002C)
1842
1843#define REG_CIM_CFG REG32(CIM_CFG)
1844#define REG_CIM_CTRL REG32(CIM_CTRL)
1845#define REG_CIM_STATE REG32(CIM_STATE)
1846#define REG_CIM_IID REG32(CIM_IID)
1847#define REG_CIM_RXFIFO REG32(CIM_RXFIFO)
1848#define REG_CIM_DA REG32(CIM_DA)
1849#define REG_CIM_FA REG32(CIM_FA)
1850#define REG_CIM_FID REG32(CIM_FID)
1851#define REG_CIM_CMD REG32(CIM_CMD)
1852
1853/* CIM Configuration Register (CIM_CFG) */
1854
1855#define CIM_CFG_INV_DAT (1 << 15)
1856#define CIM_CFG_VSP (1 << 14)
1857#define CIM_CFG_HSP (1 << 13)
1858#define CIM_CFG_PCP (1 << 12)
1859#define CIM_CFG_DUMMY_ZERO (1 << 9)
1860#define CIM_CFG_EXT_VSYNC (1 << 8)
1861#define CIM_CFG_PACK_BIT 4
1862#define CIM_CFG_PACK_MASK (0x7 << CIM_CFG_PACK_BIT)
1863  #define CIM_CFG_PACK_0 (0 << CIM_CFG_PACK_BIT)
1864  #define CIM_CFG_PACK_1 (1 << CIM_CFG_PACK_BIT)
1865  #define CIM_CFG_PACK_2 (2 << CIM_CFG_PACK_BIT)
1866  #define CIM_CFG_PACK_3 (3 << CIM_CFG_PACK_BIT)
1867  #define CIM_CFG_PACK_4 (4 << CIM_CFG_PACK_BIT)
1868  #define CIM_CFG_PACK_5 (5 << CIM_CFG_PACK_BIT)
1869  #define CIM_CFG_PACK_6 (6 << CIM_CFG_PACK_BIT)
1870  #define CIM_CFG_PACK_7 (7 << CIM_CFG_PACK_BIT)
1871#define CIM_CFG_DSM_BIT 0
1872#define CIM_CFG_DSM_MASK (0x3 << CIM_CFG_DSM_BIT)
1873  #define CIM_CFG_DSM_CPM (0 << CIM_CFG_DSM_BIT) /* CCIR656 Progressive Mode */
1874  #define CIM_CFG_DSM_CIM (1 << CIM_CFG_DSM_BIT) /* CCIR656 Interlace Mode */
1875  #define CIM_CFG_DSM_GCM (2 << CIM_CFG_DSM_BIT) /* Gated Clock Mode */
1876  #define CIM_CFG_DSM_NGCM (3 << CIM_CFG_DSM_BIT) /* Non-Gated Clock Mode */
1877
1878/* CIM Control Register (CIM_CTRL) */
1879
1880#define CIM_CTRL_MCLKDIV_BIT 24
1881#define CIM_CTRL_MCLKDIV_MASK (0xff << CIM_CTRL_MCLKDIV_BIT)
1882#define CIM_CTRL_FRC_BIT 16
1883#define CIM_CTRL_FRC_MASK (0xf << CIM_CTRL_FRC_BIT)
1884  #define CIM_CTRL_FRC_1 (0x0 << CIM_CTRL_FRC_BIT) /* Sample every frame */
1885  #define CIM_CTRL_FRC_2 (0x1 << CIM_CTRL_FRC_BIT) /* Sample 1/2 frame */
1886  #define CIM_CTRL_FRC_3 (0x2 << CIM_CTRL_FRC_BIT) /* Sample 1/3 frame */
1887  #define CIM_CTRL_FRC_4 (0x3 << CIM_CTRL_FRC_BIT) /* Sample 1/4 frame */
1888  #define CIM_CTRL_FRC_5 (0x4 << CIM_CTRL_FRC_BIT) /* Sample 1/5 frame */
1889  #define CIM_CTRL_FRC_6 (0x5 << CIM_CTRL_FRC_BIT) /* Sample 1/6 frame */
1890  #define CIM_CTRL_FRC_7 (0x6 << CIM_CTRL_FRC_BIT) /* Sample 1/7 frame */
1891  #define CIM_CTRL_FRC_8 (0x7 << CIM_CTRL_FRC_BIT) /* Sample 1/8 frame */
1892  #define CIM_CTRL_FRC_9 (0x8 << CIM_CTRL_FRC_BIT) /* Sample 1/9 frame */
1893  #define CIM_CTRL_FRC_10 (0x9 << CIM_CTRL_FRC_BIT) /* Sample 1/10 frame */
1894  #define CIM_CTRL_FRC_11 (0xA << CIM_CTRL_FRC_BIT) /* Sample 1/11 frame */
1895  #define CIM_CTRL_FRC_12 (0xB << CIM_CTRL_FRC_BIT) /* Sample 1/12 frame */
1896  #define CIM_CTRL_FRC_13 (0xC << CIM_CTRL_FRC_BIT) /* Sample 1/13 frame */
1897  #define CIM_CTRL_FRC_14 (0xD << CIM_CTRL_FRC_BIT) /* Sample 1/14 frame */
1898  #define CIM_CTRL_FRC_15 (0xE << CIM_CTRL_FRC_BIT) /* Sample 1/15 frame */
1899  #define CIM_CTRL_FRC_16 (0xF << CIM_CTRL_FRC_BIT) /* Sample 1/16 frame */
1900#define CIM_CTRL_VDDM (1 << 13)
1901#define CIM_CTRL_DMA_SOFM (1 << 12)
1902#define CIM_CTRL_DMA_EOFM (1 << 11)
1903#define CIM_CTRL_DMA_STOPM (1 << 10)
1904#define CIM_CTRL_RXF_TRIGM (1 << 9)
1905#define CIM_CTRL_RXF_OFM (1 << 8)
1906#define CIM_CTRL_RXF_TRIG_BIT 4
1907#define CIM_CTRL_RXF_TRIG_MASK (0x7 << CIM_CTRL_RXF_TRIG_BIT)
1908  #define CIM_CTRL_RXF_TRIG_4 (0 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 4 */
1909  #define CIM_CTRL_RXF_TRIG_8 (1 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 8 */
1910  #define CIM_CTRL_RXF_TRIG_12 (2 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 12 */
1911  #define CIM_CTRL_RXF_TRIG_16 (3 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 16 */
1912  #define CIM_CTRL_RXF_TRIG_20 (4 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 20 */
1913  #define CIM_CTRL_RXF_TRIG_24 (5 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 24 */
1914  #define CIM_CTRL_RXF_TRIG_28 (6 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 28 */
1915  #define CIM_CTRL_RXF_TRIG_32 (7 << CIM_CTRL_RXF_TRIG_BIT) /* RXFIFO Trigger Value is 32 */
1916#define CIM_CTRL_DMA_EN (1 << 2)
1917#define CIM_CTRL_RXF_RST (1 << 1)
1918#define CIM_CTRL_ENA (1 << 0)
1919
1920/* CIM State Register (CIM_STATE) */
1921
1922#define CIM_STATE_DMA_SOF (1 << 6)
1923#define CIM_STATE_DMA_EOF (1 << 5)
1924#define CIM_STATE_DMA_STOP (1 << 4)
1925#define CIM_STATE_RXF_OF (1 << 3)
1926#define CIM_STATE_RXF_TRIG (1 << 2)
1927#define CIM_STATE_RXF_EMPTY (1 << 1)
1928#define CIM_STATE_VDD (1 << 0)
1929
1930/* CIM DMA Command Register (CIM_CMD) */
1931
1932#define CIM_CMD_SOFINT (1 << 31)
1933#define CIM_CMD_EOFINT (1 << 30)
1934#define CIM_CMD_STOP (1 << 28)
1935#define CIM_CMD_LEN_BIT 0
1936#define CIM_CMD_LEN_MASK (0xffffff << CIM_CMD_LEN_BIT)
1937
1938
1939/*************************************************************************
1940 * SADC (Smart A/D Controller)
1941 *************************************************************************/
1942
1943#define SADC_ENA (SADC_BASE + 0x00) /* ADC Enable Register */
1944#define SADC_CFG (SADC_BASE + 0x04) /* ADC Configure Register */
1945#define SADC_CTRL (SADC_BASE + 0x08) /* ADC Control Register */
1946#define SADC_STATE (SADC_BASE + 0x0C) /* ADC Status Register*/
1947#define SADC_SAMETIME (SADC_BASE + 0x10) /* ADC Same Point Time Register */
1948#define SADC_WAITTIME (SADC_BASE + 0x14) /* ADC Wait Time Register */
1949#define SADC_TSDAT (SADC_BASE + 0x18) /* ADC Touch Screen Data Register */
1950#define SADC_BATDAT (SADC_BASE + 0x1C) /* ADC PBAT Data Register */
1951#define SADC_SADDAT (SADC_BASE + 0x20) /* ADC SADCIN Data Register */
1952
1953#define REG_SADC_ENA REG8(SADC_ENA)
1954#define REG_SADC_CFG REG32(SADC_CFG)
1955#define REG_SADC_CTRL REG8(SADC_CTRL)
1956#define REG_SADC_STATE REG8(SADC_STATE)
1957#define REG_SADC_SAMETIME REG16(SADC_SAMETIME)
1958#define REG_SADC_WAITTIME REG16(SADC_WAITTIME)
1959#define REG_SADC_TSDAT REG32(SADC_TSDAT)
1960#define REG_SADC_BATDAT REG16(SADC_BATDAT)
1961#define REG_SADC_SADDAT REG16(SADC_SADDAT)
1962
1963/* ADC Enable Register */
1964#define SADC_ENA_ADEN (1 << 7) /* Touch Screen Enable */
1965#define SADC_ENA_TSEN (1 << 2) /* Touch Screen Enable */
1966#define SADC_ENA_PBATEN (1 << 1) /* PBAT Enable */
1967#define SADC_ENA_SADCINEN (1 << 0) /* SADCIN Enable */
1968
1969/* ADC Configure Register */
1970#define SADC_CFG_CLKOUT_NUM_BIT 16
1971#define SADC_CFG_CLKOUT_NUM_MASK (0x7 << SADC_CFG_CLKOUT_NUM_BIT)
1972#define SADC_CFG_TS_DMA (1 << 15) /* Touch Screen DMA Enable */
1973#define SADC_CFG_XYZ_BIT 13 /* XYZ selection */
1974#define SADC_CFG_XYZ_MASK (0x3 << SADC_CFG_XYZ_BIT)
1975  #define SADC_CFG_XY (0 << SADC_CFG_XYZ_BIT)
1976  #define SADC_CFG_XYZ (1 << SADC_CFG_XYZ_BIT)
1977  #define SADC_CFG_XYZ1Z2 (2 << SADC_CFG_XYZ_BIT)
1978#define SADC_CFG_SNUM_BIT 10 /* Sample Number */
1979#define SADC_CFG_SNUM_MASK (0x7 << SADC_CFG_SNUM_BIT)
1980  #define SADC_CFG_SNUM_1 (0x0 << SADC_CFG_SNUM_BIT)
1981  #define SADC_CFG_SNUM_2 (0x1 << SADC_CFG_SNUM_BIT)
1982  #define SADC_CFG_SNUM_3 (0x2 << SADC_CFG_SNUM_BIT)
1983  #define SADC_CFG_SNUM_4 (0x3 << SADC_CFG_SNUM_BIT)
1984  #define SADC_CFG_SNUM_5 (0x4 << SADC_CFG_SNUM_BIT)
1985  #define SADC_CFG_SNUM_6 (0x5 << SADC_CFG_SNUM_BIT)
1986  #define SADC_CFG_SNUM_8 (0x6 << SADC_CFG_SNUM_BIT)
1987  #define SADC_CFG_SNUM_9 (0x7 << SADC_CFG_SNUM_BIT)
1988#define SADC_CFG_CLKDIV_BIT 5 /* AD Converter frequency clock divider */
1989#define SADC_CFG_CLKDIV_MASK (0x1f << SADC_CFG_CLKDIV_BIT)
1990#define SADC_CFG_PBAT_HIGH (0 << 4) /* PBAT >= 2.5V */
1991#define SADC_CFG_PBAT_LOW (1 << 4) /* PBAT < 2.5V */
1992#define SADC_CFG_CMD_BIT 0 /* ADC Command */
1993#define SADC_CFG_CMD_MASK (0xf << SADC_CFG_CMD_BIT)
1994  #define SADC_CFG_CMD_X_SE (0x0 << SADC_CFG_CMD_BIT) /* X Single-End */
1995  #define SADC_CFG_CMD_Y_SE (0x1 << SADC_CFG_CMD_BIT) /* Y Single-End */
1996  #define SADC_CFG_CMD_X_DIFF (0x2 << SADC_CFG_CMD_BIT) /* X Differential */
1997  #define SADC_CFG_CMD_Y_DIFF (0x3 << SADC_CFG_CMD_BIT) /* Y Differential */
1998  #define SADC_CFG_CMD_Z1_DIFF (0x4 << SADC_CFG_CMD_BIT) /* Z1 Differential */
1999  #define SADC_CFG_CMD_Z2_DIFF (0x5 << SADC_CFG_CMD_BIT) /* Z2 Differential */
2000  #define SADC_CFG_CMD_Z3_DIFF (0x6 << SADC_CFG_CMD_BIT) /* Z3 Differential */
2001  #define SADC_CFG_CMD_Z4_DIFF (0x7 << SADC_CFG_CMD_BIT) /* Z4 Differential */
2002  #define SADC_CFG_CMD_TP_SE (0x8 << SADC_CFG_CMD_BIT) /* Touch Pressure */
2003  #define SADC_CFG_CMD_PBATH_SE (0x9 << SADC_CFG_CMD_BIT) /* PBAT >= 2.5V */
2004  #define SADC_CFG_CMD_PBATL_SE (0xa << SADC_CFG_CMD_BIT) /* PBAT < 2.5V */
2005  #define SADC_CFG_CMD_SADCIN_SE (0xb << SADC_CFG_CMD_BIT) /* Measure SADCIN */
2006  #define SADC_CFG_CMD_INT_PEN (0xc << SADC_CFG_CMD_BIT) /* INT_PEN Enable */
2007
2008/* ADC Control Register */
2009#define SADC_CTRL_PENDM (1 << 4) /* Pen Down Interrupt Mask */
2010#define SADC_CTRL_PENUM (1 << 3) /* Pen Up Interrupt Mask */
2011#define SADC_CTRL_TSRDYM (1 << 2) /* Touch Screen Data Ready Interrupt Mask */
2012#define SADC_CTRL_PBATRDYM (1 << 1) /* PBAT Data Ready Interrupt Mask */
2013#define SADC_CTRL_SRDYM (1 << 0) /* SADCIN Data Ready Interrupt Mask */
2014
2015/* ADC Status Register */
2016#define SADC_STATE_TSBUSY (1 << 7) /* TS A/D is working */
2017#define SADC_STATE_PBATBUSY (1 << 6) /* PBAT A/D is working */
2018#define SADC_STATE_SBUSY (1 << 5) /* SADCIN A/D is working */
2019#define SADC_STATE_PEND (1 << 4) /* Pen Down Interrupt Flag */
2020#define SADC_STATE_PENU (1 << 3) /* Pen Up Interrupt Flag */
2021#define SADC_STATE_TSRDY (1 << 2) /* Touch Screen Data Ready Interrupt Flag */
2022#define SADC_STATE_PBATRDY (1 << 1) /* PBAT Data Ready Interrupt Flag */
2023#define SADC_STATE_SRDY (1 << 0) /* SADCIN Data Ready Interrupt Flag */
2024
2025/* ADC Touch Screen Data Register */
2026#define SADC_TSDAT_DATA0_BIT 0
2027#define SADC_TSDAT_DATA0_MASK (0xfff << SADC_TSDAT_DATA0_BIT)
2028#define SADC_TSDAT_TYPE0 (1 << 15)
2029#define SADC_TSDAT_DATA1_BIT 16
2030#define SADC_TSDAT_DATA1_MASK (0xfff << SADC_TSDAT_DATA1_BIT)
2031#define SADC_TSDAT_TYPE1 (1 << 31)
2032
2033
2034/*************************************************************************
2035 * SLCD (Smart LCD Controller)
2036 *************************************************************************/
2037
2038#define SLCD_CFG (SLCD_BASE + 0xA0) /* SLCD Configure Register */
2039#define SLCD_CTRL (SLCD_BASE + 0xA4) /* SLCD Control Register */
2040#define SLCD_STATE (SLCD_BASE + 0xA8) /* SLCD Status Register */
2041#define SLCD_DATA (SLCD_BASE + 0xAC) /* SLCD Data Register */
2042#define SLCD_FIFO (SLCD_BASE + 0xB0) /* SLCD FIFO Register */
2043
2044#define REG_SLCD_CFG REG32(SLCD_CFG)
2045#define REG_SLCD_CTRL REG8(SLCD_CTRL)
2046#define REG_SLCD_STATE REG8(SLCD_STATE)
2047#define REG_SLCD_DATA REG32(SLCD_DATA)
2048#define REG_SLCD_FIFO REG32(SLCD_FIFO)
2049
2050/* SLCD Configure Register */
2051#define SLCD_CFG_BURST_BIT 14
2052#define SLCD_CFG_BURST_MASK (0x3 << SLCD_CFG_BURST_BIT)
2053  #define SLCD_CFG_BURST_4_WORD (0 << SLCD_CFG_BURST_BIT)
2054  #define SLCD_CFG_BURST_8_WORD (1 << SLCD_CFG_BURST_BIT)
2055#define SLCD_CFG_DWIDTH_BIT 10
2056#define SLCD_CFG_DWIDTH_MASK (0x7 << SLCD_CFG_DWIDTH_BIT)
2057  #define SLCD_CFG_DWIDTH_18 (0 << SLCD_CFG_DWIDTH_BIT)
2058  #define SLCD_CFG_DWIDTH_16 (1 << SLCD_CFG_DWIDTH_BIT)
2059  #define SLCD_CFG_DWIDTH_8_x3 (2 << SLCD_CFG_DWIDTH_BIT)
2060  #define SLCD_CFG_DWIDTH_8_x2 (3 << SLCD_CFG_DWIDTH_BIT)
2061  #define SLCD_CFG_DWIDTH_9_x2 (4 << SLCD_CFG_DWIDTH_BIT)
2062#define SLCD_CFG_CWIDTH_16BIT (0 << 8)
2063#define SLCD_CFG_CWIDTH_8BIT (1 << 8)
2064#define SLCD_CFG_CS_ACTIVE_LOW (0 << 4)
2065#define SLCD_CFG_CS_ACTIVE_HIGH (1 << 4)
2066#define SLCD_CFG_RS_CMD_LOW (0 << 3)
2067#define SLCD_CFG_RS_CMD_HIGH (1 << 3)
2068#define SLCD_CFG_CLK_ACTIVE_FALLING (0 << 1)
2069#define SLCD_CFG_CLK_ACTIVE_RISING (1 << 1)
2070#define SLCD_CFG_TYPE_PARALLEL (0 << 0)
2071#define SLCD_CFG_TYPE_SERIAL (1 << 0)
2072
2073/* SLCD Control Register */
2074#define SLCD_CTRL_DMA_EN (1 << 0)
2075
2076/* SLCD Status Register */
2077#define SLCD_STATE_BUSY (1 << 0)
2078
2079/* SLCD Data Register */
2080#define SLCD_DATA_RS_DATA (0 << 31)
2081#define SLCD_DATA_RS_COMMAND (1 << 31)
2082
2083/* SLCD FIFO Register */
2084#define SLCD_FIFO_RS_DATA (0 << 31)
2085#define SLCD_FIFO_RS_COMMAND (1 << 31)
2086
2087
2088/*************************************************************************
2089 * LCD (LCD Controller)
2090 *************************************************************************/
2091#define LCD_CFG (LCD_BASE + 0x00) /* LCD Configure Register */
2092#define LCD_VSYNC (LCD_BASE + 0x04) /* Vertical Synchronize Register */
2093#define LCD_HSYNC (LCD_BASE + 0x08) /* Horizontal Synchronize Register */
2094#define LCD_VAT (LCD_BASE + 0x0c) /* Virtual Area Setting Register */
2095#define LCD_DAH (LCD_BASE + 0x10) /* Display Area Horizontal Start/End Point */
2096#define LCD_DAV (LCD_BASE + 0x14) /* Display Area Vertical Start/End Point */
2097#define LCD_PS (LCD_BASE + 0x18) /* PS Signal Setting */
2098#define LCD_CLS (LCD_BASE + 0x1c) /* CLS Signal Setting */
2099#define LCD_SPL (LCD_BASE + 0x20) /* SPL Signal Setting */
2100#define LCD_REV (LCD_BASE + 0x24) /* REV Signal Setting */
2101#define LCD_CTRL (LCD_BASE + 0x30) /* LCD Control Register */
2102#define LCD_STATE (LCD_BASE + 0x34) /* LCD Status Register */
2103#define LCD_IID (LCD_BASE + 0x38) /* Interrupt ID Register */
2104#define LCD_DA0 (LCD_BASE + 0x40) /* Descriptor Address Register 0 */
2105#define LCD_SA0 (LCD_BASE + 0x44) /* Source Address Register 0 */
2106#define LCD_FID0 (LCD_BASE + 0x48) /* Frame ID Register 0 */
2107#define LCD_CMD0 (LCD_BASE + 0x4c) /* DMA Command Register 0 */
2108#define LCD_DA1 (LCD_BASE + 0x50) /* Descriptor Address Register 1 */
2109#define LCD_SA1 (LCD_BASE + 0x54) /* Source Address Register 1 */
2110#define LCD_FID1 (LCD_BASE + 0x58) /* Frame ID Register 1 */
2111#define LCD_CMD1 (LCD_BASE + 0x5c) /* DMA Command Register 1 */
2112
2113#define REG_LCD_CFG REG32(LCD_CFG)
2114#define REG_LCD_VSYNC REG32(LCD_VSYNC)
2115#define REG_LCD_HSYNC REG32(LCD_HSYNC)
2116#define REG_LCD_VAT REG32(LCD_VAT)
2117#define REG_LCD_DAH REG32(LCD_DAH)
2118#define REG_LCD_DAV REG32(LCD_DAV)
2119#define REG_LCD_PS REG32(LCD_PS)
2120#define REG_LCD_CLS REG32(LCD_CLS)
2121#define REG_LCD_SPL REG32(LCD_SPL)
2122#define REG_LCD_REV REG32(LCD_REV)
2123#define REG_LCD_CTRL REG32(LCD_CTRL)
2124#define REG_LCD_STATE REG32(LCD_STATE)
2125#define REG_LCD_IID REG32(LCD_IID)
2126#define REG_LCD_DA0 REG32(LCD_DA0)
2127#define REG_LCD_SA0 REG32(LCD_SA0)
2128#define REG_LCD_FID0 REG32(LCD_FID0)
2129#define REG_LCD_CMD0 REG32(LCD_CMD0)
2130#define REG_LCD_DA1 REG32(LCD_DA1)
2131#define REG_LCD_SA1 REG32(LCD_SA1)
2132#define REG_LCD_FID1 REG32(LCD_FID1)
2133#define REG_LCD_CMD1 REG32(LCD_CMD1)
2134
2135/* LCD Configure Register */
2136#define LCD_CFG_LCDPIN_BIT 31 /* LCD pins selection */
2137#define LCD_CFG_LCDPIN_MASK (0x1 << LCD_CFG_LCDPIN_BIT)
2138  #define LCD_CFG_LCDPIN_LCD (0x0 << LCD_CFG_LCDPIN_BIT)
2139  #define LCD_CFG_LCDPIN_SLCD (0x1 << LCD_CFG_LCDPIN_BIT)
2140#define LCD_CFG_PSM (1 << 23) /* PS signal mode */
2141#define LCD_CFG_CLSM (1 << 22) /* CLS signal mode */
2142#define LCD_CFG_SPLM (1 << 21) /* SPL signal mode */
2143#define LCD_CFG_REVM (1 << 20) /* REV signal mode */
2144#define LCD_CFG_HSYNM (1 << 19) /* HSYNC signal mode */
2145#define LCD_CFG_PCLKM (1 << 18) /* PCLK signal mode */
2146#define LCD_CFG_INVDAT (1 << 17) /* Inverse output data */
2147#define LCD_CFG_SYNDIR_IN (1 << 16) /* VSYNC&HSYNC direction */
2148#define LCD_CFG_PSP (1 << 15) /* PS pin reset state */
2149#define LCD_CFG_CLSP (1 << 14) /* CLS pin reset state */
2150#define LCD_CFG_SPLP (1 << 13) /* SPL pin reset state */
2151#define LCD_CFG_REVP (1 << 12) /* REV pin reset state */
2152#define LCD_CFG_HSP (1 << 11) /* HSYNC pority:0-active high,1-active low */
2153#define LCD_CFG_PCP (1 << 10) /* PCLK pority:0-rising,1-falling */
2154#define LCD_CFG_DEP (1 << 9) /* DE pority:0-active high,1-active low */
2155#define LCD_CFG_VSP (1 << 8) /* VSYNC pority:0-rising,1-falling */
2156#define LCD_CFG_PDW_BIT 4 /* STN pins utilization */
2157#define LCD_CFG_PDW_MASK (0x3 << LCD_DEV_PDW_BIT)
2158#define LCD_CFG_PDW_1 (0 << LCD_CFG_PDW_BIT) /* LCD_D[0] */
2159  #define LCD_CFG_PDW_2 (1 << LCD_CFG_PDW_BIT) /* LCD_D[0:1] */
2160  #define LCD_CFG_PDW_4 (2 << LCD_CFG_PDW_BIT) /* LCD_D[0:3]/LCD_D[8:11] */
2161  #define LCD_CFG_PDW_8 (3 << LCD_CFG_PDW_BIT) /* LCD_D[0:7]/LCD_D[8:15] */
2162#define LCD_CFG_MODE_BIT 0 /* Display Device Mode Select */
2163#define LCD_CFG_MODE_MASK (0x0f << LCD_CFG_MODE_BIT)
2164  #define LCD_CFG_MODE_GENERIC_TFT (0 << LCD_CFG_MODE_BIT) /* 16,18 bit TFT */
2165  #define LCD_CFG_MODE_SPECIAL_TFT_1 (1 << LCD_CFG_MODE_BIT)
2166  #define LCD_CFG_MODE_SPECIAL_TFT_2 (2 << LCD_CFG_MODE_BIT)
2167  #define LCD_CFG_MODE_SPECIAL_TFT_3 (3 << LCD_CFG_MODE_BIT)
2168  #define LCD_CFG_MODE_NONINTER_CCIR656 (4 << LCD_CFG_MODE_BIT)
2169  #define LCD_CFG_MODE_INTER_CCIR656 (5 << LCD_CFG_MODE_BIT)
2170  #define LCD_CFG_MODE_SINGLE_CSTN (8 << LCD_CFG_MODE_BIT)
2171  #define LCD_CFG_MODE_SINGLE_MSTN (9 << LCD_CFG_MODE_BIT)
2172  #define LCD_CFG_MODE_DUAL_CSTN (10 << LCD_CFG_MODE_BIT)
2173  #define LCD_CFG_MODE_DUAL_MSTN (11 << LCD_CFG_MODE_BIT)
2174  #define LCD_CFG_MODE_SERIAL_TFT (12 << LCD_CFG_MODE_BIT)
2175  #define LCD_CFG_MODE_GENERIC_18BIT_TFT (13 << LCD_CFG_MODE_BIT)
2176  /* JZ47XX defines */
2177  #define LCD_CFG_MODE_SHARP_HR (1 << LCD_CFG_MODE_BIT)
2178  #define LCD_CFG_MODE_CASIO_TFT (2 << LCD_CFG_MODE_BIT)
2179  #define LCD_CFG_MODE_SAMSUNG_ALPHA (3 << LCD_CFG_MODE_BIT)
2180
2181
2182
2183/* Vertical Synchronize Register */
2184#define LCD_VSYNC_VPS_BIT 16 /* VSYNC pulse start in line clock, fixed to 0 */
2185#define LCD_VSYNC_VPS_MASK (0xffff << LCD_VSYNC_VPS_BIT)
2186#define LCD_VSYNC_VPE_BIT 0 /* VSYNC pulse end in line clock */
2187#define LCD_VSYNC_VPE_MASK (0xffff << LCD_VSYNC_VPS_BIT)
2188
2189/* Horizontal Synchronize Register */
2190#define LCD_HSYNC_HPS_BIT 16 /* HSYNC pulse start position in dot clock */
2191#define LCD_HSYNC_HPS_MASK (0xffff << LCD_HSYNC_HPS_BIT)
2192#define LCD_HSYNC_HPE_BIT 0 /* HSYNC pulse end position in dot clock */
2193#define LCD_HSYNC_HPE_MASK (0xffff << LCD_HSYNC_HPE_BIT)
2194
2195/* Virtual Area Setting Register */
2196#define LCD_VAT_HT_BIT 16 /* Horizontal Total size in dot clock */
2197#define LCD_VAT_HT_MASK (0xffff << LCD_VAT_HT_BIT)
2198#define LCD_VAT_VT_BIT 0 /* Vertical Total size in dot clock */
2199#define LCD_VAT_VT_MASK (0xffff << LCD_VAT_VT_BIT)
2200
2201/* Display Area Horizontal Start/End Point Register */
2202#define LCD_DAH_HDS_BIT 16 /* Horizontal display area start in dot clock */
2203#define LCD_DAH_HDS_MASK (0xffff << LCD_DAH_HDS_BIT)
2204#define LCD_DAH_HDE_BIT 0 /* Horizontal display area end in dot clock */
2205#define LCD_DAH_HDE_MASK (0xffff << LCD_DAH_HDE_BIT)
2206
2207/* Display Area Vertical Start/End Point Register */
2208#define LCD_DAV_VDS_BIT 16 /* Vertical display area start in line clock */
2209#define LCD_DAV_VDS_MASK (0xffff << LCD_DAV_VDS_BIT)
2210#define LCD_DAV_VDE_BIT 0 /* Vertical display area end in line clock */
2211#define LCD_DAV_VDE_MASK (0xffff << LCD_DAV_VDE_BIT)
2212
2213/* PS Signal Setting */
2214#define LCD_PS_PSS_BIT 16 /* PS signal start position in dot clock */
2215#define LCD_PS_PSS_MASK (0xffff << LCD_PS_PSS_BIT)
2216#define LCD_PS_PSE_BIT 0 /* PS signal end position in dot clock */
2217#define LCD_PS_PSE_MASK (0xffff << LCD_PS_PSE_BIT)
2218
2219/* CLS Signal Setting */
2220#define LCD_CLS_CLSS_BIT 16 /* CLS signal start position in dot clock */
2221#define LCD_CLS_CLSS_MASK (0xffff << LCD_CLS_CLSS_BIT)
2222#define LCD_CLS_CLSE_BIT 0 /* CLS signal end position in dot clock */
2223#define LCD_CLS_CLSE_MASK (0xffff << LCD_CLS_CLSE_BIT)
2224
2225/* SPL Signal Setting */
2226#define LCD_SPL_SPLS_BIT 16 /* SPL signal start position in dot clock */
2227#define LCD_SPL_SPLS_MASK (0xffff << LCD_SPL_SPLS_BIT)
2228#define LCD_SPL_SPLE_BIT 0 /* SPL signal end position in dot clock */
2229#define LCD_SPL_SPLE_MASK (0xffff << LCD_SPL_SPLE_BIT)
2230
2231/* REV Signal Setting */
2232#define LCD_REV_REVS_BIT 16 /* REV signal start position in dot clock */
2233#define LCD_REV_REVS_MASK (0xffff << LCD_REV_REVS_BIT)
2234
2235/* LCD Control Register */
2236#define LCD_CTRL_BST_BIT 28 /* Burst Length Selection */
2237#define LCD_CTRL_BST_MASK (0x03 << LCD_CTRL_BST_BIT)
2238  #define LCD_CTRL_BST_4 (0 << LCD_CTRL_BST_BIT) /* 4-word */
2239  #define LCD_CTRL_BST_8 (1 << LCD_CTRL_BST_BIT) /* 8-word */
2240  #define LCD_CTRL_BST_16 (2 << LCD_CTRL_BST_BIT) /* 16-word */
2241#define LCD_CTRL_RGB565 (0 << 27) /* RGB565 mode */
2242#define LCD_CTRL_RGB555 (1 << 27) /* RGB555 mode */
2243#define LCD_CTRL_OFUP (1 << 26) /* Output FIFO underrun protection enable */
2244#define LCD_CTRL_FRC_BIT 24 /* STN FRC Algorithm Selection */
2245#define LCD_CTRL_FRC_MASK (0x03 << LCD_CTRL_FRC_BIT)
2246  #define LCD_CTRL_FRC_16 (0 << LCD_CTRL_FRC_BIT) /* 16 grayscale */
2247  #define LCD_CTRL_FRC_4 (1 << LCD_CTRL_FRC_BIT) /* 4 grayscale */
2248  #define LCD_CTRL_FRC_2 (2 << LCD_CTRL_FRC_BIT) /* 2 grayscale */
2249#define LCD_CTRL_PDD_BIT 16 /* Load Palette Delay Counter */
2250#define LCD_CTRL_PDD_MASK (0xff << LCD_CTRL_PDD_BIT)
2251#define LCD_CTRL_EOFM (1 << 13) /* EOF interrupt mask */
2252#define LCD_CTRL_SOFM (1 << 12) /* SOF interrupt mask */
2253#define LCD_CTRL_OFUM (1 << 11) /* Output FIFO underrun interrupt mask */
2254#define LCD_CTRL_IFUM0 (1 << 10) /* Input FIFO 0 underrun interrupt mask */
2255#define LCD_CTRL_IFUM1 (1 << 9) /* Input FIFO 1 underrun interrupt mask */
2256#define LCD_CTRL_LDDM (1 << 8) /* LCD disable done interrupt mask */
2257#define LCD_CTRL_QDM (1 << 7) /* LCD quick disable done interrupt mask */
2258#define LCD_CTRL_BEDN (1 << 6) /* Endian selection */
2259#define LCD_CTRL_PEDN (1 << 5) /* Endian in byte:0-msb first, 1-lsb first */
2260#define LCD_CTRL_DIS (1 << 4) /* Disable indicate bit */
2261#define LCD_CTRL_ENA (1 << 3) /* LCD enable bit */
2262#define LCD_CTRL_BPP_BIT 0 /* Bits Per Pixel */
2263#define LCD_CTRL_BPP_MASK (0x07 << LCD_CTRL_BPP_BIT)
2264  #define LCD_CTRL_BPP_1 (0 << LCD_CTRL_BPP_BIT) /* 1 bpp */
2265  #define LCD_CTRL_BPP_2 (1 << LCD_CTRL_BPP_BIT) /* 2 bpp */
2266  #define LCD_CTRL_BPP_4 (2 << LCD_CTRL_BPP_BIT) /* 4 bpp */
2267  #define LCD_CTRL_BPP_8 (3 << LCD_CTRL_BPP_BIT) /* 8 bpp */
2268  #define LCD_CTRL_BPP_16 (4 << LCD_CTRL_BPP_BIT) /* 15/16 bpp */
2269  #define LCD_CTRL_BPP_18_24 (5 << LCD_CTRL_BPP_BIT) /* 18/24/32 bpp */
2270
2271/* LCD Status Register */
2272#define LCD_STATE_QD (1 << 7) /* Quick Disable Done */
2273#define LCD_STATE_EOF (1 << 5) /* EOF Flag */
2274#define LCD_STATE_SOF (1 << 4) /* SOF Flag */
2275#define LCD_STATE_OFU (1 << 3) /* Output FIFO Underrun */
2276#define LCD_STATE_IFU0 (1 << 2) /* Input FIFO 0 Underrun */
2277#define LCD_STATE_IFU1 (1 << 1) /* Input FIFO 1 Underrun */
2278#define LCD_STATE_LDD (1 << 0) /* LCD Disabled */
2279
2280/* DMA Command Register */
2281#define LCD_CMD_SOFINT (1 << 31)
2282#define LCD_CMD_EOFINT (1 << 30)
2283#define LCD_CMD_PAL (1 << 28)
2284#define LCD_CMD_LEN_BIT 0
2285#define LCD_CMD_LEN_MASK (0xffffff << LCD_CMD_LEN_BIT)
2286
2287
2288/*************************************************************************
2289 * USB Device
2290 *************************************************************************/
2291#define USB_BASE UDC_BASE
2292
2293#define USB_REG_FADDR (USB_BASE + 0x00) /* Function Address 8-bit */
2294#define USB_REG_POWER (USB_BASE + 0x01) /* Power Managemetn 8-bit */
2295#define USB_REG_INTRIN (USB_BASE + 0x02) /* Interrupt IN 16-bit */
2296#define USB_REG_INTROUT (USB_BASE + 0x04) /* Interrupt OUT 16-bit */
2297#define USB_REG_INTRINE (USB_BASE + 0x06) /* Intr IN enable 16-bit */
2298#define USB_REG_INTROUTE (USB_BASE + 0x08) /* Intr OUT enable 16-bit */
2299#define USB_REG_INTRUSB (USB_BASE + 0x0a) /* Interrupt USB 8-bit */
2300#define USB_REG_INTRUSBE (USB_BASE + 0x0b) /* Interrupt USB Enable 8-bit */
2301#define USB_REG_FRAME (USB_BASE + 0x0c) /* Frame number 16-bit */
2302#define USB_REG_INDEX (USB_BASE + 0x0e) /* Index register 8-bit */
2303#define USB_REG_TESTMODE (USB_BASE + 0x0f) /* USB test mode 8-bit */
2304
2305#define USB_REG_CSR0 (USB_BASE + 0x12) /* EP0 CSR 8-bit */
2306#define USB_REG_INMAXP (USB_BASE + 0x10) /* EP1-2 IN Max Pkt Size 16-bit */
2307#define USB_REG_INCSR (USB_BASE + 0x12) /* EP1-2 IN CSR LSB 8/16bit */
2308#define USB_REG_INCSRH (USB_BASE + 0x13) /* EP1-2 IN CSR MSB 8-bit */
2309#define USB_REG_OUTMAXP (USB_BASE + 0x14) /* EP1 OUT Max Pkt Size 16-bit */
2310#define USB_REG_OUTCSR (USB_BASE + 0x16) /* EP1 OUT CSR LSB 8/16bit */
2311#define USB_REG_OUTCSRH (USB_BASE + 0x17) /* EP1 OUT CSR MSB 8-bit */
2312#define USB_REG_OUTCOUNT (USB_BASE + 0x18) /* bytes in EP0/1 OUT FIFO 16-bit */
2313
2314#define USB_FIFO_EP0 (USB_BASE + 0x20)
2315#define USB_FIFO_EP1 (USB_BASE + 0x24)
2316#define USB_FIFO_EP2 (USB_BASE + 0x28)
2317
2318#define USB_REG_EPINFO (USB_BASE + 0x78) /* Endpoint information */
2319#define USB_REG_RAMINFO (USB_BASE + 0x79) /* RAM information */
2320
2321#define USB_REG_INTR (USB_BASE + 0x200) /* DMA pending interrupts */
2322#define USB_REG_CNTL1 (USB_BASE + 0x204) /* DMA channel 1 control */
2323#define USB_REG_ADDR1 (USB_BASE + 0x208) /* DMA channel 1 AHB memory addr */
2324#define USB_REG_COUNT1 (USB_BASE + 0x20c) /* DMA channel 1 byte count */
2325#define USB_REG_CNTL2 (USB_BASE + 0x214) /* DMA channel 2 control */
2326#define USB_REG_ADDR2 (USB_BASE + 0x218) /* DMA channel 2 AHB memory addr */
2327#define USB_REG_COUNT2 (USB_BASE + 0x21c) /* DMA channel 2 byte count */
2328
2329
2330/* Power register bit masks */
2331#define USB_POWER_SUSPENDM 0x01
2332#define USB_POWER_RESUME 0x04
2333#define USB_POWER_HSMODE 0x10
2334#define USB_POWER_HSENAB 0x20
2335#define USB_POWER_SOFTCONN 0x40
2336
2337/* Interrupt register bit masks */
2338#define USB_INTR_SUSPEND 0x01
2339#define USB_INTR_RESUME 0x02
2340#define USB_INTR_RESET 0x04
2341
2342#define USB_INTR_EP0 0x0001
2343#define USB_INTR_INEP1 0x0002
2344#define USB_INTR_INEP2 0x0004
2345#define USB_INTR_OUTEP1 0x0002
2346
2347/* CSR0 bit masks */
2348#define USB_CSR0_OUTPKTRDY 0x01
2349#define USB_CSR0_INPKTRDY 0x02
2350#define USB_CSR0_SENTSTALL 0x04
2351#define USB_CSR0_DATAEND 0x08
2352#define USB_CSR0_SETUPEND 0x10
2353#define USB_CSR0_SENDSTALL 0x20
2354#define USB_CSR0_SVDOUTPKTRDY 0x40
2355#define USB_CSR0_SVDSETUPEND 0x80
2356
2357/* Endpoint CSR register bits */
2358#define USB_INCSRH_AUTOSET 0x80
2359#define USB_INCSRH_ISO 0x40
2360#define USB_INCSRH_MODE 0x20
2361#define USB_INCSRH_DMAREQENAB 0x10
2362#define USB_INCSRH_DMAREQMODE 0x04
2363#define USB_INCSR_CDT 0x40
2364#define USB_INCSR_SENTSTALL 0x20
2365#define USB_INCSR_SENDSTALL 0x10
2366#define USB_INCSR_FF 0x08
2367#define USB_INCSR_UNDERRUN 0x04
2368#define USB_INCSR_FFNOTEMPT 0x02
2369#define USB_INCSR_INPKTRDY 0x01
2370#define USB_OUTCSRH_AUTOCLR 0x80
2371#define USB_OUTCSRH_ISO 0x40
2372#define USB_OUTCSRH_DMAREQENAB 0x20
2373#define USB_OUTCSRH_DNYT 0x10
2374#define USB_OUTCSRH_DMAREQMODE 0x08
2375#define USB_OUTCSR_CDT 0x80
2376#define USB_OUTCSR_SENTSTALL 0x40
2377#define USB_OUTCSR_SENDSTALL 0x20
2378#define USB_OUTCSR_FF 0x10
2379#define USB_OUTCSR_DATAERR 0x08
2380#define USB_OUTCSR_OVERRUN 0x04
2381#define USB_OUTCSR_FFFULL 0x02
2382#define USB_OUTCSR_OUTPKTRDY 0x01
2383
2384/* Testmode register bits */
2385#define USB_TEST_SE0NAK 0x01
2386#define USB_TEST_J 0x02
2387#define USB_TEST_K 0x04
2388#define USB_TEST_PACKET 0x08
2389
2390/* DMA control bits */
2391#define USB_CNTL_ENA 0x01
2392#define USB_CNTL_DIR_IN 0x02
2393#define USB_CNTL_MODE_1 0x04
2394#define USB_CNTL_INTR_EN 0x08
2395#define USB_CNTL_EP(n) ((n) << 4)
2396#define USB_CNTL_BURST_0 (0 << 9)
2397#define USB_CNTL_BURST_4 (1 << 9)
2398#define USB_CNTL_BURST_8 (2 << 9)
2399#define USB_CNTL_BURST_16 (3 << 9)
2400
2401
2402//----------------------------------------------------------------------
2403//
2404// Module Operation Definitions
2405//
2406//----------------------------------------------------------------------
2407#ifndef __ASSEMBLY__
2408
2409/***************************************************************************
2410 * GPIO
2411 ***************************************************************************/
2412
2413//------------------------------------------------------
2414// GPIO Pins Description
2415//
2416// PORT 0:
2417//
2418// PIN/BIT N FUNC0 FUNC1
2419// 0 D0 -
2420// 1 D1 -
2421// 2 D2 -
2422// 3 D3 -
2423// 4 D4 -
2424// 5 D5 -
2425// 6 D6 -
2426// 7 D7 -
2427// 8 D8 -
2428// 9 D9 -
2429// 10 D10 -
2430// 11 D11 -
2431// 12 D12 -
2432// 13 D13 -
2433// 14 D14 -
2434// 15 D15 -
2435// 16 D16 -
2436// 17 D17 -
2437// 18 D18 -
2438// 19 D19 -
2439// 20 D20 -
2440// 21 D21 -
2441// 22 D22 -
2442// 23 D23 -
2443// 24 D24 -
2444// 25 D25 -
2445// 26 D26 -
2446// 27 D27 -
2447// 28 D28 -
2448// 29 D29 -
2449// 30 D30 -
2450// 31 D31 -
2451//
2452//------------------------------------------------------
2453// PORT 1:
2454//
2455// PIN/BIT N FUNC0 FUNC1
2456// 0 A0 -
2457// 1 A1 -
2458// 2 A2 -
2459// 3 A3 -
2460// 4 A4 -
2461// 5 A5 -
2462// 6 A6 -
2463// 7 A7 -
2464// 8 A8 -
2465// 9 A9 -
2466// 10 A10 -
2467// 11 A11 -
2468// 12 A12 -
2469// 13 A13 -
2470// 14 A14 -
2471// 15 A15/CL -
2472// 16 A16/AL -
2473// 17 LCD_CLS A21
2474// 18 LCD_SPL A22
2475// 19 DCS# -
2476// 20 RAS# -
2477// 21 CAS# -
2478// 22 RDWE#/BUFD# -
2479// 23 CKE -
2480// 24 CKO -
2481// 25 CS1# -
2482// 26 CS2# -
2483// 27 CS3# -
2484// 28 CS4# -
2485// 29 RD# -
2486// 30 WR# -
2487// 31 WE0# -
2488//
2489// Note: PIN15&16 are CL&AL when connecting to NAND flash.
2490//------------------------------------------------------
2491// PORT 2:
2492//
2493// PIN/BIT N FUNC0 FUNC1
2494// 0 LCD_D0 -
2495// 1 LCD_D1 -
2496// 2 LCD_D2 -
2497// 3 LCD_D3 -
2498// 4 LCD_D4 -
2499// 5 LCD_D5 -
2500// 6 LCD_D6 -
2501// 7 LCD_D7 -
2502// 8 LCD_D8 -
2503// 9 LCD_D9 -
2504// 10 LCD_D10 -
2505// 11 LCD_D11 -
2506// 12 LCD_D12 -
2507// 13 LCD_D13 -
2508// 14 LCD_D14 -
2509// 15 LCD_D15 -
2510// 16 LCD_D16 -
2511// 17 LCD_D17 -
2512// 18 LCD_PCLK -
2513// 19 LCD_HSYNC -
2514// 20 LCD_VSYNC -
2515// 21 LCD_DE -
2516// 22 LCD_PS A19
2517// 23 LCD_REV A20
2518// 24 WE1# -
2519// 25 WE2# -
2520// 26 WE3# -
2521// 27 WAIT# -
2522// 28 FRE# -
2523// 29 FWE# -
2524// 30(NOTE:FRB#) - -
2525// 31 - -
2526//
2527// NOTE(1): PIN30 is used for FRB# when connecting to NAND flash.
2528//------------------------------------------------------
2529// PORT 3:
2530//
2531// PIN/BIT N FUNC0 FUNC1
2532// 0 CIM_D0 -
2533// 1 CIM_D1 -
2534// 2 CIM_D2 -
2535// 3 CIM_D3 -
2536// 4 CIM_D4 -
2537// 5 CIM_D5 -
2538// 6 CIM_D6 -
2539// 7 CIM_D7 -
2540// 8 MSC_CMD -
2541// 9 MSC_CLK -
2542// 10 MSC_D0 -
2543// 11 MSC_D1 -
2544// 12 MSC_D2 -
2545// 13 MSC_D3 -
2546// 14 CIM_MCLK -
2547// 15 CIM_PCLK -
2548// 16 CIM_VSYNC -
2549// 17 CIM_HSYNC -
2550// 18 SSI_CLK SCLK_RSTN
2551// 19 SSI_CE0# BIT_CLK(AIC)
2552// 20 SSI_DT SDATA_OUT(AIC)
2553// 21 SSI_DR SDATA_IN(AIC)
2554// 22 SSI_CE1#&GPC SYNC(AIC)
2555// 23 PWM0 I2C_SDA
2556// 24 PWM1 I2C_SCK
2557// 25 PWM2 UART0_TxD
2558// 26 PWM3 UART0_RxD
2559// 27 PWM4 A17
2560// 28 PWM5 A18
2561// 29 - -
2562// 30 PWM6 UART0_CTS/UART1_RxD
2563// 31 PWM7 UART0_RTS/UART1_TxD
2564//
2565//////////////////////////////////////////////////////////
2566
2567/*
2568 * p is the port number (0,1,2,3)
2569 * o is the pin offset (0-31) inside the port
2570 * n is the absolute number of a pin (0-127), regardless of the port
2571 */
2572
2573//-------------------------------------------
2574// Function Pins Mode
2575
2576#define __gpio_as_func0(n) \
2577do { \
2578    unsigned int p, o; \
2579    p = (n) / 32; \
2580    o = (n) % 32; \
2581    REG_GPIO_PXFUNS(p) = (1 << o); \
2582    REG_GPIO_PXSELC(p) = (1 << o); \
2583} while (0)
2584
2585#define __gpio_as_func1(n) \
2586do { \
2587    unsigned int p, o; \
2588    p = (n) / 32; \
2589    o = (n) % 32; \
2590    REG_GPIO_PXFUNS(p) = (1 << o); \
2591    REG_GPIO_PXSELS(p) = (1 << o); \
2592} while (0)
2593
2594/*
2595 * D0 ~ D31, A0 ~ A16, DCS#, RAS#, CAS#, CKE#,
2596 * RDWE#, CKO#, WE0#, WE1#, WE2#, WE3#
2597 */
2598#define __gpio_as_sdram_32bit() \
2599do { \
2600    REG_GPIO_PXFUNS(0) = 0xffffffff; \
2601    REG_GPIO_PXSELC(0) = 0xffffffff; \
2602    REG_GPIO_PXPES(0) = 0xffffffff; \
2603    REG_GPIO_PXFUNS(1) = 0x81f9ffff; \
2604    REG_GPIO_PXSELC(1) = 0x81f9ffff; \
2605    REG_GPIO_PXPES(1) = 0x81f9ffff; \
2606    REG_GPIO_PXFUNS(2) = 0x07000000; \
2607    REG_GPIO_PXSELC(2) = 0x07000000; \
2608    REG_GPIO_PXPES(2) = 0x07000000; \
2609} while (0)
2610
2611/*
2612 * D0 ~ D15, A0 ~ A16, DCS#, RAS#, CAS#, CKE#,
2613 * RDWE#, CKO#, WE0#, WE1#, WE2#, WE3#
2614 */
2615#define __gpio_as_sdram_16bit() \
2616do { \
2617    REG_GPIO_PXFUNS(0) = 0x5442bfaa; \
2618    REG_GPIO_PXSELC(0) = 0x5442bfaa; \
2619    REG_GPIO_PXPES(0) = 0x5442bfaa; \
2620    REG_GPIO_PXFUNS(1) = 0x81f9ffff; \
2621    REG_GPIO_PXSELC(1) = 0x81f9ffff; \
2622    REG_GPIO_PXPES(1) = 0x81f9ffff; \
2623    REG_GPIO_PXFUNS(2) = 0x01000000; \
2624    REG_GPIO_PXSELC(2) = 0x01000000; \
2625    REG_GPIO_PXPES(2) = 0x01000000; \
2626} while (0)
2627
2628/*
2629 * CS1#, CLE, ALE, FRE#, FWE#, FRB#, RDWE#/BUFD#
2630 */
2631#define __gpio_as_nand() \
2632do { \
2633    REG_GPIO_PXFUNS(1) = 0x02018000; \
2634    REG_GPIO_PXSELC(1) = 0x02018000; \
2635    REG_GPIO_PXPES(1) = 0x02018000; \
2636    REG_GPIO_PXFUNS(2) = 0x30000000; \
2637    REG_GPIO_PXSELC(2) = 0x30000000; \
2638    REG_GPIO_PXPES(2) = 0x30000000; \
2639    REG_GPIO_PXFUNC(2) = 0x40000000; \
2640    REG_GPIO_PXSELC(2) = 0x40000000; \
2641    REG_GPIO_PXDIRC(2) = 0x40000000; \
2642    REG_GPIO_PXPES(2) = 0x40000000; \
2643    REG_GPIO_PXFUNS(1) = 0x00400000; \
2644    REG_GPIO_PXSELC(1) = 0x00400000; \
2645} while (0)
2646
2647/*
2648 * CS4#, RD#, WR#, WAIT#, A0 ~ A22, D0 ~ D7
2649 */
2650#define __gpio_as_nor_8bit() \
2651do { \
2652    REG_GPIO_PXFUNS(0) = 0x000000ff; \
2653    REG_GPIO_PXSELC(0) = 0x000000ff; \
2654    REG_GPIO_PXPES(0) = 0x000000ff; \
2655    REG_GPIO_PXFUNS(1) = 0x7041ffff; \
2656    REG_GPIO_PXSELC(1) = 0x7041ffff; \
2657    REG_GPIO_PXPES(1) = 0x7041ffff; \
2658    REG_GPIO_PXFUNS(1) = 0x00060000; \
2659    REG_GPIO_PXSELS(1) = 0x00060000; \
2660    REG_GPIO_PXPES(1) = 0x00060000; \
2661    REG_GPIO_PXFUNS(2) = 0x08000000; \
2662    REG_GPIO_PXSELC(2) = 0x08000000; \
2663    REG_GPIO_PXPES(2) = 0x08000000; \
2664    REG_GPIO_PXFUNS(2) = 0x00c00000; \
2665    REG_GPIO_PXSELS(2) = 0x00c00000; \
2666    REG_GPIO_PXPES(2) = 0x00c00000; \
2667    REG_GPIO_PXFUNS(3) = 0x18000000; \
2668    REG_GPIO_PXSELS(3) = 0x18000000; \
2669    REG_GPIO_PXPES(3) = 0x18000000; \
2670} while (0)
2671
2672/*
2673 * CS4#, RD#, WR#, WAIT#, A0 ~ A22, D0 ~ D15
2674 */
2675#define __gpio_as_nor_16bit() \
2676do { \
2677    REG_GPIO_PXFUNS(0) = 0x0000ffff; \
2678    REG_GPIO_PXSELC(0) = 0x0000ffff; \
2679    REG_GPIO_PXPES(0) = 0x0000ffff; \
2680    REG_GPIO_PXFUNS(1) = 0x7041ffff; \
2681    REG_GPIO_PXSELC(1) = 0x7041ffff; \
2682    REG_GPIO_PXPES(1) = 0x7041ffff; \
2683    REG_GPIO_PXFUNS(1) = 0x00060000; \
2684    REG_GPIO_PXSELS(1) = 0x00060000; \
2685    REG_GPIO_PXPES(1) = 0x00060000; \
2686    REG_GPIO_PXFUNS(2) = 0x08000000; \
2687    REG_GPIO_PXSELC(2) = 0x08000000; \
2688    REG_GPIO_PXPES(2) = 0x08000000; \
2689    REG_GPIO_PXFUNS(2) = 0x00c00000; \
2690    REG_GPIO_PXSELS(2) = 0x00c00000; \
2691    REG_GPIO_PXPES(2) = 0x00c00000; \
2692    REG_GPIO_PXFUNS(3) = 0x18000000; \
2693    REG_GPIO_PXSELS(3) = 0x18000000; \
2694    REG_GPIO_PXPES(3) = 0x18000000; \
2695} while (0)
2696
2697/*
2698 * UART0_TxD, UART_RxD0
2699 */
2700#define __gpio_as_uart0() \
2701do { \
2702    REG_GPIO_PXFUNS(3) = 0x06000000; \
2703    REG_GPIO_PXSELS(3) = 0x06000000; \
2704    REG_GPIO_PXPES(3) = 0x06000000; \
2705} while (0)
2706
2707/*
2708 * UART1_TxD, UART1_RxD1
2709 */
2710#define __gpio_as_uart1() \
2711do { \
2712    REG_GPIO_PXFUNS(3) = 0xc0000000; \
2713    REG_GPIO_PXSELS(3) = 0xc0000000; \
2714    REG_GPIO_PXPES(3) = 0xc0000000; \
2715} while (0)
2716
2717/*
2718 * LCD_D0~LCD_D15, LCD_PCLK, LCD_HSYNC, LCD_VSYNC, LCD_DE
2719 */
2720#define __gpio_as_lcd_16bit() \
2721do { \
2722    REG_GPIO_PXFUNS(2) = 0x003cffff; \
2723    REG_GPIO_PXSELC(2) = 0x003cffff; \
2724    REG_GPIO_PXPES(2) = 0x003cffff; \
2725} while (0)
2726
2727/*
2728 * LCD_D0~LCD_D17, LCD_PCLK, LCD_HSYNC, LCD_VSYNC, LCD_DE
2729 */
2730#define __gpio_as_lcd_18bit() \
2731do { \
2732    REG_GPIO_PXFUNS(2) = 0x003fffff; \
2733    REG_GPIO_PXSELC(2) = 0x003fffff; \
2734    REG_GPIO_PXPES(2) = 0x003fffff; \
2735} while (0)
2736
2737/*
2738 * CIM_D0~CIM_D7, CIM_MCLK, CIM_PCLK, CIM_VSYNC, CIM_HSYNC
2739 */
2740#define __gpio_as_cim() \
2741do { \
2742    REG_GPIO_PXFUNS(3) = 0x0003c0ff; \
2743    REG_GPIO_PXSELC(3) = 0x0003c0ff; \
2744    REG_GPIO_PXPES(3) = 0x0003c0ff; \
2745} while (0)
2746
2747/*
2748 * SDATA_OUT, SDATA_IN, BIT_CLK, SYNC, SCLK_RESET
2749 */
2750#define __gpio_as_aic() \
2751do { \
2752    REG_GPIO_PXFUNS(3) = 0x007c0000; \
2753    REG_GPIO_PXSELS(3) = 0x007c0000; \
2754    REG_GPIO_PXPES(3) = 0x007c0000; \
2755} while (0)
2756
2757/*
2758 * MSC_CMD, MSC_CLK, MSC_D0 ~ MSC_D3
2759 */
2760#define __gpio_as_msc() \
2761do { \
2762    REG_GPIO_PXFUNS(3) = 0x00003f00; \
2763    REG_GPIO_PXSELC(3) = 0x00003f00; \
2764    REG_GPIO_PXPES(3) = 0x00003f00; \
2765} while (0)
2766
2767/*
2768 * SSI_CS0, SSI_CLK, SSI_DT, SSI_DR
2769 */
2770#define __gpio_as_ssi() \
2771do { \
2772    REG_GPIO_PXFUNS(3) = 0x003c0000; \
2773    REG_GPIO_PXSELC(3) = 0x003c0000; \
2774    REG_GPIO_PXPES(3) = 0x003c0000; \
2775} while (0)
2776
2777/*
2778 * I2C_SCK, I2C_SDA
2779 */
2780#define __gpio_as_i2c() \
2781do { \
2782    REG_GPIO_PXFUNS(3) = 0x01800000; \
2783    REG_GPIO_PXSELS(3) = 0x01800000; \
2784    REG_GPIO_PXPES(3) = 0x01800000; \
2785} while (0)
2786
2787/*
2788 * PWM0
2789 */
2790#define __gpio_as_pwm0() \
2791do { \
2792    REG_GPIO_PXFUNS(3) = 0x00800000; \
2793    REG_GPIO_PXSELC(3) = 0x00800000; \
2794    REG_GPIO_PXPES(3) = 0x00800000; \
2795} while (0)
2796
2797/*
2798 * PWM1
2799 */
2800#define __gpio_as_pwm1() \
2801do { \
2802    REG_GPIO_PXFUNS(3) = 0x01000000; \
2803    REG_GPIO_PXSELC(3) = 0x01000000; \
2804    REG_GPIO_PXPES(3) = 0x01000000; \
2805} while (0)
2806
2807/*
2808 * PWM2
2809 */
2810#define __gpio_as_pwm2() \
2811do { \
2812    REG_GPIO_PXFUNS(3) = 0x02000000; \
2813    REG_GPIO_PXSELC(3) = 0x02000000; \
2814    REG_GPIO_PXPES(3) = 0x02000000; \
2815} while (0)
2816
2817/*
2818 * PWM3
2819 */
2820#define __gpio_as_pwm3() \
2821do { \
2822    REG_GPIO_PXFUNS(3) = 0x04000000; \
2823    REG_GPIO_PXSELC(3) = 0x04000000; \
2824    REG_GPIO_PXPES(3) = 0x04000000; \
2825} while (0)
2826
2827/*
2828 * PWM4
2829 */
2830#define __gpio_as_pwm4() \
2831do { \
2832    REG_GPIO_PXFUNS(3) = 0x08000000; \
2833    REG_GPIO_PXSELC(3) = 0x08000000; \
2834    REG_GPIO_PXPES(3) = 0x08000000; \
2835} while (0)
2836
2837/*
2838 * PWM5
2839 */
2840#define __gpio_as_pwm5() \
2841do { \
2842    REG_GPIO_PXFUNS(3) = 0x10000000; \
2843    REG_GPIO_PXSELC(3) = 0x10000000; \
2844    REG_GPIO_PXPES(3) = 0x10000000; \
2845} while (0)
2846
2847/*
2848 * PWM6
2849 */
2850#define __gpio_as_pwm6() \
2851do { \
2852    REG_GPIO_PXFUNS(3) = 0x40000000; \
2853    REG_GPIO_PXSELC(3) = 0x40000000; \
2854    REG_GPIO_PXPES(3) = 0x40000000; \
2855} while (0)
2856
2857/*
2858 * PWM7
2859 */
2860#define __gpio_as_pwm7() \
2861do { \
2862    REG_GPIO_PXFUNS(3) = 0x80000000; \
2863    REG_GPIO_PXSELC(3) = 0x80000000; \
2864    REG_GPIO_PXPES(3) = 0x80000000; \
2865} while (0)
2866
2867/*
2868 * n = 0 ~ 7
2869 */
2870#define __gpio_as_pwm(n) __gpio_as_pwm##n()
2871
2872//-------------------------------------------
2873// GPIO or Interrupt Mode
2874
2875#define __gpio_get_port(p) (REG_GPIO_PXPIN(p))
2876
2877#define __gpio_port_as_output(p, o) \
2878do { \
2879    REG_GPIO_PXFUNC(p) = (1 << (o)); \
2880    REG_GPIO_PXSELC(p) = (1 << (o)); \
2881    REG_GPIO_PXDIRS(p) = (1 << (o)); \
2882} while (0)
2883
2884#define __gpio_port_as_input(p, o) \
2885do { \
2886    REG_GPIO_PXFUNC(p) = (1 << (o)); \
2887    REG_GPIO_PXSELC(p) = (1 << (o)); \
2888    REG_GPIO_PXDIRC(p) = (1 << (o)); \
2889} while (0)
2890
2891#define __gpio_as_output(n) \
2892do { \
2893    unsigned int p, o; \
2894    p = (n) / 32; \
2895    o = (n) % 32; \
2896    __gpio_port_as_output(p, o); \
2897} while (0)
2898
2899#define __gpio_as_input(n) \
2900do { \
2901    unsigned int p, o; \
2902    p = (n) / 32; \
2903    o = (n) % 32; \
2904    __gpio_port_as_input(p, o); \
2905} while (0)
2906
2907#define __gpio_set_pin(n) \
2908do { \
2909    unsigned int p, o; \
2910    p = (n) / 32; \
2911    o = (n) % 32; \
2912    REG_GPIO_PXDATS(p) = (1 << o); \
2913} while (0)
2914
2915#define __gpio_clear_pin(n) \
2916do { \
2917    unsigned int p, o; \
2918    p = (n) / 32; \
2919    o = (n) % 32; \
2920    REG_GPIO_PXDATC(p) = (1 << o); \
2921} while (0)
2922
2923#define __gpio_get_pin(n) \
2924({ \
2925    unsigned int p, o, v; \
2926    p = (n) / 32; \
2927    o = (n) % 32; \
2928    if (__gpio_get_port(p) & (1 << o)) \
2929        v = 1; \
2930    else \
2931        v = 0; \
2932    v; \
2933})
2934
2935#define __gpio_as_irq_high_level(n) \
2936do { \
2937    unsigned int p, o; \
2938    p = (n) / 32; \
2939    o = (n) % 32; \
2940    REG_GPIO_PXIMS(p) = (1 << o); \
2941    REG_GPIO_PXTRGC(p) = (1 << o); \
2942    REG_GPIO_PXFUNC(p) = (1 << o); \
2943    REG_GPIO_PXSELS(p) = (1 << o); \
2944    REG_GPIO_PXDIRS(p) = (1 << o); \
2945    REG_GPIO_PXFLGC(p) = (1 << o); \
2946    REG_GPIO_PXIMC(p) = (1 << o); \
2947} while (0)
2948
2949#define __gpio_as_irq_low_level(n) \
2950do { \
2951    unsigned int p, o; \
2952    p = (n) / 32; \
2953    o = (n) % 32; \
2954    REG_GPIO_PXIMS(p) = (1 << o); \
2955    REG_GPIO_PXTRGC(p) = (1 << o); \
2956    REG_GPIO_PXFUNC(p) = (1 << o); \
2957    REG_GPIO_PXSELS(p) = (1 << o); \
2958    REG_GPIO_PXDIRC(p) = (1 << o); \
2959    REG_GPIO_PXFLGC(p) = (1 << o); \
2960    REG_GPIO_PXIMC(p) = (1 << o); \
2961} while (0)
2962
2963#define __gpio_as_irq_rise_edge(n) \
2964do { \
2965    unsigned int p, o; \
2966    p = (n) / 32; \
2967    o = (n) % 32; \
2968    REG_GPIO_PXIMS(p) = (1 << o); \
2969    REG_GPIO_PXTRGS(p) = (1 << o); \
2970    REG_GPIO_PXFUNC(p) = (1 << o); \
2971    REG_GPIO_PXSELS(p) = (1 << o); \
2972    REG_GPIO_PXDIRS(p) = (1 << o); \
2973    REG_GPIO_PXFLGC(p) = (1 << o); \
2974    REG_GPIO_PXIMC(p) = (1 << o); \
2975} while (0)
2976
2977#define __gpio_as_irq_fall_edge(n) \
2978do { \
2979    unsigned int p, o; \
2980    p = (n) / 32; \
2981    o = (n) % 32; \
2982    REG_GPIO_PXIMS(p) = (1 << o); \
2983    REG_GPIO_PXTRGS(p) = (1 << o); \
2984    REG_GPIO_PXFUNC(p) = (1 << o); \
2985    REG_GPIO_PXSELS(p) = (1 << o); \
2986    REG_GPIO_PXDIRC(p) = (1 << o); \
2987    REG_GPIO_PXFLGC(p) = (1 << o); \
2988    REG_GPIO_PXIMC(p) = (1 << o); \
2989} while (0)
2990
2991#define __gpio_mask_irq(n) \
2992do { \
2993    unsigned int p, o; \
2994    p = (n) / 32; \
2995    o = (n) % 32; \
2996    REG_GPIO_PXIMS(p) = (1 << o); \
2997} while (0)
2998
2999#define __gpio_unmask_irq(n) \
3000do { \
3001    unsigned int p, o; \
3002    p = (n) / 32; \
3003    o = (n) % 32; \
3004    REG_GPIO_PXIMC(p) = (1 << o); \
3005} while (0)
3006
3007#define __gpio_ack_irq(n) \
3008do { \
3009    unsigned int p, o; \
3010    p = (n) / 32; \
3011    o = (n) % 32; \
3012    REG_GPIO_PXFLGC(p) = (1 << o); \
3013} while (0)
3014
3015#define __gpio_get_irq() \
3016({ \
3017    unsigned int p, i, tmp, v = 0; \
3018    for (p = 3; p >= 0; p--) { \
3019        tmp = REG_GPIO_PXFLG(p); \
3020        for (i = 0; i < 32; i++) \
3021            if (tmp & (1 << i)) \
3022                v = (32*p + i); \
3023    } \
3024    v; \
3025})
3026
3027#define __gpio_group_irq(n) \
3028({ \
3029    register int tmp, i; \
3030    tmp = REG_GPIO_PXFLG((n)); \
3031    for (i=31;i>=0;i--) \
3032        if (tmp & (1 << i)) \
3033            break; \
3034    i; \
3035})
3036
3037#define __gpio_enable_pull(n) \
3038do { \
3039    unsigned int p, o; \
3040    p = (n) / 32; \
3041    o = (n) % 32; \
3042    REG_GPIO_PXPEC(p) = (1 << o); \
3043} while (0)
3044
3045#define __gpio_disable_pull(n) \
3046do { \
3047    unsigned int p, o; \
3048    p = (n) / 32; \
3049    o = (n) % 32; \
3050    REG_GPIO_PXPES(p) = (1 << o); \
3051} while (0)
3052
3053
3054/***************************************************************************
3055 * CPM
3056 ***************************************************************************/
3057#define __cpm_get_pllm() \
3058    ((REG_CPM_CPPCR & CPM_CPPCR_PLLM_MASK) >> CPM_CPPCR_PLLM_BIT)
3059#define __cpm_get_plln() \
3060    ((REG_CPM_CPPCR & CPM_CPPCR_PLLN_MASK) >> CPM_CPPCR_PLLN_BIT)
3061#define __cpm_get_pllod() \
3062    ((REG_CPM_CPPCR & CPM_CPPCR_PLLOD_MASK) >> CPM_CPPCR_PLLOD_BIT)
3063
3064#define __cpm_get_cdiv() \
3065    ((REG_CPM_CPCCR & CPM_CPCCR_CDIV_MASK) >> CPM_CPCCR_CDIV_BIT)
3066#define __cpm_get_hdiv() \
3067    ((REG_CPM_CPCCR & CPM_CPCCR_HDIV_MASK) >> CPM_CPCCR_HDIV_BIT)
3068#define __cpm_get_pdiv() \
3069    ((REG_CPM_CPCCR & CPM_CPCCR_PDIV_MASK) >> CPM_CPCCR_PDIV_BIT)
3070#define __cpm_get_mdiv() \
3071    ((REG_CPM_CPCCR & CPM_CPCCR_MDIV_MASK) >> CPM_CPCCR_MDIV_BIT)
3072#define __cpm_get_ldiv() \
3073    ((REG_CPM_CPCCR & CPM_CPCCR_LDIV_MASK) >> CPM_CPCCR_LDIV_BIT)
3074#define __cpm_get_udiv() \
3075    ((REG_CPM_CPCCR & CPM_CPCCR_UDIV_MASK) >> CPM_CPCCR_UDIV_BIT)
3076#define __cpm_get_i2sdiv() \
3077    ((REG_CPM_I2SCDR & CPM_I2SCDR_I2SDIV_MASK) >> CPM_I2SCDR_I2SDIV_BIT)
3078#define __cpm_get_pixdiv() \
3079    ((REG_CPM_LPCDR & CPM_LPCDR_PIXDIV_MASK) >> CPM_LPCDR_PIXDIV_BIT)
3080#define __cpm_get_mscdiv() \
3081    ((REG_CPM_MSCCDR & CPM_MSCCDR_MSCDIV_MASK) >> CPM_MSCCDR_MSCDIV_BIT)
3082
3083#define __cpm_set_cdiv(v) \
3084    (REG_CPM_CPCCR = (REG_CPM_CPCCR & ~CPM_CPCCR_CDIV_MASK) | ((v) << (CPM_CPCCR_CDIV_BIT)))
3085#define __cpm_set_hdiv(v) \
3086    (REG_CPM_CPCCR = (REG_CPM_CPCCR & ~CPM_CPCCR_HDIV_MASK) | ((v) << (CPM_CPCCR_HDIV_BIT)))
3087#define __cpm_set_pdiv(v) \
3088    (REG_CPM_CPCCR = (REG_CPM_CPCCR & ~CPM_CPCCR_PDIV_MASK) | ((v) << (CPM_CPCCR_PDIV_BIT)))
3089#define __cpm_set_mdiv(v) \
3090    (REG_CPM_CPCCR = (REG_CPM_CPCCR & ~CPM_CPCCR_MDIV_MASK) | ((v) << (CPM_CPCCR_MDIV_BIT)))
3091#define __cpm_set_ldiv(v) \
3092    (REG_CPM_CPCCR = (REG_CPM_CPCCR & ~CPM_CPCCR_LDIV_MASK) | ((v) << (CPM_CPCCR_LDIV_BIT)))
3093#define __cpm_set_udiv(v) \
3094    (REG_CPM_CPCCR = (REG_CPM_CPCCR & ~CPM_CPCCR_UDIV_MASK) | ((v) << (CPM_CPCCR_UDIV_BIT)))
3095#define __cpm_set_i2sdiv(v) \
3096    (REG_CPM_I2SCDR = (REG_CPM_I2SCDR & ~CPM_I2SCDR_I2SDIV_MASK) | ((v) << (CPM_I2SCDR_I2SDIV_BIT)))
3097#define __cpm_set_pixdiv(v) \
3098    (REG_CPM_LPCDR = (REG_CPM_LPCDR & ~CPM_LPCDR_PIXDIV_MASK) | ((v) << (CPM_LPCDR_PIXDIV_BIT)))
3099#define __cpm_set_mscdiv(v) \
3100    (REG_CPM_MSCCDR = (REG_CPM_MSCCDR & ~CPM_MSCCDR_MSCDIV_MASK) | ((v) << (CPM_MSCCDR_MSCDIV_BIT)))
3101
3102#define __cpm_select_i2sclk_exclk() (REG_CPM_CPCCR &= ~CPM_CPCCR_I2CS)
3103#define __cpm_select_i2sclk_pll() (REG_CPM_CPCCR |= CPM_CPCCR_I2CS)
3104#define __cpm_enable_cko() (REG_CPM_CPCCR |= CPM_CPCCR_CLKOEN)
3105#define __cpm_select_usbclk_exclk() (REG_CPM_CPCCR &= ~CPM_CPCCR_UCS)
3106#define __cpm_select_usbclk_pll() (REG_CPM_CPCCR |= CPM_CPCCR_UCS)
3107#define __cpm_enable_pll_change() (REG_CPM_CPCCR |= CPM_CPCCR_CE)
3108#define __cpm_pllout_direct() (REG_CPM_CPCCR |= CPM_CPCCR_PCS)
3109#define __cpm_pllout_div2() (REG_CPM_CPCCR &= ~CPM_CPCCR_PCS)
3110
3111#define __cpm_pll_is_on() (REG_CPM_CPPCR & CPM_CPPCR_PLLS)
3112#define __cpm_pll_bypass() (REG_CPM_CPPCR |= CPM_CPPCR_PLLBP)
3113#define __cpm_pll_enable() (REG_CPM_CPPCR |= CPM_CPPCR_PLLEN)
3114
3115#define __cpm_get_cclk_doze_duty() \
3116    ((REG_CPM_LCR & CPM_LCR_DOZE_DUTY_MASK) >> CPM_LCR_DOZE_DUTY_BIT)
3117#define __cpm_set_cclk_doze_duty(v) \
3118    (REG_CPM_LCR = (REG_CPM_LCR & ~CPM_LCR_DOZE_DUTY_MASK) | ((v) << (CPM_LCR_DOZE_DUTY_BIT)))
3119
3120#define __cpm_doze_mode() (REG_CPM_LCR |= CPM_LCR_DOZE_ON)
3121#define __cpm_idle_mode() \
3122    (REG_CPM_LCR = (REG_CPM_LCR & ~CPM_LCR_LPM_MASK) | CPM_LCR_LPM_IDLE)
3123#define __cpm_sleep_mode() \
3124    (REG_CPM_LCR = (REG_CPM_LCR & ~CPM_LCR_LPM_MASK) | CPM_LCR_LPM_SLEEP)
3125
3126#define __cpm_stop_all() (REG_CPM_CLKGR = 0x7fff)
3127#define __cpm_stop_uart1() (REG_CPM_CLKGR |= CPM_CLKGR_UART1)
3128#define __cpm_stop_uhc() (REG_CPM_CLKGR |= CPM_CLKGR_UHC)
3129#define __cpm_stop_ipu() (REG_CPM_CLKGR |= CPM_CLKGR_IPU)
3130#define __cpm_stop_dmac() (REG_CPM_CLKGR |= CPM_CLKGR_DMAC)
3131#define __cpm_stop_udc() (REG_CPM_CLKGR |= CPM_CLKGR_UDC)
3132#define __cpm_stop_lcd() (REG_CPM_CLKGR |= CPM_CLKGR_LCD)
3133#define __cpm_stop_cim() (REG_CPM_CLKGR |= CPM_CLKGR_CIM)
3134#define __cpm_stop_sadc() (REG_CPM_CLKGR |= CPM_CLKGR_SADC)
3135#define __cpm_stop_msc() (REG_CPM_CLKGR |= CPM_CLKGR_MSC)
3136#define __cpm_stop_aic1() (REG_CPM_CLKGR |= CPM_CLKGR_AIC1)
3137#define __cpm_stop_aic2() (REG_CPM_CLKGR |= CPM_CLKGR_AIC2)
3138#define __cpm_stop_ssi() (REG_CPM_CLKGR |= CPM_CLKGR_SSI)
3139#define __cpm_stop_i2c() (REG_CPM_CLKGR |= CPM_CLKGR_I2C)
3140#define __cpm_stop_rtc() (REG_CPM_CLKGR |= CPM_CLKGR_RTC)
3141#define __cpm_stop_tcu() (REG_CPM_CLKGR |= CPM_CLKGR_TCU)
3142#define __cpm_stop_uart0() (REG_CPM_CLKGR |= CPM_CLKGR_UART0)
3143
3144#define __cpm_start_all() (REG_CPM_CLKGR = 0x0)
3145#define __cpm_start_uart1() (REG_CPM_CLKGR &= ~CPM_CLKGR_UART1)
3146#define __cpm_start_uhc() (REG_CPM_CLKGR &= ~CPM_CLKGR_UHC)
3147#define __cpm_start_ipu() (REG_CPM_CLKGR &= ~CPM_CLKGR_IPU)
3148#define __cpm_start_dmac() (REG_CPM_CLKGR &= ~CPM_CLKGR_DMAC)
3149#define __cpm_start_udc() (REG_CPM_CLKGR &= ~CPM_CLKGR_UDC)
3150#define __cpm_start_lcd() (REG_CPM_CLKGR &= ~CPM_CLKGR_LCD)
3151#define __cpm_start_cim() (REG_CPM_CLKGR &= ~CPM_CLKGR_CIM)
3152#define __cpm_start_sadc() (REG_CPM_CLKGR &= ~CPM_CLKGR_SADC)
3153#define __cpm_start_msc() (REG_CPM_CLKGR &= ~CPM_CLKGR_MSC)
3154#define __cpm_start_aic1() (REG_CPM_CLKGR &= ~CPM_CLKGR_AIC1)
3155#define __cpm_start_aic2() (REG_CPM_CLKGR &= ~CPM_CLKGR_AIC2)
3156#define __cpm_start_ssi() (REG_CPM_CLKGR &= ~CPM_CLKGR_SSI)
3157#define __cpm_start_i2c() (REG_CPM_CLKGR &= ~CPM_CLKGR_I2C)
3158#define __cpm_start_rtc() (REG_CPM_CLKGR &= ~CPM_CLKGR_RTC)
3159#define __cpm_start_tcu() (REG_CPM_CLKGR &= ~CPM_CLKGR_TCU)
3160#define __cpm_start_uart0() (REG_CPM_CLKGR &= ~CPM_CLKGR_UART0)
3161
3162#define __cpm_get_o1st() \
3163    ((REG_CPM_SCR & CPM_SCR_O1ST_MASK) >> CPM_SCR_O1ST_BIT)
3164#define __cpm_set_o1st(v) \
3165    (REG_CPM_SCR = (REG_CPM_SCR & ~CPM_SCR_O1ST_MASK) | ((v) << (CPM_SCR_O1ST_BIT)))
3166#define __cpm_suspend_usbphy() (REG_CPM_SCR |= CPM_SCR_USBPHY_SUSPEND)
3167#define __cpm_enable_osc_in_sleep() (REG_CPM_SCR |= CPM_SCR_OSC_ENABLE)
3168
3169
3170#ifdef CFG_EXTAL
3171#define JZ_EXTAL CFG_EXTAL
3172#else
3173#define JZ_EXTAL 3686400
3174#endif
3175#define JZ_EXTAL2 32768 /* RTC clock */
3176
3177/* PLL output frequency */
3178static __inline__ unsigned int __cpm_get_pllout(void)
3179{
3180    unsigned long m, n, no, pllout;
3181    unsigned long cppcr = REG_CPM_CPPCR;
3182    unsigned long od[4] = {1, 2, 2, 4};
3183    if ((cppcr & CPM_CPPCR_PLLEN) && !(cppcr & CPM_CPPCR_PLLBP)) {
3184        m = __cpm_get_pllm() + 2;
3185        n = __cpm_get_plln() + 2;
3186        no = od[__cpm_get_pllod()];
3187        pllout = ((JZ_EXTAL) / (n * no)) * m;
3188    } else
3189        pllout = JZ_EXTAL;
3190    return pllout;
3191}
3192
3193/* PLL output frequency for MSC/I2S/LCD/USB */
3194static __inline__ unsigned int __cpm_get_pllout2(void)
3195{
3196    if (REG_CPM_CPCCR & CPM_CPCCR_PCS)
3197        return __cpm_get_pllout();
3198    else
3199        return __cpm_get_pllout()/2;
3200}
3201
3202/* CPU core clock */
3203static __inline__ unsigned int __cpm_get_cclk(void)
3204{
3205    int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32};
3206
3207    return __cpm_get_pllout() / div[__cpm_get_cdiv()];
3208}
3209
3210/* AHB system bus clock */
3211static __inline__ unsigned int __cpm_get_hclk(void)
3212{
3213    int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32};
3214
3215    return __cpm_get_pllout() / div[__cpm_get_hdiv()];
3216}
3217
3218/* Memory bus clock */
3219static __inline__ unsigned int __cpm_get_mclk(void)
3220{
3221    int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32};
3222
3223    return __cpm_get_pllout() / div[__cpm_get_mdiv()];
3224}
3225
3226/* APB peripheral bus clock */
3227static __inline__ unsigned int __cpm_get_pclk(void)
3228{
3229    int div[] = {1, 2, 3, 4, 6, 8, 12, 16, 24, 32};
3230
3231    return __cpm_get_pllout() / div[__cpm_get_pdiv()];
3232}
3233
3234/* LCDC module clock */
3235static __inline__ unsigned int __cpm_get_lcdclk(void)
3236{
3237    return __cpm_get_pllout2() / (__cpm_get_ldiv() + 1);
3238}
3239
3240/* LCD pixel clock */
3241static __inline__ unsigned int __cpm_get_pixclk(void)
3242{
3243    return __cpm_get_pllout2() / (__cpm_get_pixdiv() + 1);
3244}
3245
3246/* I2S clock */
3247static __inline__ unsigned int __cpm_get_i2sclk(void)
3248{
3249    if (REG_CPM_CPCCR & CPM_CPCCR_I2CS) {
3250        return __cpm_get_pllout2() / (__cpm_get_i2sdiv() + 1);
3251    }
3252    else {
3253        return JZ_EXTAL;
3254    }
3255}
3256
3257/* USB clock */
3258static __inline__ unsigned int __cpm_get_usbclk(void)
3259{
3260    if (REG_CPM_CPCCR & CPM_CPCCR_UCS) {
3261        return __cpm_get_pllout2() / (__cpm_get_udiv() + 1);
3262    }
3263    else {
3264        return JZ_EXTAL;
3265    }
3266}
3267
3268/* MSC clock */
3269static __inline__ unsigned int __cpm_get_mscclk(void)
3270{
3271    return __cpm_get_pllout2() / (__cpm_get_mscdiv() + 1);
3272}
3273
3274/* EXTAL clock for UART,I2C,SSI,TCU,USB-PHY */
3275static __inline__ unsigned int __cpm_get_extalclk(void)
3276{
3277    return JZ_EXTAL;
3278}
3279
3280/* RTC clock for CPM,INTC,RTC,TCU,WDT */
3281static __inline__ unsigned int __cpm_get_rtcclk(void)
3282{
3283    return JZ_EXTAL2;
3284}
3285
3286/*
3287 * Output 24MHz for SD and 16MHz for MMC.
3288 */
3289static inline void __cpm_select_msc_clk(int sd)
3290{
3291    unsigned int pllout2 = __cpm_get_pllout2();
3292    unsigned int div = 0;
3293
3294    if (sd) {
3295        div = pllout2 / 24000000;
3296    }
3297    else {
3298        div = pllout2 / 16000000;
3299    }
3300
3301    REG_CPM_MSCCDR = div - 1;
3302}
3303
3304/***************************************************************************
3305 * TCU
3306 ***************************************************************************/
3307// where 'n' is the TCU channel
3308#define __tcu_select_extalclk(n) \
3309    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~(TCU_TCSR_EXT_EN | TCU_TCSR_RTC_EN | TCU_TCSR_PCK_EN)) | TCU_TCSR_EXT_EN)
3310#define __tcu_select_rtcclk(n) \
3311    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~(TCU_TCSR_EXT_EN | TCU_TCSR_RTC_EN | TCU_TCSR_PCK_EN)) | TCU_TCSR_RTC_EN)
3312#define __tcu_select_pclk(n) \
3313    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~(TCU_TCSR_EXT_EN | TCU_TCSR_RTC_EN | TCU_TCSR_PCK_EN)) | TCU_TCSR_PCK_EN)
3314
3315#define __tcu_select_clk_div1(n) \
3316    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~TCU_TCSR_PRESCALE_MASK) | TCU_TCSR_PRESCALE1)
3317#define __tcu_select_clk_div4(n) \
3318    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~TCU_TCSR_PRESCALE_MASK) | TCU_TCSR_PRESCALE4)
3319#define __tcu_select_clk_div16(n) \
3320    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~TCU_TCSR_PRESCALE_MASK) | TCU_TCSR_PRESCALE16)
3321#define __tcu_select_clk_div64(n) \
3322    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~TCU_TCSR_PRESCALE_MASK) | TCU_TCSR_PRESCALE64)
3323#define __tcu_select_clk_div256(n) \
3324    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~TCU_TCSR_PRESCALE_MASK) | TCU_TCSR_PRESCALE256)
3325#define __tcu_select_clk_div1024(n) \
3326    (REG_TCU_TCSR((n)) = (REG_TCU_TCSR((n)) & ~TCU_TCSR_PRESCALE_MASK) | TCU_TCSR_PRESCALE1024)
3327
3328#define __tcu_enable_pwm_output(n) ( REG_TCU_TCSR((n)) |= TCU_TCSR_PWM_EN )
3329#define __tcu_disable_pwm_output(n) ( REG_TCU_TCSR((n)) &= ~TCU_TCSR_PWM_EN )
3330
3331#define __tcu_init_pwm_output_high(n) ( REG_TCU_TCSR((n)) |= TCU_TCSR_PWM_INITL_HIGH )
3332#define __tcu_init_pwm_output_low(n) ( REG_TCU_TCSR((n)) &= ~TCU_TCSR_PWM_INITL_HIGH )
3333
3334#define __tcu_set_pwm_output_shutdown_graceful(n) ( REG_TCU_TCSR((n)) &= ~TCU_TCSR_PWM_SD )
3335#define __tcu_set_pwm_output_shutdown_abrupt(n) ( REG_TCU_TCSR((n)) |= TCU_TCSR_PWM_SD )
3336
3337#define __tcu_start_counter(n) ( REG_TCU_TESR |= (1 << (n)) )
3338#define __tcu_stop_counter(n) ( REG_TCU_TECR |= (1 << (n)) )
3339
3340#define __tcu_half_match_flag(n) ( REG_TCU_TFR & (1 << ((n) + 16)) )
3341#define __tcu_full_match_flag(n) ( REG_TCU_TFR & (1 << (n)) )
3342#define __tcu_set_half_match_flag(n) ( REG_TCU_TFSR = (1 << ((n) + 16)) )
3343#define __tcu_set_full_match_flag(n) ( REG_TCU_TFSR = (1 << (n)) )
3344#define __tcu_clear_half_match_flag(n) ( REG_TCU_TFCR = (1 << ((n) + 16)) )
3345#define __tcu_clear_full_match_flag(n) ( REG_TCU_TFCR = (1 << (n)) )
3346#define __tcu_mask_half_match_irq(n) ( REG_TCU_TMSR = (1 << ((n) + 16)) )
3347#define __tcu_mask_full_match_irq(n) ( REG_TCU_TMSR = (1 << (n)) )
3348#define __tcu_unmask_half_match_irq(n) ( REG_TCU_TMCR = (1 << ((n) + 16)) )
3349#define __tcu_unmask_full_match_irq(n) ( REG_TCU_TMCR = (1 << (n)) )
3350
3351#define __tcu_wdt_clock_stopped() ( REG_TCU_TSR & TCU_TSSR_WDTSC )
3352#define __tcu_timer_clock_stopped(n) ( REG_TCU_TSR & (1 << (n)) )
3353
3354#define __tcu_start_wdt_clock() ( REG_TCU_TSCR = TCU_TSSR_WDTSC )
3355#define __tcu_start_timer_clock(n) ( REG_TCU_TSCR = (1 << (n)) )
3356
3357#define __tcu_stop_wdt_clock() ( REG_TCU_TSSR = TCU_TSSR_WDTSC )
3358#define __tcu_stop_timer_clock(n) ( REG_TCU_TSSR = (1 << (n)) )
3359
3360#define __tcu_get_count(n) ( REG_TCU_TCNT((n)) )
3361#define __tcu_set_count(n,v) ( REG_TCU_TCNT((n)) = (v) )
3362#define __tcu_set_full_data(n,v) ( REG_TCU_TDFR((n)) = (v) )
3363#define __tcu_set_half_data(n,v) ( REG_TCU_TDHR((n)) = (v) )
3364
3365
3366/***************************************************************************
3367 * WDT
3368 ***************************************************************************/
3369#define __wdt_start() ( REG_WDT_TCER |= WDT_TCER_TCEN )
3370#define __wdt_stop() ( REG_WDT_TCER &= ~WDT_TCER_TCEN )
3371#define __wdt_set_count(v) ( REG_WDT_TCNT = (v) )
3372#define __wdt_set_data(v) ( REG_WDT_TDR = (v) )
3373
3374#define __wdt_select_extalclk() \
3375    (REG_WDT_TCSR = (REG_WDT_TCSR & ~(WDT_TCSR_EXT_EN | WDT_TCSR_RTC_EN | WDT_TCSR_PCK_EN)) | WDT_TCSR_EXT_EN)
3376#define __wdt_select_rtcclk() \
3377    (REG_WDT_TCSR = (REG_WDT_TCSR & ~(WDT_TCSR_EXT_EN | WDT_TCSR_RTC_EN | WDT_TCSR_PCK_EN)) | WDT_TCSR_RTC_EN)
3378#define __wdt_select_pclk() \
3379    (REG_WDT_TCSR = (REG_WDT_TCSR & ~(WDT_TCSR_EXT_EN | WDT_TCSR_RTC_EN | WDT_TCSR_PCK_EN)) | WDT_TCSR_PCK_EN)
3380
3381#define __wdt_select_clk_div1() \
3382    (REG_WDT_TCSR = (REG_WDT_TCSR & ~WDT_TCSR_PRESCALE_MASK) | WDT_TCSR_PRESCALE1)
3383#define __wdt_select_clk_div4() \
3384    (REG_WDT_TCSR = (REG_WDT_TCSR & ~WDT_TCSR_PRESCALE_MASK) | WDT_TCSR_PRESCALE4)
3385#define __wdt_select_clk_div16() \
3386    (REG_WDT_TCSR = (REG_WDT_TCSR & ~WDT_TCSR_PRESCALE_MASK) | WDT_TCSR_PRESCALE16)
3387#define __wdt_select_clk_div64() \
3388    (REG_WDT_TCSR = (REG_WDT_TCSR & ~WDT_TCSR_PRESCALE_MASK) | WDT_TCSR_PRESCALE64)
3389#define __wdt_select_clk_div256() \
3390    (REG_WDT_TCSR = (REG_WDT_TCSR & ~WDT_TCSR_PRESCALE_MASK) | WDT_TCSR_PRESCALE256)
3391#define __wdt_select_clk_div1024() \
3392    (REG_WDT_TCSR = (REG_WDT_TCSR & ~WDT_TCSR_PRESCALE_MASK) | WDT_TCSR_PRESCALE1024)
3393
3394
3395/***************************************************************************
3396 * UART
3397 ***************************************************************************/
3398
3399#define __uart_enable() ( REG8(UART0_FCR) |= UARTFCR_UUE | UARTFCR_FE )
3400#define __uart_disable() ( REG8(UART0_FCR) = ~UARTFCR_UUE )
3401
3402#define __uart_enable_transmit_irq() ( REG8(UART0_IER) |= UARTIER_TIE )
3403#define __uart_disable_transmit_irq() ( REG8(UART0_IER) &= ~UARTIER_TIE )
3404
3405#define __uart_enable_receive_irq() \
3406  ( REG8(UART0_IER) |= UARTIER_RIE | UARTIER_RLIE | UARTIER_RTIE )
3407#define __uart_disable_receive_irq() \
3408  ( REG8(UART0_IER) &= ~(UARTIER_RIE | UARTIER_RLIE | UARTIER_RTIE) )
3409
3410#define __uart_enable_loopback() ( REG8(UART0_MCR) |= UARTMCR_LOOP )
3411#define __uart_disable_loopback() ( REG8(UART0_MCR) &= ~UARTMCR_LOOP )
3412
3413#define __uart_set_8n1() ( REG8(UART0_LCR) = UARTLCR_WLEN_8 )
3414
3415#define __uart_set_baud(devclk, baud) \
3416  do { \
3417    REG8(UART0_LCR) |= UARTLCR_DLAB; \
3418    REG8(UART0_DLLR) = (devclk / 16 / baud) & 0xff; \
3419    REG8(UART0_DLHR) = ((devclk / 16 / baud) >> 8) & 0xff; \
3420    REG8(UART0_LCR) &= ~UARTLCR_DLAB; \
3421  } while (0)
3422
3423#define __uart_parity_error() ( (REG8(UART0_LSR) & UARTLSR_PER) != 0 )
3424#define __uart_clear_errors() \
3425  ( REG8(UART0_LSR) &= ~(UARTLSR_ORER | UARTLSR_BRK | UARTLSR_FER | UARTLSR_PER | UARTLSR_RFER) )
3426
3427#define __uart_transmit_fifo_empty() ( (REG8(UART0_LSR) & UARTLSR_TDRQ) != 0 )
3428#define __uart_transmit_end() ( (REG8(UART0_LSR) & UARTLSR_TEMT) != 0 )
3429#define __uart_transmit_char(ch) ( REG8(UART0_TDR) = (ch) )
3430#define __uart_receive_fifo_full() ( (REG8(UART0_LSR) & UARTLSR_DR) != 0 )
3431#define __uart_receive_ready() ( (REG8(UART0_LSR) & UARTLSR_DR) != 0 )
3432#define __uart_receive_char() REG8(UART0_RDR)
3433#define __uart_disable_irda() ( REG8(UART0_SIRCR) &= ~(SIRCR_TSIRE | SIRCR_RSIRE) )
3434#define __uart_enable_irda() \
3435  /* Tx high pulse as 0, Rx low pulse as 0 */ \
3436  ( REG8(UART0_SIRCR) = SIRCR_TSIRE | SIRCR_RSIRE | SIRCR_RXPL | SIRCR_TPWS )
3437
3438
3439/***************************************************************************
3440 * DMAC
3441 ***************************************************************************/
3442
3443/* n is the DMA channel (0 - 5) */
3444
3445#define __dmac_enable_module() \
3446  ( REG_DMAC_DMACR |= DMAC_DMACR_DMAE | DMAC_DMACR_PR_RR )
3447#define __dmac_disable_module() \
3448  ( REG_DMAC_DMACR &= ~DMAC_DMACR_DMAE )
3449
3450/* p=0,1,2,3 */
3451#define __dmac_set_priority(p) \
3452do { \
3453    REG_DMAC_DMACR &= ~DMAC_DMACR_PR_MASK; \
3454    REG_DMAC_DMACR |= ((p) << DMAC_DMACR_PR_BIT); \
3455} while (0)
3456
3457#define __dmac_test_halt_error() ( REG_DMAC_DMACR & DMAC_DMACR_HLT )
3458#define __dmac_test_addr_error() ( REG_DMAC_DMACR & DMAC_DMACR_AR )
3459
3460#define __dmac_enable_descriptor(n) \
3461  ( REG_DMAC_DCCSR((n)) &= ~DMAC_DCCSR_NDES )
3462#define __dmac_disable_descriptor(n) \
3463  ( REG_DMAC_DCCSR((n)) |= DMAC_DCCSR_NDES )
3464
3465#define __dmac_enable_channel(n) \
3466  ( REG_DMAC_DCCSR((n)) |= DMAC_DCCSR_EN )
3467#define __dmac_disable_channel(n) \
3468  ( REG_DMAC_DCCSR((n)) &= ~DMAC_DCCSR_EN )
3469#define __dmac_channel_enabled(n) \
3470  ( REG_DMAC_DCCSR((n)) & DMAC_DCCSR_EN )
3471
3472#define __dmac_channel_enable_irq(n) \
3473  ( REG_DMAC_DCMD((n)) |= DMAC_DCMD_TIE )
3474#define __dmac_channel_disable_irq(n) \
3475  ( REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_TIE )
3476
3477#define __dmac_channel_transmit_halt_detected(n) \
3478  ( REG_DMAC_DCCSR((n)) & DMAC_DCCSR_HLT )
3479#define __dmac_channel_transmit_end_detected(n) \
3480  ( REG_DMAC_DCCSR((n)) & DMAC_DCCSR_TT )
3481#define __dmac_channel_address_error_detected(n) \
3482  ( REG_DMAC_DCCSR((n)) & DMAC_DCCSR_AR )
3483#define __dmac_channel_count_terminated_detected(n) \
3484  ( REG_DMAC_DCCSR((n)) & DMAC_DCCSR_CT )
3485#define __dmac_channel_descriptor_invalid_detected(n) \
3486  ( REG_DMAC_DCCSR((n)) & DMAC_DCCSR_INV )
3487
3488#define __dmac_channel_clear_transmit_halt(n) \
3489  ( REG_DMAC_DCCSR(n) &= ~DMAC_DCCSR_HLT )
3490#define __dmac_channel_clear_transmit_end(n) \
3491  ( REG_DMAC_DCCSR(n) &= ~DMAC_DCCSR_TT )
3492#define __dmac_channel_clear_address_error(n) \
3493  ( REG_DMAC_DCCSR(n) &= ~DMAC_DCCSR_AR )
3494#define __dmac_channel_clear_count_terminated(n) \
3495  ( REG_DMAC_DCCSR((n)) &= ~DMAC_DCCSR_CT )
3496#define __dmac_channel_clear_descriptor_invalid(n) \
3497  ( REG_DMAC_DCCSR((n)) &= ~DMAC_DCCSR_INV )
3498
3499#define __dmac_channel_set_single_mode(n) \
3500  ( REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_TM )
3501#define __dmac_channel_set_block_mode(n) \
3502  ( REG_DMAC_DCMD((n)) |= DMAC_DCMD_TM )
3503
3504#define __dmac_channel_set_transfer_unit_32bit(n) \
3505do { \
3506    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_DS_MASK; \
3507    REG_DMAC_DCMD((n)) |= DMAC_DCMD_DS_32BIT; \
3508} while (0)
3509
3510#define __dmac_channel_set_transfer_unit_16bit(n) \
3511do { \
3512    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_DS_MASK; \
3513    REG_DMAC_DCMD((n)) |= DMAC_DCMD_DS_16BIT; \
3514} while (0)
3515
3516#define __dmac_channel_set_transfer_unit_8bit(n) \
3517do { \
3518    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_DS_MASK; \
3519    REG_DMAC_DCMD((n)) |= DMAC_DCMD_DS_8BIT; \
3520} while (0)
3521
3522#define __dmac_channel_set_transfer_unit_16byte(n) \
3523do { \
3524    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_DS_MASK; \
3525    REG_DMAC_DCMD((n)) |= DMAC_DCMD_DS_16BYTE; \
3526} while (0)
3527
3528#define __dmac_channel_set_transfer_unit_32byte(n) \
3529do { \
3530    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_DS_MASK; \
3531    REG_DMAC_DCMD((n)) |= DMAC_DCMD_DS_32BYTE; \
3532} while (0)
3533
3534/* w=8,16,32 */
3535#define __dmac_channel_set_dest_port_width(n,w) \
3536do { \
3537    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_DWDH_MASK; \
3538    REG_DMAC_DCMD((n)) |= DMAC_DCMD_DWDH_##w; \
3539} while (0)
3540
3541/* w=8,16,32 */
3542#define __dmac_channel_set_src_port_width(n,w) \
3543do { \
3544    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_SWDH_MASK; \
3545    REG_DMAC_DCMD((n)) |= DMAC_DCMD_SWDH_##w; \
3546} while (0)
3547
3548/* v=0-15 */
3549#define __dmac_channel_set_rdil(n,v) \
3550do { \
3551    REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_RDIL_MASK; \
3552    REG_DMAC_DCMD((n) |= ((v) << DMAC_DCMD_RDIL_BIT); \
3553} while (0)
3554
3555#define __dmac_channel_dest_addr_fixed(n) \
3556  ( REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_DAI )
3557#define __dmac_channel_dest_addr_increment(n) \
3558  ( REG_DMAC_DCMD((n)) |= DMAC_DCMD_DAI )
3559
3560#define __dmac_channel_src_addr_fixed(n) \
3561  ( REG_DMAC_DCMD((n)) &= ~DMAC_DCMD_SAI )
3562#define __dmac_channel_src_addr_increment(n) \
3563  ( REG_DMAC_DCMD((n)) |= DMAC_DCMD_SAI )
3564
3565#define __dmac_channel_set_doorbell(n) \
3566  ( REG_DMAC_DMADBSR = (1 << (n)) )
3567
3568#define __dmac_channel_irq_detected(n) ( REG_DMAC_DMAIPR & (1 << (n)) )
3569#define __dmac_channel_ack_irq(n) ( REG_DMAC_DMAIPR &= ~(1 << (n)) )
3570
3571static __inline__ int __dmac_get_irq(void)
3572{
3573    int i;
3574    for (i = 0; i < MAX_DMA_NUM; i++)
3575        if (__dmac_channel_irq_detected(i))
3576            return i;
3577    return -1;
3578}
3579
3580
3581/***************************************************************************
3582 * AIC (AC'97 & I2S Controller)
3583 ***************************************************************************/
3584
3585#define __aic_enable() ( REG_AIC_FR |= AIC_FR_ENB )
3586#define __aic_disable() ( REG_AIC_FR &= ~AIC_FR_ENB )
3587
3588#define __aic_select_ac97() ( REG_AIC_FR &= ~AIC_FR_AUSEL )
3589#define __aic_select_i2s() ( REG_AIC_FR |= AIC_FR_AUSEL )
3590
3591#define __i2s_as_master() ( REG_AIC_FR |= AIC_FR_BCKD | AIC_FR_SYNCD )
3592#define __i2s_as_slave() ( REG_AIC_FR &= ~(AIC_FR_BCKD | AIC_FR_SYNCD) )
3593#define __aic_reset_status() ( REG_AIC_FR & AIC_FR_RST )
3594
3595#define __aic_reset() \
3596do { \
3597        REG_AIC_FR |= AIC_FR_RST; \
3598} while(0)
3599
3600
3601#define __aic_set_transmit_trigger(n) \
3602do { \
3603    REG_AIC_FR &= ~AIC_FR_TFTH_MASK; \
3604    REG_AIC_FR |= ((n) << AIC_FR_TFTH_BIT); \
3605} while(0)
3606
3607#define __aic_set_receive_trigger(n) \
3608do { \
3609    REG_AIC_FR &= ~AIC_FR_RFTH_MASK; \
3610    REG_AIC_FR |= ((n) << AIC_FR_RFTH_BIT); \
3611} while(0)
3612
3613#define __aic_enable_record() ( REG_AIC_CR |= AIC_CR_EREC )
3614#define __aic_disable_record() ( REG_AIC_CR &= ~AIC_CR_EREC )
3615#define __aic_enable_replay() ( REG_AIC_CR |= AIC_CR_ERPL )
3616#define __aic_disable_replay() ( REG_AIC_CR &= ~AIC_CR_ERPL )
3617#define __aic_enable_loopback() ( REG_AIC_CR |= AIC_CR_ENLBF )
3618#define __aic_disable_loopback() ( REG_AIC_CR &= ~AIC_CR_ENLBF )
3619
3620#define __aic_flush_fifo() ( REG_AIC_CR |= AIC_CR_FLUSH )
3621#define __aic_unflush_fifo() ( REG_AIC_CR &= ~AIC_CR_FLUSH )
3622
3623#define __aic_enable_transmit_intr() \
3624  ( REG_AIC_CR |= (AIC_CR_ETFS | AIC_CR_ETUR) )
3625#define __aic_disable_transmit_intr() \
3626  ( REG_AIC_CR &= ~(AIC_CR_ETFS | AIC_CR_ETUR) )
3627#define __aic_enable_receive_intr() \
3628  ( REG_AIC_CR |= (AIC_CR_ERFS | AIC_CR_EROR) )
3629#define __aic_disable_receive_intr() \
3630  ( REG_AIC_CR &= ~(AIC_CR_ERFS | AIC_CR_EROR) )
3631
3632#define __aic_enable_transmit_dma() ( REG_AIC_CR |= AIC_CR_TDMS )
3633#define __aic_disable_transmit_dma() ( REG_AIC_CR &= ~AIC_CR_TDMS )
3634#define __aic_enable_receive_dma() ( REG_AIC_CR |= AIC_CR_RDMS )
3635#define __aic_disable_receive_dma() ( REG_AIC_CR &= ~AIC_CR_RDMS )
3636
3637#define __aic_enable_mono2stereo() ( REG_AIC_CR |= AIC_CR_M2S )
3638#define __aic_disable_mono2stereo() ( REG_AIC_CR &= ~AIC_CR_M2S )
3639#define __aic_enable_byteswap() ( REG_AIC_CR |= AIC_CR_ENDSW )
3640#define __aic_disable_byteswap() ( REG_AIC_CR &= ~AIC_CR_ENDSW )
3641#define __aic_enable_unsignadj() ( REG_AIC_CR |= AIC_CR_AVSTSU )
3642#define __aic_disable_unsignadj() ( REG_AIC_CR &= ~AIC_CR_AVSTSU )
3643
3644#define AC97_PCM_XS_L_FRONT AIC_ACCR1_XS_SLOT3
3645#define AC97_PCM_XS_R_FRONT AIC_ACCR1_XS_SLOT4
3646#define AC97_PCM_XS_CENTER AIC_ACCR1_XS_SLOT6
3647#define AC97_PCM_XS_L_SURR AIC_ACCR1_XS_SLOT7
3648#define AC97_PCM_XS_R_SURR AIC_ACCR1_XS_SLOT8
3649#define AC97_PCM_XS_LFE AIC_ACCR1_XS_SLOT9
3650
3651#define AC97_PCM_RS_L_FRONT AIC_ACCR1_RS_SLOT3
3652#define AC97_PCM_RS_R_FRONT AIC_ACCR1_RS_SLOT4
3653#define AC97_PCM_RS_CENTER AIC_ACCR1_RS_SLOT6
3654#define AC97_PCM_RS_L_SURR AIC_ACCR1_RS_SLOT7
3655#define AC97_PCM_RS_R_SURR AIC_ACCR1_RS_SLOT8
3656#define AC97_PCM_RS_LFE AIC_ACCR1_RS_SLOT9
3657
3658#define __ac97_set_xs_none() ( REG_AIC_ACCR1 &= ~AIC_ACCR1_XS_MASK )
3659#define __ac97_set_xs_mono() \
3660do { \
3661    REG_AIC_ACCR1 &= ~AIC_ACCR1_XS_MASK; \
3662    REG_AIC_ACCR1 |= AC97_PCM_XS_R_FRONT; \
3663} while(0)
3664#define __ac97_set_xs_stereo() \
3665do { \
3666    REG_AIC_ACCR1 &= ~AIC_ACCR1_XS_MASK; \
3667    REG_AIC_ACCR1 |= AC97_PCM_XS_L_FRONT | AC97_PCM_XS_R_FRONT; \
3668} while(0)
3669
3670/* In fact, only stereo is support now. */
3671#define __ac97_set_rs_none() ( REG_AIC_ACCR1 &= ~AIC_ACCR1_RS_MASK )
3672#define __ac97_set_rs_mono() \
3673do { \
3674    REG_AIC_ACCR1 &= ~AIC_ACCR1_RS_MASK; \
3675    REG_AIC_ACCR1 |= AC97_PCM_RS_R_FRONT; \
3676} while(0)
3677#define __ac97_set_rs_stereo() \
3678do { \
3679    REG_AIC_ACCR1 &= ~AIC_ACCR1_RS_MASK; \
3680    REG_AIC_ACCR1 |= AC97_PCM_RS_L_FRONT | AC97_PCM_RS_R_FRONT; \
3681} while(0)
3682
3683#define __ac97_warm_reset_codec() \
3684 do { \
3685    REG_AIC_ACCR2 |= AIC_ACCR2_SA; \
3686    REG_AIC_ACCR2 |= AIC_ACCR2_SS; \
3687    udelay(2); \
3688    REG_AIC_ACCR2 &= ~AIC_ACCR2_SS; \
3689    REG_AIC_ACCR2 &= ~AIC_ACCR2_SA; \
3690 } while (0)
3691
3692#define __ac97_cold_reset_codec() \
3693 do { \
3694    REG_AIC_ACCR2 |= AIC_ACCR2_SR; \
3695    udelay(2); \
3696    REG_AIC_ACCR2 &= ~AIC_ACCR2_SR; \
3697 } while (0)
3698
3699/* n=8,16,18,20 */
3700#define __ac97_set_iass(n) \
3701 ( REG_AIC_ACCR2 = (REG_AIC_ACCR2 & ~AIC_ACCR2_IASS_MASK) | AIC_ACCR2_IASS_##n##BIT )
3702#define __ac97_set_oass(n) \
3703 ( REG_AIC_ACCR2 = (REG_AIC_ACCR2 & ~AIC_ACCR2_OASS_MASK) | AIC_ACCR2_OASS_##n##BIT )
3704
3705#define __i2s_select_i2s() ( REG_AIC_I2SCR &= ~AIC_I2SCR_AMSL )
3706#define __i2s_select_msbjustified() ( REG_AIC_I2SCR |= AIC_I2SCR_AMSL )
3707
3708/* n=8,16,18,20,24 */
3709/*#define __i2s_set_sample_size(n) \
3710 ( REG_AIC_I2SCR |= (REG_AIC_I2SCR & ~AIC_I2SCR_WL_MASK) | AIC_I2SCR_WL_##n##BIT )*/
3711
3712#define __i2s_set_oss_sample_size(n) \
3713 ( REG_AIC_CR = (REG_AIC_CR & ~AIC_CR_OSS_MASK) | AIC_CR_OSS_##n##BIT )
3714#define __i2s_set_iss_sample_size(n) \
3715 ( REG_AIC_CR = (REG_AIC_CR & ~AIC_CR_ISS_MASK) | AIC_CR_ISS_##n##BIT )
3716
3717#define __i2s_stop_bitclk() ( REG_AIC_I2SCR |= AIC_I2SCR_STPBK )
3718#define __i2s_start_bitclk() ( REG_AIC_I2SCR &= ~AIC_I2SCR_STPBK )
3719
3720#define __aic_transmit_request() ( REG_AIC_SR & AIC_SR_TFS )
3721#define __aic_receive_request() ( REG_AIC_SR & AIC_SR_RFS )
3722#define __aic_transmit_underrun() ( REG_AIC_SR & AIC_SR_TUR )
3723#define __aic_receive_overrun() ( REG_AIC_SR & AIC_SR_ROR )
3724
3725#define __aic_clear_errors() ( REG_AIC_SR &= ~(AIC_SR_TUR | AIC_SR_ROR) )
3726
3727#define __aic_get_transmit_resident() \
3728  ( (REG_AIC_SR & AIC_SR_TFL_MASK) >> AIC_SR_TFL_BIT )
3729#define __aic_get_receive_count() \
3730  ( (REG_AIC_SR & AIC_SR_RFL_MASK) >> AIC_SR_RFL_BIT )
3731
3732#define __ac97_command_transmitted() ( REG_AIC_ACSR & AIC_ACSR_CADT )
3733#define __ac97_status_received() ( REG_AIC_ACSR & AIC_ACSR_SADR )
3734#define __ac97_status_receive_timeout() ( REG_AIC_ACSR & AIC_ACSR_RSTO )
3735#define __ac97_codec_is_low_power_mode() ( REG_AIC_ACSR & AIC_ACSR_CLPM )
3736#define __ac97_codec_is_ready() ( REG_AIC_ACSR & AIC_ACSR_CRDY )
3737#define __ac97_slot_error_detected() ( REG_AIC_ACSR & AIC_ACSR_SLTERR )
3738#define __ac97_clear_slot_error() ( REG_AIC_ACSR &= ~AIC_ACSR_SLTERR )
3739
3740#define __i2s_is_busy() ( REG_AIC_I2SSR & AIC_I2SSR_BSY )
3741
3742#define CODEC_READ_CMD (1 << 19)
3743#define CODEC_WRITE_CMD (0 << 19)
3744#define CODEC_REG_INDEX_BIT 12
3745#define CODEC_REG_INDEX_MASK (0x7f << CODEC_REG_INDEX_BIT) /* 18:12 */
3746#define CODEC_REG_DATA_BIT 4
3747#define CODEC_REG_DATA_MASK (0x0ffff << 4) /* 19:4 */
3748
3749#define __ac97_out_rcmd_addr(reg) \
3750do { \
3751    REG_AIC_ACCAR = CODEC_READ_CMD | ((reg) << CODEC_REG_INDEX_BIT); \
3752} while (0)
3753
3754#define __ac97_out_wcmd_addr(reg) \
3755do { \
3756    REG_AIC_ACCAR = CODEC_WRITE_CMD | ((reg) << CODEC_REG_INDEX_BIT); \
3757} while (0)
3758
3759#define __ac97_out_data(value) \
3760do { \
3761    REG_AIC_ACCDR = ((value) << CODEC_REG_DATA_BIT); \
3762} while (0)
3763
3764#define __ac97_in_data() \
3765 ( (REG_AIC_ACSDR & CODEC_REG_DATA_MASK) >> CODEC_REG_DATA_BIT )
3766
3767#define __ac97_in_status_addr() \
3768 ( (REG_AIC_ACSAR & CODEC_REG_INDEX_MASK) >> CODEC_REG_INDEX_BIT )
3769
3770#define __i2s_set_sample_rate(i2sclk, sync) \
3771  ( REG_AIC_I2SDIV = ((i2sclk) / (4*64)) / (sync) )
3772
3773#define __aic_write_tfifo(v) ( REG_AIC_DR = (v) )
3774#define __aic_read_rfifo() ( REG_AIC_DR )
3775
3776#define __aic_internal_codec() ( REG_AIC_FR |= AIC_FR_ICDC )
3777#define __aic_external_codec() ( REG_AIC_FR &= ~AIC_FR_ICDC )
3778
3779//
3780// Define next ops for AC97 compatible
3781//
3782
3783#define AC97_ACSR AIC_ACSR
3784
3785#define __ac97_enable() __aic_enable(); __aic_select_ac97()
3786#define __ac97_disable() __aic_disable()
3787#define __ac97_reset() __aic_reset()
3788
3789#define __ac97_set_transmit_trigger(n) __aic_set_transmit_trigger(n)
3790#define __ac97_set_receive_trigger(n) __aic_set_receive_trigger(n)
3791
3792#define __ac97_enable_record() __aic_enable_record()
3793#define __ac97_disable_record() __aic_disable_record()
3794#define __ac97_enable_replay() __aic_enable_replay()
3795#define __ac97_disable_replay() __aic_disable_replay()
3796#define __ac97_enable_loopback() __aic_enable_loopback()
3797#define __ac97_disable_loopback() __aic_disable_loopback()
3798
3799#define __ac97_enable_transmit_dma() __aic_enable_transmit_dma()
3800#define __ac97_disable_transmit_dma() __aic_disable_transmit_dma()
3801#define __ac97_enable_receive_dma() __aic_enable_receive_dma()
3802#define __ac97_disable_receive_dma() __aic_disable_receive_dma()
3803
3804#define __ac97_transmit_request() __aic_transmit_request()
3805#define __ac97_receive_request() __aic_receive_request()
3806#define __ac97_transmit_underrun() __aic_transmit_underrun()
3807#define __ac97_receive_overrun() __aic_receive_overrun()
3808
3809#define __ac97_clear_errors() __aic_clear_errors()
3810
3811#define __ac97_get_transmit_resident() __aic_get_transmit_resident()
3812#define __ac97_get_receive_count() __aic_get_receive_count()
3813
3814#define __ac97_enable_transmit_intr() __aic_enable_transmit_intr()
3815#define __ac97_disable_transmit_intr() __aic_disable_transmit_intr()
3816#define __ac97_enable_receive_intr() __aic_enable_receive_intr()
3817#define __ac97_disable_receive_intr() __aic_disable_receive_intr()
3818
3819#define __ac97_write_tfifo(v) __aic_write_tfifo(v)
3820#define __ac97_read_rfifo() __aic_read_rfifo()
3821
3822//
3823// Define next ops for I2S compatible
3824//
3825
3826#define I2S_ACSR AIC_I2SSR
3827
3828#define __i2s_enable() __aic_enable(); __aic_select_i2s()
3829#define __i2s_disable() __aic_disable()
3830#define __i2s_reset() __aic_reset()
3831
3832#define __i2s_set_transmit_trigger(n) __aic_set_transmit_trigger(n)
3833#define __i2s_set_receive_trigger(n) __aic_set_receive_trigger(n)
3834
3835#define __i2s_enable_record() __aic_enable_record()
3836#define __i2s_disable_record() __aic_disable_record()
3837#define __i2s_enable_replay() __aic_enable_replay()
3838#define __i2s_disable_replay() __aic_disable_replay()
3839#define __i2s_enable_loopback() __aic_enable_loopback()
3840#define __i2s_disable_loopback() __aic_disable_loopback()
3841
3842#define __i2s_enable_transmit_dma() __aic_enable_transmit_dma()
3843#define __i2s_disable_transmit_dma() __aic_disable_transmit_dma()
3844#define __i2s_enable_receive_dma() __aic_enable_receive_dma()
3845#define __i2s_disable_receive_dma() __aic_disable_receive_dma()
3846
3847#define __i2s_transmit_request() __aic_transmit_request()
3848#define __i2s_receive_request() __aic_receive_request()
3849#define __i2s_transmit_underrun() __aic_transmit_underrun()
3850#define __i2s_receive_overrun() __aic_receive_overrun()
3851
3852#define __i2s_clear_errors() __aic_clear_errors()
3853
3854#define __i2s_get_transmit_resident() __aic_get_transmit_resident()
3855#define __i2s_get_receive_count() __aic_get_receive_count()
3856
3857#define __i2s_enable_transmit_intr() __aic_enable_transmit_intr()
3858#define __i2s_disable_transmit_intr() __aic_disable_transmit_intr()
3859#define __i2s_enable_receive_intr() __aic_enable_receive_intr()
3860#define __i2s_disable_receive_intr() __aic_disable_receive_intr()
3861
3862#define __i2s_write_tfifo(v) __aic_write_tfifo(v)
3863#define __i2s_read_rfifo() __aic_read_rfifo()
3864
3865#define __i2s_reset_codec() \
3866 do { \
3867 } while (0)
3868
3869
3870/***************************************************************************
3871 * ICDC
3872 ***************************************************************************/
3873#define __i2s_internal_codec() __aic_internal_codec()
3874#define __i2s_external_codec() __aic_external_codec()
3875
3876/***************************************************************************
3877 * INTC
3878 ***************************************************************************/
3879#define __intc_unmask_irq(n) ( REG_INTC_IMCR = (1 << (n)) )
3880#define __intc_mask_irq(n) ( REG_INTC_IMSR = (1 << (n)) )
3881#define __intc_ack_irq(n) ( REG_INTC_IPR = (1 << (n)) )
3882
3883
3884/***************************************************************************
3885 * I2C
3886 ***************************************************************************/
3887
3888#define __i2c_enable() ( REG_I2C_CR |= I2C_CR_I2CE )
3889#define __i2c_disable() ( REG_I2C_CR &= ~I2C_CR_I2CE )
3890
3891#define __i2c_send_start() ( REG_I2C_CR |= I2C_CR_STA )
3892#define __i2c_send_stop() ( REG_I2C_CR |= I2C_CR_STO )
3893#define __i2c_send_ack() ( REG_I2C_CR &= ~I2C_CR_AC )
3894#define __i2c_send_nack() ( REG_I2C_CR |= I2C_CR_AC )
3895
3896#define __i2c_set_drf() ( REG_I2C_SR |= I2C_SR_DRF )
3897#define __i2c_clear_drf() ( REG_I2C_SR &= ~I2C_SR_DRF )
3898#define __i2c_check_drf() ( REG_I2C_SR & I2C_SR_DRF )
3899
3900#define __i2c_received_ack() ( !(REG_I2C_SR & I2C_SR_ACKF) )
3901#define __i2c_is_busy() ( REG_I2C_SR & I2C_SR_BUSY )
3902#define __i2c_transmit_ended() ( REG_I2C_SR & I2C_SR_TEND )
3903
3904#define __i2c_set_clk(dev_clk, i2c_clk) \
3905  ( REG_I2C_GR = (dev_clk) / (16*(i2c_clk)) - 1 )
3906
3907#define __i2c_read() ( REG_I2C_DR )
3908#define __i2c_write(val) ( REG_I2C_DR = (val) )
3909
3910
3911/***************************************************************************
3912 * MSC
3913 ***************************************************************************/
3914
3915#define __msc_start_op() \
3916  ( REG_MSC_STRPCL = MSC_STRPCL_START_OP | MSC_STRPCL_CLOCK_CONTROL_START )
3917
3918#define __msc_set_resto(to) ( REG_MSC_RESTO = to )
3919#define __msc_set_rdto(to) ( REG_MSC_RDTO = to )
3920#define __msc_set_cmd(cmd) ( REG_MSC_CMD = cmd )
3921#define __msc_set_arg(arg) ( REG_MSC_ARG = arg )
3922#define __msc_set_nob(nob) ( REG_MSC_NOB = nob )
3923#define __msc_get_nob() ( REG_MSC_NOB )
3924#define __msc_set_blklen(len) ( REG_MSC_BLKLEN = len )
3925#define __msc_set_cmdat(cmdat) ( REG_MSC_CMDAT = cmdat )
3926#define __msc_set_cmdat_ioabort() ( REG_MSC_CMDAT |= MSC_CMDAT_IO_ABORT )
3927#define __msc_clear_cmdat_ioabort() ( REG_MSC_CMDAT &= ~MSC_CMDAT_IO_ABORT )
3928
3929#define __msc_set_cmdat_bus_width1() \
3930do { \
3931    REG_MSC_CMDAT &= ~MSC_CMDAT_BUS_WIDTH_MASK; \
3932    REG_MSC_CMDAT |= MSC_CMDAT_BUS_WIDTH_1BIT; \
3933} while(0)
3934
3935#define __msc_set_cmdat_bus_width4() \
3936do { \
3937    REG_MSC_CMDAT &= ~MSC_CMDAT_BUS_WIDTH_MASK; \
3938    REG_MSC_CMDAT |= MSC_CMDAT_BUS_WIDTH_4BIT; \
3939} while(0)
3940
3941#define __msc_set_cmdat_dma_en() ( REG_MSC_CMDAT |= MSC_CMDAT_DMA_EN )
3942#define __msc_set_cmdat_init() ( REG_MSC_CMDAT |= MSC_CMDAT_INIT )
3943#define __msc_set_cmdat_busy() ( REG_MSC_CMDAT |= MSC_CMDAT_BUSY )
3944#define __msc_set_cmdat_stream() ( REG_MSC_CMDAT |= MSC_CMDAT_STREAM_BLOCK )
3945#define __msc_set_cmdat_block() ( REG_MSC_CMDAT &= ~MSC_CMDAT_STREAM_BLOCK )
3946#define __msc_set_cmdat_read() ( REG_MSC_CMDAT &= ~MSC_CMDAT_WRITE_READ )
3947#define __msc_set_cmdat_write() ( REG_MSC_CMDAT |= MSC_CMDAT_WRITE_READ )
3948#define __msc_set_cmdat_data_en() ( REG_MSC_CMDAT |= MSC_CMDAT_DATA_EN )
3949
3950/* r is MSC_CMDAT_RESPONSE_FORMAT_Rx or MSC_CMDAT_RESPONSE_FORMAT_NONE */
3951#define __msc_set_cmdat_res_format(r) \
3952do { \
3953    REG_MSC_CMDAT &= ~MSC_CMDAT_RESPONSE_FORMAT_MASK; \
3954    REG_MSC_CMDAT |= (r); \
3955} while(0)
3956
3957#define __msc_clear_cmdat() \
3958  REG_MSC_CMDAT &= ~( MSC_CMDAT_IO_ABORT | MSC_CMDAT_DMA_EN | MSC_CMDAT_INIT| \
3959  MSC_CMDAT_BUSY | MSC_CMDAT_STREAM_BLOCK | MSC_CMDAT_WRITE_READ | \
3960  MSC_CMDAT_DATA_EN | MSC_CMDAT_RESPONSE_FORMAT_MASK )
3961
3962#define __msc_get_imask() ( REG_MSC_IMASK )
3963#define __msc_mask_all_intrs() ( REG_MSC_IMASK = 0xff )
3964#define __msc_unmask_all_intrs() ( REG_MSC_IMASK = 0x00 )
3965#define __msc_mask_rd() ( REG_MSC_IMASK |= MSC_IMASK_RXFIFO_RD_REQ )
3966#define __msc_unmask_rd() ( REG_MSC_IMASK &= ~MSC_IMASK_RXFIFO_RD_REQ )
3967#define __msc_mask_wr() ( REG_MSC_IMASK |= MSC_IMASK_TXFIFO_WR_REQ )
3968#define __msc_unmask_wr() ( REG_MSC_IMASK &= ~MSC_IMASK_TXFIFO_WR_REQ )
3969#define __msc_mask_endcmdres() ( REG_MSC_IMASK |= MSC_IMASK_END_CMD_RES )
3970#define __msc_unmask_endcmdres() ( REG_MSC_IMASK &= ~MSC_IMASK_END_CMD_RES )
3971#define __msc_mask_datatrandone() ( REG_MSC_IMASK |= MSC_IMASK_DATA_TRAN_DONE )
3972#define __msc_unmask_datatrandone() ( REG_MSC_IMASK &= ~MSC_IMASK_DATA_TRAN_DONE )
3973#define __msc_mask_prgdone() ( REG_MSC_IMASK |= MSC_IMASK_PRG_DONE )
3974#define __msc_unmask_prgdone() ( REG_MSC_IMASK &= ~MSC_IMASK_PRG_DONE )
3975
3976/* n=0,1,2,3,4,5,6,7 */
3977#define __msc_set_clkrt(n) \
3978do { \
3979    REG_MSC_CLKRT = n; \
3980} while(0)
3981
3982#define __msc_get_ireg() ( REG_MSC_IREG )
3983#define __msc_ireg_rd() ( REG_MSC_IREG & MSC_IREG_RXFIFO_RD_REQ )
3984#define __msc_ireg_wr() ( REG_MSC_IREG & MSC_IREG_TXFIFO_WR_REQ )
3985#define __msc_ireg_end_cmd_res() ( REG_MSC_IREG & MSC_IREG_END_CMD_RES )
3986#define __msc_ireg_data_tran_done() ( REG_MSC_IREG & MSC_IREG_DATA_TRAN_DONE )
3987#define __msc_ireg_prg_done() ( REG_MSC_IREG & MSC_IREG_PRG_DONE )
3988#define __msc_ireg_clear_end_cmd_res() ( REG_MSC_IREG = MSC_IREG_END_CMD_RES )
3989#define __msc_ireg_clear_data_tran_done() ( REG_MSC_IREG = MSC_IREG_DATA_TRAN_DONE )
3990#define __msc_ireg_clear_prg_done() ( REG_MSC_IREG = MSC_IREG_PRG_DONE )
3991
3992#define __msc_get_stat() ( REG_MSC_STAT )
3993#define __msc_stat_not_end_cmd_res() ( (REG_MSC_STAT & MSC_STAT_END_CMD_RES) == 0)
3994#define __msc_stat_crc_err() \
3995  ( REG_MSC_STAT & (MSC_STAT_CRC_RES_ERR | MSC_STAT_CRC_READ_ERROR | MSC_STAT_CRC_WRITE_ERROR_YES) )
3996#define __msc_stat_res_crc_err() ( REG_MSC_STAT & MSC_STAT_CRC_RES_ERR )
3997#define __msc_stat_rd_crc_err() ( REG_MSC_STAT & MSC_STAT_CRC_READ_ERROR )
3998#define __msc_stat_wr_crc_err() ( REG_MSC_STAT & MSC_STAT_CRC_WRITE_ERROR_YES )
3999#define __msc_stat_resto_err() ( REG_MSC_STAT & MSC_STAT_TIME_OUT_RES )
4000#define __msc_stat_rdto_err() ( REG_MSC_STAT & MSC_STAT_TIME_OUT_READ )
4001
4002#define __msc_rd_resfifo() ( REG_MSC_RES )
4003#define __msc_rd_rxfifo() ( REG_MSC_RXFIFO )
4004#define __msc_wr_txfifo(v) ( REG_MSC_TXFIFO = v )
4005
4006#define __msc_reset() \
4007do { \
4008    REG_MSC_STRPCL = MSC_STRPCL_RESET; \
4009     while (REG_MSC_STAT & MSC_STAT_IS_RESETTING); \
4010} while (0)
4011
4012#define __msc_start_clk() \
4013do { \
4014    REG_MSC_STRPCL = MSC_STRPCL_CLOCK_CONTROL_START; \
4015} while (0)
4016
4017#define __msc_stop_clk() \
4018do { \
4019    REG_MSC_STRPCL = MSC_STRPCL_CLOCK_CONTROL_STOP; \
4020} while (0)
4021
4022#define MMC_CLK 19169200
4023#define SD_CLK 24576000
4024
4025/* msc_clk should little than pclk and little than clk retrieve from card */
4026#define __msc_calc_clk_divisor(type,dev_clk,msc_clk,lv) \
4027do { \
4028    unsigned int rate, pclk, i; \
4029    pclk = dev_clk; \
4030    rate = type?SD_CLK:MMC_CLK; \
4031      if (msc_clk && msc_clk < pclk) \
4032            pclk = msc_clk; \
4033    i = 0; \
4034      while (pclk < rate) \
4035        { \
4036              i ++; \
4037              rate >>= 1; \
4038        } \
4039      lv = i; \
4040} while(0)
4041
4042/* divide rate to little than or equal to 400kHz */
4043#define __msc_calc_slow_clk_divisor(type, lv) \
4044do { \
4045    unsigned int rate, i; \
4046    rate = (type?SD_CLK:MMC_CLK)/1000/400; \
4047    i = 0; \
4048    while (rate > 0) \
4049        { \
4050              rate >>= 1; \
4051              i ++; \
4052        } \
4053      lv = i; \
4054} while(0)
4055
4056
4057/***************************************************************************
4058 * SSI
4059 ***************************************************************************/
4060
4061#define __ssi_enable() ( REG_SSI_CR0 |= SSI_CR0_SSIE )
4062#define __ssi_disable() ( REG_SSI_CR0 &= ~SSI_CR0_SSIE )
4063#define __ssi_select_ce() ( REG_SSI_CR0 &= ~SSI_CR0_FSEL )
4064
4065#define __ssi_normal_mode() ( REG_SSI_ITR &= ~SSI_ITR_IVLTM_MASK )
4066
4067#define __ssi_select_ce2() \
4068do { \
4069    REG_SSI_CR0 |= SSI_CR0_FSEL; \
4070    REG_SSI_CR1 &= ~SSI_CR1_MULTS; \
4071} while (0)
4072
4073#define __ssi_select_gpc() \
4074do { \
4075    REG_SSI_CR0 &= ~SSI_CR0_FSEL; \
4076    REG_SSI_CR1 |= SSI_CR1_MULTS; \
4077} while (0)
4078
4079#define __ssi_enable_tx_intr() \
4080  ( REG_SSI_CR0 |= SSI_CR0_TIE | SSI_CR0_TEIE )
4081
4082#define __ssi_disable_tx_intr() \
4083  ( REG_SSI_CR0 &= ~(SSI_CR0_TIE | SSI_CR0_TEIE) )
4084
4085#define __ssi_enable_rx_intr() \
4086  ( REG_SSI_CR0 |= SSI_CR0_RIE | SSI_CR0_REIE )
4087
4088#define __ssi_disable_rx_intr() \
4089  ( REG_SSI_CR0 &= ~(SSI_CR0_RIE | SSI_CR0_REIE) )
4090
4091#define __ssi_enable_loopback() ( REG_SSI_CR0 |= SSI_CR0_LOOP )
4092#define __ssi_disable_loopback() ( REG_SSI_CR0 &= ~SSI_CR0_LOOP )
4093
4094#define __ssi_enable_receive() ( REG_SSI_CR0 &= ~SSI_CR0_DISREV )
4095#define __ssi_disable_receive() ( REG_SSI_CR0 |= SSI_CR0_DISREV )
4096
4097#define __ssi_finish_receive() \
4098  ( REG_SSI_CR0 |= (SSI_CR0_RFINE | SSI_CR0_RFINC) )
4099
4100#define __ssi_disable_recvfinish() \
4101  ( REG_SSI_CR0 &= ~(SSI_CR0_RFINE | SSI_CR0_RFINC) )
4102
4103#define __ssi_flush_txfifo() ( REG_SSI_CR0 |= SSI_CR0_TFLUSH )
4104#define __ssi_flush_rxfifo() ( REG_SSI_CR0 |= SSI_CR0_RFLUSH )
4105
4106#define __ssi_flush_fifo() \
4107  ( REG_SSI_CR0 |= SSI_CR0_TFLUSH | SSI_CR0_RFLUSH )
4108
4109#define __ssi_finish_transmit() ( REG_SSI_CR1 &= ~SSI_CR1_UNFIN )
4110
4111#define __ssi_spi_format() \
4112do { \
4113    REG_SSI_CR1 &= ~SSI_CR1_FMAT_MASK; \
4114    REG_SSI_CR1 |= SSI_CR1_FMAT_SPI; \
4115    REG_SSI_CR1 &= ~(SSI_CR1_TFVCK_MASK|SSI_CR1_TCKFI_MASK);\
4116    REG_SSI_CR1 |= (SSI_CR1_TFVCK_1 | SSI_CR1_TCKFI_1); \
4117} while (0)
4118
4119/* TI's SSP format, must clear SSI_CR1.UNFIN */
4120#define __ssi_ssp_format() \
4121do { \
4122    REG_SSI_CR1 &= ~(SSI_CR1_FMAT_MASK | SSI_CR1_UNFIN); \
4123    REG_SSI_CR1 |= SSI_CR1_FMAT_SSP; \
4124} while (0)
4125
4126/* National's Microwire format, must clear SSI_CR0.RFINE, and set max delay */
4127#define __ssi_microwire_format() \
4128do { \
4129    REG_SSI_CR1 &= ~SSI_CR1_FMAT_MASK; \
4130    REG_SSI_CR1 |= SSI_CR1_FMAT_MW1; \
4131    REG_SSI_CR1 &= ~(SSI_CR1_TFVCK_MASK|SSI_CR1_TCKFI_MASK);\
4132    REG_SSI_CR1 |= (SSI_CR1_TFVCK_3 | SSI_CR1_TCKFI_3); \
4133    REG_SSI_CR0 &= ~SSI_CR0_RFINE; \
4134} while (0)
4135
4136/* CE# level (FRMHL), CE# in interval time (ITFRM),
4137   clock phase and polarity (PHA POL),
4138   interval time (SSIITR), interval characters/frame (SSIICR) */
4139
4140 /* frmhl,endian,mcom,flen,pha,pol MASK */
4141#define SSICR1_MISC_MASK \
4142    ( SSI_CR1_FRMHL_MASK | SSI_CR1_LFST | SSI_CR1_MCOM_MASK \
4143    | SSI_CR1_FLEN_MASK | SSI_CR1_PHA | SSI_CR1_POL ) \
4144
4145#define __ssi_spi_set_misc(frmhl,endian,flen,mcom,pha,pol) \
4146do { \
4147    REG_SSI_CR1 &= ~SSICR1_MISC_MASK; \
4148    REG_SSI_CR1 |= ((frmhl) << 30) | ((endian) << 25) | \
4149         (((mcom) - 1) << 12) | (((flen) - 2) << 4) | \
4150             ((pha) << 1) | (pol); \
4151} while(0)
4152
4153/* Transfer with MSB or LSB first */
4154#define __ssi_set_msb() ( REG_SSI_CR1 &= ~SSI_CR1_LFST )
4155#define __ssi_set_lsb() ( REG_SSI_CR1 |= SSI_CR1_LFST )
4156
4157#define __ssi_set_frame_length(n) \
4158    REG_SSI_CR1 = (REG_SSI_CR1 & ~SSI_CR1_FLEN_MASK) | (((n) - 2) << 4)
4159
4160/* n = 1 - 16 */
4161#define __ssi_set_microwire_command_length(n) \
4162    ( REG_SSI_CR1 = ((REG_SSI_CR1 & ~SSI_CR1_MCOM_MASK) | SSI_CR1_MCOM_##n##BIT) )
4163
4164/* Set the clock phase for SPI */
4165#define __ssi_set_spi_clock_phase(n) \
4166    ( REG_SSI_CR1 = ((REG_SSI_CR1 & ~SSI_CR1_PHA) | (n&0x1)) )
4167
4168/* Set the clock polarity for SPI */
4169#define __ssi_set_spi_clock_polarity(n) \
4170    ( REG_SSI_CR1 = ((REG_SSI_CR1 & ~SSI_CR1_POL) | (n&0x1)) )
4171
4172/* n = ix8 */
4173#define __ssi_set_tx_trigger(n) \
4174do { \
4175    REG_SSI_CR1 &= ~SSI_CR1_TTRG_MASK; \
4176    REG_SSI_CR1 |= SSI_CR1_TTRG_##n; \
4177} while (0)
4178
4179/* n = ix8 */
4180#define __ssi_set_rx_trigger(n) \
4181do { \
4182    REG_SSI_CR1 &= ~SSI_CR1_RTRG_MASK; \
4183    REG_SSI_CR1 |= SSI_CR1_RTRG_##n; \
4184} while (0)
4185
4186#define __ssi_get_txfifo_count() \
4187    ( (REG_SSI_SR & SSI_SR_TFIFONUM_MASK) >> SSI_SR_TFIFONUM_BIT )
4188
4189#define __ssi_get_rxfifo_count() \
4190    ( (REG_SSI_SR & SSI_SR_RFIFONUM_MASK) >> SSI_SR_RFIFONUM_BIT )
4191
4192#define __ssi_clear_errors() \
4193    ( REG_SSI_SR &= ~(SSI_SR_UNDR | SSI_SR_OVER) )
4194
4195#define __ssi_transfer_end() ( REG_SSI_SR & SSI_SR_END )
4196#define __ssi_is_busy() ( REG_SSI_SR & SSI_SR_BUSY )
4197
4198#define __ssi_txfifo_full() ( REG_SSI_SR & SSI_SR_TFF )
4199#define __ssi_rxfifo_empty() ( REG_SSI_SR & SSI_SR_RFE )
4200#define __ssi_rxfifo_noempty() ( REG_SSI_SR & SSI_SR_RFHF )
4201
4202#define __ssi_set_clk(dev_clk, ssi_clk) \
4203  ( REG_SSI_GR = (dev_clk) / (2*(ssi_clk)) - 1 )
4204
4205#define __ssi_receive_data() REG_SSI_DR
4206#define __ssi_transmit_data(v) ( REG_SSI_DR = (v) )
4207
4208
4209/***************************************************************************
4210 * CIM
4211 ***************************************************************************/
4212
4213#define __cim_enable() ( REG_CIM_CTRL |= CIM_CTRL_ENA )
4214#define __cim_disable() ( REG_CIM_CTRL &= ~CIM_CTRL_ENA )
4215
4216#define __cim_input_data_inverse() ( REG_CIM_CFG |= CIM_CFG_INV_DAT )
4217#define __cim_input_data_normal() ( REG_CIM_CFG &= ~CIM_CFG_INV_DAT )
4218
4219#define __cim_vsync_active_low() ( REG_CIM_CFG |= CIM_CFG_VSP )
4220#define __cim_vsync_active_high() ( REG_CIM_CFG &= ~CIM_CFG_VSP )
4221
4222#define __cim_hsync_active_low() ( REG_CIM_CFG |= CIM_CFG_HSP )
4223#define __cim_hsync_active_high() ( REG_CIM_CFG &= ~CIM_CFG_HSP )
4224
4225#define __cim_sample_data_at_pclk_falling_edge() \
4226  ( REG_CIM_CFG |= CIM_CFG_PCP )
4227#define __cim_sample_data_at_pclk_rising_edge() \
4228  ( REG_CIM_CFG &= ~CIM_CFG_PCP )
4229
4230#define __cim_enable_dummy_zero() ( REG_CIM_CFG |= CIM_CFG_DUMMY_ZERO )
4231#define __cim_disable_dummy_zero() ( REG_CIM_CFG &= ~CIM_CFG_DUMMY_ZERO )
4232
4233#define __cim_select_external_vsync() ( REG_CIM_CFG |= CIM_CFG_EXT_VSYNC )
4234#define __cim_select_internal_vsync() ( REG_CIM_CFG &= ~CIM_CFG_EXT_VSYNC )
4235
4236/* n=0-7 */
4237#define __cim_set_data_packing_mode(n) \
4238do { \
4239    REG_CIM_CFG &= ~CIM_CFG_PACK_MASK; \
4240    REG_CIM_CFG |= (CIM_CFG_PACK_##n); \
4241} while (0)
4242
4243#define __cim_enable_ccir656_progressive_mode() \
4244do { \
4245    REG_CIM_CFG &= ~CIM_CFG_DSM_MASK; \
4246    REG_CIM_CFG |= CIM_CFG_DSM_CPM; \
4247} while (0)
4248
4249#define __cim_enable_ccir656_interlace_mode() \
4250do { \
4251    REG_CIM_CFG &= ~CIM_CFG_DSM_MASK; \
4252    REG_CIM_CFG |= CIM_CFG_DSM_CIM; \
4253} while (0)
4254
4255#define __cim_enable_gated_clock_mode() \
4256do { \
4257    REG_CIM_CFG &= ~CIM_CFG_DSM_MASK; \
4258    REG_CIM_CFG |= CIM_CFG_DSM_GCM; \
4259} while (0)
4260
4261#define __cim_enable_nongated_clock_mode() \
4262do { \
4263    REG_CIM_CFG &= ~CIM_CFG_DSM_MASK; \
4264    REG_CIM_CFG |= CIM_CFG_DSM_NGCM; \
4265} while (0)
4266
4267/* sclk:system bus clock
4268 * mclk: CIM master clock
4269 */
4270#define __cim_set_master_clk(sclk, mclk) \
4271do { \
4272    REG_CIM_CTRL &= ~CIM_CTRL_MCLKDIV_MASK; \
4273    REG_CIM_CTRL |= (((sclk)/(mclk) - 1) << CIM_CTRL_MCLKDIV_BIT); \
4274} while (0)
4275
4276#define __cim_enable_sof_intr() \
4277  ( REG_CIM_CTRL |= CIM_CTRL_DMA_SOFM )
4278#define __cim_disable_sof_intr() \
4279  ( REG_CIM_CTRL &= ~CIM_CTRL_DMA_SOFM )
4280
4281#define __cim_enable_eof_intr() \
4282  ( REG_CIM_CTRL |= CIM_CTRL_DMA_EOFM )
4283#define __cim_disable_eof_intr() \
4284  ( REG_CIM_CTRL &= ~CIM_CTRL_DMA_EOFM )
4285
4286#define __cim_enable_stop_intr() \
4287  ( REG_CIM_CTRL |= CIM_CTRL_DMA_STOPM )
4288#define __cim_disable_stop_intr() \
4289  ( REG_CIM_CTRL &= ~CIM_CTRL_DMA_STOPM )
4290
4291#define __cim_enable_trig_intr() \
4292  ( REG_CIM_CTRL |= CIM_CTRL_RXF_TRIGM )
4293#define __cim_disable_trig_intr() \
4294  ( REG_CIM_CTRL &= ~CIM_CTRL_RXF_TRIGM )
4295
4296#define __cim_enable_rxfifo_overflow_intr() \
4297  ( REG_CIM_CTRL |= CIM_CTRL_RXF_OFM )
4298#define __cim_disable_rxfifo_overflow_intr() \
4299  ( REG_CIM_CTRL &= ~CIM_CTRL_RXF_OFM )
4300
4301/* n=1-16 */
4302#define __cim_set_frame_rate(n) \
4303do { \
4304    REG_CIM_CTRL &= ~CIM_CTRL_FRC_MASK; \
4305    REG_CIM_CTRL |= CIM_CTRL_FRC_##n; \
4306} while (0)
4307
4308#define __cim_enable_dma() ( REG_CIM_CTRL |= CIM_CTRL_DMA_EN )
4309#define __cim_disable_dma() ( REG_CIM_CTRL &= ~CIM_CTRL_DMA_EN )
4310
4311#define __cim_reset_rxfifo() ( REG_CIM_CTRL |= CIM_CTRL_RXF_RST )
4312#define __cim_unreset_rxfifo() ( REG_CIM_CTRL &= ~CIM_CTRL_RXF_RST )
4313
4314/* n=4,8,12,16,20,24,28,32 */
4315#define __cim_set_rxfifo_trigger(n) \
4316do { \
4317    REG_CIM_CTRL &= ~CIM_CTRL_RXF_TRIG_MASK; \
4318    REG_CIM_CTRL |= CIM_CTRL_RXF_TRIG_##n; \
4319} while (0)
4320
4321#define __cim_clear_state() ( REG_CIM_STATE = 0 )
4322
4323#define __cim_disable_done() ( REG_CIM_STATE & CIM_STATE_VDD )
4324#define __cim_rxfifo_empty() ( REG_CIM_STATE & CIM_STATE_RXF_EMPTY )
4325#define __cim_rxfifo_reach_trigger() ( REG_CIM_STATE & CIM_STATE_RXF_TRIG )
4326#define __cim_rxfifo_overflow() ( REG_CIM_STATE & CIM_STATE_RXF_OF )
4327#define __cim_clear_rxfifo_overflow() ( REG_CIM_STATE &= ~CIM_STATE_RXF_OF )
4328#define __cim_dma_stop() ( REG_CIM_STATE & CIM_STATE_DMA_STOP )
4329#define __cim_dma_eof() ( REG_CIM_STATE & CIM_STATE_DMA_EOF )
4330#define __cim_dma_sof() ( REG_CIM_STATE & CIM_STATE_DMA_SOF )
4331
4332#define __cim_get_iid() ( REG_CIM_IID )
4333#define __cim_get_image_data() ( REG_CIM_RXFIFO )
4334#define __cim_get_dam_cmd() ( REG_CIM_CMD )
4335
4336#define __cim_set_da(a) ( REG_CIM_DA = (a) )
4337
4338/***************************************************************************
4339 * LCD
4340 ***************************************************************************/
4341#define __lcd_as_smart_lcd() ( REG_LCD_CFG |= (1<<LCD_CFG_LCDPIN_BIT) )
4342#define __lcd_as_general_lcd() ( REG_LCD_CFG &= ~(1<<LCD_CFG_LCDPIN_BIT) )
4343
4344#define __lcd_set_dis() ( REG_LCD_CTRL |= LCD_CTRL_DIS )
4345#define __lcd_clr_dis() ( REG_LCD_CTRL &= ~LCD_CTRL_DIS )
4346
4347#define __lcd_set_ena() ( REG_LCD_CTRL |= LCD_CTRL_ENA )
4348#define __lcd_clr_ena() ( REG_LCD_CTRL &= ~LCD_CTRL_ENA )
4349
4350/* n=1,2,4,8,16 */
4351#define __lcd_set_bpp(n) \
4352  ( REG_LCD_CTRL = (REG_LCD_CTRL & ~LCD_CTRL_BPP_MASK) | LCD_CTRL_BPP_##n )
4353
4354/* n=4,8,16 */
4355#define __lcd_set_burst_length(n) \
4356do { \
4357    REG_LCD_CTRL &= ~LCD_CTRL_BST_MASK; \
4358    REG_LCD_CTRL |= LCD_CTRL_BST_n##; \
4359} while (0)
4360
4361#define __lcd_select_rgb565() ( REG_LCD_CTRL &= ~LCD_CTRL_RGB555 )
4362#define __lcd_select_rgb555() ( REG_LCD_CTRL |= LCD_CTRL_RGB555 )
4363
4364#define __lcd_set_ofup() ( REG_LCD_CTRL |= LCD_CTRL_OFUP )
4365#define __lcd_clr_ofup() ( REG_LCD_CTRL &= ~LCD_CTRL_OFUP )
4366
4367/* n=2,4,16 */
4368#define __lcd_set_stn_frc(n) \
4369do { \
4370    REG_LCD_CTRL &= ~LCD_CTRL_FRC_MASK; \
4371    REG_LCD_CTRL |= LCD_CTRL_FRC_n##; \
4372} while (0)
4373
4374
4375#define __lcd_pixel_endian_little() ( REG_LCD_CTRL |= LCD_CTRL_PEDN )
4376#define __lcd_pixel_endian_big() ( REG_LCD_CTRL &= ~LCD_CTRL_PEDN )
4377
4378#define __lcd_reverse_byte_endian() ( REG_LCD_CTRL |= LCD_CTRL_BEDN )
4379#define __lcd_normal_byte_endian() ( REG_LCD_CTRL &= ~LCD_CTRL_BEDN )
4380
4381#define __lcd_enable_eof_intr() ( REG_LCD_CTRL |= LCD_CTRL_EOFM )
4382#define __lcd_disable_eof_intr() ( REG_LCD_CTRL &= ~LCD_CTRL_EOFM )
4383
4384#define __lcd_enable_sof_intr() ( REG_LCD_CTRL |= LCD_CTRL_SOFM )
4385#define __lcd_disable_sof_intr() ( REG_LCD_CTRL &= ~LCD_CTRL_SOFM )
4386
4387#define __lcd_enable_ofu_intr() ( REG_LCD_CTRL |= LCD_CTRL_OFUM )
4388#define __lcd_disable_ofu_intr() ( REG_LCD_CTRL &= ~LCD_CTRL_OFUM )
4389
4390#define __lcd_enable_ifu0_intr() ( REG_LCD_CTRL |= LCD_CTRL_IFUM0 )
4391#define __lcd_disable_ifu0_intr() ( REG_LCD_CTRL &= ~LCD_CTRL_IFUM0 )
4392
4393#define __lcd_enable_ifu1_intr() ( REG_LCD_CTRL |= LCD_CTRL_IFUM1 )
4394#define __lcd_disable_ifu1_intr() ( REG_LCD_CTRL &= ~LCD_CTRL_IFUM1 )
4395
4396#define __lcd_enable_ldd_intr() ( REG_LCD_CTRL |= LCD_CTRL_LDDM )
4397#define __lcd_disable_ldd_intr() ( REG_LCD_CTRL &= ~LCD_CTRL_LDDM )
4398
4399#define __lcd_enable_qd_intr() ( REG_LCD_CTRL |= LCD_CTRL_QDM )
4400#define __lcd_disable_qd_intr() ( REG_LCD_CTRL &= ~LCD_CTRL_QDM )
4401
4402
4403/* LCD status register indication */
4404
4405#define __lcd_quick_disable_done() ( REG_LCD_STATE & LCD_STATE_QD )
4406#define __lcd_disable_done() ( REG_LCD_STATE & LCD_STATE_LDD )
4407#define __lcd_infifo0_underrun() ( REG_LCD_STATE & LCD_STATE_IFU0 )
4408#define __lcd_infifo1_underrun() ( REG_LCD_STATE & LCD_STATE_IFU1 )
4409#define __lcd_outfifo_underrun() ( REG_LCD_STATE & LCD_STATE_OFU )
4410#define __lcd_start_of_frame() ( REG_LCD_STATE & LCD_STATE_SOF )
4411#define __lcd_end_of_frame() ( REG_LCD_STATE & LCD_STATE_EOF )
4412
4413#define __lcd_clr_outfifounderrun() ( REG_LCD_STATE &= ~LCD_STATE_OFU )
4414#define __lcd_clr_sof() ( REG_LCD_STATE &= ~LCD_STATE_SOF )
4415#define __lcd_clr_eof() ( REG_LCD_STATE &= ~LCD_STATE_EOF )
4416
4417#define __lcd_panel_white() ( REG_LCD_CFG |= LCD_CFG_WHITE )
4418#define __lcd_panel_black() ( REG_LCD_CFG &= ~LCD_CFG_WHITE )
4419
4420/* n=1,2,4,8 for single mono-STN
4421 * n=4,8 for dual mono-STN
4422 */
4423#define __lcd_set_panel_datawidth(n) \
4424do { \
4425    REG_LCD_CFG &= ~LCD_CFG_PDW_MASK; \
4426    REG_LCD_CFG |= LCD_CFG_PDW_n##; \
4427} while (0)
4428
4429/* m=LCD_CFG_MODE_GENERUIC_TFT_xxx */
4430#define __lcd_set_panel_mode(m) \
4431do { \
4432    REG_LCD_CFG &= ~LCD_CFG_MODE_MASK; \
4433    REG_LCD_CFG |= (m); \
4434} while(0)
4435
4436/* n = 0-255 */
4437#define __lcd_disable_ac_bias() ( REG_LCD_IO = 0xff )
4438#define __lcd_set_ac_bias(n) \
4439do { \
4440    REG_LCD_IO &= ~LCD_IO_ACB_MASK; \
4441    REG_LCD_IO |= ((n) << LCD_IO_ACB_BIT); \
4442} while(0)
4443
4444#define __lcd_io_set_dir() ( REG_LCD_IO |= LCD_IO_DIR )
4445#define __lcd_io_clr_dir() ( REG_LCD_IO &= ~LCD_IO_DIR )
4446
4447#define __lcd_io_set_dep() ( REG_LCD_IO |= LCD_IO_DEP )
4448#define __lcd_io_clr_dep() ( REG_LCD_IO &= ~LCD_IO_DEP )
4449
4450#define __lcd_io_set_vsp() ( REG_LCD_IO |= LCD_IO_VSP )
4451#define __lcd_io_clr_vsp() ( REG_LCD_IO &= ~LCD_IO_VSP )
4452
4453#define __lcd_io_set_hsp() ( REG_LCD_IO |= LCD_IO_HSP )
4454#define __lcd_io_clr_hsp() ( REG_LCD_IO &= ~LCD_IO_HSP )
4455
4456#define __lcd_io_set_pcp() ( REG_LCD_IO |= LCD_IO_PCP )
4457#define __lcd_io_clr_pcp() ( REG_LCD_IO &= ~LCD_IO_PCP )
4458
4459#define __lcd_vsync_get_vps() \
4460  ( (REG_LCD_VSYNC & LCD_VSYNC_VPS_MASK) >> LCD_VSYNC_VPS_BIT )
4461
4462#define __lcd_vsync_get_vpe() \
4463  ( (REG_LCD_VSYNC & LCD_VSYNC_VPE_MASK) >> LCD_VSYNC_VPE_BIT )
4464#define __lcd_vsync_set_vpe(n) \
4465do { \
4466    REG_LCD_VSYNC &= ~LCD_VSYNC_VPE_MASK; \
4467    REG_LCD_VSYNC |= (n) << LCD_VSYNC_VPE_BIT; \
4468} while (0)
4469
4470#define __lcd_hsync_get_hps() \
4471  ( (REG_LCD_HSYNC & LCD_HSYNC_HPS_MASK) >> LCD_HSYNC_HPS_BIT )
4472#define __lcd_hsync_set_hps(n) \
4473do { \
4474    REG_LCD_HSYNC &= ~LCD_HSYNC_HPS_MASK; \
4475    REG_LCD_HSYNC |= (n) << LCD_HSYNC_HPS_BIT; \
4476} while (0)
4477
4478#define __lcd_hsync_get_hpe() \
4479  ( (REG_LCD_HSYNC & LCD_HSYNC_HPE_MASK) >> LCD_VSYNC_HPE_BIT )
4480#define __lcd_hsync_set_hpe(n) \
4481do { \
4482    REG_LCD_HSYNC &= ~LCD_HSYNC_HPE_MASK; \
4483    REG_LCD_HSYNC |= (n) << LCD_HSYNC_HPE_BIT; \
4484} while (0)
4485
4486#define __lcd_vat_get_ht() \
4487  ( (REG_LCD_VAT & LCD_VAT_HT_MASK) >> LCD_VAT_HT_BIT )
4488#define __lcd_vat_set_ht(n) \
4489do { \
4490    REG_LCD_VAT &= ~LCD_VAT_HT_MASK; \
4491    REG_LCD_VAT |= (n) << LCD_VAT_HT_BIT; \
4492} while (0)
4493
4494#define __lcd_vat_get_vt() \
4495  ( (REG_LCD_VAT & LCD_VAT_VT_MASK) >> LCD_VAT_VT_BIT )
4496#define __lcd_vat_set_vt(n) \
4497do { \
4498    REG_LCD_VAT &= ~LCD_VAT_VT_MASK; \
4499    REG_LCD_VAT |= (n) << LCD_VAT_VT_BIT; \
4500} while (0)
4501
4502#define __lcd_dah_get_hds() \
4503  ( (REG_LCD_DAH & LCD_DAH_HDS_MASK) >> LCD_DAH_HDS_BIT )
4504#define __lcd_dah_set_hds(n) \
4505do { \
4506    REG_LCD_DAH &= ~LCD_DAH_HDS_MASK; \
4507    REG_LCD_DAH |= (n) << LCD_DAH_HDS_BIT; \
4508} while (0)
4509
4510#define __lcd_dah_get_hde() \
4511  ( (REG_LCD_DAH & LCD_DAH_HDE_MASK) >> LCD_DAH_HDE_BIT )
4512#define __lcd_dah_set_hde(n) \
4513do { \
4514    REG_LCD_DAH &= ~LCD_DAH_HDE_MASK; \
4515    REG_LCD_DAH |= (n) << LCD_DAH_HDE_BIT; \
4516} while (0)
4517
4518#define __lcd_dav_get_vds() \
4519  ( (REG_LCD_DAV & LCD_DAV_VDS_MASK) >> LCD_DAV_VDS_BIT )
4520#define __lcd_dav_set_vds(n) \
4521do { \
4522    REG_LCD_DAV &= ~LCD_DAV_VDS_MASK; \
4523    REG_LCD_DAV |= (n) << LCD_DAV_VDS_BIT; \
4524} while (0)
4525
4526#define __lcd_dav_get_vde() \
4527  ( (REG_LCD_DAV & LCD_DAV_VDE_MASK) >> LCD_DAV_VDE_BIT )
4528#define __lcd_dav_set_vde(n) \
4529do { \
4530    REG_LCD_DAV &= ~LCD_DAV_VDE_MASK; \
4531    REG_LCD_DAV |= (n) << LCD_DAV_VDE_BIT; \
4532} while (0)
4533
4534#define __lcd_cmd0_set_sofint() ( REG_LCD_CMD0 |= LCD_CMD_SOFINT )
4535#define __lcd_cmd0_clr_sofint() ( REG_LCD_CMD0 &= ~LCD_CMD_SOFINT )
4536#define __lcd_cmd1_set_sofint() ( REG_LCD_CMD1 |= LCD_CMD_SOFINT )
4537#define __lcd_cmd1_clr_sofint() ( REG_LCD_CMD1 &= ~LCD_CMD_SOFINT )
4538
4539#define __lcd_cmd0_set_eofint() ( REG_LCD_CMD0 |= LCD_CMD_EOFINT )
4540#define __lcd_cmd0_clr_eofint() ( REG_LCD_CMD0 &= ~LCD_CMD_EOFINT )
4541#define __lcd_cmd1_set_eofint() ( REG_LCD_CMD1 |= LCD_CMD_EOFINT )
4542#define __lcd_cmd1_clr_eofint() ( REG_LCD_CMD1 &= ~LCD_CMD_EOFINT )
4543
4544#define __lcd_cmd0_set_pal() ( REG_LCD_CMD0 |= LCD_CMD_PAL )
4545#define __lcd_cmd0_clr_pal() ( REG_LCD_CMD0 &= ~LCD_CMD_PAL )
4546
4547#define __lcd_cmd0_get_len() \
4548  ( (REG_LCD_CMD0 & LCD_CMD_LEN_MASK) >> LCD_CMD_LEN_BIT )
4549#define __lcd_cmd1_get_len() \
4550  ( (REG_LCD_CMD1 & LCD_CMD_LEN_MASK) >> LCD_CMD_LEN_BIT )
4551
4552/***************************************************************************
4553 * RTC ops
4554 ***************************************************************************/
4555
4556#define __rtc_write_ready() ( REG_RTC_RCR & RTC_RCR_WRDY )
4557#define __rtc_enabled() \
4558do{ \
4559      while(!__rtc_write_ready()); \
4560      REG_RTC_RCR |= RTC_RCR_RTCE ; \
4561}while(0) \
4562
4563#define __rtc_disabled() \
4564do{ \
4565      while(!__rtc_write_ready()); \
4566      REG_RTC_RCR &= ~RTC_RCR_RTCE; \
4567}while(0)
4568#define __rtc_enable_alarm() \
4569do{ \
4570      while(!__rtc_write_ready()); \
4571      REG_RTC_RCR |= RTC_RCR_AE; \
4572}while(0)
4573
4574#define __rtc_disable_alarm() \
4575do{ \
4576      while(!__rtc_write_ready()); \
4577      REG_RTC_RCR &= ~RTC_RCR_AE; \
4578}while(0)
4579
4580#define __rtc_enable_alarm_irq() \
4581do{ \
4582      while(!__rtc_write_ready()); \
4583      REG_RTC_RCR |= RTC_RCR_AIE; \
4584}while(0)
4585
4586#define __rtc_disable_alarm_irq() \
4587do{ \
4588      while(!__rtc_write_ready()); \
4589      REG_RTC_RCR &= ~RTC_RCR_AIE; \
4590}while(0)
4591#define __rtc_enable_Hz_irq() \
4592do{ \
4593      while(!__rtc_write_ready()); \
4594      REG_RTC_RCR |= RTC_RCR_HZIE; \
4595}while(0)
4596
4597#define __rtc_disable_Hz_irq() \
4598do{ \
4599      while(!__rtc_write_ready()); \
4600      REG_RTC_RCR &= ~RTC_RCR_HZIE; \
4601}while(0)
4602#define __rtc_get_1Hz_flag() \
4603do{ \
4604      while(!__rtc_write_ready()); \
4605      ((REG_RTC_RCR >> RTC_RCR_HZ) & 0x1); \
4606}while(0)
4607#define __rtc_clear_1Hz_flag() \
4608do{ \
4609      while(!__rtc_write_ready()); \
4610      REG_RTC_RCR &= ~RTC_RCR_HZ; \
4611}while(0)
4612#define __rtc_get_alarm_flag() \
4613do{ \
4614       while(!__rtc_write_ready()); \
4615      ((REG_RTC_RCR >> RTC_RCR_AF) & 0x1) \
4616while(0)
4617#define __rtc_clear_alarm_flag() \
4618do{ \
4619      while(!__rtc_write_ready()); \
4620      REG_RTC_RCR &= ~RTC_RCR_AF; \
4621}while(0)
4622#define __rtc_get_second() \
4623do{ \
4624       while(!__rtc_write_ready());\
4625       REG_RTC_RSR; \
4626}while(0)
4627 
4628#define __rtc_set_second(v) \
4629do{ \
4630      while(!__rtc_write_ready()); \
4631      REG_RTC_RSR = v; \
4632}while(0)
4633
4634#define __rtc_get_alarm_second() \
4635do{ \
4636      while(!__rtc_write_ready()); \
4637      REG_RTC_RSAR; \
4638}while(0)
4639
4640      
4641#define __rtc_set_alarm_second(v) \
4642do{ \
4643      while(!__rtc_write_ready()); \
4644      REG_RTC_RSAR = v; \
4645}while(0)
4646
4647#define __rtc_RGR_is_locked() \
4648do{ \
4649      while(!__rtc_write_ready()); \
4650      REG_RTC_RGR >> RTC_RGR_LOCK; \
4651}while(0)
4652#define __rtc_lock_RGR() \
4653do{ \
4654      while(!__rtc_write_ready()); \
4655      REG_RTC_RGR |= RTC_RGR_LOCK; \
4656}while(0)
4657
4658#define __rtc_unlock_RGR() \
4659do{ \
4660      while(!__rtc_write_ready()); \
4661      REG_RTC_RGR &= ~RTC_RGR_LOCK; \
4662}while(0)
4663
4664#define __rtc_get_adjc_val() \
4665do{ \
4666      while(!__rtc_write_ready()); \
4667      ( (REG_RTC_RGR & RTC_RGR_ADJC_MASK) >> RTC_RGR_ADJC_BIT ); \
4668}while(0)
4669#define __rtc_set_adjc_val(v) \
4670do{ \
4671      while(!__rtc_write_ready()); \
4672      ( REG_RTC_RGR = ( (REG_RTC_RGR & ~RTC_RGR_ADJC_MASK) | (v << RTC_RGR_ADJC_BIT) )) \
4673}while(0)
4674
4675#define __rtc_get_nc1Hz_val() \
4676      while(!__rtc_write_ready()); \
4677      ( (REG_RTC_RGR & RTC_RGR_NC1HZ_MASK) >> RTC_RGR_NC1HZ_BIT )
4678      
4679#define __rtc_set_nc1Hz_val(v) \
4680do{ \
4681      while(!__rtc_write_ready()); \
4682      ( REG_RTC_RGR = ( (REG_RTC_RGR & ~RTC_RGR_NC1HZ_MASK) | (v << RTC_RGR_NC1HZ_BIT) )) \
4683}while(0)
4684#define __rtc_power_down() \
4685do{ \
4686      while(!__rtc_write_ready()); \
4687      REG_RTC_HCR |= RTC_HCR_PD; \
4688}while(0)
4689
4690#define __rtc_get_hwfcr_val() \
4691do{ \
4692      while(!__rtc_write_ready()); \
4693      REG_RTC_HWFCR & RTC_HWFCR_MASK; \
4694}while(0)
4695#define __rtc_set_hwfcr_val(v) \
4696do{ \
4697      while(!__rtc_write_ready()); \
4698      REG_RTC_HWFCR = (v) & RTC_HWFCR_MASK; \
4699}while(0)
4700
4701#define __rtc_get_hrcr_val() \
4702do{ \
4703      while(!__rtc_write_ready()); \
4704      ( REG_RTC_HRCR & RTC_HRCR_MASK ); \
4705}while(0)
4706#define __rtc_set_hrcr_val(v) \
4707do{ \
4708      while(!__rtc_write_ready()); \
4709      ( REG_RTC_HRCR = (v) & RTC_HRCR_MASK ); \
4710}while(0)
4711
4712#define __rtc_enable_alarm_wakeup() \
4713do{ \
4714      while(!__rtc_write_ready()); \
4715      ( REG_RTC_HWCR |= RTC_HWCR_EALM ); \
4716}while(0)
4717
4718#define __rtc_disable_alarm_wakeup() \
4719do{ \
4720      while(!__rtc_write_ready()); \
4721      ( REG_RTC_HWCR &= ~RTC_HWCR_EALM ); \
4722}while(0)
4723
4724#define __rtc_status_hib_reset_occur() \
4725do{ \
4726      while(!__rtc_write_ready()); \
4727    ( (REG_RTC_HWRSR >> RTC_HWRSR_HR) & 0x1 ); \
4728}while(0)
4729#define __rtc_status_ppr_reset_occur() \
4730do{ \
4731      while(!__rtc_write_ready()); \
4732   ( (REG_RTC_HWRSR >> RTC_HWRSR_PPR) & 0x1 ); \
4733}while(0)
4734#define __rtc_status_wakeup_pin_waken_up() \
4735do{ \
4736      while(!__rtc_write_ready()); \
4737   ( (REG_RTC_HWRSR >> RTC_HWRSR_PIN) & 0x1 ); \
4738}while(0)
4739#define __rtc_status_alarm_waken_up() \
4740do{ \
4741      while(!__rtc_write_ready()); \
4742  ( (REG_RTC_HWRSR >> RTC_HWRSR_ALM) & 0x1 ); \
4743}while(0)
4744#define __rtc_clear_hib_stat_all() \
4745do{ \
4746      while(!__rtc_write_ready()); \
4747      ( REG_RTC_HWRSR = 0 ); \
4748}while(0)
4749
4750#define __rtc_get_scratch_pattern() \
4751      while(!__rtc_write_ready()); \
4752          (REG_RTC_HSPR)
4753#define __rtc_set_scratch_pattern(n) \
4754do{ \
4755      while(!__rtc_write_ready()); \
4756      (REG_RTC_HSPR = n ); \
4757}while(0)
4758
4759
4760#endif /* !__ASSEMBLY__ */
4761
4762#endif /* __JZ4740_H__ */
4763

Archive Download this file



interactive