diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-26 23:56:12 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-01-10 07:18:09 -0500 |
commit | 53ee5826546df6b1a989393f8701d1380a441449 (patch) | |
tree | fbf87e496f67bbfbfc53c27e18b78d770163bf08 /arch/blackfin/mach-bf527 | |
parent | 1a5c226528990515c603bae04233016411b44159 (diff) |
Blackfin: bf51x/bf52x: drop redundant "base" def/cdef header
The defBF512.h header exists only to include defBF51x_base.h, and it is
the only place where defBF51x_base.h is included. So move the contents
of the defBF51x_base.h header into the defBF512.h header.
Same situation for the other def/cdef pairs.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf527')
-rw-r--r-- | arch/blackfin/mach-bf527/include/mach/cdefBF522.h | 1089 | ||||
-rw-r--r-- | arch/blackfin/mach-bf527/include/mach/cdefBF52x_base.h | 1100 | ||||
-rw-r--r-- | arch/blackfin/mach-bf527/include/mach/defBF522.h | 1390 | ||||
-rw-r--r-- | arch/blackfin/mach-bf527/include/mach/defBF52x_base.h | 1400 |
4 files changed, 2475 insertions, 2504 deletions
diff --git a/arch/blackfin/mach-bf527/include/mach/cdefBF522.h b/arch/blackfin/mach-bf527/include/mach/cdefBF522.h index 238a9c5e89a4..493098340630 100644 --- a/arch/blackfin/mach-bf527/include/mach/cdefBF522.h +++ b/arch/blackfin/mach-bf527/include/mach/cdefBF522.h | |||
@@ -7,7 +7,1092 @@ | |||
7 | #ifndef _CDEF_BF522_H | 7 | #ifndef _CDEF_BF522_H |
8 | #define _CDEF_BF522_H | 8 | #define _CDEF_BF522_H |
9 | 9 | ||
10 | /* include cdefBF52x_base.h for the set of #defines that are common to all ADSP-BF52x processors */ | 10 | /* Clock and System Control (0xFFC00000 - 0xFFC000FF) */ |
11 | #include "cdefBF52x_base.h" | 11 | #define bfin_read_PLL_CTL() bfin_read16(PLL_CTL) |
12 | #define bfin_read_PLL_DIV() bfin_read16(PLL_DIV) | ||
13 | #define bfin_write_PLL_DIV(val) bfin_write16(PLL_DIV, val) | ||
14 | #define bfin_read_VR_CTL() bfin_read16(VR_CTL) | ||
15 | #define bfin_read_PLL_STAT() bfin_read16(PLL_STAT) | ||
16 | #define bfin_write_PLL_STAT(val) bfin_write16(PLL_STAT, val) | ||
17 | #define bfin_read_PLL_LOCKCNT() bfin_read16(PLL_LOCKCNT) | ||
18 | #define bfin_write_PLL_LOCKCNT(val) bfin_write16(PLL_LOCKCNT, val) | ||
19 | #define bfin_read_CHIPID() bfin_read32(CHIPID) | ||
20 | #define bfin_write_CHIPID(val) bfin_write32(CHIPID, val) | ||
21 | |||
22 | |||
23 | /* System Interrupt Controller (0xFFC00100 - 0xFFC001FF) */ | ||
24 | #define bfin_read_SWRST() bfin_read16(SWRST) | ||
25 | #define bfin_write_SWRST(val) bfin_write16(SWRST, val) | ||
26 | #define bfin_read_SYSCR() bfin_read16(SYSCR) | ||
27 | #define bfin_write_SYSCR(val) bfin_write16(SYSCR, val) | ||
28 | |||
29 | #define bfin_read_SIC_RVECT() bfin_read32(SIC_RVECT) | ||
30 | #define bfin_write_SIC_RVECT(val) bfin_write32(SIC_RVECT, val) | ||
31 | #define bfin_read_SIC_IMASK0() bfin_read32(SIC_IMASK0) | ||
32 | #define bfin_write_SIC_IMASK0(val) bfin_write32(SIC_IMASK0, val) | ||
33 | #define bfin_read_SIC_IMASK(x) bfin_read32(SIC_IMASK0 + (x << 6)) | ||
34 | #define bfin_write_SIC_IMASK(x, val) bfin_write32((SIC_IMASK0 + (x << 6)), val) | ||
35 | |||
36 | #define bfin_read_SIC_IAR0() bfin_read32(SIC_IAR0) | ||
37 | #define bfin_write_SIC_IAR0(val) bfin_write32(SIC_IAR0, val) | ||
38 | #define bfin_read_SIC_IAR1() bfin_read32(SIC_IAR1) | ||
39 | #define bfin_write_SIC_IAR1(val) bfin_write32(SIC_IAR1, val) | ||
40 | #define bfin_read_SIC_IAR2() bfin_read32(SIC_IAR2) | ||
41 | #define bfin_write_SIC_IAR2(val) bfin_write32(SIC_IAR2, val) | ||
42 | #define bfin_read_SIC_IAR3() bfin_read32(SIC_IAR3) | ||
43 | #define bfin_write_SIC_IAR3(val) bfin_write32(SIC_IAR3, val) | ||
44 | |||
45 | #define bfin_read_SIC_ISR0() bfin_read32(SIC_ISR0) | ||
46 | #define bfin_write_SIC_ISR0(val) bfin_write32(SIC_ISR0, val) | ||
47 | #define bfin_read_SIC_ISR(x) bfin_read32(SIC_ISR0 + (x << 6)) | ||
48 | #define bfin_write_SIC_ISR(x, val) bfin_write32((SIC_ISR0 + (x << 6)), val) | ||
49 | |||
50 | #define bfin_read_SIC_IWR0() bfin_read32(SIC_IWR0) | ||
51 | #define bfin_write_SIC_IWR0(val) bfin_write32(SIC_IWR0, val) | ||
52 | #define bfin_read_SIC_IWR(x) bfin_read32(SIC_IWR0 + (x << 6)) | ||
53 | #define bfin_write_SIC_IWR(x, val) bfin_write32((SIC_IWR0 + (x << 6)), val) | ||
54 | |||
55 | /* SIC Additions to ADSP-BF52x (0xFFC0014C - 0xFFC00162) */ | ||
56 | |||
57 | #define bfin_read_SIC_IMASK1() bfin_read32(SIC_IMASK1) | ||
58 | #define bfin_write_SIC_IMASK1(val) bfin_write32(SIC_IMASK1, val) | ||
59 | #define bfin_read_SIC_IAR4() bfin_read32(SIC_IAR4) | ||
60 | #define bfin_write_SIC_IAR4(val) bfin_write32(SIC_IAR4, val) | ||
61 | #define bfin_read_SIC_IAR5() bfin_read32(SIC_IAR5) | ||
62 | #define bfin_write_SIC_IAR5(val) bfin_write32(SIC_IAR5, val) | ||
63 | #define bfin_read_SIC_IAR6() bfin_read32(SIC_IAR6) | ||
64 | #define bfin_write_SIC_IAR6(val) bfin_write32(SIC_IAR6, val) | ||
65 | #define bfin_read_SIC_IAR7() bfin_read32(SIC_IAR7) | ||
66 | #define bfin_write_SIC_IAR7(val) bfin_write32(SIC_IAR7, val) | ||
67 | #define bfin_read_SIC_ISR1() bfin_read32(SIC_ISR1) | ||
68 | #define bfin_write_SIC_ISR1(val) bfin_write32(SIC_ISR1, val) | ||
69 | #define bfin_read_SIC_IWR1() bfin_read32(SIC_IWR1) | ||
70 | #define bfin_write_SIC_IWR1(val) bfin_write32(SIC_IWR1, val) | ||
71 | |||
72 | /* Watchdog Timer (0xFFC00200 - 0xFFC002FF) */ | ||
73 | #define bfin_read_WDOG_CTL() bfin_read16(WDOG_CTL) | ||
74 | #define bfin_write_WDOG_CTL(val) bfin_write16(WDOG_CTL, val) | ||
75 | #define bfin_read_WDOG_CNT() bfin_read32(WDOG_CNT) | ||
76 | #define bfin_write_WDOG_CNT(val) bfin_write32(WDOG_CNT, val) | ||
77 | #define bfin_read_WDOG_STAT() bfin_read32(WDOG_STAT) | ||
78 | #define bfin_write_WDOG_STAT(val) bfin_write32(WDOG_STAT, val) | ||
79 | |||
80 | |||
81 | /* Real Time Clock (0xFFC00300 - 0xFFC003FF) */ | ||
82 | #define bfin_read_RTC_STAT() bfin_read32(RTC_STAT) | ||
83 | #define bfin_write_RTC_STAT(val) bfin_write32(RTC_STAT, val) | ||
84 | #define bfin_read_RTC_ICTL() bfin_read16(RTC_ICTL) | ||
85 | #define bfin_write_RTC_ICTL(val) bfin_write16(RTC_ICTL, val) | ||
86 | #define bfin_read_RTC_ISTAT() bfin_read16(RTC_ISTAT) | ||
87 | #define bfin_write_RTC_ISTAT(val) bfin_write16(RTC_ISTAT, val) | ||
88 | #define bfin_read_RTC_SWCNT() bfin_read16(RTC_SWCNT) | ||
89 | #define bfin_write_RTC_SWCNT(val) bfin_write16(RTC_SWCNT, val) | ||
90 | #define bfin_read_RTC_ALARM() bfin_read32(RTC_ALARM) | ||
91 | #define bfin_write_RTC_ALARM(val) bfin_write32(RTC_ALARM, val) | ||
92 | #define bfin_read_RTC_FAST() bfin_read16(RTC_FAST) | ||
93 | #define bfin_write_RTC_FAST(val) bfin_write16(RTC_FAST, val) | ||
94 | #define bfin_read_RTC_PREN() bfin_read16(RTC_PREN) | ||
95 | #define bfin_write_RTC_PREN(val) bfin_write16(RTC_PREN, val) | ||
96 | |||
97 | |||
98 | /* UART0 Controller (0xFFC00400 - 0xFFC004FF) */ | ||
99 | #define bfin_read_UART0_THR() bfin_read16(UART0_THR) | ||
100 | #define bfin_write_UART0_THR(val) bfin_write16(UART0_THR, val) | ||
101 | #define bfin_read_UART0_RBR() bfin_read16(UART0_RBR) | ||
102 | #define bfin_write_UART0_RBR(val) bfin_write16(UART0_RBR, val) | ||
103 | #define bfin_read_UART0_DLL() bfin_read16(UART0_DLL) | ||
104 | #define bfin_write_UART0_DLL(val) bfin_write16(UART0_DLL, val) | ||
105 | #define bfin_read_UART0_IER() bfin_read16(UART0_IER) | ||
106 | #define bfin_write_UART0_IER(val) bfin_write16(UART0_IER, val) | ||
107 | #define bfin_read_UART0_DLH() bfin_read16(UART0_DLH) | ||
108 | #define bfin_write_UART0_DLH(val) bfin_write16(UART0_DLH, val) | ||
109 | #define bfin_read_UART0_IIR() bfin_read16(UART0_IIR) | ||
110 | #define bfin_write_UART0_IIR(val) bfin_write16(UART0_IIR, val) | ||
111 | #define bfin_read_UART0_LCR() bfin_read16(UART0_LCR) | ||
112 | #define bfin_write_UART0_LCR(val) bfin_write16(UART0_LCR, val) | ||
113 | #define bfin_read_UART0_MCR() bfin_read16(UART0_MCR) | ||
114 | #define bfin_write_UART0_MCR(val) bfin_write16(UART0_MCR, val) | ||
115 | #define bfin_read_UART0_LSR() bfin_read16(UART0_LSR) | ||
116 | #define bfin_write_UART0_LSR(val) bfin_write16(UART0_LSR, val) | ||
117 | #define bfin_read_UART0_MSR() bfin_read16(UART0_MSR) | ||
118 | #define bfin_write_UART0_MSR(val) bfin_write16(UART0_MSR, val) | ||
119 | #define bfin_read_UART0_SCR() bfin_read16(UART0_SCR) | ||
120 | #define bfin_write_UART0_SCR(val) bfin_write16(UART0_SCR, val) | ||
121 | #define bfin_read_UART0_GCTL() bfin_read16(UART0_GCTL) | ||
122 | #define bfin_write_UART0_GCTL(val) bfin_write16(UART0_GCTL, val) | ||
123 | |||
124 | |||
125 | /* SPI Controller (0xFFC00500 - 0xFFC005FF) */ | ||
126 | #define bfin_read_SPI_CTL() bfin_read16(SPI_CTL) | ||
127 | #define bfin_write_SPI_CTL(val) bfin_write16(SPI_CTL, val) | ||
128 | #define bfin_read_SPI_FLG() bfin_read16(SPI_FLG) | ||
129 | #define bfin_write_SPI_FLG(val) bfin_write16(SPI_FLG, val) | ||
130 | #define bfin_read_SPI_STAT() bfin_read16(SPI_STAT) | ||
131 | #define bfin_write_SPI_STAT(val) bfin_write16(SPI_STAT, val) | ||
132 | #define bfin_read_SPI_TDBR() bfin_read16(SPI_TDBR) | ||
133 | #define bfin_write_SPI_TDBR(val) bfin_write16(SPI_TDBR, val) | ||
134 | #define bfin_read_SPI_RDBR() bfin_read16(SPI_RDBR) | ||
135 | #define bfin_write_SPI_RDBR(val) bfin_write16(SPI_RDBR, val) | ||
136 | #define bfin_read_SPI_BAUD() bfin_read16(SPI_BAUD) | ||
137 | #define bfin_write_SPI_BAUD(val) bfin_write16(SPI_BAUD, val) | ||
138 | #define bfin_read_SPI_SHADOW() bfin_read16(SPI_SHADOW) | ||
139 | #define bfin_write_SPI_SHADOW(val) bfin_write16(SPI_SHADOW, val) | ||
140 | |||
141 | |||
142 | /* TIMER0-7 Registers (0xFFC00600 - 0xFFC006FF) */ | ||
143 | #define bfin_read_TIMER0_CONFIG() bfin_read16(TIMER0_CONFIG) | ||
144 | #define bfin_write_TIMER0_CONFIG(val) bfin_write16(TIMER0_CONFIG, val) | ||
145 | #define bfin_read_TIMER0_COUNTER() bfin_read32(TIMER0_COUNTER) | ||
146 | #define bfin_write_TIMER0_COUNTER(val) bfin_write32(TIMER0_COUNTER, val) | ||
147 | #define bfin_read_TIMER0_PERIOD() bfin_read32(TIMER0_PERIOD) | ||
148 | #define bfin_write_TIMER0_PERIOD(val) bfin_write32(TIMER0_PERIOD, val) | ||
149 | #define bfin_read_TIMER0_WIDTH() bfin_read32(TIMER0_WIDTH) | ||
150 | #define bfin_write_TIMER0_WIDTH(val) bfin_write32(TIMER0_WIDTH, val) | ||
151 | |||
152 | #define bfin_read_TIMER1_CONFIG() bfin_read16(TIMER1_CONFIG) | ||
153 | #define bfin_write_TIMER1_CONFIG(val) bfin_write16(TIMER1_CONFIG, val) | ||
154 | #define bfin_read_TIMER1_COUNTER() bfin_read32(TIMER1_COUNTER) | ||
155 | #define bfin_write_TIMER1_COUNTER(val) bfin_write32(TIMER1_COUNTER, val) | ||
156 | #define bfin_read_TIMER1_PERIOD() bfin_read32(TIMER1_PERIOD) | ||
157 | #define bfin_write_TIMER1_PERIOD(val) bfin_write32(TIMER1_PERIOD, val) | ||
158 | #define bfin_read_TIMER1_WIDTH() bfin_read32(TIMER1_WIDTH) | ||
159 | #define bfin_write_TIMER1_WIDTH(val) bfin_write32(TIMER1_WIDTH, val) | ||
160 | |||
161 | #define bfin_read_TIMER2_CONFIG() bfin_read16(TIMER2_CONFIG) | ||
162 | #define bfin_write_TIMER2_CONFIG(val) bfin_write16(TIMER2_CONFIG, val) | ||
163 | #define bfin_read_TIMER2_COUNTER() bfin_read32(TIMER2_COUNTER) | ||
164 | #define bfin_write_TIMER2_COUNTER(val) bfin_write32(TIMER2_COUNTER, val) | ||
165 | #define bfin_read_TIMER2_PERIOD() bfin_read32(TIMER2_PERIOD) | ||
166 | #define bfin_write_TIMER2_PERIOD(val) bfin_write32(TIMER2_PERIOD, val) | ||
167 | #define bfin_read_TIMER2_WIDTH() bfin_read32(TIMER2_WIDTH) | ||
168 | #define bfin_write_TIMER2_WIDTH(val) bfin_write32(TIMER2_WIDTH, val) | ||
169 | |||
170 | #define bfin_read_TIMER3_CONFIG() bfin_read16(TIMER3_CONFIG) | ||
171 | #define bfin_write_TIMER3_CONFIG(val) bfin_write16(TIMER3_CONFIG, val) | ||
172 | #define bfin_read_TIMER3_COUNTER() bfin_read32(TIMER3_COUNTER) | ||
173 | #define bfin_write_TIMER3_COUNTER(val) bfin_write32(TIMER3_COUNTER, val) | ||
174 | #define bfin_read_TIMER3_PERIOD() bfin_read32(TIMER3_PERIOD) | ||
175 | #define bfin_write_TIMER3_PERIOD(val) bfin_write32(TIMER3_PERIOD, val) | ||
176 | #define bfin_read_TIMER3_WIDTH() bfin_read32(TIMER3_WIDTH) | ||
177 | #define bfin_write_TIMER3_WIDTH(val) bfin_write32(TIMER3_WIDTH, val) | ||
178 | |||
179 | #define bfin_read_TIMER4_CONFIG() bfin_read16(TIMER4_CONFIG) | ||
180 | #define bfin_write_TIMER4_CONFIG(val) bfin_write16(TIMER4_CONFIG, val) | ||
181 | #define bfin_read_TIMER4_COUNTER() bfin_read32(TIMER4_COUNTER) | ||
182 | #define bfin_write_TIMER4_COUNTER(val) bfin_write32(TIMER4_COUNTER, val) | ||
183 | #define bfin_read_TIMER4_PERIOD() bfin_read32(TIMER4_PERIOD) | ||
184 | #define bfin_write_TIMER4_PERIOD(val) bfin_write32(TIMER4_PERIOD, val) | ||
185 | #define bfin_read_TIMER4_WIDTH() bfin_read32(TIMER4_WIDTH) | ||
186 | #define bfin_write_TIMER4_WIDTH(val) bfin_write32(TIMER4_WIDTH, val) | ||
187 | |||
188 | #define bfin_read_TIMER5_CONFIG() bfin_read16(TIMER5_CONFIG) | ||
189 | #define bfin_write_TIMER5_CONFIG(val) bfin_write16(TIMER5_CONFIG, val) | ||
190 | #define bfin_read_TIMER5_COUNTER() bfin_read32(TIMER5_COUNTER) | ||
191 | #define bfin_write_TIMER5_COUNTER(val) bfin_write32(TIMER5_COUNTER, val) | ||
192 | #define bfin_read_TIMER5_PERIOD() bfin_read32(TIMER5_PERIOD) | ||
193 | #define bfin_write_TIMER5_PERIOD(val) bfin_write32(TIMER5_PERIOD, val) | ||
194 | #define bfin_read_TIMER5_WIDTH() bfin_read32(TIMER5_WIDTH) | ||
195 | #define bfin_write_TIMER5_WIDTH(val) bfin_write32(TIMER5_WIDTH, val) | ||
196 | |||
197 | #define bfin_read_TIMER6_CONFIG() bfin_read16(TIMER6_CONFIG) | ||
198 | #define bfin_write_TIMER6_CONFIG(val) bfin_write16(TIMER6_CONFIG, val) | ||
199 | #define bfin_read_TIMER6_COUNTER() bfin_read32(TIMER6_COUNTER) | ||
200 | #define bfin_write_TIMER6_COUNTER(val) bfin_write32(TIMER6_COUNTER, val) | ||
201 | #define bfin_read_TIMER6_PERIOD() bfin_read32(TIMER6_PERIOD) | ||
202 | #define bfin_write_TIMER6_PERIOD(val) bfin_write32(TIMER6_PERIOD, val) | ||
203 | #define bfin_read_TIMER6_WIDTH() bfin_read32(TIMER6_WIDTH) | ||
204 | #define bfin_write_TIMER6_WIDTH(val) bfin_write32(TIMER6_WIDTH, val) | ||
205 | |||
206 | #define bfin_read_TIMER7_CONFIG() bfin_read16(TIMER7_CONFIG) | ||
207 | #define bfin_write_TIMER7_CONFIG(val) bfin_write16(TIMER7_CONFIG, val) | ||
208 | #define bfin_read_TIMER7_COUNTER() bfin_read32(TIMER7_COUNTER) | ||
209 | #define bfin_write_TIMER7_COUNTER(val) bfin_write32(TIMER7_COUNTER, val) | ||
210 | #define bfin_read_TIMER7_PERIOD() bfin_read32(TIMER7_PERIOD) | ||
211 | #define bfin_write_TIMER7_PERIOD(val) bfin_write32(TIMER7_PERIOD, val) | ||
212 | #define bfin_read_TIMER7_WIDTH() bfin_read32(TIMER7_WIDTH) | ||
213 | #define bfin_write_TIMER7_WIDTH(val) bfin_write32(TIMER7_WIDTH, val) | ||
214 | |||
215 | #define bfin_read_TIMER_ENABLE() bfin_read16(TIMER_ENABLE) | ||
216 | #define bfin_write_TIMER_ENABLE(val) bfin_write16(TIMER_ENABLE, val) | ||
217 | #define bfin_read_TIMER_DISABLE() bfin_read16(TIMER_DISABLE) | ||
218 | #define bfin_write_TIMER_DISABLE(val) bfin_write16(TIMER_DISABLE, val) | ||
219 | #define bfin_read_TIMER_STATUS() bfin_read32(TIMER_STATUS) | ||
220 | #define bfin_write_TIMER_STATUS(val) bfin_write32(TIMER_STATUS, val) | ||
221 | |||
222 | |||
223 | /* General Purpose I/O Port F (0xFFC00700 - 0xFFC007FF) */ | ||
224 | #define bfin_read_PORTFIO() bfin_read16(PORTFIO) | ||
225 | #define bfin_write_PORTFIO(val) bfin_write16(PORTFIO, val) | ||
226 | #define bfin_read_PORTFIO_CLEAR() bfin_read16(PORTFIO_CLEAR) | ||
227 | #define bfin_write_PORTFIO_CLEAR(val) bfin_write16(PORTFIO_CLEAR, val) | ||
228 | #define bfin_read_PORTFIO_SET() bfin_read16(PORTFIO_SET) | ||
229 | #define bfin_write_PORTFIO_SET(val) bfin_write16(PORTFIO_SET, val) | ||
230 | #define bfin_read_PORTFIO_TOGGLE() bfin_read16(PORTFIO_TOGGLE) | ||
231 | #define bfin_write_PORTFIO_TOGGLE(val) bfin_write16(PORTFIO_TOGGLE, val) | ||
232 | #define bfin_read_PORTFIO_MASKA() bfin_read16(PORTFIO_MASKA) | ||
233 | #define bfin_write_PORTFIO_MASKA(val) bfin_write16(PORTFIO_MASKA, val) | ||
234 | #define bfin_read_PORTFIO_MASKA_CLEAR() bfin_read16(PORTFIO_MASKA_CLEAR) | ||
235 | #define bfin_write_PORTFIO_MASKA_CLEAR(val) bfin_write16(PORTFIO_MASKA_CLEAR, val) | ||
236 | #define bfin_read_PORTFIO_MASKA_SET() bfin_read16(PORTFIO_MASKA_SET) | ||
237 | #define bfin_write_PORTFIO_MASKA_SET(val) bfin_write16(PORTFIO_MASKA_SET, val) | ||
238 | #define bfin_read_PORTFIO_MASKA_TOGGLE() bfin_read16(PORTFIO_MASKA_TOGGLE) | ||
239 | #define bfin_write_PORTFIO_MASKA_TOGGLE(val) bfin_write16(PORTFIO_MASKA_TOGGLE, val) | ||
240 | #define bfin_read_PORTFIO_MASKB() bfin_read16(PORTFIO_MASKB) | ||
241 | #define bfin_write_PORTFIO_MASKB(val) bfin_write16(PORTFIO_MASKB, val) | ||
242 | #define bfin_read_PORTFIO_MASKB_CLEAR() bfin_read16(PORTFIO_MASKB_CLEAR) | ||
243 | #define bfin_write_PORTFIO_MASKB_CLEAR(val) bfin_write16(PORTFIO_MASKB_CLEAR, val) | ||
244 | #define bfin_read_PORTFIO_MASKB_SET() bfin_read16(PORTFIO_MASKB_SET) | ||
245 | #define bfin_write_PORTFIO_MASKB_SET(val) bfin_write16(PORTFIO_MASKB_SET, val) | ||
246 | #define bfin_read_PORTFIO_MASKB_TOGGLE() bfin_read16(PORTFIO_MASKB_TOGGLE) | ||
247 | #define bfin_write_PORTFIO_MASKB_TOGGLE(val) bfin_write16(PORTFIO_MASKB_TOGGLE, val) | ||
248 | #define bfin_read_PORTFIO_DIR() bfin_read16(PORTFIO_DIR) | ||
249 | #define bfin_write_PORTFIO_DIR(val) bfin_write16(PORTFIO_DIR, val) | ||
250 | #define bfin_read_PORTFIO_POLAR() bfin_read16(PORTFIO_POLAR) | ||
251 | #define bfin_write_PORTFIO_POLAR(val) bfin_write16(PORTFIO_POLAR, val) | ||
252 | #define bfin_read_PORTFIO_EDGE() bfin_read16(PORTFIO_EDGE) | ||
253 | #define bfin_write_PORTFIO_EDGE(val) bfin_write16(PORTFIO_EDGE, val) | ||
254 | #define bfin_read_PORTFIO_BOTH() bfin_read16(PORTFIO_BOTH) | ||
255 | #define bfin_write_PORTFIO_BOTH(val) bfin_write16(PORTFIO_BOTH, val) | ||
256 | #define bfin_read_PORTFIO_INEN() bfin_read16(PORTFIO_INEN) | ||
257 | #define bfin_write_PORTFIO_INEN(val) bfin_write16(PORTFIO_INEN, val) | ||
258 | |||
259 | |||
260 | /* SPORT0 Controller (0xFFC00800 - 0xFFC008FF) */ | ||
261 | #define bfin_read_SPORT0_TCR1() bfin_read16(SPORT0_TCR1) | ||
262 | #define bfin_write_SPORT0_TCR1(val) bfin_write16(SPORT0_TCR1, val) | ||
263 | #define bfin_read_SPORT0_TCR2() bfin_read16(SPORT0_TCR2) | ||
264 | #define bfin_write_SPORT0_TCR2(val) bfin_write16(SPORT0_TCR2, val) | ||
265 | #define bfin_read_SPORT0_TCLKDIV() bfin_read16(SPORT0_TCLKDIV) | ||
266 | #define bfin_write_SPORT0_TCLKDIV(val) bfin_write16(SPORT0_TCLKDIV, val) | ||
267 | #define bfin_read_SPORT0_TFSDIV() bfin_read16(SPORT0_TFSDIV) | ||
268 | #define bfin_write_SPORT0_TFSDIV(val) bfin_write16(SPORT0_TFSDIV, val) | ||
269 | #define bfin_read_SPORT0_TX() bfin_read32(SPORT0_TX) | ||
270 | #define bfin_write_SPORT0_TX(val) bfin_write32(SPORT0_TX, val) | ||
271 | #define bfin_read_SPORT0_RX() bfin_read32(SPORT0_RX) | ||
272 | #define bfin_write_SPORT0_RX(val) bfin_write32(SPORT0_RX, val) | ||
273 | #define bfin_read_SPORT0_TX32() bfin_read32(SPORT0_TX) | ||
274 | #define bfin_write_SPORT0_TX32(val) bfin_write32(SPORT0_TX, val) | ||
275 | #define bfin_read_SPORT0_RX32() bfin_read32(SPORT0_RX) | ||
276 | #define bfin_write_SPORT0_RX32(val) bfin_write32(SPORT0_RX, val) | ||
277 | #define bfin_read_SPORT0_TX16() bfin_read16(SPORT0_TX) | ||
278 | #define bfin_write_SPORT0_TX16(val) bfin_write16(SPORT0_TX, val) | ||
279 | #define bfin_read_SPORT0_RX16() bfin_read16(SPORT0_RX) | ||
280 | #define bfin_write_SPORT0_RX16(val) bfin_write16(SPORT0_RX, val) | ||
281 | #define bfin_read_SPORT0_RCR1() bfin_read16(SPORT0_RCR1) | ||
282 | #define bfin_write_SPORT0_RCR1(val) bfin_write16(SPORT0_RCR1, val) | ||
283 | #define bfin_read_SPORT0_RCR2() bfin_read16(SPORT0_RCR2) | ||
284 | #define bfin_write_SPORT0_RCR2(val) bfin_write16(SPORT0_RCR2, val) | ||
285 | #define bfin_read_SPORT0_RCLKDIV() bfin_read16(SPORT0_RCLKDIV) | ||
286 | #define bfin_write_SPORT0_RCLKDIV(val) bfin_write16(SPORT0_RCLKDIV, val) | ||
287 | #define bfin_read_SPORT0_RFSDIV() bfin_read16(SPORT0_RFSDIV) | ||
288 | #define bfin_write_SPORT0_RFSDIV(val) bfin_write16(SPORT0_RFSDIV, val) | ||
289 | #define bfin_read_SPORT0_STAT() bfin_read16(SPORT0_STAT) | ||
290 | #define bfin_write_SPORT0_STAT(val) bfin_write16(SPORT0_STAT, val) | ||
291 | #define bfin_read_SPORT0_CHNL() bfin_read16(SPORT0_CHNL) | ||
292 | #define bfin_write_SPORT0_CHNL(val) bfin_write16(SPORT0_CHNL, val) | ||
293 | #define bfin_read_SPORT0_MCMC1() bfin_read16(SPORT0_MCMC1) | ||
294 | #define bfin_write_SPORT0_MCMC1(val) bfin_write16(SPORT0_MCMC1, val) | ||
295 | #define bfin_read_SPORT0_MCMC2() bfin_read16(SPORT0_MCMC2) | ||
296 | #define bfin_write_SPORT0_MCMC2(val) bfin_write16(SPORT0_MCMC2, val) | ||
297 | #define bfin_read_SPORT0_MTCS0() bfin_read32(SPORT0_MTCS0) | ||
298 | #define bfin_write_SPORT0_MTCS0(val) bfin_write32(SPORT0_MTCS0, val) | ||
299 | #define bfin_read_SPORT0_MTCS1() bfin_read32(SPORT0_MTCS1) | ||
300 | #define bfin_write_SPORT0_MTCS1(val) bfin_write32(SPORT0_MTCS1, val) | ||
301 | #define bfin_read_SPORT0_MTCS2() bfin_read32(SPORT0_MTCS2) | ||
302 | #define bfin_write_SPORT0_MTCS2(val) bfin_write32(SPORT0_MTCS2, val) | ||
303 | #define bfin_read_SPORT0_MTCS3() bfin_read32(SPORT0_MTCS3) | ||
304 | #define bfin_write_SPORT0_MTCS3(val) bfin_write32(SPORT0_MTCS3, val) | ||
305 | #define bfin_read_SPORT0_MRCS0() bfin_read32(SPORT0_MRCS0) | ||
306 | #define bfin_write_SPORT0_MRCS0(val) bfin_write32(SPORT0_MRCS0, val) | ||
307 | #define bfin_read_SPORT0_MRCS1() bfin_read32(SPORT0_MRCS1) | ||
308 | #define bfin_write_SPORT0_MRCS1(val) bfin_write32(SPORT0_MRCS1, val) | ||
309 | #define bfin_read_SPORT0_MRCS2() bfin_read32(SPORT0_MRCS2) | ||
310 | #define bfin_write_SPORT0_MRCS2(val) bfin_write32(SPORT0_MRCS2, val) | ||
311 | #define bfin_read_SPORT0_MRCS3() bfin_read32(SPORT0_MRCS3) | ||
312 | #define bfin_write_SPORT0_MRCS3(val) bfin_write32(SPORT0_MRCS3, val) | ||
313 | |||
314 | |||
315 | /* SPORT1 Controller (0xFFC00900 - 0xFFC009FF) */ | ||
316 | #define bfin_read_SPORT1_TCR1() bfin_read16(SPORT1_TCR1) | ||
317 | #define bfin_write_SPORT1_TCR1(val) bfin_write16(SPORT1_TCR1, val) | ||
318 | #define bfin_read_SPORT1_TCR2() bfin_read16(SPORT1_TCR2) | ||
319 | #define bfin_write_SPORT1_TCR2(val) bfin_write16(SPORT1_TCR2, val) | ||
320 | #define bfin_read_SPORT1_TCLKDIV() bfin_read16(SPORT1_TCLKDIV) | ||
321 | #define bfin_write_SPORT1_TCLKDIV(val) bfin_write16(SPORT1_TCLKDIV, val) | ||
322 | #define bfin_read_SPORT1_TFSDIV() bfin_read16(SPORT1_TFSDIV) | ||
323 | #define bfin_write_SPORT1_TFSDIV(val) bfin_write16(SPORT1_TFSDIV, val) | ||
324 | #define bfin_read_SPORT1_TX() bfin_read32(SPORT1_TX) | ||
325 | #define bfin_write_SPORT1_TX(val) bfin_write32(SPORT1_TX, val) | ||
326 | #define bfin_read_SPORT1_RX() bfin_read32(SPORT1_RX) | ||
327 | #define bfin_write_SPORT1_RX(val) bfin_write32(SPORT1_RX, val) | ||
328 | #define bfin_read_SPORT1_TX32() bfin_read32(SPORT1_TX) | ||
329 | #define bfin_write_SPORT1_TX32(val) bfin_write32(SPORT1_TX, val) | ||
330 | #define bfin_read_SPORT1_RX32() bfin_read32(SPORT1_RX) | ||
331 | #define bfin_write_SPORT1_RX32(val) bfin_write32(SPORT1_RX, val) | ||
332 | #define bfin_read_SPORT1_TX16() bfin_read16(SPORT1_TX) | ||
333 | #define bfin_write_SPORT1_TX16(val) bfin_write16(SPORT1_TX, val) | ||
334 | #define bfin_read_SPORT1_RX16() bfin_read16(SPORT1_RX) | ||
335 | #define bfin_write_SPORT1_RX16(val) bfin_write16(SPORT1_RX, val) | ||
336 | #define bfin_read_SPORT1_RCR1() bfin_read16(SPORT1_RCR1) | ||
337 | #define bfin_write_SPORT1_RCR1(val) bfin_write16(SPORT1_RCR1, val) | ||
338 | #define bfin_read_SPORT1_RCR2() bfin_read16(SPORT1_RCR2) | ||
339 | #define bfin_write_SPORT1_RCR2(val) bfin_write16(SPORT1_RCR2, val) | ||
340 | #define bfin_read_SPORT1_RCLKDIV() bfin_read16(SPORT1_RCLKDIV) | ||
341 | #define bfin_write_SPORT1_RCLKDIV(val) bfin_write16(SPORT1_RCLKDIV, val) | ||
342 | #define bfin_read_SPORT1_RFSDIV() bfin_read16(SPORT1_RFSDIV) | ||
343 | #define bfin_write_SPORT1_RFSDIV(val) bfin_write16(SPORT1_RFSDIV, val) | ||
344 | #define bfin_read_SPORT1_STAT() bfin_read16(SPORT1_STAT) | ||
345 | #define bfin_write_SPORT1_STAT(val) bfin_write16(SPORT1_STAT, val) | ||
346 | #define bfin_read_SPORT1_CHNL() bfin_read16(SPORT1_CHNL) | ||
347 | #define bfin_write_SPORT1_CHNL(val) bfin_write16(SPORT1_CHNL, val) | ||
348 | #define bfin_read_SPORT1_MCMC1() bfin_read16(SPORT1_MCMC1) | ||
349 | #define bfin_write_SPORT1_MCMC1(val) bfin_write16(SPORT1_MCMC1, val) | ||
350 | #define bfin_read_SPORT1_MCMC2() bfin_read16(SPORT1_MCMC2) | ||
351 | #define bfin_write_SPORT1_MCMC2(val) bfin_write16(SPORT1_MCMC2, val) | ||
352 | #define bfin_read_SPORT1_MTCS0() bfin_read32(SPORT1_MTCS0) | ||
353 | #define bfin_write_SPORT1_MTCS0(val) bfin_write32(SPORT1_MTCS0, val) | ||
354 | #define bfin_read_SPORT1_MTCS1() bfin_read32(SPORT1_MTCS1) | ||
355 | #define bfin_write_SPORT1_MTCS1(val) bfin_write32(SPORT1_MTCS1, val) | ||
356 | #define bfin_read_SPORT1_MTCS2() bfin_read32(SPORT1_MTCS2) | ||
357 | #define bfin_write_SPORT1_MTCS2(val) bfin_write32(SPORT1_MTCS2, val) | ||
358 | #define bfin_read_SPORT1_MTCS3() bfin_read32(SPORT1_MTCS3) | ||
359 | #define bfin_write_SPORT1_MTCS3(val) bfin_write32(SPORT1_MTCS3, val) | ||
360 | #define bfin_read_SPORT1_MRCS0() bfin_read32(SPORT1_MRCS0) | ||
361 | #define bfin_write_SPORT1_MRCS0(val) bfin_write32(SPORT1_MRCS0, val) | ||
362 | #define bfin_read_SPORT1_MRCS1() bfin_read32(SPORT1_MRCS1) | ||
363 | #define bfin_write_SPORT1_MRCS1(val) bfin_write32(SPORT1_MRCS1, val) | ||
364 | #define bfin_read_SPORT1_MRCS2() bfin_read32(SPORT1_MRCS2) | ||
365 | #define bfin_write_SPORT1_MRCS2(val) bfin_write32(SPORT1_MRCS2, val) | ||
366 | #define bfin_read_SPORT1_MRCS3() bfin_read32(SPORT1_MRCS3) | ||
367 | #define bfin_write_SPORT1_MRCS3(val) bfin_write32(SPORT1_MRCS3, val) | ||
368 | |||
369 | |||
370 | /* External Bus Interface Unit (0xFFC00A00 - 0xFFC00AFF) */ | ||
371 | #define bfin_read_EBIU_AMGCTL() bfin_read16(EBIU_AMGCTL) | ||
372 | #define bfin_write_EBIU_AMGCTL(val) bfin_write16(EBIU_AMGCTL, val) | ||
373 | #define bfin_read_EBIU_AMBCTL0() bfin_read32(EBIU_AMBCTL0) | ||
374 | #define bfin_write_EBIU_AMBCTL0(val) bfin_write32(EBIU_AMBCTL0, val) | ||
375 | #define bfin_read_EBIU_AMBCTL1() bfin_read32(EBIU_AMBCTL1) | ||
376 | #define bfin_write_EBIU_AMBCTL1(val) bfin_write32(EBIU_AMBCTL1, val) | ||
377 | #define bfin_read_EBIU_SDGCTL() bfin_read32(EBIU_SDGCTL) | ||
378 | #define bfin_write_EBIU_SDGCTL(val) bfin_write32(EBIU_SDGCTL, val) | ||
379 | #define bfin_read_EBIU_SDBCTL() bfin_read16(EBIU_SDBCTL) | ||
380 | #define bfin_write_EBIU_SDBCTL(val) bfin_write16(EBIU_SDBCTL, val) | ||
381 | #define bfin_read_EBIU_SDRRC() bfin_read16(EBIU_SDRRC) | ||
382 | #define bfin_write_EBIU_SDRRC(val) bfin_write16(EBIU_SDRRC, val) | ||
383 | #define bfin_read_EBIU_SDSTAT() bfin_read16(EBIU_SDSTAT) | ||
384 | #define bfin_write_EBIU_SDSTAT(val) bfin_write16(EBIU_SDSTAT, val) | ||
385 | |||
386 | |||
387 | /* DMA Traffic Control Registers */ | ||
388 | #define bfin_read_DMAC_TC_PER() bfin_read16(DMAC_TC_PER) | ||
389 | #define bfin_write_DMAC_TC_PER(val) bfin_write16(DMAC_TC_PER, val) | ||
390 | #define bfin_read_DMAC_TC_CNT() bfin_read16(DMAC_TC_CNT) | ||
391 | #define bfin_write_DMAC_TC_CNT(val) bfin_write16(DMAC_TC_CNT, val) | ||
392 | |||
393 | /* DMA Controller */ | ||
394 | #define bfin_read_DMA0_CONFIG() bfin_read16(DMA0_CONFIG) | ||
395 | #define bfin_write_DMA0_CONFIG(val) bfin_write16(DMA0_CONFIG, val) | ||
396 | #define bfin_read_DMA0_NEXT_DESC_PTR() bfin_read32(DMA0_NEXT_DESC_PTR) | ||
397 | #define bfin_write_DMA0_NEXT_DESC_PTR(val) bfin_write32(DMA0_NEXT_DESC_PTR, val) | ||
398 | #define bfin_read_DMA0_START_ADDR() bfin_read32(DMA0_START_ADDR) | ||
399 | #define bfin_write_DMA0_START_ADDR(val) bfin_write32(DMA0_START_ADDR, val) | ||
400 | #define bfin_read_DMA0_X_COUNT() bfin_read16(DMA0_X_COUNT) | ||
401 | #define bfin_write_DMA0_X_COUNT(val) bfin_write16(DMA0_X_COUNT, val) | ||
402 | #define bfin_read_DMA0_Y_COUNT() bfin_read16(DMA0_Y_COUNT) | ||
403 | #define bfin_write_DMA0_Y_COUNT(val) bfin_write16(DMA0_Y_COUNT, val) | ||
404 | #define bfin_read_DMA0_X_MODIFY() bfin_read16(DMA0_X_MODIFY) | ||
405 | #define bfin_write_DMA0_X_MODIFY(val) bfin_write16(DMA0_X_MODIFY, val) | ||
406 | #define bfin_read_DMA0_Y_MODIFY() bfin_read16(DMA0_Y_MODIFY) | ||
407 | #define bfin_write_DMA0_Y_MODIFY(val) bfin_write16(DMA0_Y_MODIFY, val) | ||
408 | #define bfin_read_DMA0_CURR_DESC_PTR() bfin_read32(DMA0_CURR_DESC_PTR) | ||
409 | #define bfin_write_DMA0_CURR_DESC_PTR(val) bfin_write32(DMA0_CURR_DESC_PTR, val) | ||
410 | #define bfin_read_DMA0_CURR_ADDR() bfin_read32(DMA0_CURR_ADDR) | ||
411 | #define bfin_write_DMA0_CURR_ADDR(val) bfin_write32(DMA0_CURR_ADDR, val) | ||
412 | #define bfin_read_DMA0_CURR_X_COUNT() bfin_read16(DMA0_CURR_X_COUNT) | ||
413 | #define bfin_write_DMA0_CURR_X_COUNT(val) bfin_write16(DMA0_CURR_X_COUNT, val) | ||
414 | #define bfin_read_DMA0_CURR_Y_COUNT() bfin_read16(DMA0_CURR_Y_COUNT) | ||
415 | #define bfin_write_DMA0_CURR_Y_COUNT(val) bfin_write16(DMA0_CURR_Y_COUNT, val) | ||
416 | #define bfin_read_DMA0_IRQ_STATUS() bfin_read16(DMA0_IRQ_STATUS) | ||
417 | #define bfin_write_DMA0_IRQ_STATUS(val) bfin_write16(DMA0_IRQ_STATUS, val) | ||
418 | #define bfin_read_DMA0_PERIPHERAL_MAP() bfin_read16(DMA0_PERIPHERAL_MAP) | ||
419 | #define bfin_write_DMA0_PERIPHERAL_MAP(val) bfin_write16(DMA0_PERIPHERAL_MAP, val) | ||
420 | |||
421 | #define bfin_read_DMA1_CONFIG() bfin_read16(DMA1_CONFIG) | ||
422 | #define bfin_write_DMA1_CONFIG(val) bfin_write16(DMA1_CONFIG, val) | ||
423 | #define bfin_read_DMA1_NEXT_DESC_PTR() bfin_read32(DMA1_NEXT_DESC_PTR) | ||
424 | #define bfin_write_DMA1_NEXT_DESC_PTR(val) bfin_write32(DMA1_NEXT_DESC_PTR, val) | ||
425 | #define bfin_read_DMA1_START_ADDR() bfin_read32(DMA1_START_ADDR) | ||
426 | #define bfin_write_DMA1_START_ADDR(val) bfin_write32(DMA1_START_ADDR, val) | ||
427 | #define bfin_read_DMA1_X_COUNT() bfin_read16(DMA1_X_COUNT) | ||
428 | #define bfin_write_DMA1_X_COUNT(val) bfin_write16(DMA1_X_COUNT, val) | ||
429 | #define bfin_read_DMA1_Y_COUNT() bfin_read16(DMA1_Y_COUNT) | ||
430 | #define bfin_write_DMA1_Y_COUNT(val) bfin_write16(DMA1_Y_COUNT, val) | ||
431 | #define bfin_read_DMA1_X_MODIFY() bfin_read16(DMA1_X_MODIFY) | ||
432 | #define bfin_write_DMA1_X_MODIFY(val) bfin_write16(DMA1_X_MODIFY, val) | ||
433 | #define bfin_read_DMA1_Y_MODIFY() bfin_read16(DMA1_Y_MODIFY) | ||
434 | #define bfin_write_DMA1_Y_MODIFY(val) bfin_write16(DMA1_Y_MODIFY, val) | ||
435 | #define bfin_read_DMA1_CURR_DESC_PTR() bfin_read32(DMA1_CURR_DESC_PTR) | ||
436 | #define bfin_write_DMA1_CURR_DESC_PTR(val) bfin_write32(DMA1_CURR_DESC_PTR, val) | ||
437 | #define bfin_read_DMA1_CURR_ADDR() bfin_read32(DMA1_CURR_ADDR) | ||
438 | #define bfin_write_DMA1_CURR_ADDR(val) bfin_write32(DMA1_CURR_ADDR, val) | ||
439 | #define bfin_read_DMA1_CURR_X_COUNT() bfin_read16(DMA1_CURR_X_COUNT) | ||
440 | #define bfin_write_DMA1_CURR_X_COUNT(val) bfin_write16(DMA1_CURR_X_COUNT, val) | ||
441 | #define bfin_read_DMA1_CURR_Y_COUNT() bfin_read16(DMA1_CURR_Y_COUNT) | ||
442 | #define bfin_write_DMA1_CURR_Y_COUNT(val) bfin_write16(DMA1_CURR_Y_COUNT, val) | ||
443 | #define bfin_read_DMA1_IRQ_STATUS() bfin_read16(DMA1_IRQ_STATUS) | ||
444 | #define bfin_write_DMA1_IRQ_STATUS(val) bfin_write16(DMA1_IRQ_STATUS, val) | ||
445 | #define bfin_read_DMA1_PERIPHERAL_MAP() bfin_read16(DMA1_PERIPHERAL_MAP) | ||
446 | #define bfin_write_DMA1_PERIPHERAL_MAP(val) bfin_write16(DMA1_PERIPHERAL_MAP, val) | ||
447 | |||
448 | #define bfin_read_DMA2_CONFIG() bfin_read16(DMA2_CONFIG) | ||
449 | #define bfin_write_DMA2_CONFIG(val) bfin_write16(DMA2_CONFIG, val) | ||
450 | #define bfin_read_DMA2_NEXT_DESC_PTR() bfin_read32(DMA2_NEXT_DESC_PTR) | ||
451 | #define bfin_write_DMA2_NEXT_DESC_PTR(val) bfin_write32(DMA2_NEXT_DESC_PTR, val) | ||
452 | #define bfin_read_DMA2_START_ADDR() bfin_read32(DMA2_START_ADDR) | ||
453 | #define bfin_write_DMA2_START_ADDR(val) bfin_write32(DMA2_START_ADDR, val) | ||
454 | #define bfin_read_DMA2_X_COUNT() bfin_read16(DMA2_X_COUNT) | ||
455 | #define bfin_write_DMA2_X_COUNT(val) bfin_write16(DMA2_X_COUNT, val) | ||
456 | #define bfin_read_DMA2_Y_COUNT() bfin_read16(DMA2_Y_COUNT) | ||
457 | #define bfin_write_DMA2_Y_COUNT(val) bfin_write16(DMA2_Y_COUNT, val) | ||
458 | #define bfin_read_DMA2_X_MODIFY() bfin_read16(DMA2_X_MODIFY) | ||
459 | #define bfin_write_DMA2_X_MODIFY(val) bfin_write16(DMA2_X_MODIFY, val) | ||
460 | #define bfin_read_DMA2_Y_MODIFY() bfin_read16(DMA2_Y_MODIFY) | ||
461 | #define bfin_write_DMA2_Y_MODIFY(val) bfin_write16(DMA2_Y_MODIFY, val) | ||
462 | #define bfin_read_DMA2_CURR_DESC_PTR() bfin_read32(DMA2_CURR_DESC_PTR) | ||
463 | #define bfin_write_DMA2_CURR_DESC_PTR(val) bfin_write32(DMA2_CURR_DESC_PTR, val) | ||
464 | #define bfin_read_DMA2_CURR_ADDR() bfin_read32(DMA2_CURR_ADDR) | ||
465 | #define bfin_write_DMA2_CURR_ADDR(val) bfin_write32(DMA2_CURR_ADDR, val) | ||
466 | #define bfin_read_DMA2_CURR_X_COUNT() bfin_read16(DMA2_CURR_X_COUNT) | ||
467 | #define bfin_write_DMA2_CURR_X_COUNT(val) bfin_write16(DMA2_CURR_X_COUNT, val) | ||
468 | #define bfin_read_DMA2_CURR_Y_COUNT() bfin_read16(DMA2_CURR_Y_COUNT) | ||
469 | #define bfin_write_DMA2_CURR_Y_COUNT(val) bfin_write16(DMA2_CURR_Y_COUNT, val) | ||
470 | #define bfin_read_DMA2_IRQ_STATUS() bfin_read16(DMA2_IRQ_STATUS) | ||
471 | #define bfin_write_DMA2_IRQ_STATUS(val) bfin_write16(DMA2_IRQ_STATUS, val) | ||
472 | #define bfin_read_DMA2_PERIPHERAL_MAP() bfin_read16(DMA2_PERIPHERAL_MAP) | ||
473 | #define bfin_write_DMA2_PERIPHERAL_MAP(val) bfin_write16(DMA2_PERIPHERAL_MAP, val) | ||
474 | |||
475 | #define bfin_read_DMA3_CONFIG() bfin_read16(DMA3_CONFIG) | ||
476 | #define bfin_write_DMA3_CONFIG(val) bfin_write16(DMA3_CONFIG, val) | ||
477 | #define bfin_read_DMA3_NEXT_DESC_PTR() bfin_read32(DMA3_NEXT_DESC_PTR) | ||
478 | #define bfin_write_DMA3_NEXT_DESC_PTR(val) bfin_write32(DMA3_NEXT_DESC_PTR, val) | ||
479 | #define bfin_read_DMA3_START_ADDR() bfin_read32(DMA3_START_ADDR) | ||
480 | #define bfin_write_DMA3_START_ADDR(val) bfin_write32(DMA3_START_ADDR, val) | ||
481 | #define bfin_read_DMA3_X_COUNT() bfin_read16(DMA3_X_COUNT) | ||
482 | #define bfin_write_DMA3_X_COUNT(val) bfin_write16(DMA3_X_COUNT, val) | ||
483 | #define bfin_read_DMA3_Y_COUNT() bfin_read16(DMA3_Y_COUNT) | ||
484 | #define bfin_write_DMA3_Y_COUNT(val) bfin_write16(DMA3_Y_COUNT, val) | ||
485 | #define bfin_read_DMA3_X_MODIFY() bfin_read16(DMA3_X_MODIFY) | ||
486 | #define bfin_write_DMA3_X_MODIFY(val) bfin_write16(DMA3_X_MODIFY, val) | ||
487 | #define bfin_read_DMA3_Y_MODIFY() bfin_read16(DMA3_Y_MODIFY) | ||
488 | #define bfin_write_DMA3_Y_MODIFY(val) bfin_write16(DMA3_Y_MODIFY, val) | ||
489 | #define bfin_read_DMA3_CURR_DESC_PTR() bfin_read32(DMA3_CURR_DESC_PTR) | ||
490 | #define bfin_write_DMA3_CURR_DESC_PTR(val) bfin_write32(DMA3_CURR_DESC_PTR, val) | ||
491 | #define bfin_read_DMA3_CURR_ADDR() bfin_read32(DMA3_CURR_ADDR) | ||
492 | #define bfin_write_DMA3_CURR_ADDR(val) bfin_write32(DMA3_CURR_ADDR, val) | ||
493 | #define bfin_read_DMA3_CURR_X_COUNT() bfin_read16(DMA3_CURR_X_COUNT) | ||
494 | #define bfin_write_DMA3_CURR_X_COUNT(val) bfin_write16(DMA3_CURR_X_COUNT, val) | ||
495 | #define bfin_read_DMA3_CURR_Y_COUNT() bfin_read16(DMA3_CURR_Y_COUNT) | ||
496 | #define bfin_write_DMA3_CURR_Y_COUNT(val) bfin_write16(DMA3_CURR_Y_COUNT, val) | ||
497 | #define bfin_read_DMA3_IRQ_STATUS() bfin_read16(DMA3_IRQ_STATUS) | ||
498 | #define bfin_write_DMA3_IRQ_STATUS(val) bfin_write16(DMA3_IRQ_STATUS, val) | ||
499 | #define bfin_read_DMA3_PERIPHERAL_MAP() bfin_read16(DMA3_PERIPHERAL_MAP) | ||
500 | #define bfin_write_DMA3_PERIPHERAL_MAP(val) bfin_write16(DMA3_PERIPHERAL_MAP, val) | ||
501 | |||
502 | #define bfin_read_DMA4_CONFIG() bfin_read16(DMA4_CONFIG) | ||
503 | #define bfin_write_DMA4_CONFIG(val) bfin_write16(DMA4_CONFIG, val) | ||
504 | #define bfin_read_DMA4_NEXT_DESC_PTR() bfin_read32(DMA4_NEXT_DESC_PTR) | ||
505 | #define bfin_write_DMA4_NEXT_DESC_PTR(val) bfin_write32(DMA4_NEXT_DESC_PTR, val) | ||
506 | #define bfin_read_DMA4_START_ADDR() bfin_read32(DMA4_START_ADDR) | ||
507 | #define bfin_write_DMA4_START_ADDR(val) bfin_write32(DMA4_START_ADDR, val) | ||
508 | #define bfin_read_DMA4_X_COUNT() bfin_read16(DMA4_X_COUNT) | ||
509 | #define bfin_write_DMA4_X_COUNT(val) bfin_write16(DMA4_X_COUNT, val) | ||
510 | #define bfin_read_DMA4_Y_COUNT() bfin_read16(DMA4_Y_COUNT) | ||
511 | #define bfin_write_DMA4_Y_COUNT(val) bfin_write16(DMA4_Y_COUNT, val) | ||
512 | #define bfin_read_DMA4_X_MODIFY() bfin_read16(DMA4_X_MODIFY) | ||
513 | #define bfin_write_DMA4_X_MODIFY(val) bfin_write16(DMA4_X_MODIFY, val) | ||
514 | #define bfin_read_DMA4_Y_MODIFY() bfin_read16(DMA4_Y_MODIFY) | ||
515 | #define bfin_write_DMA4_Y_MODIFY(val) bfin_write16(DMA4_Y_MODIFY, val) | ||
516 | #define bfin_read_DMA4_CURR_DESC_PTR() bfin_read32(DMA4_CURR_DESC_PTR) | ||
517 | #define bfin_write_DMA4_CURR_DESC_PTR(val) bfin_write32(DMA4_CURR_DESC_PTR, val) | ||
518 | #define bfin_read_DMA4_CURR_ADDR() bfin_read32(DMA4_CURR_ADDR) | ||
519 | #define bfin_write_DMA4_CURR_ADDR(val) bfin_write32(DMA4_CURR_ADDR, val) | ||
520 | #define bfin_read_DMA4_CURR_X_COUNT() bfin_read16(DMA4_CURR_X_COUNT) | ||
521 | #define bfin_write_DMA4_CURR_X_COUNT(val) bfin_write16(DMA4_CURR_X_COUNT, val) | ||
522 | #define bfin_read_DMA4_CURR_Y_COUNT() bfin_read16(DMA4_CURR_Y_COUNT) | ||
523 | #define bfin_write_DMA4_CURR_Y_COUNT(val) bfin_write16(DMA4_CURR_Y_COUNT, val) | ||
524 | #define bfin_read_DMA4_IRQ_STATUS() bfin_read16(DMA4_IRQ_STATUS) | ||
525 | #define bfin_write_DMA4_IRQ_STATUS(val) bfin_write16(DMA4_IRQ_STATUS, val) | ||
526 | #define bfin_read_DMA4_PERIPHERAL_MAP() bfin_read16(DMA4_PERIPHERAL_MAP) | ||
527 | #define bfin_write_DMA4_PERIPHERAL_MAP(val) bfin_write16(DMA4_PERIPHERAL_MAP, val) | ||
528 | |||
529 | #define bfin_read_DMA5_CONFIG() bfin_read16(DMA5_CONFIG) | ||
530 | #define bfin_write_DMA5_CONFIG(val) bfin_write16(DMA5_CONFIG, val) | ||
531 | #define bfin_read_DMA5_NEXT_DESC_PTR() bfin_read32(DMA5_NEXT_DESC_PTR) | ||
532 | #define bfin_write_DMA5_NEXT_DESC_PTR(val) bfin_write32(DMA5_NEXT_DESC_PTR, val) | ||
533 | #define bfin_read_DMA5_START_ADDR() bfin_read32(DMA5_START_ADDR) | ||
534 | #define bfin_write_DMA5_START_ADDR(val) bfin_write32(DMA5_START_ADDR, val) | ||
535 | #define bfin_read_DMA5_X_COUNT() bfin_read16(DMA5_X_COUNT) | ||
536 | #define bfin_write_DMA5_X_COUNT(val) bfin_write16(DMA5_X_COUNT, val) | ||
537 | #define bfin_read_DMA5_Y_COUNT() bfin_read16(DMA5_Y_COUNT) | ||
538 | #define bfin_write_DMA5_Y_COUNT(val) bfin_write16(DMA5_Y_COUNT, val) | ||
539 | #define bfin_read_DMA5_X_MODIFY() bfin_read16(DMA5_X_MODIFY) | ||
540 | #define bfin_write_DMA5_X_MODIFY(val) bfin_write16(DMA5_X_MODIFY, val) | ||
541 | #define bfin_read_DMA5_Y_MODIFY() bfin_read16(DMA5_Y_MODIFY) | ||
542 | #define bfin_write_DMA5_Y_MODIFY(val) bfin_write16(DMA5_Y_MODIFY, val) | ||
543 | #define bfin_read_DMA5_CURR_DESC_PTR() bfin_read32(DMA5_CURR_DESC_PTR) | ||
544 | #define bfin_write_DMA5_CURR_DESC_PTR(val) bfin_write32(DMA5_CURR_DESC_PTR, val) | ||
545 | #define bfin_read_DMA5_CURR_ADDR() bfin_read32(DMA5_CURR_ADDR) | ||
546 | #define bfin_write_DMA5_CURR_ADDR(val) bfin_write32(DMA5_CURR_ADDR, val) | ||
547 | #define bfin_read_DMA5_CURR_X_COUNT() bfin_read16(DMA5_CURR_X_COUNT) | ||
548 | #define bfin_write_DMA5_CURR_X_COUNT(val) bfin_write16(DMA5_CURR_X_COUNT, val) | ||
549 | #define bfin_read_DMA5_CURR_Y_COUNT() bfin_read16(DMA5_CURR_Y_COUNT) | ||
550 | #define bfin_write_DMA5_CURR_Y_COUNT(val) bfin_write16(DMA5_CURR_Y_COUNT, val) | ||
551 | #define bfin_read_DMA5_IRQ_STATUS() bfin_read16(DMA5_IRQ_STATUS) | ||
552 | #define bfin_write_DMA5_IRQ_STATUS(val) bfin_write16(DMA5_IRQ_STATUS, val) | ||
553 | #define bfin_read_DMA5_PERIPHERAL_MAP() bfin_read16(DMA5_PERIPHERAL_MAP) | ||
554 | #define bfin_write_DMA5_PERIPHERAL_MAP(val) bfin_write16(DMA5_PERIPHERAL_MAP, val) | ||
555 | |||
556 | #define bfin_read_DMA6_CONFIG() bfin_read16(DMA6_CONFIG) | ||
557 | #define bfin_write_DMA6_CONFIG(val) bfin_write16(DMA6_CONFIG, val) | ||
558 | #define bfin_read_DMA6_NEXT_DESC_PTR() bfin_read32(DMA6_NEXT_DESC_PTR) | ||
559 | #define bfin_write_DMA6_NEXT_DESC_PTR(val) bfin_write32(DMA6_NEXT_DESC_PTR, val) | ||
560 | #define bfin_read_DMA6_START_ADDR() bfin_read32(DMA6_START_ADDR) | ||
561 | #define bfin_write_DMA6_START_ADDR(val) bfin_write32(DMA6_START_ADDR, val) | ||
562 | #define bfin_read_DMA6_X_COUNT() bfin_read16(DMA6_X_COUNT) | ||
563 | #define bfin_write_DMA6_X_COUNT(val) bfin_write16(DMA6_X_COUNT, val) | ||
564 | #define bfin_read_DMA6_Y_COUNT() bfin_read16(DMA6_Y_COUNT) | ||
565 | #define bfin_write_DMA6_Y_COUNT(val) bfin_write16(DMA6_Y_COUNT, val) | ||
566 | #define bfin_read_DMA6_X_MODIFY() bfin_read16(DMA6_X_MODIFY) | ||
567 | #define bfin_write_DMA6_X_MODIFY(val) bfin_write16(DMA6_X_MODIFY, val) | ||
568 | #define bfin_read_DMA6_Y_MODIFY() bfin_read16(DMA6_Y_MODIFY) | ||
569 | #define bfin_write_DMA6_Y_MODIFY(val) bfin_write16(DMA6_Y_MODIFY, val) | ||
570 | #define bfin_read_DMA6_CURR_DESC_PTR() bfin_read32(DMA6_CURR_DESC_PTR) | ||
571 | #define bfin_write_DMA6_CURR_DESC_PTR(val) bfin_write32(DMA6_CURR_DESC_PTR, val) | ||
572 | #define bfin_read_DMA6_CURR_ADDR() bfin_read32(DMA6_CURR_ADDR) | ||
573 | #define bfin_write_DMA6_CURR_ADDR(val) bfin_write32(DMA6_CURR_ADDR, val) | ||
574 | #define bfin_read_DMA6_CURR_X_COUNT() bfin_read16(DMA6_CURR_X_COUNT) | ||
575 | #define bfin_write_DMA6_CURR_X_COUNT(val) bfin_write16(DMA6_CURR_X_COUNT, val) | ||
576 | #define bfin_read_DMA6_CURR_Y_COUNT() bfin_read16(DMA6_CURR_Y_COUNT) | ||
577 | #define bfin_write_DMA6_CURR_Y_COUNT(val) bfin_write16(DMA6_CURR_Y_COUNT, val) | ||
578 | #define bfin_read_DMA6_IRQ_STATUS() bfin_read16(DMA6_IRQ_STATUS) | ||
579 | #define bfin_write_DMA6_IRQ_STATUS(val) bfin_write16(DMA6_IRQ_STATUS, val) | ||
580 | #define bfin_read_DMA6_PERIPHERAL_MAP() bfin_read16(DMA6_PERIPHERAL_MAP) | ||
581 | #define bfin_write_DMA6_PERIPHERAL_MAP(val) bfin_write16(DMA6_PERIPHERAL_MAP, val) | ||
582 | |||
583 | #define bfin_read_DMA7_CONFIG() bfin_read16(DMA7_CONFIG) | ||
584 | #define bfin_write_DMA7_CONFIG(val) bfin_write16(DMA7_CONFIG, val) | ||
585 | #define bfin_read_DMA7_NEXT_DESC_PTR() bfin_read32(DMA7_NEXT_DESC_PTR) | ||
586 | #define bfin_write_DMA7_NEXT_DESC_PTR(val) bfin_write32(DMA7_NEXT_DESC_PTR, val) | ||
587 | #define bfin_read_DMA7_START_ADDR() bfin_read32(DMA7_START_ADDR) | ||
588 | #define bfin_write_DMA7_START_ADDR(val) bfin_write32(DMA7_START_ADDR, val) | ||
589 | #define bfin_read_DMA7_X_COUNT() bfin_read16(DMA7_X_COUNT) | ||
590 | #define bfin_write_DMA7_X_COUNT(val) bfin_write16(DMA7_X_COUNT, val) | ||
591 | #define bfin_read_DMA7_Y_COUNT() bfin_read16(DMA7_Y_COUNT) | ||
592 | #define bfin_write_DMA7_Y_COUNT(val) bfin_write16(DMA7_Y_COUNT, val) | ||
593 | #define bfin_read_DMA7_X_MODIFY() bfin_read16(DMA7_X_MODIFY) | ||
594 | #define bfin_write_DMA7_X_MODIFY(val) bfin_write16(DMA7_X_MODIFY, val) | ||
595 | #define bfin_read_DMA7_Y_MODIFY() bfin_read16(DMA7_Y_MODIFY) | ||
596 | #define bfin_write_DMA7_Y_MODIFY(val) bfin_write16(DMA7_Y_MODIFY, val) | ||
597 | #define bfin_read_DMA7_CURR_DESC_PTR() bfin_read32(DMA7_CURR_DESC_PTR) | ||
598 | #define bfin_write_DMA7_CURR_DESC_PTR(val) bfin_write32(DMA7_CURR_DESC_PTR, val) | ||
599 | #define bfin_read_DMA7_CURR_ADDR() bfin_read32(DMA7_CURR_ADDR) | ||
600 | #define bfin_write_DMA7_CURR_ADDR(val) bfin_write32(DMA7_CURR_ADDR, val) | ||
601 | #define bfin_read_DMA7_CURR_X_COUNT() bfin_read16(DMA7_CURR_X_COUNT) | ||
602 | #define bfin_write_DMA7_CURR_X_COUNT(val) bfin_write16(DMA7_CURR_X_COUNT, val) | ||
603 | #define bfin_read_DMA7_CURR_Y_COUNT() bfin_read16(DMA7_CURR_Y_COUNT) | ||
604 | #define bfin_write_DMA7_CURR_Y_COUNT(val) bfin_write16(DMA7_CURR_Y_COUNT, val) | ||
605 | #define bfin_read_DMA7_IRQ_STATUS() bfin_read16(DMA7_IRQ_STATUS) | ||
606 | #define bfin_write_DMA7_IRQ_STATUS(val) bfin_write16(DMA7_IRQ_STATUS, val) | ||
607 | #define bfin_read_DMA7_PERIPHERAL_MAP() bfin_read16(DMA7_PERIPHERAL_MAP) | ||
608 | #define bfin_write_DMA7_PERIPHERAL_MAP(val) bfin_write16(DMA7_PERIPHERAL_MAP, val) | ||
609 | |||
610 | #define bfin_read_DMA8_CONFIG() bfin_read16(DMA8_CONFIG) | ||
611 | #define bfin_write_DMA8_CONFIG(val) bfin_write16(DMA8_CONFIG, val) | ||
612 | #define bfin_read_DMA8_NEXT_DESC_PTR() bfin_read32(DMA8_NEXT_DESC_PTR) | ||
613 | #define bfin_write_DMA8_NEXT_DESC_PTR(val) bfin_write32(DMA8_NEXT_DESC_PTR, val) | ||
614 | #define bfin_read_DMA8_START_ADDR() bfin_read32(DMA8_START_ADDR) | ||
615 | #define bfin_write_DMA8_START_ADDR(val) bfin_write32(DMA8_START_ADDR, val) | ||
616 | #define bfin_read_DMA8_X_COUNT() bfin_read16(DMA8_X_COUNT) | ||
617 | #define bfin_write_DMA8_X_COUNT(val) bfin_write16(DMA8_X_COUNT, val) | ||
618 | #define bfin_read_DMA8_Y_COUNT() bfin_read16(DMA8_Y_COUNT) | ||
619 | #define bfin_write_DMA8_Y_COUNT(val) bfin_write16(DMA8_Y_COUNT, val) | ||
620 | #define bfin_read_DMA8_X_MODIFY() bfin_read16(DMA8_X_MODIFY) | ||
621 | #define bfin_write_DMA8_X_MODIFY(val) bfin_write16(DMA8_X_MODIFY, val) | ||
622 | #define bfin_read_DMA8_Y_MODIFY() bfin_read16(DMA8_Y_MODIFY) | ||
623 | #define bfin_write_DMA8_Y_MODIFY(val) bfin_write16(DMA8_Y_MODIFY, val) | ||
624 | #define bfin_read_DMA8_CURR_DESC_PTR() bfin_read32(DMA8_CURR_DESC_PTR) | ||
625 | #define bfin_write_DMA8_CURR_DESC_PTR(val) bfin_write32(DMA8_CURR_DESC_PTR, val) | ||
626 | #define bfin_read_DMA8_CURR_ADDR() bfin_read32(DMA8_CURR_ADDR) | ||
627 | #define bfin_write_DMA8_CURR_ADDR(val) bfin_write32(DMA8_CURR_ADDR, val) | ||
628 | #define bfin_read_DMA8_CURR_X_COUNT() bfin_read16(DMA8_CURR_X_COUNT) | ||
629 | #define bfin_write_DMA8_CURR_X_COUNT(val) bfin_write16(DMA8_CURR_X_COUNT, val) | ||
630 | #define bfin_read_DMA8_CURR_Y_COUNT() bfin_read16(DMA8_CURR_Y_COUNT) | ||
631 | #define bfin_write_DMA8_CURR_Y_COUNT(val) bfin_write16(DMA8_CURR_Y_COUNT, val) | ||
632 | #define bfin_read_DMA8_IRQ_STATUS() bfin_read16(DMA8_IRQ_STATUS) | ||
633 | #define bfin_write_DMA8_IRQ_STATUS(val) bfin_write16(DMA8_IRQ_STATUS, val) | ||
634 | #define bfin_read_DMA8_PERIPHERAL_MAP() bfin_read16(DMA8_PERIPHERAL_MAP) | ||
635 | #define bfin_write_DMA8_PERIPHERAL_MAP(val) bfin_write16(DMA8_PERIPHERAL_MAP, val) | ||
636 | |||
637 | #define bfin_read_DMA9_CONFIG() bfin_read16(DMA9_CONFIG) | ||
638 | #define bfin_write_DMA9_CONFIG(val) bfin_write16(DMA9_CONFIG, val) | ||
639 | #define bfin_read_DMA9_NEXT_DESC_PTR() bfin_read32(DMA9_NEXT_DESC_PTR) | ||
640 | #define bfin_write_DMA9_NEXT_DESC_PTR(val) bfin_write32(DMA9_NEXT_DESC_PTR, val) | ||
641 | #define bfin_read_DMA9_START_ADDR() bfin_read32(DMA9_START_ADDR) | ||
642 | #define bfin_write_DMA9_START_ADDR(val) bfin_write32(DMA9_START_ADDR, val) | ||
643 | #define bfin_read_DMA9_X_COUNT() bfin_read16(DMA9_X_COUNT) | ||
644 | #define bfin_write_DMA9_X_COUNT(val) bfin_write16(DMA9_X_COUNT, val) | ||
645 | #define bfin_read_DMA9_Y_COUNT() bfin_read16(DMA9_Y_COUNT) | ||
646 | #define bfin_write_DMA9_Y_COUNT(val) bfin_write16(DMA9_Y_COUNT, val) | ||
647 | #define bfin_read_DMA9_X_MODIFY() bfin_read16(DMA9_X_MODIFY) | ||
648 | #define bfin_write_DMA9_X_MODIFY(val) bfin_write16(DMA9_X_MODIFY, val) | ||
649 | #define bfin_read_DMA9_Y_MODIFY() bfin_read16(DMA9_Y_MODIFY) | ||
650 | #define bfin_write_DMA9_Y_MODIFY(val) bfin_write16(DMA9_Y_MODIFY, val) | ||
651 | #define bfin_read_DMA9_CURR_DESC_PTR() bfin_read32(DMA9_CURR_DESC_PTR) | ||
652 | #define bfin_write_DMA9_CURR_DESC_PTR(val) bfin_write32(DMA9_CURR_DESC_PTR, val) | ||
653 | #define bfin_read_DMA9_CURR_ADDR() bfin_read32(DMA9_CURR_ADDR) | ||
654 | #define bfin_write_DMA9_CURR_ADDR(val) bfin_write32(DMA9_CURR_ADDR, val) | ||
655 | #define bfin_read_DMA9_CURR_X_COUNT() bfin_read16(DMA9_CURR_X_COUNT) | ||
656 | #define bfin_write_DMA9_CURR_X_COUNT(val) bfin_write16(DMA9_CURR_X_COUNT, val) | ||
657 | #define bfin_read_DMA9_CURR_Y_COUNT() bfin_read16(DMA9_CURR_Y_COUNT) | ||
658 | #define bfin_write_DMA9_CURR_Y_COUNT(val) bfin_write16(DMA9_CURR_Y_COUNT, val) | ||
659 | #define bfin_read_DMA9_IRQ_STATUS() bfin_read16(DMA9_IRQ_STATUS) | ||
660 | #define bfin_write_DMA9_IRQ_STATUS(val) bfin_write16(DMA9_IRQ_STATUS, val) | ||
661 | #define bfin_read_DMA9_PERIPHERAL_MAP() bfin_read16(DMA9_PERIPHERAL_MAP) | ||
662 | #define bfin_write_DMA9_PERIPHERAL_MAP(val) bfin_write16(DMA9_PERIPHERAL_MAP, val) | ||
663 | |||
664 | #define bfin_read_DMA10_CONFIG() bfin_read16(DMA10_CONFIG) | ||
665 | #define bfin_write_DMA10_CONFIG(val) bfin_write16(DMA10_CONFIG, val) | ||
666 | #define bfin_read_DMA10_NEXT_DESC_PTR() bfin_read32(DMA10_NEXT_DESC_PTR) | ||
667 | #define bfin_write_DMA10_NEXT_DESC_PTR(val) bfin_write32(DMA10_NEXT_DESC_PTR, val) | ||
668 | #define bfin_read_DMA10_START_ADDR() bfin_read32(DMA10_START_ADDR) | ||
669 | #define bfin_write_DMA10_START_ADDR(val) bfin_write32(DMA10_START_ADDR, val) | ||
670 | #define bfin_read_DMA10_X_COUNT() bfin_read16(DMA10_X_COUNT) | ||
671 | #define bfin_write_DMA10_X_COUNT(val) bfin_write16(DMA10_X_COUNT, val) | ||
672 | #define bfin_read_DMA10_Y_COUNT() bfin_read16(DMA10_Y_COUNT) | ||
673 | #define bfin_write_DMA10_Y_COUNT(val) bfin_write16(DMA10_Y_COUNT, val) | ||
674 | #define bfin_read_DMA10_X_MODIFY() bfin_read16(DMA10_X_MODIFY) | ||
675 | #define bfin_write_DMA10_X_MODIFY(val) bfin_write16(DMA10_X_MODIFY, val) | ||
676 | #define bfin_read_DMA10_Y_MODIFY() bfin_read16(DMA10_Y_MODIFY) | ||
677 | #define bfin_write_DMA10_Y_MODIFY(val) bfin_write16(DMA10_Y_MODIFY, val) | ||
678 | #define bfin_read_DMA10_CURR_DESC_PTR() bfin_read32(DMA10_CURR_DESC_PTR) | ||
679 | #define bfin_write_DMA10_CURR_DESC_PTR(val) bfin_write32(DMA10_CURR_DESC_PTR, val) | ||
680 | #define bfin_read_DMA10_CURR_ADDR() bfin_read32(DMA10_CURR_ADDR) | ||
681 | #define bfin_write_DMA10_CURR_ADDR(val) bfin_write32(DMA10_CURR_ADDR, val) | ||
682 | #define bfin_read_DMA10_CURR_X_COUNT() bfin_read16(DMA10_CURR_X_COUNT) | ||
683 | #define bfin_write_DMA10_CURR_X_COUNT(val) bfin_write16(DMA10_CURR_X_COUNT, val) | ||
684 | #define bfin_read_DMA10_CURR_Y_COUNT() bfin_read16(DMA10_CURR_Y_COUNT) | ||
685 | #define bfin_write_DMA10_CURR_Y_COUNT(val) bfin_write16(DMA10_CURR_Y_COUNT, val) | ||
686 | #define bfin_read_DMA10_IRQ_STATUS() bfin_read16(DMA10_IRQ_STATUS) | ||
687 | #define bfin_write_DMA10_IRQ_STATUS(val) bfin_write16(DMA10_IRQ_STATUS, val) | ||
688 | #define bfin_read_DMA10_PERIPHERAL_MAP() bfin_read16(DMA10_PERIPHERAL_MAP) | ||
689 | #define bfin_write_DMA10_PERIPHERAL_MAP(val) bfin_write16(DMA10_PERIPHERAL_MAP, val) | ||
690 | |||
691 | #define bfin_read_DMA11_CONFIG() bfin_read16(DMA11_CONFIG) | ||
692 | #define bfin_write_DMA11_CONFIG(val) bfin_write16(DMA11_CONFIG, val) | ||
693 | #define bfin_read_DMA11_NEXT_DESC_PTR() bfin_read32(DMA11_NEXT_DESC_PTR) | ||
694 | #define bfin_write_DMA11_NEXT_DESC_PTR(val) bfin_write32(DMA11_NEXT_DESC_PTR, val) | ||
695 | #define bfin_read_DMA11_START_ADDR() bfin_read32(DMA11_START_ADDR) | ||
696 | #define bfin_write_DMA11_START_ADDR(val) bfin_write32(DMA11_START_ADDR, val) | ||
697 | #define bfin_read_DMA11_X_COUNT() bfin_read16(DMA11_X_COUNT) | ||
698 | #define bfin_write_DMA11_X_COUNT(val) bfin_write16(DMA11_X_COUNT, val) | ||
699 | #define bfin_read_DMA11_Y_COUNT() bfin_read16(DMA11_Y_COUNT) | ||
700 | #define bfin_write_DMA11_Y_COUNT(val) bfin_write16(DMA11_Y_COUNT, val) | ||
701 | #define bfin_read_DMA11_X_MODIFY() bfin_read16(DMA11_X_MODIFY) | ||
702 | #define bfin_write_DMA11_X_MODIFY(val) bfin_write16(DMA11_X_MODIFY, val) | ||
703 | #define bfin_read_DMA11_Y_MODIFY() bfin_read16(DMA11_Y_MODIFY) | ||
704 | #define bfin_write_DMA11_Y_MODIFY(val) bfin_write16(DMA11_Y_MODIFY, val) | ||
705 | #define bfin_read_DMA11_CURR_DESC_PTR() bfin_read32(DMA11_CURR_DESC_PTR) | ||
706 | #define bfin_write_DMA11_CURR_DESC_PTR(val) bfin_write32(DMA11_CURR_DESC_PTR, val) | ||
707 | #define bfin_read_DMA11_CURR_ADDR() bfin_read32(DMA11_CURR_ADDR) | ||
708 | #define bfin_write_DMA11_CURR_ADDR(val) bfin_write32(DMA11_CURR_ADDR, val) | ||
709 | #define bfin_read_DMA11_CURR_X_COUNT() bfin_read16(DMA11_CURR_X_COUNT) | ||
710 | #define bfin_write_DMA11_CURR_X_COUNT(val) bfin_write16(DMA11_CURR_X_COUNT, val) | ||
711 | #define bfin_read_DMA11_CURR_Y_COUNT() bfin_read16(DMA11_CURR_Y_COUNT) | ||
712 | #define bfin_write_DMA11_CURR_Y_COUNT(val) bfin_write16(DMA11_CURR_Y_COUNT, val) | ||
713 | #define bfin_read_DMA11_IRQ_STATUS() bfin_read16(DMA11_IRQ_STATUS) | ||
714 | #define bfin_write_DMA11_IRQ_STATUS(val) bfin_write16(DMA11_IRQ_STATUS, val) | ||
715 | #define bfin_read_DMA11_PERIPHERAL_MAP() bfin_read16(DMA11_PERIPHERAL_MAP) | ||
716 | #define bfin_write_DMA11_PERIPHERAL_MAP(val) bfin_write16(DMA11_PERIPHERAL_MAP, val) | ||
717 | |||
718 | #define bfin_read_MDMA_D0_CONFIG() bfin_read16(MDMA_D0_CONFIG) | ||
719 | #define bfin_write_MDMA_D0_CONFIG(val) bfin_write16(MDMA_D0_CONFIG, val) | ||
720 | #define bfin_read_MDMA_D0_NEXT_DESC_PTR() bfin_read32(MDMA_D0_NEXT_DESC_PTR) | ||
721 | #define bfin_write_MDMA_D0_NEXT_DESC_PTR(val) bfin_write32(MDMA_D0_NEXT_DESC_PTR, val) | ||
722 | #define bfin_read_MDMA_D0_START_ADDR() bfin_read32(MDMA_D0_START_ADDR) | ||
723 | #define bfin_write_MDMA_D0_START_ADDR(val) bfin_write32(MDMA_D0_START_ADDR, val) | ||
724 | #define bfin_read_MDMA_D0_X_COUNT() bfin_read16(MDMA_D0_X_COUNT) | ||
725 | #define bfin_write_MDMA_D0_X_COUNT(val) bfin_write16(MDMA_D0_X_COUNT, val) | ||
726 | #define bfin_read_MDMA_D0_Y_COUNT() bfin_read16(MDMA_D0_Y_COUNT) | ||
727 | #define bfin_write_MDMA_D0_Y_COUNT(val) bfin_write16(MDMA_D0_Y_COUNT, val) | ||
728 | #define bfin_read_MDMA_D0_X_MODIFY() bfin_read16(MDMA_D0_X_MODIFY) | ||
729 | #define bfin_write_MDMA_D0_X_MODIFY(val) bfin_write16(MDMA_D0_X_MODIFY, val) | ||
730 | #define bfin_read_MDMA_D0_Y_MODIFY() bfin_read16(MDMA_D0_Y_MODIFY) | ||
731 | #define bfin_write_MDMA_D0_Y_MODIFY(val) bfin_write16(MDMA_D0_Y_MODIFY, val) | ||
732 | #define bfin_read_MDMA_D0_CURR_DESC_PTR() bfin_read32(MDMA_D0_CURR_DESC_PTR) | ||
733 | #define bfin_write_MDMA_D0_CURR_DESC_PTR(val) bfin_write32(MDMA_D0_CURR_DESC_PTR, val) | ||
734 | #define bfin_read_MDMA_D0_CURR_ADDR() bfin_read32(MDMA_D0_CURR_ADDR) | ||
735 | #define bfin_write_MDMA_D0_CURR_ADDR(val) bfin_write32(MDMA_D0_CURR_ADDR, val) | ||
736 | #define bfin_read_MDMA_D0_CURR_X_COUNT() bfin_read16(MDMA_D0_CURR_X_COUNT) | ||
737 | #define bfin_write_MDMA_D0_CURR_X_COUNT(val) bfin_write16(MDMA_D0_CURR_X_COUNT, val) | ||
738 | #define bfin_read_MDMA_D0_CURR_Y_COUNT() bfin_read16(MDMA_D0_CURR_Y_COUNT) | ||
739 | #define bfin_write_MDMA_D0_CURR_Y_COUNT(val) bfin_write16(MDMA_D0_CURR_Y_COUNT, val) | ||
740 | #define bfin_read_MDMA_D0_IRQ_STATUS() bfin_read16(MDMA_D0_IRQ_STATUS) | ||
741 | #define bfin_write_MDMA_D0_IRQ_STATUS(val) bfin_write16(MDMA_D0_IRQ_STATUS, val) | ||
742 | #define bfin_read_MDMA_D0_PERIPHERAL_MAP() bfin_read16(MDMA_D0_PERIPHERAL_MAP) | ||
743 | #define bfin_write_MDMA_D0_PERIPHERAL_MAP(val) bfin_write16(MDMA_D0_PERIPHERAL_MAP, val) | ||
744 | |||
745 | #define bfin_read_MDMA_S0_CONFIG() bfin_read16(MDMA_S0_CONFIG) | ||
746 | #define bfin_write_MDMA_S0_CONFIG(val) bfin_write16(MDMA_S0_CONFIG, val) | ||
747 | #define bfin_read_MDMA_S0_NEXT_DESC_PTR() bfin_read32(MDMA_S0_NEXT_DESC_PTR) | ||
748 | #define bfin_write_MDMA_S0_NEXT_DESC_PTR(val) bfin_write32(MDMA_S0_NEXT_DESC_PTR, val) | ||
749 | #define bfin_read_MDMA_S0_START_ADDR() bfin_read32(MDMA_S0_START_ADDR) | ||
750 | #define bfin_write_MDMA_S0_START_ADDR(val) bfin_write32(MDMA_S0_START_ADDR, val) | ||
751 | #define bfin_read_MDMA_S0_X_COUNT() bfin_read16(MDMA_S0_X_COUNT) | ||
752 | #define bfin_write_MDMA_S0_X_COUNT(val) bfin_write16(MDMA_S0_X_COUNT, val) | ||
753 | #define bfin_read_MDMA_S0_Y_COUNT() bfin_read16(MDMA_S0_Y_COUNT) | ||
754 | #define bfin_write_MDMA_S0_Y_COUNT(val) bfin_write16(MDMA_S0_Y_COUNT, val) | ||
755 | #define bfin_read_MDMA_S0_X_MODIFY() bfin_read16(MDMA_S0_X_MODIFY) | ||
756 | #define bfin_write_MDMA_S0_X_MODIFY(val) bfin_write16(MDMA_S0_X_MODIFY, val) | ||
757 | #define bfin_read_MDMA_S0_Y_MODIFY() bfin_read16(MDMA_S0_Y_MODIFY) | ||
758 | #define bfin_write_MDMA_S0_Y_MODIFY(val) bfin_write16(MDMA_S0_Y_MODIFY, val) | ||
759 | #define bfin_read_MDMA_S0_CURR_DESC_PTR() bfin_read32(MDMA_S0_CURR_DESC_PTR) | ||
760 | #define bfin_write_MDMA_S0_CURR_DESC_PTR(val) bfin_write32(MDMA_S0_CURR_DESC_PTR, val) | ||
761 | #define bfin_read_MDMA_S0_CURR_ADDR() bfin_read32(MDMA_S0_CURR_ADDR) | ||
762 | #define bfin_write_MDMA_S0_CURR_ADDR(val) bfin_write32(MDMA_S0_CURR_ADDR, val) | ||
763 | #define bfin_read_MDMA_S0_CURR_X_COUNT() bfin_read16(MDMA_S0_CURR_X_COUNT) | ||
764 | #define bfin_write_MDMA_S0_CURR_X_COUNT(val) bfin_write16(MDMA_S0_CURR_X_COUNT, val) | ||
765 | #define bfin_read_MDMA_S0_CURR_Y_COUNT() bfin_read16(MDMA_S0_CURR_Y_COUNT) | ||
766 | #define bfin_write_MDMA_S0_CURR_Y_COUNT(val) bfin_write16(MDMA_S0_CURR_Y_COUNT, val) | ||
767 | #define bfin_read_MDMA_S0_IRQ_STATUS() bfin_read16(MDMA_S0_IRQ_STATUS) | ||
768 | #define bfin_write_MDMA_S0_IRQ_STATUS(val) bfin_write16(MDMA_S0_IRQ_STATUS, val) | ||
769 | #define bfin_read_MDMA_S0_PERIPHERAL_MAP() bfin_read16(MDMA_S0_PERIPHERAL_MAP) | ||
770 | #define bfin_write_MDMA_S0_PERIPHERAL_MAP(val) bfin_write16(MDMA_S0_PERIPHERAL_MAP, val) | ||
771 | |||
772 | #define bfin_read_MDMA_D1_CONFIG() bfin_read16(MDMA_D1_CONFIG) | ||
773 | #define bfin_write_MDMA_D1_CONFIG(val) bfin_write16(MDMA_D1_CONFIG, val) | ||
774 | #define bfin_read_MDMA_D1_NEXT_DESC_PTR() bfin_read32(MDMA_D1_NEXT_DESC_PTR) | ||
775 | #define bfin_write_MDMA_D1_NEXT_DESC_PTR(val) bfin_write32(MDMA_D1_NEXT_DESC_PTR, val) | ||
776 | #define bfin_read_MDMA_D1_START_ADDR() bfin_read32(MDMA_D1_START_ADDR) | ||
777 | #define bfin_write_MDMA_D1_START_ADDR(val) bfin_write32(MDMA_D1_START_ADDR, val) | ||
778 | #define bfin_read_MDMA_D1_X_COUNT() bfin_read16(MDMA_D1_X_COUNT) | ||
779 | #define bfin_write_MDMA_D1_X_COUNT(val) bfin_write16(MDMA_D1_X_COUNT, val) | ||
780 | #define bfin_read_MDMA_D1_Y_COUNT() bfin_read16(MDMA_D1_Y_COUNT) | ||
781 | #define bfin_write_MDMA_D1_Y_COUNT(val) bfin_write16(MDMA_D1_Y_COUNT, val) | ||
782 | #define bfin_read_MDMA_D1_X_MODIFY() bfin_read16(MDMA_D1_X_MODIFY) | ||
783 | #define bfin_write_MDMA_D1_X_MODIFY(val) bfin_write16(MDMA_D1_X_MODIFY, val) | ||
784 | #define bfin_read_MDMA_D1_Y_MODIFY() bfin_read16(MDMA_D1_Y_MODIFY) | ||
785 | #define bfin_write_MDMA_D1_Y_MODIFY(val) bfin_write16(MDMA_D1_Y_MODIFY, val) | ||
786 | #define bfin_read_MDMA_D1_CURR_DESC_PTR() bfin_read32(MDMA_D1_CURR_DESC_PTR) | ||
787 | #define bfin_write_MDMA_D1_CURR_DESC_PTR(val) bfin_write32(MDMA_D1_CURR_DESC_PTR, val) | ||
788 | #define bfin_read_MDMA_D1_CURR_ADDR() bfin_read32(MDMA_D1_CURR_ADDR) | ||
789 | #define bfin_write_MDMA_D1_CURR_ADDR(val) bfin_write32(MDMA_D1_CURR_ADDR, val) | ||
790 | #define bfin_read_MDMA_D1_CURR_X_COUNT() bfin_read16(MDMA_D1_CURR_X_COUNT) | ||
791 | #define bfin_write_MDMA_D1_CURR_X_COUNT(val) bfin_write16(MDMA_D1_CURR_X_COUNT, val) | ||
792 | #define bfin_read_MDMA_D1_CURR_Y_COUNT() bfin_read16(MDMA_D1_CURR_Y_COUNT) | ||
793 | #define bfin_write_MDMA_D1_CURR_Y_COUNT(val) bfin_write16(MDMA_D1_CURR_Y_COUNT, val) | ||
794 | #define bfin_read_MDMA_D1_IRQ_STATUS() bfin_read16(MDMA_D1_IRQ_STATUS) | ||
795 | #define bfin_write_MDMA_D1_IRQ_STATUS(val) bfin_write16(MDMA_D1_IRQ_STATUS, val) | ||
796 | #define bfin_read_MDMA_D1_PERIPHERAL_MAP() bfin_read16(MDMA_D1_PERIPHERAL_MAP) | ||
797 | #define bfin_write_MDMA_D1_PERIPHERAL_MAP(val) bfin_write16(MDMA_D1_PERIPHERAL_MAP, val) | ||
798 | |||
799 | #define bfin_read_MDMA_S1_CONFIG() bfin_read16(MDMA_S1_CONFIG) | ||
800 | #define bfin_write_MDMA_S1_CONFIG(val) bfin_write16(MDMA_S1_CONFIG, val) | ||
801 | #define bfin_read_MDMA_S1_NEXT_DESC_PTR() bfin_read32(MDMA_S1_NEXT_DESC_PTR) | ||
802 | #define bfin_write_MDMA_S1_NEXT_DESC_PTR(val) bfin_write32(MDMA_S1_NEXT_DESC_PTR, val) | ||
803 | #define bfin_read_MDMA_S1_START_ADDR() bfin_read32(MDMA_S1_START_ADDR) | ||
804 | #define bfin_write_MDMA_S1_START_ADDR(val) bfin_write32(MDMA_S1_START_ADDR, val) | ||
805 | #define bfin_read_MDMA_S1_X_COUNT() bfin_read16(MDMA_S1_X_COUNT) | ||
806 | #define bfin_write_MDMA_S1_X_COUNT(val) bfin_write16(MDMA_S1_X_COUNT, val) | ||
807 | #define bfin_read_MDMA_S1_Y_COUNT() bfin_read16(MDMA_S1_Y_COUNT) | ||
808 | #define bfin_write_MDMA_S1_Y_COUNT(val) bfin_write16(MDMA_S1_Y_COUNT, val) | ||
809 | #define bfin_read_MDMA_S1_X_MODIFY() bfin_read16(MDMA_S1_X_MODIFY) | ||
810 | #define bfin_write_MDMA_S1_X_MODIFY(val) bfin_write16(MDMA_S1_X_MODIFY, val) | ||
811 | #define bfin_read_MDMA_S1_Y_MODIFY() bfin_read16(MDMA_S1_Y_MODIFY) | ||
812 | #define bfin_write_MDMA_S1_Y_MODIFY(val) bfin_write16(MDMA_S1_Y_MODIFY, val) | ||
813 | #define bfin_read_MDMA_S1_CURR_DESC_PTR() bfin_read32(MDMA_S1_CURR_DESC_PTR) | ||
814 | #define bfin_write_MDMA_S1_CURR_DESC_PTR(val) bfin_write32(MDMA_S1_CURR_DESC_PTR, val) | ||
815 | #define bfin_read_MDMA_S1_CURR_ADDR() bfin_read32(MDMA_S1_CURR_ADDR) | ||
816 | #define bfin_write_MDMA_S1_CURR_ADDR(val) bfin_write32(MDMA_S1_CURR_ADDR, val) | ||
817 | #define bfin_read_MDMA_S1_CURR_X_COUNT() bfin_read16(MDMA_S1_CURR_X_COUNT) | ||
818 | #define bfin_write_MDMA_S1_CURR_X_COUNT(val) bfin_write16(MDMA_S1_CURR_X_COUNT, val) | ||
819 | #define bfin_read_MDMA_S1_CURR_Y_COUNT() bfin_read16(MDMA_S1_CURR_Y_COUNT) | ||
820 | #define bfin_write_MDMA_S1_CURR_Y_COUNT(val) bfin_write16(MDMA_S1_CURR_Y_COUNT, val) | ||
821 | #define bfin_read_MDMA_S1_IRQ_STATUS() bfin_read16(MDMA_S1_IRQ_STATUS) | ||
822 | #define bfin_write_MDMA_S1_IRQ_STATUS(val) bfin_write16(MDMA_S1_IRQ_STATUS, val) | ||
823 | #define bfin_read_MDMA_S1_PERIPHERAL_MAP() bfin_read16(MDMA_S1_PERIPHERAL_MAP) | ||
824 | #define bfin_write_MDMA_S1_PERIPHERAL_MAP(val) bfin_write16(MDMA_S1_PERIPHERAL_MAP, val) | ||
825 | |||
826 | |||
827 | /* Parallel Peripheral Interface (0xFFC01000 - 0xFFC010FF) */ | ||
828 | #define bfin_read_PPI_CONTROL() bfin_read16(PPI_CONTROL) | ||
829 | #define bfin_write_PPI_CONTROL(val) bfin_write16(PPI_CONTROL, val) | ||
830 | #define bfin_read_PPI_STATUS() bfin_read16(PPI_STATUS) | ||
831 | #define bfin_write_PPI_STATUS(val) bfin_write16(PPI_STATUS, val) | ||
832 | #define bfin_clear_PPI_STATUS() bfin_write_PPI_STATUS(0xFFFF) | ||
833 | #define bfin_read_PPI_DELAY() bfin_read16(PPI_DELAY) | ||
834 | #define bfin_write_PPI_DELAY(val) bfin_write16(PPI_DELAY, val) | ||
835 | #define bfin_read_PPI_COUNT() bfin_read16(PPI_COUNT) | ||
836 | #define bfin_write_PPI_COUNT(val) bfin_write16(PPI_COUNT, val) | ||
837 | #define bfin_read_PPI_FRAME() bfin_read16(PPI_FRAME) | ||
838 | #define bfin_write_PPI_FRAME(val) bfin_write16(PPI_FRAME, val) | ||
839 | |||
840 | |||
841 | /* Two-Wire Interface (0xFFC01400 - 0xFFC014FF) */ | ||
842 | |||
843 | /* General Purpose I/O Port G (0xFFC01500 - 0xFFC015FF) */ | ||
844 | #define bfin_read_PORTGIO() bfin_read16(PORTGIO) | ||
845 | #define bfin_write_PORTGIO(val) bfin_write16(PORTGIO, val) | ||
846 | #define bfin_read_PORTGIO_CLEAR() bfin_read16(PORTGIO_CLEAR) | ||
847 | #define bfin_write_PORTGIO_CLEAR(val) bfin_write16(PORTGIO_CLEAR, val) | ||
848 | #define bfin_read_PORTGIO_SET() bfin_read16(PORTGIO_SET) | ||
849 | #define bfin_write_PORTGIO_SET(val) bfin_write16(PORTGIO_SET, val) | ||
850 | #define bfin_read_PORTGIO_TOGGLE() bfin_read16(PORTGIO_TOGGLE) | ||
851 | #define bfin_write_PORTGIO_TOGGLE(val) bfin_write16(PORTGIO_TOGGLE, val) | ||
852 | #define bfin_read_PORTGIO_MASKA() bfin_read16(PORTGIO_MASKA) | ||
853 | #define bfin_write_PORTGIO_MASKA(val) bfin_write16(PORTGIO_MASKA, val) | ||
854 | #define bfin_read_PORTGIO_MASKA_CLEAR() bfin_read16(PORTGIO_MASKA_CLEAR) | ||
855 | #define bfin_write_PORTGIO_MASKA_CLEAR(val) bfin_write16(PORTGIO_MASKA_CLEAR, val) | ||
856 | #define bfin_read_PORTGIO_MASKA_SET() bfin_read16(PORTGIO_MASKA_SET) | ||
857 | #define bfin_write_PORTGIO_MASKA_SET(val) bfin_write16(PORTGIO_MASKA_SET, val) | ||
858 | #define bfin_read_PORTGIO_MASKA_TOGGLE() bfin_read16(PORTGIO_MASKA_TOGGLE) | ||
859 | #define bfin_write_PORTGIO_MASKA_TOGGLE(val) bfin_write16(PORTGIO_MASKA_TOGGLE, val) | ||
860 | #define bfin_read_PORTGIO_MASKB() bfin_read16(PORTGIO_MASKB) | ||
861 | #define bfin_write_PORTGIO_MASKB(val) bfin_write16(PORTGIO_MASKB, val) | ||
862 | #define bfin_read_PORTGIO_MASKB_CLEAR() bfin_read16(PORTGIO_MASKB_CLEAR) | ||
863 | #define bfin_write_PORTGIO_MASKB_CLEAR(val) bfin_write16(PORTGIO_MASKB_CLEAR, val) | ||
864 | #define bfin_read_PORTGIO_MASKB_SET() bfin_read16(PORTGIO_MASKB_SET) | ||
865 | #define bfin_write_PORTGIO_MASKB_SET(val) bfin_write16(PORTGIO_MASKB_SET, val) | ||
866 | #define bfin_read_PORTGIO_MASKB_TOGGLE() bfin_read16(PORTGIO_MASKB_TOGGLE) | ||
867 | #define bfin_write_PORTGIO_MASKB_TOGGLE(val) bfin_write16(PORTGIO_MASKB_TOGGLE, val) | ||
868 | #define bfin_read_PORTGIO_DIR() bfin_read16(PORTGIO_DIR) | ||
869 | #define bfin_write_PORTGIO_DIR(val) bfin_write16(PORTGIO_DIR, val) | ||
870 | #define bfin_read_PORTGIO_POLAR() bfin_read16(PORTGIO_POLAR) | ||
871 | #define bfin_write_PORTGIO_POLAR(val) bfin_write16(PORTGIO_POLAR, val) | ||
872 | #define bfin_read_PORTGIO_EDGE() bfin_read16(PORTGIO_EDGE) | ||
873 | #define bfin_write_PORTGIO_EDGE(val) bfin_write16(PORTGIO_EDGE, val) | ||
874 | #define bfin_read_PORTGIO_BOTH() bfin_read16(PORTGIO_BOTH) | ||
875 | #define bfin_write_PORTGIO_BOTH(val) bfin_write16(PORTGIO_BOTH, val) | ||
876 | #define bfin_read_PORTGIO_INEN() bfin_read16(PORTGIO_INEN) | ||
877 | #define bfin_write_PORTGIO_INEN(val) bfin_write16(PORTGIO_INEN, val) | ||
878 | |||
879 | |||
880 | /* General Purpose I/O Port H (0xFFC01700 - 0xFFC017FF) */ | ||
881 | #define bfin_read_PORTHIO() bfin_read16(PORTHIO) | ||
882 | #define bfin_write_PORTHIO(val) bfin_write16(PORTHIO, val) | ||
883 | #define bfin_read_PORTHIO_CLEAR() bfin_read16(PORTHIO_CLEAR) | ||
884 | #define bfin_write_PORTHIO_CLEAR(val) bfin_write16(PORTHIO_CLEAR, val) | ||
885 | #define bfin_read_PORTHIO_SET() bfin_read16(PORTHIO_SET) | ||
886 | #define bfin_write_PORTHIO_SET(val) bfin_write16(PORTHIO_SET, val) | ||
887 | #define bfin_read_PORTHIO_TOGGLE() bfin_read16(PORTHIO_TOGGLE) | ||
888 | #define bfin_write_PORTHIO_TOGGLE(val) bfin_write16(PORTHIO_TOGGLE, val) | ||
889 | #define bfin_read_PORTHIO_MASKA() bfin_read16(PORTHIO_MASKA) | ||
890 | #define bfin_write_PORTHIO_MASKA(val) bfin_write16(PORTHIO_MASKA, val) | ||
891 | #define bfin_read_PORTHIO_MASKA_CLEAR() bfin_read16(PORTHIO_MASKA_CLEAR) | ||
892 | #define bfin_write_PORTHIO_MASKA_CLEAR(val) bfin_write16(PORTHIO_MASKA_CLEAR, val) | ||
893 | #define bfin_read_PORTHIO_MASKA_SET() bfin_read16(PORTHIO_MASKA_SET) | ||
894 | #define bfin_write_PORTHIO_MASKA_SET(val) bfin_write16(PORTHIO_MASKA_SET, val) | ||
895 | #define bfin_read_PORTHIO_MASKA_TOGGLE() bfin_read16(PORTHIO_MASKA_TOGGLE) | ||
896 | #define bfin_write_PORTHIO_MASKA_TOGGLE(val) bfin_write16(PORTHIO_MASKA_TOGGLE, val) | ||
897 | #define bfin_read_PORTHIO_MASKB() bfin_read16(PORTHIO_MASKB) | ||
898 | #define bfin_write_PORTHIO_MASKB(val) bfin_write16(PORTHIO_MASKB, val) | ||
899 | #define bfin_read_PORTHIO_MASKB_CLEAR() bfin_read16(PORTHIO_MASKB_CLEAR) | ||
900 | #define bfin_write_PORTHIO_MASKB_CLEAR(val) bfin_write16(PORTHIO_MASKB_CLEAR, val) | ||
901 | #define bfin_read_PORTHIO_MASKB_SET() bfin_read16(PORTHIO_MASKB_SET) | ||
902 | #define bfin_write_PORTHIO_MASKB_SET(val) bfin_write16(PORTHIO_MASKB_SET, val) | ||
903 | #define bfin_read_PORTHIO_MASKB_TOGGLE() bfin_read16(PORTHIO_MASKB_TOGGLE) | ||
904 | #define bfin_write_PORTHIO_MASKB_TOGGLE(val) bfin_write16(PORTHIO_MASKB_TOGGLE, val) | ||
905 | #define bfin_read_PORTHIO_DIR() bfin_read16(PORTHIO_DIR) | ||
906 | #define bfin_write_PORTHIO_DIR(val) bfin_write16(PORTHIO_DIR, val) | ||
907 | #define bfin_read_PORTHIO_POLAR() bfin_read16(PORTHIO_POLAR) | ||
908 | #define bfin_write_PORTHIO_POLAR(val) bfin_write16(PORTHIO_POLAR, val) | ||
909 | #define bfin_read_PORTHIO_EDGE() bfin_read16(PORTHIO_EDGE) | ||
910 | #define bfin_write_PORTHIO_EDGE(val) bfin_write16(PORTHIO_EDGE, val) | ||
911 | #define bfin_read_PORTHIO_BOTH() bfin_read16(PORTHIO_BOTH) | ||
912 | #define bfin_write_PORTHIO_BOTH(val) bfin_write16(PORTHIO_BOTH, val) | ||
913 | #define bfin_read_PORTHIO_INEN() bfin_read16(PORTHIO_INEN) | ||
914 | #define bfin_write_PORTHIO_INEN(val) bfin_write16(PORTHIO_INEN, val) | ||
915 | |||
916 | |||
917 | /* UART1 Controller (0xFFC02000 - 0xFFC020FF) */ | ||
918 | #define bfin_read_UART1_THR() bfin_read16(UART1_THR) | ||
919 | #define bfin_write_UART1_THR(val) bfin_write16(UART1_THR, val) | ||
920 | #define bfin_read_UART1_RBR() bfin_read16(UART1_RBR) | ||
921 | #define bfin_write_UART1_RBR(val) bfin_write16(UART1_RBR, val) | ||
922 | #define bfin_read_UART1_DLL() bfin_read16(UART1_DLL) | ||
923 | #define bfin_write_UART1_DLL(val) bfin_write16(UART1_DLL, val) | ||
924 | #define bfin_read_UART1_IER() bfin_read16(UART1_IER) | ||
925 | #define bfin_write_UART1_IER(val) bfin_write16(UART1_IER, val) | ||
926 | #define bfin_read_UART1_DLH() bfin_read16(UART1_DLH) | ||
927 | #define bfin_write_UART1_DLH(val) bfin_write16(UART1_DLH, val) | ||
928 | #define bfin_read_UART1_IIR() bfin_read16(UART1_IIR) | ||
929 | #define bfin_write_UART1_IIR(val) bfin_write16(UART1_IIR, val) | ||
930 | #define bfin_read_UART1_LCR() bfin_read16(UART1_LCR) | ||
931 | #define bfin_write_UART1_LCR(val) bfin_write16(UART1_LCR, val) | ||
932 | #define bfin_read_UART1_MCR() bfin_read16(UART1_MCR) | ||
933 | #define bfin_write_UART1_MCR(val) bfin_write16(UART1_MCR, val) | ||
934 | #define bfin_read_UART1_LSR() bfin_read16(UART1_LSR) | ||
935 | #define bfin_write_UART1_LSR(val) bfin_write16(UART1_LSR, val) | ||
936 | #define bfin_read_UART1_MSR() bfin_read16(UART1_MSR) | ||
937 | #define bfin_write_UART1_MSR(val) bfin_write16(UART1_MSR, val) | ||
938 | #define bfin_read_UART1_SCR() bfin_read16(UART1_SCR) | ||
939 | #define bfin_write_UART1_SCR(val) bfin_write16(UART1_SCR, val) | ||
940 | #define bfin_read_UART1_GCTL() bfin_read16(UART1_GCTL) | ||
941 | #define bfin_write_UART1_GCTL(val) bfin_write16(UART1_GCTL, val) | ||
942 | |||
943 | /* Omit CAN register sets from the cdefBF534.h (CAN is not in the ADSP-BF52x processor) */ | ||
944 | |||
945 | /* Pin Control Registers (0xFFC03200 - 0xFFC032FF) */ | ||
946 | #define bfin_read_PORTF_FER() bfin_read16(PORTF_FER) | ||
947 | #define bfin_write_PORTF_FER(val) bfin_write16(PORTF_FER, val) | ||
948 | #define bfin_read_PORTG_FER() bfin_read16(PORTG_FER) | ||
949 | #define bfin_write_PORTG_FER(val) bfin_write16(PORTG_FER, val) | ||
950 | #define bfin_read_PORTH_FER() bfin_read16(PORTH_FER) | ||
951 | #define bfin_write_PORTH_FER(val) bfin_write16(PORTH_FER, val) | ||
952 | #define bfin_read_PORT_MUX() bfin_read16(PORT_MUX) | ||
953 | #define bfin_write_PORT_MUX(val) bfin_write16(PORT_MUX, val) | ||
954 | |||
955 | |||
956 | /* Handshake MDMA Registers (0xFFC03300 - 0xFFC033FF) */ | ||
957 | #define bfin_read_HMDMA0_CONTROL() bfin_read16(HMDMA0_CONTROL) | ||
958 | #define bfin_write_HMDMA0_CONTROL(val) bfin_write16(HMDMA0_CONTROL, val) | ||
959 | #define bfin_read_HMDMA0_ECINIT() bfin_read16(HMDMA0_ECINIT) | ||
960 | #define bfin_write_HMDMA0_ECINIT(val) bfin_write16(HMDMA0_ECINIT, val) | ||
961 | #define bfin_read_HMDMA0_BCINIT() bfin_read16(HMDMA0_BCINIT) | ||
962 | #define bfin_write_HMDMA0_BCINIT(val) bfin_write16(HMDMA0_BCINIT, val) | ||
963 | #define bfin_read_HMDMA0_ECURGENT() bfin_read16(HMDMA0_ECURGENT) | ||
964 | #define bfin_write_HMDMA0_ECURGENT(val) bfin_write16(HMDMA0_ECURGENT, val) | ||
965 | #define bfin_read_HMDMA0_ECOVERFLOW() bfin_read16(HMDMA0_ECOVERFLOW) | ||
966 | #define bfin_write_HMDMA0_ECOVERFLOW(val) bfin_write16(HMDMA0_ECOVERFLOW, val) | ||
967 | #define bfin_read_HMDMA0_ECOUNT() bfin_read16(HMDMA0_ECOUNT) | ||
968 | #define bfin_write_HMDMA0_ECOUNT(val) bfin_write16(HMDMA0_ECOUNT, val) | ||
969 | #define bfin_read_HMDMA0_BCOUNT() bfin_read16(HMDMA0_BCOUNT) | ||
970 | #define bfin_write_HMDMA0_BCOUNT(val) bfin_write16(HMDMA0_BCOUNT, val) | ||
971 | |||
972 | #define bfin_read_HMDMA1_CONTROL() bfin_read16(HMDMA1_CONTROL) | ||
973 | #define bfin_write_HMDMA1_CONTROL(val) bfin_write16(HMDMA1_CONTROL, val) | ||
974 | #define bfin_read_HMDMA1_ECINIT() bfin_read16(HMDMA1_ECINIT) | ||
975 | #define bfin_write_HMDMA1_ECINIT(val) bfin_write16(HMDMA1_ECINIT, val) | ||
976 | #define bfin_read_HMDMA1_BCINIT() bfin_read16(HMDMA1_BCINIT) | ||
977 | #define bfin_write_HMDMA1_BCINIT(val) bfin_write16(HMDMA1_BCINIT, val) | ||
978 | #define bfin_read_HMDMA1_ECURGENT() bfin_read16(HMDMA1_ECURGENT) | ||
979 | #define bfin_write_HMDMA1_ECURGENT(val) bfin_write16(HMDMA1_ECURGENT, val) | ||
980 | #define bfin_read_HMDMA1_ECOVERFLOW() bfin_read16(HMDMA1_ECOVERFLOW) | ||
981 | #define bfin_write_HMDMA1_ECOVERFLOW(val) bfin_write16(HMDMA1_ECOVERFLOW, val) | ||
982 | #define bfin_read_HMDMA1_ECOUNT() bfin_read16(HMDMA1_ECOUNT) | ||
983 | #define bfin_write_HMDMA1_ECOUNT(val) bfin_write16(HMDMA1_ECOUNT, val) | ||
984 | #define bfin_read_HMDMA1_BCOUNT() bfin_read16(HMDMA1_BCOUNT) | ||
985 | #define bfin_write_HMDMA1_BCOUNT(val) bfin_write16(HMDMA1_BCOUNT, val) | ||
986 | |||
987 | /* ==== end from cdefBF534.h ==== */ | ||
988 | |||
989 | /* GPIO PIN mux (0xFFC03210 - OxFFC03288) */ | ||
990 | |||
991 | #define bfin_read_PORTF_MUX() bfin_read16(PORTF_MUX) | ||
992 | #define bfin_write_PORTF_MUX(val) bfin_write16(PORTF_MUX, val) | ||
993 | #define bfin_read_PORTG_MUX() bfin_read16(PORTG_MUX) | ||
994 | #define bfin_write_PORTG_MUX(val) bfin_write16(PORTG_MUX, val) | ||
995 | #define bfin_read_PORTH_MUX() bfin_read16(PORTH_MUX) | ||
996 | #define bfin_write_PORTH_MUX(val) bfin_write16(PORTH_MUX, val) | ||
997 | |||
998 | #define bfin_read_PORTF_DRIVE() bfin_read16(PORTF_DRIVE) | ||
999 | #define bfin_write_PORTF_DRIVE(val) bfin_write16(PORTF_DRIVE, val) | ||
1000 | #define bfin_read_PORTG_DRIVE() bfin_read16(PORTG_DRIVE) | ||
1001 | #define bfin_write_PORTG_DRIVE(val) bfin_write16(PORTG_DRIVE, val) | ||
1002 | #define bfin_read_PORTH_DRIVE() bfin_read16(PORTH_DRIVE) | ||
1003 | #define bfin_write_PORTH_DRIVE(val) bfin_write16(PORTH_DRIVE, val) | ||
1004 | #define bfin_read_PORTF_SLEW() bfin_read16(PORTF_SLEW) | ||
1005 | #define bfin_write_PORTF_SLEW(val) bfin_write16(PORTF_SLEW, val) | ||
1006 | #define bfin_read_PORTG_SLEW() bfin_read16(PORTG_SLEW) | ||
1007 | #define bfin_write_PORTG_SLEW(val) bfin_write16(PORTG_SLEW, val) | ||
1008 | #define bfin_read_PORTH_SLEW() bfin_read16(PORTH_SLEW) | ||
1009 | #define bfin_write_PORTH_SLEW(val) bfin_write16(PORTH_SLEW, val) | ||
1010 | #define bfin_read_PORTF_HYSTERISIS() bfin_read16(PORTF_HYSTERISIS) | ||
1011 | #define bfin_write_PORTF_HYSTERISIS(val) bfin_write16(PORTF_HYSTERISIS, val) | ||
1012 | #define bfin_read_PORTG_HYSTERISIS() bfin_read16(PORTG_HYSTERISIS) | ||
1013 | #define bfin_write_PORTG_HYSTERISIS(val) bfin_write16(PORTG_HYSTERISIS, val) | ||
1014 | #define bfin_read_PORTH_HYSTERISIS() bfin_read16(PORTH_HYSTERISIS) | ||
1015 | #define bfin_write_PORTH_HYSTERISIS(val) bfin_write16(PORTH_HYSTERISIS, val) | ||
1016 | #define bfin_read_MISCPORT_DRIVE() bfin_read16(MISCPORT_DRIVE) | ||
1017 | #define bfin_write_MISCPORT_DRIVE(val) bfin_write16(MISCPORT_DRIVE, val) | ||
1018 | #define bfin_read_MISCPORT_SLEW() bfin_read16(MISCPORT_SLEW) | ||
1019 | #define bfin_write_MISCPORT_SLEW(val) bfin_write16(MISCPORT_SLEW, val) | ||
1020 | #define bfin_read_MISCPORT_HYSTERISIS() bfin_read16(MISCPORT_HYSTERISIS) | ||
1021 | #define bfin_write_MISCPORT_HYSTERISIS(val) bfin_write16(MISCPORT_HYSTERISIS, val) | ||
1022 | |||
1023 | /* HOST Port Registers */ | ||
1024 | |||
1025 | #define bfin_read_HOST_CONTROL() bfin_read16(HOST_CONTROL) | ||
1026 | #define bfin_write_HOST_CONTROL(val) bfin_write16(HOST_CONTROL, val) | ||
1027 | #define bfin_read_HOST_STATUS() bfin_read16(HOST_STATUS) | ||
1028 | #define bfin_write_HOST_STATUS(val) bfin_write16(HOST_STATUS, val) | ||
1029 | #define bfin_read_HOST_TIMEOUT() bfin_read16(HOST_TIMEOUT) | ||
1030 | #define bfin_write_HOST_TIMEOUT(val) bfin_write16(HOST_TIMEOUT, val) | ||
1031 | |||
1032 | /* Counter Registers */ | ||
1033 | |||
1034 | #define bfin_read_CNT_CONFIG() bfin_read16(CNT_CONFIG) | ||
1035 | #define bfin_write_CNT_CONFIG(val) bfin_write16(CNT_CONFIG, val) | ||
1036 | #define bfin_read_CNT_IMASK() bfin_read16(CNT_IMASK) | ||
1037 | #define bfin_write_CNT_IMASK(val) bfin_write16(CNT_IMASK, val) | ||
1038 | #define bfin_read_CNT_STATUS() bfin_read16(CNT_STATUS) | ||
1039 | #define bfin_write_CNT_STATUS(val) bfin_write16(CNT_STATUS, val) | ||
1040 | #define bfin_read_CNT_COMMAND() bfin_read16(CNT_COMMAND) | ||
1041 | #define bfin_write_CNT_COMMAND(val) bfin_write16(CNT_COMMAND, val) | ||
1042 | #define bfin_read_CNT_DEBOUNCE() bfin_read16(CNT_DEBOUNCE) | ||
1043 | #define bfin_write_CNT_DEBOUNCE(val) bfin_write16(CNT_DEBOUNCE, val) | ||
1044 | #define bfin_read_CNT_COUNTER() bfin_read32(CNT_COUNTER) | ||
1045 | #define bfin_write_CNT_COUNTER(val) bfin_write32(CNT_COUNTER, val) | ||
1046 | #define bfin_read_CNT_MAX() bfin_read32(CNT_MAX) | ||
1047 | #define bfin_write_CNT_MAX(val) bfin_write32(CNT_MAX, val) | ||
1048 | #define bfin_read_CNT_MIN() bfin_read32(CNT_MIN) | ||
1049 | #define bfin_write_CNT_MIN(val) bfin_write32(CNT_MIN, val) | ||
1050 | |||
1051 | /* Security Registers */ | ||
1052 | |||
1053 | #define bfin_read_SECURE_SYSSWT() bfin_read32(SECURE_SYSSWT) | ||
1054 | #define bfin_write_SECURE_SYSSWT(val) bfin_write32(SECURE_SYSSWT, val) | ||
1055 | #define bfin_read_SECURE_CONTROL() bfin_read16(SECURE_CONTROL) | ||
1056 | #define bfin_write_SECURE_CONTROL(val) bfin_write16(SECURE_CONTROL, val) | ||
1057 | #define bfin_read_SECURE_STATUS() bfin_read16(SECURE_STATUS) | ||
1058 | #define bfin_write_SECURE_STATUS(val) bfin_write16(SECURE_STATUS, val) | ||
1059 | |||
1060 | /* NFC Registers */ | ||
1061 | |||
1062 | #define bfin_read_NFC_CTL() bfin_read16(NFC_CTL) | ||
1063 | #define bfin_write_NFC_CTL(val) bfin_write16(NFC_CTL, val) | ||
1064 | #define bfin_read_NFC_STAT() bfin_read16(NFC_STAT) | ||
1065 | #define bfin_write_NFC_STAT(val) bfin_write16(NFC_STAT, val) | ||
1066 | #define bfin_read_NFC_IRQSTAT() bfin_read16(NFC_IRQSTAT) | ||
1067 | #define bfin_write_NFC_IRQSTAT(val) bfin_write16(NFC_IRQSTAT, val) | ||
1068 | #define bfin_read_NFC_IRQMASK() bfin_read16(NFC_IRQMASK) | ||
1069 | #define bfin_write_NFC_IRQMASK(val) bfin_write16(NFC_IRQMASK, val) | ||
1070 | #define bfin_read_NFC_ECC0() bfin_read16(NFC_ECC0) | ||
1071 | #define bfin_write_NFC_ECC0(val) bfin_write16(NFC_ECC0, val) | ||
1072 | #define bfin_read_NFC_ECC1() bfin_read16(NFC_ECC1) | ||
1073 | #define bfin_write_NFC_ECC1(val) bfin_write16(NFC_ECC1, val) | ||
1074 | #define bfin_read_NFC_ECC2() bfin_read16(NFC_ECC2) | ||
1075 | #define bfin_write_NFC_ECC2(val) bfin_write16(NFC_ECC2, val) | ||
1076 | #define bfin_read_NFC_ECC3() bfin_read16(NFC_ECC3) | ||
1077 | #define bfin_write_NFC_ECC3(val) bfin_write16(NFC_ECC3, val) | ||
1078 | #define bfin_read_NFC_COUNT() bfin_read16(NFC_COUNT) | ||
1079 | #define bfin_write_NFC_COUNT(val) bfin_write16(NFC_COUNT, val) | ||
1080 | #define bfin_read_NFC_RST() bfin_read16(NFC_RST) | ||
1081 | #define bfin_write_NFC_RST(val) bfin_write16(NFC_RST, val) | ||
1082 | #define bfin_read_NFC_PGCTL() bfin_read16(NFC_PGCTL) | ||
1083 | #define bfin_write_NFC_PGCTL(val) bfin_write16(NFC_PGCTL, val) | ||
1084 | #define bfin_read_NFC_READ() bfin_read16(NFC_READ) | ||
1085 | #define bfin_write_NFC_READ(val) bfin_write16(NFC_READ, val) | ||
1086 | #define bfin_read_NFC_ADDR() bfin_read16(NFC_ADDR) | ||
1087 | #define bfin_write_NFC_ADDR(val) bfin_write16(NFC_ADDR, val) | ||
1088 | #define bfin_read_NFC_CMD() bfin_read16(NFC_CMD) | ||
1089 | #define bfin_write_NFC_CMD(val) bfin_write16(NFC_CMD, val) | ||
1090 | #define bfin_read_NFC_DATA_WR() bfin_read16(NFC_DATA_WR) | ||
1091 | #define bfin_write_NFC_DATA_WR(val) bfin_write16(NFC_DATA_WR, val) | ||
1092 | #define bfin_read_NFC_DATA_RD() bfin_read16(NFC_DATA_RD) | ||
1093 | #define bfin_write_NFC_DATA_RD(val) bfin_write16(NFC_DATA_RD, val) | ||
1094 | |||
1095 | /* These need to be last due to the cdef/linux inter-dependencies */ | ||
1096 | #include <asm/irq.h> | ||
12 | 1097 | ||
13 | #endif /* _CDEF_BF522_H */ | 1098 | #endif /* _CDEF_BF522_H */ |
diff --git a/arch/blackfin/mach-bf527/include/mach/cdefBF52x_base.h b/arch/blackfin/mach-bf527/include/mach/cdefBF52x_base.h deleted file mode 100644 index ced5e129c3bc..000000000000 --- a/arch/blackfin/mach-bf527/include/mach/cdefBF52x_base.h +++ /dev/null | |||
@@ -1,1100 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2007-2010 Analog Devices Inc. | ||
3 | * | ||
4 | * Licensed under the GPL-2 or later. | ||
5 | */ | ||
6 | |||
7 | #ifndef _CDEF_BF52X_H | ||
8 | #define _CDEF_BF52X_H | ||
9 | |||
10 | /* ==== begin from cdefBF534.h ==== */ | ||
11 | |||
12 | /* Clock and System Control (0xFFC00000 - 0xFFC000FF) */ | ||
13 | #define bfin_read_PLL_CTL() bfin_read16(PLL_CTL) | ||
14 | #define bfin_read_PLL_DIV() bfin_read16(PLL_DIV) | ||
15 | #define bfin_write_PLL_DIV(val) bfin_write16(PLL_DIV, val) | ||
16 | #define bfin_read_VR_CTL() bfin_read16(VR_CTL) | ||
17 | #define bfin_read_PLL_STAT() bfin_read16(PLL_STAT) | ||
18 | #define bfin_write_PLL_STAT(val) bfin_write16(PLL_STAT, val) | ||
19 | #define bfin_read_PLL_LOCKCNT() bfin_read16(PLL_LOCKCNT) | ||
20 | #define bfin_write_PLL_LOCKCNT(val) bfin_write16(PLL_LOCKCNT, val) | ||
21 | #define bfin_read_CHIPID() bfin_read32(CHIPID) | ||
22 | #define bfin_write_CHIPID(val) bfin_write32(CHIPID, val) | ||
23 | |||
24 | |||
25 | /* System Interrupt Controller (0xFFC00100 - 0xFFC001FF) */ | ||
26 | #define bfin_read_SWRST() bfin_read16(SWRST) | ||
27 | #define bfin_write_SWRST(val) bfin_write16(SWRST, val) | ||
28 | #define bfin_read_SYSCR() bfin_read16(SYSCR) | ||
29 | #define bfin_write_SYSCR(val) bfin_write16(SYSCR, val) | ||
30 | |||
31 | #define bfin_read_SIC_RVECT() bfin_read32(SIC_RVECT) | ||
32 | #define bfin_write_SIC_RVECT(val) bfin_write32(SIC_RVECT, val) | ||
33 | #define bfin_read_SIC_IMASK0() bfin_read32(SIC_IMASK0) | ||
34 | #define bfin_write_SIC_IMASK0(val) bfin_write32(SIC_IMASK0, val) | ||
35 | #define bfin_read_SIC_IMASK(x) bfin_read32(SIC_IMASK0 + (x << 6)) | ||
36 | #define bfin_write_SIC_IMASK(x, val) bfin_write32((SIC_IMASK0 + (x << 6)), val) | ||
37 | |||
38 | #define bfin_read_SIC_IAR0() bfin_read32(SIC_IAR0) | ||
39 | #define bfin_write_SIC_IAR0(val) bfin_write32(SIC_IAR0, val) | ||
40 | #define bfin_read_SIC_IAR1() bfin_read32(SIC_IAR1) | ||
41 | #define bfin_write_SIC_IAR1(val) bfin_write32(SIC_IAR1, val) | ||
42 | #define bfin_read_SIC_IAR2() bfin_read32(SIC_IAR2) | ||
43 | #define bfin_write_SIC_IAR2(val) bfin_write32(SIC_IAR2, val) | ||
44 | #define bfin_read_SIC_IAR3() bfin_read32(SIC_IAR3) | ||
45 | #define bfin_write_SIC_IAR3(val) bfin_write32(SIC_IAR3, val) | ||
46 | |||
47 | #define bfin_read_SIC_ISR0() bfin_read32(SIC_ISR0) | ||
48 | #define bfin_write_SIC_ISR0(val) bfin_write32(SIC_ISR0, val) | ||
49 | #define bfin_read_SIC_ISR(x) bfin_read32(SIC_ISR0 + (x << 6)) | ||
50 | #define bfin_write_SIC_ISR(x, val) bfin_write32((SIC_ISR0 + (x << 6)), val) | ||
51 | |||
52 | #define bfin_read_SIC_IWR0() bfin_read32(SIC_IWR0) | ||
53 | #define bfin_write_SIC_IWR0(val) bfin_write32(SIC_IWR0, val) | ||
54 | #define bfin_read_SIC_IWR(x) bfin_read32(SIC_IWR0 + (x << 6)) | ||
55 | #define bfin_write_SIC_IWR(x, val) bfin_write32((SIC_IWR0 + (x << 6)), val) | ||
56 | |||
57 | /* SIC Additions to ADSP-BF52x (0xFFC0014C - 0xFFC00162) */ | ||
58 | |||
59 | #define bfin_read_SIC_IMASK1() bfin_read32(SIC_IMASK1) | ||
60 | #define bfin_write_SIC_IMASK1(val) bfin_write32(SIC_IMASK1, val) | ||
61 | #define bfin_read_SIC_IAR4() bfin_read32(SIC_IAR4) | ||
62 | #define bfin_write_SIC_IAR4(val) bfin_write32(SIC_IAR4, val) | ||
63 | #define bfin_read_SIC_IAR5() bfin_read32(SIC_IAR5) | ||
64 | #define bfin_write_SIC_IAR5(val) bfin_write32(SIC_IAR5, val) | ||
65 | #define bfin_read_SIC_IAR6() bfin_read32(SIC_IAR6) | ||
66 | #define bfin_write_SIC_IAR6(val) bfin_write32(SIC_IAR6, val) | ||
67 | #define bfin_read_SIC_IAR7() bfin_read32(SIC_IAR7) | ||
68 | #define bfin_write_SIC_IAR7(val) bfin_write32(SIC_IAR7, val) | ||
69 | #define bfin_read_SIC_ISR1() bfin_read32(SIC_ISR1) | ||
70 | #define bfin_write_SIC_ISR1(val) bfin_write32(SIC_ISR1, val) | ||
71 | #define bfin_read_SIC_IWR1() bfin_read32(SIC_IWR1) | ||
72 | #define bfin_write_SIC_IWR1(val) bfin_write32(SIC_IWR1, val) | ||
73 | |||
74 | /* Watchdog Timer (0xFFC00200 - 0xFFC002FF) */ | ||
75 | #define bfin_read_WDOG_CTL() bfin_read16(WDOG_CTL) | ||
76 | #define bfin_write_WDOG_CTL(val) bfin_write16(WDOG_CTL, val) | ||
77 | #define bfin_read_WDOG_CNT() bfin_read32(WDOG_CNT) | ||
78 | #define bfin_write_WDOG_CNT(val) bfin_write32(WDOG_CNT, val) | ||
79 | #define bfin_read_WDOG_STAT() bfin_read32(WDOG_STAT) | ||
80 | #define bfin_write_WDOG_STAT(val) bfin_write32(WDOG_STAT, val) | ||
81 | |||
82 | |||
83 | /* Real Time Clock (0xFFC00300 - 0xFFC003FF) */ | ||
84 | #define bfin_read_RTC_STAT() bfin_read32(RTC_STAT) | ||
85 | #define bfin_write_RTC_STAT(val) bfin_write32(RTC_STAT, val) | ||
86 | #define bfin_read_RTC_ICTL() bfin_read16(RTC_ICTL) | ||
87 | #define bfin_write_RTC_ICTL(val) bfin_write16(RTC_ICTL, val) | ||
88 | #define bfin_read_RTC_ISTAT() bfin_read16(RTC_ISTAT) | ||
89 | #define bfin_write_RTC_ISTAT(val) bfin_write16(RTC_ISTAT, val) | ||
90 | #define bfin_read_RTC_SWCNT() bfin_read16(RTC_SWCNT) | ||
91 | #define bfin_write_RTC_SWCNT(val) bfin_write16(RTC_SWCNT, val) | ||
92 | #define bfin_read_RTC_ALARM() bfin_read32(RTC_ALARM) | ||
93 | #define bfin_write_RTC_ALARM(val) bfin_write32(RTC_ALARM, val) | ||
94 | #define bfin_read_RTC_FAST() bfin_read16(RTC_FAST) | ||
95 | #define bfin_write_RTC_FAST(val) bfin_write16(RTC_FAST, val) | ||
96 | #define bfin_read_RTC_PREN() bfin_read16(RTC_PREN) | ||
97 | #define bfin_write_RTC_PREN(val) bfin_write16(RTC_PREN, val) | ||
98 | |||
99 | |||
100 | /* UART0 Controller (0xFFC00400 - 0xFFC004FF) */ | ||
101 | #define bfin_read_UART0_THR() bfin_read16(UART0_THR) | ||
102 | #define bfin_write_UART0_THR(val) bfin_write16(UART0_THR, val) | ||
103 | #define bfin_read_UART0_RBR() bfin_read16(UART0_RBR) | ||
104 | #define bfin_write_UART0_RBR(val) bfin_write16(UART0_RBR, val) | ||
105 | #define bfin_read_UART0_DLL() bfin_read16(UART0_DLL) | ||
106 | #define bfin_write_UART0_DLL(val) bfin_write16(UART0_DLL, val) | ||
107 | #define bfin_read_UART0_IER() bfin_read16(UART0_IER) | ||
108 | #define bfin_write_UART0_IER(val) bfin_write16(UART0_IER, val) | ||
109 | #define bfin_read_UART0_DLH() bfin_read16(UART0_DLH) | ||
110 | #define bfin_write_UART0_DLH(val) bfin_write16(UART0_DLH, val) | ||
111 | #define bfin_read_UART0_IIR() bfin_read16(UART0_IIR) | ||
112 | #define bfin_write_UART0_IIR(val) bfin_write16(UART0_IIR, val) | ||
113 | #define bfin_read_UART0_LCR() bfin_read16(UART0_LCR) | ||
114 | #define bfin_write_UART0_LCR(val) bfin_write16(UART0_LCR, val) | ||
115 | #define bfin_read_UART0_MCR() bfin_read16(UART0_MCR) | ||
116 | #define bfin_write_UART0_MCR(val) bfin_write16(UART0_MCR, val) | ||
117 | #define bfin_read_UART0_LSR() bfin_read16(UART0_LSR) | ||
118 | #define bfin_write_UART0_LSR(val) bfin_write16(UART0_LSR, val) | ||
119 | #define bfin_read_UART0_MSR() bfin_read16(UART0_MSR) | ||
120 | #define bfin_write_UART0_MSR(val) bfin_write16(UART0_MSR, val) | ||
121 | #define bfin_read_UART0_SCR() bfin_read16(UART0_SCR) | ||
122 | #define bfin_write_UART0_SCR(val) bfin_write16(UART0_SCR, val) | ||
123 | #define bfin_read_UART0_GCTL() bfin_read16(UART0_GCTL) | ||
124 | #define bfin_write_UART0_GCTL(val) bfin_write16(UART0_GCTL, val) | ||
125 | |||
126 | |||
127 | /* SPI Controller (0xFFC00500 - 0xFFC005FF) */ | ||
128 | #define bfin_read_SPI_CTL() bfin_read16(SPI_CTL) | ||
129 | #define bfin_write_SPI_CTL(val) bfin_write16(SPI_CTL, val) | ||
130 | #define bfin_read_SPI_FLG() bfin_read16(SPI_FLG) | ||
131 | #define bfin_write_SPI_FLG(val) bfin_write16(SPI_FLG, val) | ||
132 | #define bfin_read_SPI_STAT() bfin_read16(SPI_STAT) | ||
133 | #define bfin_write_SPI_STAT(val) bfin_write16(SPI_STAT, val) | ||
134 | #define bfin_read_SPI_TDBR() bfin_read16(SPI_TDBR) | ||
135 | #define bfin_write_SPI_TDBR(val) bfin_write16(SPI_TDBR, val) | ||
136 | #define bfin_read_SPI_RDBR() bfin_read16(SPI_RDBR) | ||
137 | #define bfin_write_SPI_RDBR(val) bfin_write16(SPI_RDBR, val) | ||
138 | #define bfin_read_SPI_BAUD() bfin_read16(SPI_BAUD) | ||
139 | #define bfin_write_SPI_BAUD(val) bfin_write16(SPI_BAUD, val) | ||
140 | #define bfin_read_SPI_SHADOW() bfin_read16(SPI_SHADOW) | ||
141 | #define bfin_write_SPI_SHADOW(val) bfin_write16(SPI_SHADOW, val) | ||
142 | |||
143 | |||
144 | /* TIMER0-7 Registers (0xFFC00600 - 0xFFC006FF) */ | ||
145 | #define bfin_read_TIMER0_CONFIG() bfin_read16(TIMER0_CONFIG) | ||
146 | #define bfin_write_TIMER0_CONFIG(val) bfin_write16(TIMER0_CONFIG, val) | ||
147 | #define bfin_read_TIMER0_COUNTER() bfin_read32(TIMER0_COUNTER) | ||
148 | #define bfin_write_TIMER0_COUNTER(val) bfin_write32(TIMER0_COUNTER, val) | ||
149 | #define bfin_read_TIMER0_PERIOD() bfin_read32(TIMER0_PERIOD) | ||
150 | #define bfin_write_TIMER0_PERIOD(val) bfin_write32(TIMER0_PERIOD, val) | ||
151 | #define bfin_read_TIMER0_WIDTH() bfin_read32(TIMER0_WIDTH) | ||
152 | #define bfin_write_TIMER0_WIDTH(val) bfin_write32(TIMER0_WIDTH, val) | ||
153 | |||
154 | #define bfin_read_TIMER1_CONFIG() bfin_read16(TIMER1_CONFIG) | ||
155 | #define bfin_write_TIMER1_CONFIG(val) bfin_write16(TIMER1_CONFIG, val) | ||
156 | #define bfin_read_TIMER1_COUNTER() bfin_read32(TIMER1_COUNTER) | ||
157 | #define bfin_write_TIMER1_COUNTER(val) bfin_write32(TIMER1_COUNTER, val) | ||
158 | #define bfin_read_TIMER1_PERIOD() bfin_read32(TIMER1_PERIOD) | ||
159 | #define bfin_write_TIMER1_PERIOD(val) bfin_write32(TIMER1_PERIOD, val) | ||
160 | #define bfin_read_TIMER1_WIDTH() bfin_read32(TIMER1_WIDTH) | ||
161 | #define bfin_write_TIMER1_WIDTH(val) bfin_write32(TIMER1_WIDTH, val) | ||
162 | |||
163 | #define bfin_read_TIMER2_CONFIG() bfin_read16(TIMER2_CONFIG) | ||
164 | #define bfin_write_TIMER2_CONFIG(val) bfin_write16(TIMER2_CONFIG, val) | ||
165 | #define bfin_read_TIMER2_COUNTER() bfin_read32(TIMER2_COUNTER) | ||
166 | #define bfin_write_TIMER2_COUNTER(val) bfin_write32(TIMER2_COUNTER, val) | ||
167 | #define bfin_read_TIMER2_PERIOD() bfin_read32(TIMER2_PERIOD) | ||
168 | #define bfin_write_TIMER2_PERIOD(val) bfin_write32(TIMER2_PERIOD, val) | ||
169 | #define bfin_read_TIMER2_WIDTH() bfin_read32(TIMER2_WIDTH) | ||
170 | #define bfin_write_TIMER2_WIDTH(val) bfin_write32(TIMER2_WIDTH, val) | ||
171 | |||
172 | #define bfin_read_TIMER3_CONFIG() bfin_read16(TIMER3_CONFIG) | ||
173 | #define bfin_write_TIMER3_CONFIG(val) bfin_write16(TIMER3_CONFIG, val) | ||
174 | #define bfin_read_TIMER3_COUNTER() bfin_read32(TIMER3_COUNTER) | ||
175 | #define bfin_write_TIMER3_COUNTER(val) bfin_write32(TIMER3_COUNTER, val) | ||
176 | #define bfin_read_TIMER3_PERIOD() bfin_read32(TIMER3_PERIOD) | ||
177 | #define bfin_write_TIMER3_PERIOD(val) bfin_write32(TIMER3_PERIOD, val) | ||
178 | #define bfin_read_TIMER3_WIDTH() bfin_read32(TIMER3_WIDTH) | ||
179 | #define bfin_write_TIMER3_WIDTH(val) bfin_write32(TIMER3_WIDTH, val) | ||
180 | |||
181 | #define bfin_read_TIMER4_CONFIG() bfin_read16(TIMER4_CONFIG) | ||
182 | #define bfin_write_TIMER4_CONFIG(val) bfin_write16(TIMER4_CONFIG, val) | ||
183 | #define bfin_read_TIMER4_COUNTER() bfin_read32(TIMER4_COUNTER) | ||
184 | #define bfin_write_TIMER4_COUNTER(val) bfin_write32(TIMER4_COUNTER, val) | ||
185 | #define bfin_read_TIMER4_PERIOD() bfin_read32(TIMER4_PERIOD) | ||
186 | #define bfin_write_TIMER4_PERIOD(val) bfin_write32(TIMER4_PERIOD, val) | ||
187 | #define bfin_read_TIMER4_WIDTH() bfin_read32(TIMER4_WIDTH) | ||
188 | #define bfin_write_TIMER4_WIDTH(val) bfin_write32(TIMER4_WIDTH, val) | ||
189 | |||
190 | #define bfin_read_TIMER5_CONFIG() bfin_read16(TIMER5_CONFIG) | ||
191 | #define bfin_write_TIMER5_CONFIG(val) bfin_write16(TIMER5_CONFIG, val) | ||
192 | #define bfin_read_TIMER5_COUNTER() bfin_read32(TIMER5_COUNTER) | ||
193 | #define bfin_write_TIMER5_COUNTER(val) bfin_write32(TIMER5_COUNTER, val) | ||
194 | #define bfin_read_TIMER5_PERIOD() bfin_read32(TIMER5_PERIOD) | ||
195 | #define bfin_write_TIMER5_PERIOD(val) bfin_write32(TIMER5_PERIOD, val) | ||
196 | #define bfin_read_TIMER5_WIDTH() bfin_read32(TIMER5_WIDTH) | ||
197 | #define bfin_write_TIMER5_WIDTH(val) bfin_write32(TIMER5_WIDTH, val) | ||
198 | |||
199 | #define bfin_read_TIMER6_CONFIG() bfin_read16(TIMER6_CONFIG) | ||
200 | #define bfin_write_TIMER6_CONFIG(val) bfin_write16(TIMER6_CONFIG, val) | ||
201 | #define bfin_read_TIMER6_COUNTER() bfin_read32(TIMER6_COUNTER) | ||
202 | #define bfin_write_TIMER6_COUNTER(val) bfin_write32(TIMER6_COUNTER, val) | ||
203 | #define bfin_read_TIMER6_PERIOD() bfin_read32(TIMER6_PERIOD) | ||
204 | #define bfin_write_TIMER6_PERIOD(val) bfin_write32(TIMER6_PERIOD, val) | ||
205 | #define bfin_read_TIMER6_WIDTH() bfin_read32(TIMER6_WIDTH) | ||
206 | #define bfin_write_TIMER6_WIDTH(val) bfin_write32(TIMER6_WIDTH, val) | ||
207 | |||
208 | #define bfin_read_TIMER7_CONFIG() bfin_read16(TIMER7_CONFIG) | ||
209 | #define bfin_write_TIMER7_CONFIG(val) bfin_write16(TIMER7_CONFIG, val) | ||
210 | #define bfin_read_TIMER7_COUNTER() bfin_read32(TIMER7_COUNTER) | ||
211 | #define bfin_write_TIMER7_COUNTER(val) bfin_write32(TIMER7_COUNTER, val) | ||
212 | #define bfin_read_TIMER7_PERIOD() bfin_read32(TIMER7_PERIOD) | ||
213 | #define bfin_write_TIMER7_PERIOD(val) bfin_write32(TIMER7_PERIOD, val) | ||
214 | #define bfin_read_TIMER7_WIDTH() bfin_read32(TIMER7_WIDTH) | ||
215 | #define bfin_write_TIMER7_WIDTH(val) bfin_write32(TIMER7_WIDTH, val) | ||
216 | |||
217 | #define bfin_read_TIMER_ENABLE() bfin_read16(TIMER_ENABLE) | ||
218 | #define bfin_write_TIMER_ENABLE(val) bfin_write16(TIMER_ENABLE, val) | ||
219 | #define bfin_read_TIMER_DISABLE() bfin_read16(TIMER_DISABLE) | ||
220 | #define bfin_write_TIMER_DISABLE(val) bfin_write16(TIMER_DISABLE, val) | ||
221 | #define bfin_read_TIMER_STATUS() bfin_read32(TIMER_STATUS) | ||
222 | #define bfin_write_TIMER_STATUS(val) bfin_write32(TIMER_STATUS, val) | ||
223 | |||
224 | |||
225 | /* General Purpose I/O Port F (0xFFC00700 - 0xFFC007FF) */ | ||
226 | #define bfin_read_PORTFIO() bfin_read16(PORTFIO) | ||
227 | #define bfin_write_PORTFIO(val) bfin_write16(PORTFIO, val) | ||
228 | #define bfin_read_PORTFIO_CLEAR() bfin_read16(PORTFIO_CLEAR) | ||
229 | #define bfin_write_PORTFIO_CLEAR(val) bfin_write16(PORTFIO_CLEAR, val) | ||
230 | #define bfin_read_PORTFIO_SET() bfin_read16(PORTFIO_SET) | ||
231 | #define bfin_write_PORTFIO_SET(val) bfin_write16(PORTFIO_SET, val) | ||
232 | #define bfin_read_PORTFIO_TOGGLE() bfin_read16(PORTFIO_TOGGLE) | ||
233 | #define bfin_write_PORTFIO_TOGGLE(val) bfin_write16(PORTFIO_TOGGLE, val) | ||
234 | #define bfin_read_PORTFIO_MASKA() bfin_read16(PORTFIO_MASKA) | ||
235 | #define bfin_write_PORTFIO_MASKA(val) bfin_write16(PORTFIO_MASKA, val) | ||
236 | #define bfin_read_PORTFIO_MASKA_CLEAR() bfin_read16(PORTFIO_MASKA_CLEAR) | ||
237 | #define bfin_write_PORTFIO_MASKA_CLEAR(val) bfin_write16(PORTFIO_MASKA_CLEAR, val) | ||
238 | #define bfin_read_PORTFIO_MASKA_SET() bfin_read16(PORTFIO_MASKA_SET) | ||
239 | #define bfin_write_PORTFIO_MASKA_SET(val) bfin_write16(PORTFIO_MASKA_SET, val) | ||
240 | #define bfin_read_PORTFIO_MASKA_TOGGLE() bfin_read16(PORTFIO_MASKA_TOGGLE) | ||
241 | #define bfin_write_PORTFIO_MASKA_TOGGLE(val) bfin_write16(PORTFIO_MASKA_TOGGLE, val) | ||
242 | #define bfin_read_PORTFIO_MASKB() bfin_read16(PORTFIO_MASKB) | ||
243 | #define bfin_write_PORTFIO_MASKB(val) bfin_write16(PORTFIO_MASKB, val) | ||
244 | #define bfin_read_PORTFIO_MASKB_CLEAR() bfin_read16(PORTFIO_MASKB_CLEAR) | ||
245 | #define bfin_write_PORTFIO_MASKB_CLEAR(val) bfin_write16(PORTFIO_MASKB_CLEAR, val) | ||
246 | #define bfin_read_PORTFIO_MASKB_SET() bfin_read16(PORTFIO_MASKB_SET) | ||
247 | #define bfin_write_PORTFIO_MASKB_SET(val) bfin_write16(PORTFIO_MASKB_SET, val) | ||
248 | #define bfin_read_PORTFIO_MASKB_TOGGLE() bfin_read16(PORTFIO_MASKB_TOGGLE) | ||
249 | #define bfin_write_PORTFIO_MASKB_TOGGLE(val) bfin_write16(PORTFIO_MASKB_TOGGLE, val) | ||
250 | #define bfin_read_PORTFIO_DIR() bfin_read16(PORTFIO_DIR) | ||
251 | #define bfin_write_PORTFIO_DIR(val) bfin_write16(PORTFIO_DIR, val) | ||
252 | #define bfin_read_PORTFIO_POLAR() bfin_read16(PORTFIO_POLAR) | ||
253 | #define bfin_write_PORTFIO_POLAR(val) bfin_write16(PORTFIO_POLAR, val) | ||
254 | #define bfin_read_PORTFIO_EDGE() bfin_read16(PORTFIO_EDGE) | ||
255 | #define bfin_write_PORTFIO_EDGE(val) bfin_write16(PORTFIO_EDGE, val) | ||
256 | #define bfin_read_PORTFIO_BOTH() bfin_read16(PORTFIO_BOTH) | ||
257 | #define bfin_write_PORTFIO_BOTH(val) bfin_write16(PORTFIO_BOTH, val) | ||
258 | #define bfin_read_PORTFIO_INEN() bfin_read16(PORTFIO_INEN) | ||
259 | #define bfin_write_PORTFIO_INEN(val) bfin_write16(PORTFIO_INEN, val) | ||
260 | |||
261 | |||
262 | /* SPORT0 Controller (0xFFC00800 - 0xFFC008FF) */ | ||
263 | #define bfin_read_SPORT0_TCR1() bfin_read16(SPORT0_TCR1) | ||
264 | #define bfin_write_SPORT0_TCR1(val) bfin_write16(SPORT0_TCR1, val) | ||
265 | #define bfin_read_SPORT0_TCR2() bfin_read16(SPORT0_TCR2) | ||
266 | #define bfin_write_SPORT0_TCR2(val) bfin_write16(SPORT0_TCR2, val) | ||
267 | #define bfin_read_SPORT0_TCLKDIV() bfin_read16(SPORT0_TCLKDIV) | ||
268 | #define bfin_write_SPORT0_TCLKDIV(val) bfin_write16(SPORT0_TCLKDIV, val) | ||
269 | #define bfin_read_SPORT0_TFSDIV() bfin_read16(SPORT0_TFSDIV) | ||
270 | #define bfin_write_SPORT0_TFSDIV(val) bfin_write16(SPORT0_TFSDIV, val) | ||
271 | #define bfin_read_SPORT0_TX() bfin_read32(SPORT0_TX) | ||
272 | #define bfin_write_SPORT0_TX(val) bfin_write32(SPORT0_TX, val) | ||
273 | #define bfin_read_SPORT0_RX() bfin_read32(SPORT0_RX) | ||
274 | #define bfin_write_SPORT0_RX(val) bfin_write32(SPORT0_RX, val) | ||
275 | #define bfin_read_SPORT0_TX32() bfin_read32(SPORT0_TX) | ||
276 | #define bfin_write_SPORT0_TX32(val) bfin_write32(SPORT0_TX, val) | ||
277 | #define bfin_read_SPORT0_RX32() bfin_read32(SPORT0_RX) | ||
278 | #define bfin_write_SPORT0_RX32(val) bfin_write32(SPORT0_RX, val) | ||
279 | #define bfin_read_SPORT0_TX16() bfin_read16(SPORT0_TX) | ||
280 | #define bfin_write_SPORT0_TX16(val) bfin_write16(SPORT0_TX, val) | ||
281 | #define bfin_read_SPORT0_RX16() bfin_read16(SPORT0_RX) | ||
282 | #define bfin_write_SPORT0_RX16(val) bfin_write16(SPORT0_RX, val) | ||
283 | #define bfin_read_SPORT0_RCR1() bfin_read16(SPORT0_RCR1) | ||
284 | #define bfin_write_SPORT0_RCR1(val) bfin_write16(SPORT0_RCR1, val) | ||
285 | #define bfin_read_SPORT0_RCR2() bfin_read16(SPORT0_RCR2) | ||
286 | #define bfin_write_SPORT0_RCR2(val) bfin_write16(SPORT0_RCR2, val) | ||
287 | #define bfin_read_SPORT0_RCLKDIV() bfin_read16(SPORT0_RCLKDIV) | ||
288 | #define bfin_write_SPORT0_RCLKDIV(val) bfin_write16(SPORT0_RCLKDIV, val) | ||
289 | #define bfin_read_SPORT0_RFSDIV() bfin_read16(SPORT0_RFSDIV) | ||
290 | #define bfin_write_SPORT0_RFSDIV(val) bfin_write16(SPORT0_RFSDIV, val) | ||
291 | #define bfin_read_SPORT0_STAT() bfin_read16(SPORT0_STAT) | ||
292 | #define bfin_write_SPORT0_STAT(val) bfin_write16(SPORT0_STAT, val) | ||
293 | #define bfin_read_SPORT0_CHNL() bfin_read16(SPORT0_CHNL) | ||
294 | #define bfin_write_SPORT0_CHNL(val) bfin_write16(SPORT0_CHNL, val) | ||
295 | #define bfin_read_SPORT0_MCMC1() bfin_read16(SPORT0_MCMC1) | ||
296 | #define bfin_write_SPORT0_MCMC1(val) bfin_write16(SPORT0_MCMC1, val) | ||
297 | #define bfin_read_SPORT0_MCMC2() bfin_read16(SPORT0_MCMC2) | ||
298 | #define bfin_write_SPORT0_MCMC2(val) bfin_write16(SPORT0_MCMC2, val) | ||
299 | #define bfin_read_SPORT0_MTCS0() bfin_read32(SPORT0_MTCS0) | ||
300 | #define bfin_write_SPORT0_MTCS0(val) bfin_write32(SPORT0_MTCS0, val) | ||
301 | #define bfin_read_SPORT0_MTCS1() bfin_read32(SPORT0_MTCS1) | ||
302 | #define bfin_write_SPORT0_MTCS1(val) bfin_write32(SPORT0_MTCS1, val) | ||
303 | #define bfin_read_SPORT0_MTCS2() bfin_read32(SPORT0_MTCS2) | ||
304 | #define bfin_write_SPORT0_MTCS2(val) bfin_write32(SPORT0_MTCS2, val) | ||
305 | #define bfin_read_SPORT0_MTCS3() bfin_read32(SPORT0_MTCS3) | ||
306 | #define bfin_write_SPORT0_MTCS3(val) bfin_write32(SPORT0_MTCS3, val) | ||
307 | #define bfin_read_SPORT0_MRCS0() bfin_read32(SPORT0_MRCS0) | ||
308 | #define bfin_write_SPORT0_MRCS0(val) bfin_write32(SPORT0_MRCS0, val) | ||
309 | #define bfin_read_SPORT0_MRCS1() bfin_read32(SPORT0_MRCS1) | ||
310 | #define bfin_write_SPORT0_MRCS1(val) bfin_write32(SPORT0_MRCS1, val) | ||
311 | #define bfin_read_SPORT0_MRCS2() bfin_read32(SPORT0_MRCS2) | ||
312 | #define bfin_write_SPORT0_MRCS2(val) bfin_write32(SPORT0_MRCS2, val) | ||
313 | #define bfin_read_SPORT0_MRCS3() bfin_read32(SPORT0_MRCS3) | ||
314 | #define bfin_write_SPORT0_MRCS3(val) bfin_write32(SPORT0_MRCS3, val) | ||
315 | |||
316 | |||
317 | /* SPORT1 Controller (0xFFC00900 - 0xFFC009FF) */ | ||
318 | #define bfin_read_SPORT1_TCR1() bfin_read16(SPORT1_TCR1) | ||
319 | #define bfin_write_SPORT1_TCR1(val) bfin_write16(SPORT1_TCR1, val) | ||
320 | #define bfin_read_SPORT1_TCR2() bfin_read16(SPORT1_TCR2) | ||
321 | #define bfin_write_SPORT1_TCR2(val) bfin_write16(SPORT1_TCR2, val) | ||
322 | #define bfin_read_SPORT1_TCLKDIV() bfin_read16(SPORT1_TCLKDIV) | ||
323 | #define bfin_write_SPORT1_TCLKDIV(val) bfin_write16(SPORT1_TCLKDIV, val) | ||
324 | #define bfin_read_SPORT1_TFSDIV() bfin_read16(SPORT1_TFSDIV) | ||
325 | #define bfin_write_SPORT1_TFSDIV(val) bfin_write16(SPORT1_TFSDIV, val) | ||
326 | #define bfin_read_SPORT1_TX() bfin_read32(SPORT1_TX) | ||
327 | #define bfin_write_SPORT1_TX(val) bfin_write32(SPORT1_TX, val) | ||
328 | #define bfin_read_SPORT1_RX() bfin_read32(SPORT1_RX) | ||
329 | #define bfin_write_SPORT1_RX(val) bfin_write32(SPORT1_RX, val) | ||
330 | #define bfin_read_SPORT1_TX32() bfin_read32(SPORT1_TX) | ||
331 | #define bfin_write_SPORT1_TX32(val) bfin_write32(SPORT1_TX, val) | ||
332 | #define bfin_read_SPORT1_RX32() bfin_read32(SPORT1_RX) | ||
333 | #define bfin_write_SPORT1_RX32(val) bfin_write32(SPORT1_RX, val) | ||
334 | #define bfin_read_SPORT1_TX16() bfin_read16(SPORT1_TX) | ||
335 | #define bfin_write_SPORT1_TX16(val) bfin_write16(SPORT1_TX, val) | ||
336 | #define bfin_read_SPORT1_RX16() bfin_read16(SPORT1_RX) | ||
337 | #define bfin_write_SPORT1_RX16(val) bfin_write16(SPORT1_RX, val) | ||
338 | #define bfin_read_SPORT1_RCR1() bfin_read16(SPORT1_RCR1) | ||
339 | #define bfin_write_SPORT1_RCR1(val) bfin_write16(SPORT1_RCR1, val) | ||
340 | #define bfin_read_SPORT1_RCR2() bfin_read16(SPORT1_RCR2) | ||
341 | #define bfin_write_SPORT1_RCR2(val) bfin_write16(SPORT1_RCR2, val) | ||
342 | #define bfin_read_SPORT1_RCLKDIV() bfin_read16(SPORT1_RCLKDIV) | ||
343 | #define bfin_write_SPORT1_RCLKDIV(val) bfin_write16(SPORT1_RCLKDIV, val) | ||
344 | #define bfin_read_SPORT1_RFSDIV() bfin_read16(SPORT1_RFSDIV) | ||
345 | #define bfin_write_SPORT1_RFSDIV(val) bfin_write16(SPORT1_RFSDIV, val) | ||
346 | #define bfin_read_SPORT1_STAT() bfin_read16(SPORT1_STAT) | ||
347 | #define bfin_write_SPORT1_STAT(val) bfin_write16(SPORT1_STAT, val) | ||
348 | #define bfin_read_SPORT1_CHNL() bfin_read16(SPORT1_CHNL) | ||
349 | #define bfin_write_SPORT1_CHNL(val) bfin_write16(SPORT1_CHNL, val) | ||
350 | #define bfin_read_SPORT1_MCMC1() bfin_read16(SPORT1_MCMC1) | ||
351 | #define bfin_write_SPORT1_MCMC1(val) bfin_write16(SPORT1_MCMC1, val) | ||
352 | #define bfin_read_SPORT1_MCMC2() bfin_read16(SPORT1_MCMC2) | ||
353 | #define bfin_write_SPORT1_MCMC2(val) bfin_write16(SPORT1_MCMC2, val) | ||
354 | #define bfin_read_SPORT1_MTCS0() bfin_read32(SPORT1_MTCS0) | ||
355 | #define bfin_write_SPORT1_MTCS0(val) bfin_write32(SPORT1_MTCS0, val) | ||
356 | #define bfin_read_SPORT1_MTCS1() bfin_read32(SPORT1_MTCS1) | ||
357 | #define bfin_write_SPORT1_MTCS1(val) bfin_write32(SPORT1_MTCS1, val) | ||
358 | #define bfin_read_SPORT1_MTCS2() bfin_read32(SPORT1_MTCS2) | ||
359 | #define bfin_write_SPORT1_MTCS2(val) bfin_write32(SPORT1_MTCS2, val) | ||
360 | #define bfin_read_SPORT1_MTCS3() bfin_read32(SPORT1_MTCS3) | ||
361 | #define bfin_write_SPORT1_MTCS3(val) bfin_write32(SPORT1_MTCS3, val) | ||
362 | #define bfin_read_SPORT1_MRCS0() bfin_read32(SPORT1_MRCS0) | ||
363 | #define bfin_write_SPORT1_MRCS0(val) bfin_write32(SPORT1_MRCS0, val) | ||
364 | #define bfin_read_SPORT1_MRCS1() bfin_read32(SPORT1_MRCS1) | ||
365 | #define bfin_write_SPORT1_MRCS1(val) bfin_write32(SPORT1_MRCS1, val) | ||
366 | #define bfin_read_SPORT1_MRCS2() bfin_read32(SPORT1_MRCS2) | ||
367 | #define bfin_write_SPORT1_MRCS2(val) bfin_write32(SPORT1_MRCS2, val) | ||
368 | #define bfin_read_SPORT1_MRCS3() bfin_read32(SPORT1_MRCS3) | ||
369 | #define bfin_write_SPORT1_MRCS3(val) bfin_write32(SPORT1_MRCS3, val) | ||
370 | |||
371 | |||
372 | /* External Bus Interface Unit (0xFFC00A00 - 0xFFC00AFF) */ | ||
373 | #define bfin_read_EBIU_AMGCTL() bfin_read16(EBIU_AMGCTL) | ||
374 | #define bfin_write_EBIU_AMGCTL(val) bfin_write16(EBIU_AMGCTL, val) | ||
375 | #define bfin_read_EBIU_AMBCTL0() bfin_read32(EBIU_AMBCTL0) | ||
376 | #define bfin_write_EBIU_AMBCTL0(val) bfin_write32(EBIU_AMBCTL0, val) | ||
377 | #define bfin_read_EBIU_AMBCTL1() bfin_read32(EBIU_AMBCTL1) | ||
378 | #define bfin_write_EBIU_AMBCTL1(val) bfin_write32(EBIU_AMBCTL1, val) | ||
379 | #define bfin_read_EBIU_SDGCTL() bfin_read32(EBIU_SDGCTL) | ||
380 | #define bfin_write_EBIU_SDGCTL(val) bfin_write32(EBIU_SDGCTL, val) | ||
381 | #define bfin_read_EBIU_SDBCTL() bfin_read16(EBIU_SDBCTL) | ||
382 | #define bfin_write_EBIU_SDBCTL(val) bfin_write16(EBIU_SDBCTL, val) | ||
383 | #define bfin_read_EBIU_SDRRC() bfin_read16(EBIU_SDRRC) | ||
384 | #define bfin_write_EBIU_SDRRC(val) bfin_write16(EBIU_SDRRC, val) | ||
385 | #define bfin_read_EBIU_SDSTAT() bfin_read16(EBIU_SDSTAT) | ||
386 | #define bfin_write_EBIU_SDSTAT(val) bfin_write16(EBIU_SDSTAT, val) | ||
387 | |||
388 | |||
389 | /* DMA Traffic Control Registers */ | ||
390 | #define bfin_read_DMAC_TC_PER() bfin_read16(DMAC_TC_PER) | ||
391 | #define bfin_write_DMAC_TC_PER(val) bfin_write16(DMAC_TC_PER, val) | ||
392 | #define bfin_read_DMAC_TC_CNT() bfin_read16(DMAC_TC_CNT) | ||
393 | #define bfin_write_DMAC_TC_CNT(val) bfin_write16(DMAC_TC_CNT, val) | ||
394 | |||
395 | /* DMA Controller */ | ||
396 | #define bfin_read_DMA0_CONFIG() bfin_read16(DMA0_CONFIG) | ||
397 | #define bfin_write_DMA0_CONFIG(val) bfin_write16(DMA0_CONFIG, val) | ||
398 | #define bfin_read_DMA0_NEXT_DESC_PTR() bfin_read32(DMA0_NEXT_DESC_PTR) | ||
399 | #define bfin_write_DMA0_NEXT_DESC_PTR(val) bfin_write32(DMA0_NEXT_DESC_PTR, val) | ||
400 | #define bfin_read_DMA0_START_ADDR() bfin_read32(DMA0_START_ADDR) | ||
401 | #define bfin_write_DMA0_START_ADDR(val) bfin_write32(DMA0_START_ADDR, val) | ||
402 | #define bfin_read_DMA0_X_COUNT() bfin_read16(DMA0_X_COUNT) | ||
403 | #define bfin_write_DMA0_X_COUNT(val) bfin_write16(DMA0_X_COUNT, val) | ||
404 | #define bfin_read_DMA0_Y_COUNT() bfin_read16(DMA0_Y_COUNT) | ||
405 | #define bfin_write_DMA0_Y_COUNT(val) bfin_write16(DMA0_Y_COUNT, val) | ||
406 | #define bfin_read_DMA0_X_MODIFY() bfin_read16(DMA0_X_MODIFY) | ||
407 | #define bfin_write_DMA0_X_MODIFY(val) bfin_write16(DMA0_X_MODIFY, val) | ||
408 | #define bfin_read_DMA0_Y_MODIFY() bfin_read16(DMA0_Y_MODIFY) | ||
409 | #define bfin_write_DMA0_Y_MODIFY(val) bfin_write16(DMA0_Y_MODIFY, val) | ||
410 | #define bfin_read_DMA0_CURR_DESC_PTR() bfin_read32(DMA0_CURR_DESC_PTR) | ||
411 | #define bfin_write_DMA0_CURR_DESC_PTR(val) bfin_write32(DMA0_CURR_DESC_PTR, val) | ||
412 | #define bfin_read_DMA0_CURR_ADDR() bfin_read32(DMA0_CURR_ADDR) | ||
413 | #define bfin_write_DMA0_CURR_ADDR(val) bfin_write32(DMA0_CURR_ADDR, val) | ||
414 | #define bfin_read_DMA0_CURR_X_COUNT() bfin_read16(DMA0_CURR_X_COUNT) | ||
415 | #define bfin_write_DMA0_CURR_X_COUNT(val) bfin_write16(DMA0_CURR_X_COUNT, val) | ||
416 | #define bfin_read_DMA0_CURR_Y_COUNT() bfin_read16(DMA0_CURR_Y_COUNT) | ||
417 | #define bfin_write_DMA0_CURR_Y_COUNT(val) bfin_write16(DMA0_CURR_Y_COUNT, val) | ||
418 | #define bfin_read_DMA0_IRQ_STATUS() bfin_read16(DMA0_IRQ_STATUS) | ||
419 | #define bfin_write_DMA0_IRQ_STATUS(val) bfin_write16(DMA0_IRQ_STATUS, val) | ||
420 | #define bfin_read_DMA0_PERIPHERAL_MAP() bfin_read16(DMA0_PERIPHERAL_MAP) | ||
421 | #define bfin_write_DMA0_PERIPHERAL_MAP(val) bfin_write16(DMA0_PERIPHERAL_MAP, val) | ||
422 | |||
423 | #define bfin_read_DMA1_CONFIG() bfin_read16(DMA1_CONFIG) | ||
424 | #define bfin_write_DMA1_CONFIG(val) bfin_write16(DMA1_CONFIG, val) | ||
425 | #define bfin_read_DMA1_NEXT_DESC_PTR() bfin_read32(DMA1_NEXT_DESC_PTR) | ||
426 | #define bfin_write_DMA1_NEXT_DESC_PTR(val) bfin_write32(DMA1_NEXT_DESC_PTR, val) | ||
427 | #define bfin_read_DMA1_START_ADDR() bfin_read32(DMA1_START_ADDR) | ||
428 | #define bfin_write_DMA1_START_ADDR(val) bfin_write32(DMA1_START_ADDR, val) | ||
429 | #define bfin_read_DMA1_X_COUNT() bfin_read16(DMA1_X_COUNT) | ||
430 | #define bfin_write_DMA1_X_COUNT(val) bfin_write16(DMA1_X_COUNT, val) | ||
431 | #define bfin_read_DMA1_Y_COUNT() bfin_read16(DMA1_Y_COUNT) | ||
432 | #define bfin_write_DMA1_Y_COUNT(val) bfin_write16(DMA1_Y_COUNT, val) | ||
433 | #define bfin_read_DMA1_X_MODIFY() bfin_read16(DMA1_X_MODIFY) | ||
434 | #define bfin_write_DMA1_X_MODIFY(val) bfin_write16(DMA1_X_MODIFY, val) | ||
435 | #define bfin_read_DMA1_Y_MODIFY() bfin_read16(DMA1_Y_MODIFY) | ||
436 | #define bfin_write_DMA1_Y_MODIFY(val) bfin_write16(DMA1_Y_MODIFY, val) | ||
437 | #define bfin_read_DMA1_CURR_DESC_PTR() bfin_read32(DMA1_CURR_DESC_PTR) | ||
438 | #define bfin_write_DMA1_CURR_DESC_PTR(val) bfin_write32(DMA1_CURR_DESC_PTR, val) | ||
439 | #define bfin_read_DMA1_CURR_ADDR() bfin_read32(DMA1_CURR_ADDR) | ||
440 | #define bfin_write_DMA1_CURR_ADDR(val) bfin_write32(DMA1_CURR_ADDR, val) | ||
441 | #define bfin_read_DMA1_CURR_X_COUNT() bfin_read16(DMA1_CURR_X_COUNT) | ||
442 | #define bfin_write_DMA1_CURR_X_COUNT(val) bfin_write16(DMA1_CURR_X_COUNT, val) | ||
443 | #define bfin_read_DMA1_CURR_Y_COUNT() bfin_read16(DMA1_CURR_Y_COUNT) | ||
444 | #define bfin_write_DMA1_CURR_Y_COUNT(val) bfin_write16(DMA1_CURR_Y_COUNT, val) | ||
445 | #define bfin_read_DMA1_IRQ_STATUS() bfin_read16(DMA1_IRQ_STATUS) | ||
446 | #define bfin_write_DMA1_IRQ_STATUS(val) bfin_write16(DMA1_IRQ_STATUS, val) | ||
447 | #define bfin_read_DMA1_PERIPHERAL_MAP() bfin_read16(DMA1_PERIPHERAL_MAP) | ||
448 | #define bfin_write_DMA1_PERIPHERAL_MAP(val) bfin_write16(DMA1_PERIPHERAL_MAP, val) | ||
449 | |||
450 | #define bfin_read_DMA2_CONFIG() bfin_read16(DMA2_CONFIG) | ||
451 | #define bfin_write_DMA2_CONFIG(val) bfin_write16(DMA2_CONFIG, val) | ||
452 | #define bfin_read_DMA2_NEXT_DESC_PTR() bfin_read32(DMA2_NEXT_DESC_PTR) | ||
453 | #define bfin_write_DMA2_NEXT_DESC_PTR(val) bfin_write32(DMA2_NEXT_DESC_PTR, val) | ||
454 | #define bfin_read_DMA2_START_ADDR() bfin_read32(DMA2_START_ADDR) | ||
455 | #define bfin_write_DMA2_START_ADDR(val) bfin_write32(DMA2_START_ADDR, val) | ||
456 | #define bfin_read_DMA2_X_COUNT() bfin_read16(DMA2_X_COUNT) | ||
457 | #define bfin_write_DMA2_X_COUNT(val) bfin_write16(DMA2_X_COUNT, val) | ||
458 | #define bfin_read_DMA2_Y_COUNT() bfin_read16(DMA2_Y_COUNT) | ||
459 | #define bfin_write_DMA2_Y_COUNT(val) bfin_write16(DMA2_Y_COUNT, val) | ||
460 | #define bfin_read_DMA2_X_MODIFY() bfin_read16(DMA2_X_MODIFY) | ||
461 | #define bfin_write_DMA2_X_MODIFY(val) bfin_write16(DMA2_X_MODIFY, val) | ||
462 | #define bfin_read_DMA2_Y_MODIFY() bfin_read16(DMA2_Y_MODIFY) | ||
463 | #define bfin_write_DMA2_Y_MODIFY(val) bfin_write16(DMA2_Y_MODIFY, val) | ||
464 | #define bfin_read_DMA2_CURR_DESC_PTR() bfin_read32(DMA2_CURR_DESC_PTR) | ||
465 | #define bfin_write_DMA2_CURR_DESC_PTR(val) bfin_write32(DMA2_CURR_DESC_PTR, val) | ||
466 | #define bfin_read_DMA2_CURR_ADDR() bfin_read32(DMA2_CURR_ADDR) | ||
467 | #define bfin_write_DMA2_CURR_ADDR(val) bfin_write32(DMA2_CURR_ADDR, val) | ||
468 | #define bfin_read_DMA2_CURR_X_COUNT() bfin_read16(DMA2_CURR_X_COUNT) | ||
469 | #define bfin_write_DMA2_CURR_X_COUNT(val) bfin_write16(DMA2_CURR_X_COUNT, val) | ||
470 | #define bfin_read_DMA2_CURR_Y_COUNT() bfin_read16(DMA2_CURR_Y_COUNT) | ||
471 | #define bfin_write_DMA2_CURR_Y_COUNT(val) bfin_write16(DMA2_CURR_Y_COUNT, val) | ||
472 | #define bfin_read_DMA2_IRQ_STATUS() bfin_read16(DMA2_IRQ_STATUS) | ||
473 | #define bfin_write_DMA2_IRQ_STATUS(val) bfin_write16(DMA2_IRQ_STATUS, val) | ||
474 | #define bfin_read_DMA2_PERIPHERAL_MAP() bfin_read16(DMA2_PERIPHERAL_MAP) | ||
475 | #define bfin_write_DMA2_PERIPHERAL_MAP(val) bfin_write16(DMA2_PERIPHERAL_MAP, val) | ||
476 | |||
477 | #define bfin_read_DMA3_CONFIG() bfin_read16(DMA3_CONFIG) | ||
478 | #define bfin_write_DMA3_CONFIG(val) bfin_write16(DMA3_CONFIG, val) | ||
479 | #define bfin_read_DMA3_NEXT_DESC_PTR() bfin_read32(DMA3_NEXT_DESC_PTR) | ||
480 | #define bfin_write_DMA3_NEXT_DESC_PTR(val) bfin_write32(DMA3_NEXT_DESC_PTR, val) | ||
481 | #define bfin_read_DMA3_START_ADDR() bfin_read32(DMA3_START_ADDR) | ||
482 | #define bfin_write_DMA3_START_ADDR(val) bfin_write32(DMA3_START_ADDR, val) | ||
483 | #define bfin_read_DMA3_X_COUNT() bfin_read16(DMA3_X_COUNT) | ||
484 | #define bfin_write_DMA3_X_COUNT(val) bfin_write16(DMA3_X_COUNT, val) | ||
485 | #define bfin_read_DMA3_Y_COUNT() bfin_read16(DMA3_Y_COUNT) | ||
486 | #define bfin_write_DMA3_Y_COUNT(val) bfin_write16(DMA3_Y_COUNT, val) | ||
487 | #define bfin_read_DMA3_X_MODIFY() bfin_read16(DMA3_X_MODIFY) | ||
488 | #define bfin_write_DMA3_X_MODIFY(val) bfin_write16(DMA3_X_MODIFY, val) | ||
489 | #define bfin_read_DMA3_Y_MODIFY() bfin_read16(DMA3_Y_MODIFY) | ||
490 | #define bfin_write_DMA3_Y_MODIFY(val) bfin_write16(DMA3_Y_MODIFY, val) | ||
491 | #define bfin_read_DMA3_CURR_DESC_PTR() bfin_read32(DMA3_CURR_DESC_PTR) | ||
492 | #define bfin_write_DMA3_CURR_DESC_PTR(val) bfin_write32(DMA3_CURR_DESC_PTR, val) | ||
493 | #define bfin_read_DMA3_CURR_ADDR() bfin_read32(DMA3_CURR_ADDR) | ||
494 | #define bfin_write_DMA3_CURR_ADDR(val) bfin_write32(DMA3_CURR_ADDR, val) | ||
495 | #define bfin_read_DMA3_CURR_X_COUNT() bfin_read16(DMA3_CURR_X_COUNT) | ||
496 | #define bfin_write_DMA3_CURR_X_COUNT(val) bfin_write16(DMA3_CURR_X_COUNT, val) | ||
497 | #define bfin_read_DMA3_CURR_Y_COUNT() bfin_read16(DMA3_CURR_Y_COUNT) | ||
498 | #define bfin_write_DMA3_CURR_Y_COUNT(val) bfin_write16(DMA3_CURR_Y_COUNT, val) | ||
499 | #define bfin_read_DMA3_IRQ_STATUS() bfin_read16(DMA3_IRQ_STATUS) | ||
500 | #define bfin_write_DMA3_IRQ_STATUS(val) bfin_write16(DMA3_IRQ_STATUS, val) | ||
501 | #define bfin_read_DMA3_PERIPHERAL_MAP() bfin_read16(DMA3_PERIPHERAL_MAP) | ||
502 | #define bfin_write_DMA3_PERIPHERAL_MAP(val) bfin_write16(DMA3_PERIPHERAL_MAP, val) | ||
503 | |||
504 | #define bfin_read_DMA4_CONFIG() bfin_read16(DMA4_CONFIG) | ||
505 | #define bfin_write_DMA4_CONFIG(val) bfin_write16(DMA4_CONFIG, val) | ||
506 | #define bfin_read_DMA4_NEXT_DESC_PTR() bfin_read32(DMA4_NEXT_DESC_PTR) | ||
507 | #define bfin_write_DMA4_NEXT_DESC_PTR(val) bfin_write32(DMA4_NEXT_DESC_PTR, val) | ||
508 | #define bfin_read_DMA4_START_ADDR() bfin_read32(DMA4_START_ADDR) | ||
509 | #define bfin_write_DMA4_START_ADDR(val) bfin_write32(DMA4_START_ADDR, val) | ||
510 | #define bfin_read_DMA4_X_COUNT() bfin_read16(DMA4_X_COUNT) | ||
511 | #define bfin_write_DMA4_X_COUNT(val) bfin_write16(DMA4_X_COUNT, val) | ||
512 | #define bfin_read_DMA4_Y_COUNT() bfin_read16(DMA4_Y_COUNT) | ||
513 | #define bfin_write_DMA4_Y_COUNT(val) bfin_write16(DMA4_Y_COUNT, val) | ||
514 | #define bfin_read_DMA4_X_MODIFY() bfin_read16(DMA4_X_MODIFY) | ||
515 | #define bfin_write_DMA4_X_MODIFY(val) bfin_write16(DMA4_X_MODIFY, val) | ||
516 | #define bfin_read_DMA4_Y_MODIFY() bfin_read16(DMA4_Y_MODIFY) | ||
517 | #define bfin_write_DMA4_Y_MODIFY(val) bfin_write16(DMA4_Y_MODIFY, val) | ||
518 | #define bfin_read_DMA4_CURR_DESC_PTR() bfin_read32(DMA4_CURR_DESC_PTR) | ||
519 | #define bfin_write_DMA4_CURR_DESC_PTR(val) bfin_write32(DMA4_CURR_DESC_PTR, val) | ||
520 | #define bfin_read_DMA4_CURR_ADDR() bfin_read32(DMA4_CURR_ADDR) | ||
521 | #define bfin_write_DMA4_CURR_ADDR(val) bfin_write32(DMA4_CURR_ADDR, val) | ||
522 | #define bfin_read_DMA4_CURR_X_COUNT() bfin_read16(DMA4_CURR_X_COUNT) | ||
523 | #define bfin_write_DMA4_CURR_X_COUNT(val) bfin_write16(DMA4_CURR_X_COUNT, val) | ||
524 | #define bfin_read_DMA4_CURR_Y_COUNT() bfin_read16(DMA4_CURR_Y_COUNT) | ||
525 | #define bfin_write_DMA4_CURR_Y_COUNT(val) bfin_write16(DMA4_CURR_Y_COUNT, val) | ||
526 | #define bfin_read_DMA4_IRQ_STATUS() bfin_read16(DMA4_IRQ_STATUS) | ||
527 | #define bfin_write_DMA4_IRQ_STATUS(val) bfin_write16(DMA4_IRQ_STATUS, val) | ||
528 | #define bfin_read_DMA4_PERIPHERAL_MAP() bfin_read16(DMA4_PERIPHERAL_MAP) | ||
529 | #define bfin_write_DMA4_PERIPHERAL_MAP(val) bfin_write16(DMA4_PERIPHERAL_MAP, val) | ||
530 | |||
531 | #define bfin_read_DMA5_CONFIG() bfin_read16(DMA5_CONFIG) | ||
532 | #define bfin_write_DMA5_CONFIG(val) bfin_write16(DMA5_CONFIG, val) | ||
533 | #define bfin_read_DMA5_NEXT_DESC_PTR() bfin_read32(DMA5_NEXT_DESC_PTR) | ||
534 | #define bfin_write_DMA5_NEXT_DESC_PTR(val) bfin_write32(DMA5_NEXT_DESC_PTR, val) | ||
535 | #define bfin_read_DMA5_START_ADDR() bfin_read32(DMA5_START_ADDR) | ||
536 | #define bfin_write_DMA5_START_ADDR(val) bfin_write32(DMA5_START_ADDR, val) | ||
537 | #define bfin_read_DMA5_X_COUNT() bfin_read16(DMA5_X_COUNT) | ||
538 | #define bfin_write_DMA5_X_COUNT(val) bfin_write16(DMA5_X_COUNT, val) | ||
539 | #define bfin_read_DMA5_Y_COUNT() bfin_read16(DMA5_Y_COUNT) | ||
540 | #define bfin_write_DMA5_Y_COUNT(val) bfin_write16(DMA5_Y_COUNT, val) | ||
541 | #define bfin_read_DMA5_X_MODIFY() bfin_read16(DMA5_X_MODIFY) | ||
542 | #define bfin_write_DMA5_X_MODIFY(val) bfin_write16(DMA5_X_MODIFY, val) | ||
543 | #define bfin_read_DMA5_Y_MODIFY() bfin_read16(DMA5_Y_MODIFY) | ||
544 | #define bfin_write_DMA5_Y_MODIFY(val) bfin_write16(DMA5_Y_MODIFY, val) | ||
545 | #define bfin_read_DMA5_CURR_DESC_PTR() bfin_read32(DMA5_CURR_DESC_PTR) | ||
546 | #define bfin_write_DMA5_CURR_DESC_PTR(val) bfin_write32(DMA5_CURR_DESC_PTR, val) | ||
547 | #define bfin_read_DMA5_CURR_ADDR() bfin_read32(DMA5_CURR_ADDR) | ||
548 | #define bfin_write_DMA5_CURR_ADDR(val) bfin_write32(DMA5_CURR_ADDR, val) | ||
549 | #define bfin_read_DMA5_CURR_X_COUNT() bfin_read16(DMA5_CURR_X_COUNT) | ||
550 | #define bfin_write_DMA5_CURR_X_COUNT(val) bfin_write16(DMA5_CURR_X_COUNT, val) | ||
551 | #define bfin_read_DMA5_CURR_Y_COUNT() bfin_read16(DMA5_CURR_Y_COUNT) | ||
552 | #define bfin_write_DMA5_CURR_Y_COUNT(val) bfin_write16(DMA5_CURR_Y_COUNT, val) | ||
553 | #define bfin_read_DMA5_IRQ_STATUS() bfin_read16(DMA5_IRQ_STATUS) | ||
554 | #define bfin_write_DMA5_IRQ_STATUS(val) bfin_write16(DMA5_IRQ_STATUS, val) | ||
555 | #define bfin_read_DMA5_PERIPHERAL_MAP() bfin_read16(DMA5_PERIPHERAL_MAP) | ||
556 | #define bfin_write_DMA5_PERIPHERAL_MAP(val) bfin_write16(DMA5_PERIPHERAL_MAP, val) | ||
557 | |||
558 | #define bfin_read_DMA6_CONFIG() bfin_read16(DMA6_CONFIG) | ||
559 | #define bfin_write_DMA6_CONFIG(val) bfin_write16(DMA6_CONFIG, val) | ||
560 | #define bfin_read_DMA6_NEXT_DESC_PTR() bfin_read32(DMA6_NEXT_DESC_PTR) | ||
561 | #define bfin_write_DMA6_NEXT_DESC_PTR(val) bfin_write32(DMA6_NEXT_DESC_PTR, val) | ||
562 | #define bfin_read_DMA6_START_ADDR() bfin_read32(DMA6_START_ADDR) | ||
563 | #define bfin_write_DMA6_START_ADDR(val) bfin_write32(DMA6_START_ADDR, val) | ||
564 | #define bfin_read_DMA6_X_COUNT() bfin_read16(DMA6_X_COUNT) | ||
565 | #define bfin_write_DMA6_X_COUNT(val) bfin_write16(DMA6_X_COUNT, val) | ||
566 | #define bfin_read_DMA6_Y_COUNT() bfin_read16(DMA6_Y_COUNT) | ||
567 | #define bfin_write_DMA6_Y_COUNT(val) bfin_write16(DMA6_Y_COUNT, val) | ||
568 | #define bfin_read_DMA6_X_MODIFY() bfin_read16(DMA6_X_MODIFY) | ||
569 | #define bfin_write_DMA6_X_MODIFY(val) bfin_write16(DMA6_X_MODIFY, val) | ||
570 | #define bfin_read_DMA6_Y_MODIFY() bfin_read16(DMA6_Y_MODIFY) | ||
571 | #define bfin_write_DMA6_Y_MODIFY(val) bfin_write16(DMA6_Y_MODIFY, val) | ||
572 | #define bfin_read_DMA6_CURR_DESC_PTR() bfin_read32(DMA6_CURR_DESC_PTR) | ||
573 | #define bfin_write_DMA6_CURR_DESC_PTR(val) bfin_write32(DMA6_CURR_DESC_PTR, val) | ||
574 | #define bfin_read_DMA6_CURR_ADDR() bfin_read32(DMA6_CURR_ADDR) | ||
575 | #define bfin_write_DMA6_CURR_ADDR(val) bfin_write32(DMA6_CURR_ADDR, val) | ||
576 | #define bfin_read_DMA6_CURR_X_COUNT() bfin_read16(DMA6_CURR_X_COUNT) | ||
577 | #define bfin_write_DMA6_CURR_X_COUNT(val) bfin_write16(DMA6_CURR_X_COUNT, val) | ||
578 | #define bfin_read_DMA6_CURR_Y_COUNT() bfin_read16(DMA6_CURR_Y_COUNT) | ||
579 | #define bfin_write_DMA6_CURR_Y_COUNT(val) bfin_write16(DMA6_CURR_Y_COUNT, val) | ||
580 | #define bfin_read_DMA6_IRQ_STATUS() bfin_read16(DMA6_IRQ_STATUS) | ||
581 | #define bfin_write_DMA6_IRQ_STATUS(val) bfin_write16(DMA6_IRQ_STATUS, val) | ||
582 | #define bfin_read_DMA6_PERIPHERAL_MAP() bfin_read16(DMA6_PERIPHERAL_MAP) | ||
583 | #define bfin_write_DMA6_PERIPHERAL_MAP(val) bfin_write16(DMA6_PERIPHERAL_MAP, val) | ||
584 | |||
585 | #define bfin_read_DMA7_CONFIG() bfin_read16(DMA7_CONFIG) | ||
586 | #define bfin_write_DMA7_CONFIG(val) bfin_write16(DMA7_CONFIG, val) | ||
587 | #define bfin_read_DMA7_NEXT_DESC_PTR() bfin_read32(DMA7_NEXT_DESC_PTR) | ||
588 | #define bfin_write_DMA7_NEXT_DESC_PTR(val) bfin_write32(DMA7_NEXT_DESC_PTR, val) | ||
589 | #define bfin_read_DMA7_START_ADDR() bfin_read32(DMA7_START_ADDR) | ||
590 | #define bfin_write_DMA7_START_ADDR(val) bfin_write32(DMA7_START_ADDR, val) | ||
591 | #define bfin_read_DMA7_X_COUNT() bfin_read16(DMA7_X_COUNT) | ||
592 | #define bfin_write_DMA7_X_COUNT(val) bfin_write16(DMA7_X_COUNT, val) | ||
593 | #define bfin_read_DMA7_Y_COUNT() bfin_read16(DMA7_Y_COUNT) | ||
594 | #define bfin_write_DMA7_Y_COUNT(val) bfin_write16(DMA7_Y_COUNT, val) | ||
595 | #define bfin_read_DMA7_X_MODIFY() bfin_read16(DMA7_X_MODIFY) | ||
596 | #define bfin_write_DMA7_X_MODIFY(val) bfin_write16(DMA7_X_MODIFY, val) | ||
597 | #define bfin_read_DMA7_Y_MODIFY() bfin_read16(DMA7_Y_MODIFY) | ||
598 | #define bfin_write_DMA7_Y_MODIFY(val) bfin_write16(DMA7_Y_MODIFY, val) | ||
599 | #define bfin_read_DMA7_CURR_DESC_PTR() bfin_read32(DMA7_CURR_DESC_PTR) | ||
600 | #define bfin_write_DMA7_CURR_DESC_PTR(val) bfin_write32(DMA7_CURR_DESC_PTR, val) | ||
601 | #define bfin_read_DMA7_CURR_ADDR() bfin_read32(DMA7_CURR_ADDR) | ||
602 | #define bfin_write_DMA7_CURR_ADDR(val) bfin_write32(DMA7_CURR_ADDR, val) | ||
603 | #define bfin_read_DMA7_CURR_X_COUNT() bfin_read16(DMA7_CURR_X_COUNT) | ||
604 | #define bfin_write_DMA7_CURR_X_COUNT(val) bfin_write16(DMA7_CURR_X_COUNT, val) | ||
605 | #define bfin_read_DMA7_CURR_Y_COUNT() bfin_read16(DMA7_CURR_Y_COUNT) | ||
606 | #define bfin_write_DMA7_CURR_Y_COUNT(val) bfin_write16(DMA7_CURR_Y_COUNT, val) | ||
607 | #define bfin_read_DMA7_IRQ_STATUS() bfin_read16(DMA7_IRQ_STATUS) | ||
608 | #define bfin_write_DMA7_IRQ_STATUS(val) bfin_write16(DMA7_IRQ_STATUS, val) | ||
609 | #define bfin_read_DMA7_PERIPHERAL_MAP() bfin_read16(DMA7_PERIPHERAL_MAP) | ||
610 | #define bfin_write_DMA7_PERIPHERAL_MAP(val) bfin_write16(DMA7_PERIPHERAL_MAP, val) | ||
611 | |||
612 | #define bfin_read_DMA8_CONFIG() bfin_read16(DMA8_CONFIG) | ||
613 | #define bfin_write_DMA8_CONFIG(val) bfin_write16(DMA8_CONFIG, val) | ||
614 | #define bfin_read_DMA8_NEXT_DESC_PTR() bfin_read32(DMA8_NEXT_DESC_PTR) | ||
615 | #define bfin_write_DMA8_NEXT_DESC_PTR(val) bfin_write32(DMA8_NEXT_DESC_PTR, val) | ||
616 | #define bfin_read_DMA8_START_ADDR() bfin_read32(DMA8_START_ADDR) | ||
617 | #define bfin_write_DMA8_START_ADDR(val) bfin_write32(DMA8_START_ADDR, val) | ||
618 | #define bfin_read_DMA8_X_COUNT() bfin_read16(DMA8_X_COUNT) | ||
619 | #define bfin_write_DMA8_X_COUNT(val) bfin_write16(DMA8_X_COUNT, val) | ||
620 | #define bfin_read_DMA8_Y_COUNT() bfin_read16(DMA8_Y_COUNT) | ||
621 | #define bfin_write_DMA8_Y_COUNT(val) bfin_write16(DMA8_Y_COUNT, val) | ||
622 | #define bfin_read_DMA8_X_MODIFY() bfin_read16(DMA8_X_MODIFY) | ||
623 | #define bfin_write_DMA8_X_MODIFY(val) bfin_write16(DMA8_X_MODIFY, val) | ||
624 | #define bfin_read_DMA8_Y_MODIFY() bfin_read16(DMA8_Y_MODIFY) | ||
625 | #define bfin_write_DMA8_Y_MODIFY(val) bfin_write16(DMA8_Y_MODIFY, val) | ||
626 | #define bfin_read_DMA8_CURR_DESC_PTR() bfin_read32(DMA8_CURR_DESC_PTR) | ||
627 | #define bfin_write_DMA8_CURR_DESC_PTR(val) bfin_write32(DMA8_CURR_DESC_PTR, val) | ||
628 | #define bfin_read_DMA8_CURR_ADDR() bfin_read32(DMA8_CURR_ADDR) | ||
629 | #define bfin_write_DMA8_CURR_ADDR(val) bfin_write32(DMA8_CURR_ADDR, val) | ||
630 | #define bfin_read_DMA8_CURR_X_COUNT() bfin_read16(DMA8_CURR_X_COUNT) | ||
631 | #define bfin_write_DMA8_CURR_X_COUNT(val) bfin_write16(DMA8_CURR_X_COUNT, val) | ||
632 | #define bfin_read_DMA8_CURR_Y_COUNT() bfin_read16(DMA8_CURR_Y_COUNT) | ||
633 | #define bfin_write_DMA8_CURR_Y_COUNT(val) bfin_write16(DMA8_CURR_Y_COUNT, val) | ||
634 | #define bfin_read_DMA8_IRQ_STATUS() bfin_read16(DMA8_IRQ_STATUS) | ||
635 | #define bfin_write_DMA8_IRQ_STATUS(val) bfin_write16(DMA8_IRQ_STATUS, val) | ||
636 | #define bfin_read_DMA8_PERIPHERAL_MAP() bfin_read16(DMA8_PERIPHERAL_MAP) | ||
637 | #define bfin_write_DMA8_PERIPHERAL_MAP(val) bfin_write16(DMA8_PERIPHERAL_MAP, val) | ||
638 | |||
639 | #define bfin_read_DMA9_CONFIG() bfin_read16(DMA9_CONFIG) | ||
640 | #define bfin_write_DMA9_CONFIG(val) bfin_write16(DMA9_CONFIG, val) | ||
641 | #define bfin_read_DMA9_NEXT_DESC_PTR() bfin_read32(DMA9_NEXT_DESC_PTR) | ||
642 | #define bfin_write_DMA9_NEXT_DESC_PTR(val) bfin_write32(DMA9_NEXT_DESC_PTR, val) | ||
643 | #define bfin_read_DMA9_START_ADDR() bfin_read32(DMA9_START_ADDR) | ||
644 | #define bfin_write_DMA9_START_ADDR(val) bfin_write32(DMA9_START_ADDR, val) | ||
645 | #define bfin_read_DMA9_X_COUNT() bfin_read16(DMA9_X_COUNT) | ||
646 | #define bfin_write_DMA9_X_COUNT(val) bfin_write16(DMA9_X_COUNT, val) | ||
647 | #define bfin_read_DMA9_Y_COUNT() bfin_read16(DMA9_Y_COUNT) | ||
648 | #define bfin_write_DMA9_Y_COUNT(val) bfin_write16(DMA9_Y_COUNT, val) | ||
649 | #define bfin_read_DMA9_X_MODIFY() bfin_read16(DMA9_X_MODIFY) | ||
650 | #define bfin_write_DMA9_X_MODIFY(val) bfin_write16(DMA9_X_MODIFY, val) | ||
651 | #define bfin_read_DMA9_Y_MODIFY() bfin_read16(DMA9_Y_MODIFY) | ||
652 | #define bfin_write_DMA9_Y_MODIFY(val) bfin_write16(DMA9_Y_MODIFY, val) | ||
653 | #define bfin_read_DMA9_CURR_DESC_PTR() bfin_read32(DMA9_CURR_DESC_PTR) | ||
654 | #define bfin_write_DMA9_CURR_DESC_PTR(val) bfin_write32(DMA9_CURR_DESC_PTR, val) | ||
655 | #define bfin_read_DMA9_CURR_ADDR() bfin_read32(DMA9_CURR_ADDR) | ||
656 | #define bfin_write_DMA9_CURR_ADDR(val) bfin_write32(DMA9_CURR_ADDR, val) | ||
657 | #define bfin_read_DMA9_CURR_X_COUNT() bfin_read16(DMA9_CURR_X_COUNT) | ||
658 | #define bfin_write_DMA9_CURR_X_COUNT(val) bfin_write16(DMA9_CURR_X_COUNT, val) | ||
659 | #define bfin_read_DMA9_CURR_Y_COUNT() bfin_read16(DMA9_CURR_Y_COUNT) | ||
660 | #define bfin_write_DMA9_CURR_Y_COUNT(val) bfin_write16(DMA9_CURR_Y_COUNT, val) | ||
661 | #define bfin_read_DMA9_IRQ_STATUS() bfin_read16(DMA9_IRQ_STATUS) | ||
662 | #define bfin_write_DMA9_IRQ_STATUS(val) bfin_write16(DMA9_IRQ_STATUS, val) | ||
663 | #define bfin_read_DMA9_PERIPHERAL_MAP() bfin_read16(DMA9_PERIPHERAL_MAP) | ||
664 | #define bfin_write_DMA9_PERIPHERAL_MAP(val) bfin_write16(DMA9_PERIPHERAL_MAP, val) | ||
665 | |||
666 | #define bfin_read_DMA10_CONFIG() bfin_read16(DMA10_CONFIG) | ||
667 | #define bfin_write_DMA10_CONFIG(val) bfin_write16(DMA10_CONFIG, val) | ||
668 | #define bfin_read_DMA10_NEXT_DESC_PTR() bfin_read32(DMA10_NEXT_DESC_PTR) | ||
669 | #define bfin_write_DMA10_NEXT_DESC_PTR(val) bfin_write32(DMA10_NEXT_DESC_PTR, val) | ||
670 | #define bfin_read_DMA10_START_ADDR() bfin_read32(DMA10_START_ADDR) | ||
671 | #define bfin_write_DMA10_START_ADDR(val) bfin_write32(DMA10_START_ADDR, val) | ||
672 | #define bfin_read_DMA10_X_COUNT() bfin_read16(DMA10_X_COUNT) | ||
673 | #define bfin_write_DMA10_X_COUNT(val) bfin_write16(DMA10_X_COUNT, val) | ||
674 | #define bfin_read_DMA10_Y_COUNT() bfin_read16(DMA10_Y_COUNT) | ||
675 | #define bfin_write_DMA10_Y_COUNT(val) bfin_write16(DMA10_Y_COUNT, val) | ||
676 | #define bfin_read_DMA10_X_MODIFY() bfin_read16(DMA10_X_MODIFY) | ||
677 | #define bfin_write_DMA10_X_MODIFY(val) bfin_write16(DMA10_X_MODIFY, val) | ||
678 | #define bfin_read_DMA10_Y_MODIFY() bfin_read16(DMA10_Y_MODIFY) | ||
679 | #define bfin_write_DMA10_Y_MODIFY(val) bfin_write16(DMA10_Y_MODIFY, val) | ||
680 | #define bfin_read_DMA10_CURR_DESC_PTR() bfin_read32(DMA10_CURR_DESC_PTR) | ||
681 | #define bfin_write_DMA10_CURR_DESC_PTR(val) bfin_write32(DMA10_CURR_DESC_PTR, val) | ||
682 | #define bfin_read_DMA10_CURR_ADDR() bfin_read32(DMA10_CURR_ADDR) | ||
683 | #define bfin_write_DMA10_CURR_ADDR(val) bfin_write32(DMA10_CURR_ADDR, val) | ||
684 | #define bfin_read_DMA10_CURR_X_COUNT() bfin_read16(DMA10_CURR_X_COUNT) | ||
685 | #define bfin_write_DMA10_CURR_X_COUNT(val) bfin_write16(DMA10_CURR_X_COUNT, val) | ||
686 | #define bfin_read_DMA10_CURR_Y_COUNT() bfin_read16(DMA10_CURR_Y_COUNT) | ||
687 | #define bfin_write_DMA10_CURR_Y_COUNT(val) bfin_write16(DMA10_CURR_Y_COUNT, val) | ||
688 | #define bfin_read_DMA10_IRQ_STATUS() bfin_read16(DMA10_IRQ_STATUS) | ||
689 | #define bfin_write_DMA10_IRQ_STATUS(val) bfin_write16(DMA10_IRQ_STATUS, val) | ||
690 | #define bfin_read_DMA10_PERIPHERAL_MAP() bfin_read16(DMA10_PERIPHERAL_MAP) | ||
691 | #define bfin_write_DMA10_PERIPHERAL_MAP(val) bfin_write16(DMA10_PERIPHERAL_MAP, val) | ||
692 | |||
693 | #define bfin_read_DMA11_CONFIG() bfin_read16(DMA11_CONFIG) | ||
694 | #define bfin_write_DMA11_CONFIG(val) bfin_write16(DMA11_CONFIG, val) | ||
695 | #define bfin_read_DMA11_NEXT_DESC_PTR() bfin_read32(DMA11_NEXT_DESC_PTR) | ||
696 | #define bfin_write_DMA11_NEXT_DESC_PTR(val) bfin_write32(DMA11_NEXT_DESC_PTR, val) | ||
697 | #define bfin_read_DMA11_START_ADDR() bfin_read32(DMA11_START_ADDR) | ||
698 | #define bfin_write_DMA11_START_ADDR(val) bfin_write32(DMA11_START_ADDR, val) | ||
699 | #define bfin_read_DMA11_X_COUNT() bfin_read16(DMA11_X_COUNT) | ||
700 | #define bfin_write_DMA11_X_COUNT(val) bfin_write16(DMA11_X_COUNT, val) | ||
701 | #define bfin_read_DMA11_Y_COUNT() bfin_read16(DMA11_Y_COUNT) | ||
702 | #define bfin_write_DMA11_Y_COUNT(val) bfin_write16(DMA11_Y_COUNT, val) | ||
703 | #define bfin_read_DMA11_X_MODIFY() bfin_read16(DMA11_X_MODIFY) | ||
704 | #define bfin_write_DMA11_X_MODIFY(val) bfin_write16(DMA11_X_MODIFY, val) | ||
705 | #define bfin_read_DMA11_Y_MODIFY() bfin_read16(DMA11_Y_MODIFY) | ||
706 | #define bfin_write_DMA11_Y_MODIFY(val) bfin_write16(DMA11_Y_MODIFY, val) | ||
707 | #define bfin_read_DMA11_CURR_DESC_PTR() bfin_read32(DMA11_CURR_DESC_PTR) | ||
708 | #define bfin_write_DMA11_CURR_DESC_PTR(val) bfin_write32(DMA11_CURR_DESC_PTR, val) | ||
709 | #define bfin_read_DMA11_CURR_ADDR() bfin_read32(DMA11_CURR_ADDR) | ||
710 | #define bfin_write_DMA11_CURR_ADDR(val) bfin_write32(DMA11_CURR_ADDR, val) | ||
711 | #define bfin_read_DMA11_CURR_X_COUNT() bfin_read16(DMA11_CURR_X_COUNT) | ||
712 | #define bfin_write_DMA11_CURR_X_COUNT(val) bfin_write16(DMA11_CURR_X_COUNT, val) | ||
713 | #define bfin_read_DMA11_CURR_Y_COUNT() bfin_read16(DMA11_CURR_Y_COUNT) | ||
714 | #define bfin_write_DMA11_CURR_Y_COUNT(val) bfin_write16(DMA11_CURR_Y_COUNT, val) | ||
715 | #define bfin_read_DMA11_IRQ_STATUS() bfin_read16(DMA11_IRQ_STATUS) | ||
716 | #define bfin_write_DMA11_IRQ_STATUS(val) bfin_write16(DMA11_IRQ_STATUS, val) | ||
717 | #define bfin_read_DMA11_PERIPHERAL_MAP() bfin_read16(DMA11_PERIPHERAL_MAP) | ||
718 | #define bfin_write_DMA11_PERIPHERAL_MAP(val) bfin_write16(DMA11_PERIPHERAL_MAP, val) | ||
719 | |||
720 | #define bfin_read_MDMA_D0_CONFIG() bfin_read16(MDMA_D0_CONFIG) | ||
721 | #define bfin_write_MDMA_D0_CONFIG(val) bfin_write16(MDMA_D0_CONFIG, val) | ||
722 | #define bfin_read_MDMA_D0_NEXT_DESC_PTR() bfin_read32(MDMA_D0_NEXT_DESC_PTR) | ||
723 | #define bfin_write_MDMA_D0_NEXT_DESC_PTR(val) bfin_write32(MDMA_D0_NEXT_DESC_PTR, val) | ||
724 | #define bfin_read_MDMA_D0_START_ADDR() bfin_read32(MDMA_D0_START_ADDR) | ||
725 | #define bfin_write_MDMA_D0_START_ADDR(val) bfin_write32(MDMA_D0_START_ADDR, val) | ||
726 | #define bfin_read_MDMA_D0_X_COUNT() bfin_read16(MDMA_D0_X_COUNT) | ||
727 | #define bfin_write_MDMA_D0_X_COUNT(val) bfin_write16(MDMA_D0_X_COUNT, val) | ||
728 | #define bfin_read_MDMA_D0_Y_COUNT() bfin_read16(MDMA_D0_Y_COUNT) | ||
729 | #define bfin_write_MDMA_D0_Y_COUNT(val) bfin_write16(MDMA_D0_Y_COUNT, val) | ||
730 | #define bfin_read_MDMA_D0_X_MODIFY() bfin_read16(MDMA_D0_X_MODIFY) | ||
731 | #define bfin_write_MDMA_D0_X_MODIFY(val) bfin_write16(MDMA_D0_X_MODIFY, val) | ||
732 | #define bfin_read_MDMA_D0_Y_MODIFY() bfin_read16(MDMA_D0_Y_MODIFY) | ||
733 | #define bfin_write_MDMA_D0_Y_MODIFY(val) bfin_write16(MDMA_D0_Y_MODIFY, val) | ||
734 | #define bfin_read_MDMA_D0_CURR_DESC_PTR() bfin_read32(MDMA_D0_CURR_DESC_PTR) | ||
735 | #define bfin_write_MDMA_D0_CURR_DESC_PTR(val) bfin_write32(MDMA_D0_CURR_DESC_PTR, val) | ||
736 | #define bfin_read_MDMA_D0_CURR_ADDR() bfin_read32(MDMA_D0_CURR_ADDR) | ||
737 | #define bfin_write_MDMA_D0_CURR_ADDR(val) bfin_write32(MDMA_D0_CURR_ADDR, val) | ||
738 | #define bfin_read_MDMA_D0_CURR_X_COUNT() bfin_read16(MDMA_D0_CURR_X_COUNT) | ||
739 | #define bfin_write_MDMA_D0_CURR_X_COUNT(val) bfin_write16(MDMA_D0_CURR_X_COUNT, val) | ||
740 | #define bfin_read_MDMA_D0_CURR_Y_COUNT() bfin_read16(MDMA_D0_CURR_Y_COUNT) | ||
741 | #define bfin_write_MDMA_D0_CURR_Y_COUNT(val) bfin_write16(MDMA_D0_CURR_Y_COUNT, val) | ||
742 | #define bfin_read_MDMA_D0_IRQ_STATUS() bfin_read16(MDMA_D0_IRQ_STATUS) | ||
743 | #define bfin_write_MDMA_D0_IRQ_STATUS(val) bfin_write16(MDMA_D0_IRQ_STATUS, val) | ||
744 | #define bfin_read_MDMA_D0_PERIPHERAL_MAP() bfin_read16(MDMA_D0_PERIPHERAL_MAP) | ||
745 | #define bfin_write_MDMA_D0_PERIPHERAL_MAP(val) bfin_write16(MDMA_D0_PERIPHERAL_MAP, val) | ||
746 | |||
747 | #define bfin_read_MDMA_S0_CONFIG() bfin_read16(MDMA_S0_CONFIG) | ||
748 | #define bfin_write_MDMA_S0_CONFIG(val) bfin_write16(MDMA_S0_CONFIG, val) | ||
749 | #define bfin_read_MDMA_S0_NEXT_DESC_PTR() bfin_read32(MDMA_S0_NEXT_DESC_PTR) | ||
750 | #define bfin_write_MDMA_S0_NEXT_DESC_PTR(val) bfin_write32(MDMA_S0_NEXT_DESC_PTR, val) | ||
751 | #define bfin_read_MDMA_S0_START_ADDR() bfin_read32(MDMA_S0_START_ADDR) | ||
752 | #define bfin_write_MDMA_S0_START_ADDR(val) bfin_write32(MDMA_S0_START_ADDR, val) | ||
753 | #define bfin_read_MDMA_S0_X_COUNT() bfin_read16(MDMA_S0_X_COUNT) | ||
754 | #define bfin_write_MDMA_S0_X_COUNT(val) bfin_write16(MDMA_S0_X_COUNT, val) | ||
755 | #define bfin_read_MDMA_S0_Y_COUNT() bfin_read16(MDMA_S0_Y_COUNT) | ||
756 | #define bfin_write_MDMA_S0_Y_COUNT(val) bfin_write16(MDMA_S0_Y_COUNT, val) | ||
757 | #define bfin_read_MDMA_S0_X_MODIFY() bfin_read16(MDMA_S0_X_MODIFY) | ||
758 | #define bfin_write_MDMA_S0_X_MODIFY(val) bfin_write16(MDMA_S0_X_MODIFY, val) | ||
759 | #define bfin_read_MDMA_S0_Y_MODIFY() bfin_read16(MDMA_S0_Y_MODIFY) | ||
760 | #define bfin_write_MDMA_S0_Y_MODIFY(val) bfin_write16(MDMA_S0_Y_MODIFY, val) | ||
761 | #define bfin_read_MDMA_S0_CURR_DESC_PTR() bfin_read32(MDMA_S0_CURR_DESC_PTR) | ||
762 | #define bfin_write_MDMA_S0_CURR_DESC_PTR(val) bfin_write32(MDMA_S0_CURR_DESC_PTR, val) | ||
763 | #define bfin_read_MDMA_S0_CURR_ADDR() bfin_read32(MDMA_S0_CURR_ADDR) | ||
764 | #define bfin_write_MDMA_S0_CURR_ADDR(val) bfin_write32(MDMA_S0_CURR_ADDR, val) | ||
765 | #define bfin_read_MDMA_S0_CURR_X_COUNT() bfin_read16(MDMA_S0_CURR_X_COUNT) | ||
766 | #define bfin_write_MDMA_S0_CURR_X_COUNT(val) bfin_write16(MDMA_S0_CURR_X_COUNT, val) | ||
767 | #define bfin_read_MDMA_S0_CURR_Y_COUNT() bfin_read16(MDMA_S0_CURR_Y_COUNT) | ||
768 | #define bfin_write_MDMA_S0_CURR_Y_COUNT(val) bfin_write16(MDMA_S0_CURR_Y_COUNT, val) | ||
769 | #define bfin_read_MDMA_S0_IRQ_STATUS() bfin_read16(MDMA_S0_IRQ_STATUS) | ||
770 | #define bfin_write_MDMA_S0_IRQ_STATUS(val) bfin_write16(MDMA_S0_IRQ_STATUS, val) | ||
771 | #define bfin_read_MDMA_S0_PERIPHERAL_MAP() bfin_read16(MDMA_S0_PERIPHERAL_MAP) | ||
772 | #define bfin_write_MDMA_S0_PERIPHERAL_MAP(val) bfin_write16(MDMA_S0_PERIPHERAL_MAP, val) | ||
773 | |||
774 | #define bfin_read_MDMA_D1_CONFIG() bfin_read16(MDMA_D1_CONFIG) | ||
775 | #define bfin_write_MDMA_D1_CONFIG(val) bfin_write16(MDMA_D1_CONFIG, val) | ||
776 | #define bfin_read_MDMA_D1_NEXT_DESC_PTR() bfin_read32(MDMA_D1_NEXT_DESC_PTR) | ||
777 | #define bfin_write_MDMA_D1_NEXT_DESC_PTR(val) bfin_write32(MDMA_D1_NEXT_DESC_PTR, val) | ||
778 | #define bfin_read_MDMA_D1_START_ADDR() bfin_read32(MDMA_D1_START_ADDR) | ||
779 | #define bfin_write_MDMA_D1_START_ADDR(val) bfin_write32(MDMA_D1_START_ADDR, val) | ||
780 | #define bfin_read_MDMA_D1_X_COUNT() bfin_read16(MDMA_D1_X_COUNT) | ||
781 | #define bfin_write_MDMA_D1_X_COUNT(val) bfin_write16(MDMA_D1_X_COUNT, val) | ||
782 | #define bfin_read_MDMA_D1_Y_COUNT() bfin_read16(MDMA_D1_Y_COUNT) | ||
783 | #define bfin_write_MDMA_D1_Y_COUNT(val) bfin_write16(MDMA_D1_Y_COUNT, val) | ||
784 | #define bfin_read_MDMA_D1_X_MODIFY() bfin_read16(MDMA_D1_X_MODIFY) | ||
785 | #define bfin_write_MDMA_D1_X_MODIFY(val) bfin_write16(MDMA_D1_X_MODIFY, val) | ||
786 | #define bfin_read_MDMA_D1_Y_MODIFY() bfin_read16(MDMA_D1_Y_MODIFY) | ||
787 | #define bfin_write_MDMA_D1_Y_MODIFY(val) bfin_write16(MDMA_D1_Y_MODIFY, val) | ||
788 | #define bfin_read_MDMA_D1_CURR_DESC_PTR() bfin_read32(MDMA_D1_CURR_DESC_PTR) | ||
789 | #define bfin_write_MDMA_D1_CURR_DESC_PTR(val) bfin_write32(MDMA_D1_CURR_DESC_PTR, val) | ||
790 | #define bfin_read_MDMA_D1_CURR_ADDR() bfin_read32(MDMA_D1_CURR_ADDR) | ||
791 | #define bfin_write_MDMA_D1_CURR_ADDR(val) bfin_write32(MDMA_D1_CURR_ADDR, val) | ||
792 | #define bfin_read_MDMA_D1_CURR_X_COUNT() bfin_read16(MDMA_D1_CURR_X_COUNT) | ||
793 | #define bfin_write_MDMA_D1_CURR_X_COUNT(val) bfin_write16(MDMA_D1_CURR_X_COUNT, val) | ||
794 | #define bfin_read_MDMA_D1_CURR_Y_COUNT() bfin_read16(MDMA_D1_CURR_Y_COUNT) | ||
795 | #define bfin_write_MDMA_D1_CURR_Y_COUNT(val) bfin_write16(MDMA_D1_CURR_Y_COUNT, val) | ||
796 | #define bfin_read_MDMA_D1_IRQ_STATUS() bfin_read16(MDMA_D1_IRQ_STATUS) | ||
797 | #define bfin_write_MDMA_D1_IRQ_STATUS(val) bfin_write16(MDMA_D1_IRQ_STATUS, val) | ||
798 | #define bfin_read_MDMA_D1_PERIPHERAL_MAP() bfin_read16(MDMA_D1_PERIPHERAL_MAP) | ||
799 | #define bfin_write_MDMA_D1_PERIPHERAL_MAP(val) bfin_write16(MDMA_D1_PERIPHERAL_MAP, val) | ||
800 | |||
801 | #define bfin_read_MDMA_S1_CONFIG() bfin_read16(MDMA_S1_CONFIG) | ||
802 | #define bfin_write_MDMA_S1_CONFIG(val) bfin_write16(MDMA_S1_CONFIG, val) | ||
803 | #define bfin_read_MDMA_S1_NEXT_DESC_PTR() bfin_read32(MDMA_S1_NEXT_DESC_PTR) | ||
804 | #define bfin_write_MDMA_S1_NEXT_DESC_PTR(val) bfin_write32(MDMA_S1_NEXT_DESC_PTR, val) | ||
805 | #define bfin_read_MDMA_S1_START_ADDR() bfin_read32(MDMA_S1_START_ADDR) | ||
806 | #define bfin_write_MDMA_S1_START_ADDR(val) bfin_write32(MDMA_S1_START_ADDR, val) | ||
807 | #define bfin_read_MDMA_S1_X_COUNT() bfin_read16(MDMA_S1_X_COUNT) | ||
808 | #define bfin_write_MDMA_S1_X_COUNT(val) bfin_write16(MDMA_S1_X_COUNT, val) | ||
809 | #define bfin_read_MDMA_S1_Y_COUNT() bfin_read16(MDMA_S1_Y_COUNT) | ||
810 | #define bfin_write_MDMA_S1_Y_COUNT(val) bfin_write16(MDMA_S1_Y_COUNT, val) | ||
811 | #define bfin_read_MDMA_S1_X_MODIFY() bfin_read16(MDMA_S1_X_MODIFY) | ||
812 | #define bfin_write_MDMA_S1_X_MODIFY(val) bfin_write16(MDMA_S1_X_MODIFY, val) | ||
813 | #define bfin_read_MDMA_S1_Y_MODIFY() bfin_read16(MDMA_S1_Y_MODIFY) | ||
814 | #define bfin_write_MDMA_S1_Y_MODIFY(val) bfin_write16(MDMA_S1_Y_MODIFY, val) | ||
815 | #define bfin_read_MDMA_S1_CURR_DESC_PTR() bfin_read32(MDMA_S1_CURR_DESC_PTR) | ||
816 | #define bfin_write_MDMA_S1_CURR_DESC_PTR(val) bfin_write32(MDMA_S1_CURR_DESC_PTR, val) | ||
817 | #define bfin_read_MDMA_S1_CURR_ADDR() bfin_read32(MDMA_S1_CURR_ADDR) | ||
818 | #define bfin_write_MDMA_S1_CURR_ADDR(val) bfin_write32(MDMA_S1_CURR_ADDR, val) | ||
819 | #define bfin_read_MDMA_S1_CURR_X_COUNT() bfin_read16(MDMA_S1_CURR_X_COUNT) | ||
820 | #define bfin_write_MDMA_S1_CURR_X_COUNT(val) bfin_write16(MDMA_S1_CURR_X_COUNT, val) | ||
821 | #define bfin_read_MDMA_S1_CURR_Y_COUNT() bfin_read16(MDMA_S1_CURR_Y_COUNT) | ||
822 | #define bfin_write_MDMA_S1_CURR_Y_COUNT(val) bfin_write16(MDMA_S1_CURR_Y_COUNT, val) | ||
823 | #define bfin_read_MDMA_S1_IRQ_STATUS() bfin_read16(MDMA_S1_IRQ_STATUS) | ||
824 | #define bfin_write_MDMA_S1_IRQ_STATUS(val) bfin_write16(MDMA_S1_IRQ_STATUS, val) | ||
825 | #define bfin_read_MDMA_S1_PERIPHERAL_MAP() bfin_read16(MDMA_S1_PERIPHERAL_MAP) | ||
826 | #define bfin_write_MDMA_S1_PERIPHERAL_MAP(val) bfin_write16(MDMA_S1_PERIPHERAL_MAP, val) | ||
827 | |||
828 | |||
829 | /* Parallel Peripheral Interface (0xFFC01000 - 0xFFC010FF) */ | ||
830 | #define bfin_read_PPI_CONTROL() bfin_read16(PPI_CONTROL) | ||
831 | #define bfin_write_PPI_CONTROL(val) bfin_write16(PPI_CONTROL, val) | ||
832 | #define bfin_read_PPI_STATUS() bfin_read16(PPI_STATUS) | ||
833 | #define bfin_write_PPI_STATUS(val) bfin_write16(PPI_STATUS, val) | ||
834 | #define bfin_clear_PPI_STATUS() bfin_write_PPI_STATUS(0xFFFF) | ||
835 | #define bfin_read_PPI_DELAY() bfin_read16(PPI_DELAY) | ||
836 | #define bfin_write_PPI_DELAY(val) bfin_write16(PPI_DELAY, val) | ||
837 | #define bfin_read_PPI_COUNT() bfin_read16(PPI_COUNT) | ||
838 | #define bfin_write_PPI_COUNT(val) bfin_write16(PPI_COUNT, val) | ||
839 | #define bfin_read_PPI_FRAME() bfin_read16(PPI_FRAME) | ||
840 | #define bfin_write_PPI_FRAME(val) bfin_write16(PPI_FRAME, val) | ||
841 | |||
842 | |||
843 | /* Two-Wire Interface (0xFFC01400 - 0xFFC014FF) */ | ||
844 | |||
845 | /* General Purpose I/O Port G (0xFFC01500 - 0xFFC015FF) */ | ||
846 | #define bfin_read_PORTGIO() bfin_read16(PORTGIO) | ||
847 | #define bfin_write_PORTGIO(val) bfin_write16(PORTGIO, val) | ||
848 | #define bfin_read_PORTGIO_CLEAR() bfin_read16(PORTGIO_CLEAR) | ||
849 | #define bfin_write_PORTGIO_CLEAR(val) bfin_write16(PORTGIO_CLEAR, val) | ||
850 | #define bfin_read_PORTGIO_SET() bfin_read16(PORTGIO_SET) | ||
851 | #define bfin_write_PORTGIO_SET(val) bfin_write16(PORTGIO_SET, val) | ||
852 | #define bfin_read_PORTGIO_TOGGLE() bfin_read16(PORTGIO_TOGGLE) | ||
853 | #define bfin_write_PORTGIO_TOGGLE(val) bfin_write16(PORTGIO_TOGGLE, val) | ||
854 | #define bfin_read_PORTGIO_MASKA() bfin_read16(PORTGIO_MASKA) | ||
855 | #define bfin_write_PORTGIO_MASKA(val) bfin_write16(PORTGIO_MASKA, val) | ||
856 | #define bfin_read_PORTGIO_MASKA_CLEAR() bfin_read16(PORTGIO_MASKA_CLEAR) | ||
857 | #define bfin_write_PORTGIO_MASKA_CLEAR(val) bfin_write16(PORTGIO_MASKA_CLEAR, val) | ||
858 | #define bfin_read_PORTGIO_MASKA_SET() bfin_read16(PORTGIO_MASKA_SET) | ||
859 | #define bfin_write_PORTGIO_MASKA_SET(val) bfin_write16(PORTGIO_MASKA_SET, val) | ||
860 | #define bfin_read_PORTGIO_MASKA_TOGGLE() bfin_read16(PORTGIO_MASKA_TOGGLE) | ||
861 | #define bfin_write_PORTGIO_MASKA_TOGGLE(val) bfin_write16(PORTGIO_MASKA_TOGGLE, val) | ||
862 | #define bfin_read_PORTGIO_MASKB() bfin_read16(PORTGIO_MASKB) | ||
863 | #define bfin_write_PORTGIO_MASKB(val) bfin_write16(PORTGIO_MASKB, val) | ||
864 | #define bfin_read_PORTGIO_MASKB_CLEAR() bfin_read16(PORTGIO_MASKB_CLEAR) | ||
865 | #define bfin_write_PORTGIO_MASKB_CLEAR(val) bfin_write16(PORTGIO_MASKB_CLEAR, val) | ||
866 | #define bfin_read_PORTGIO_MASKB_SET() bfin_read16(PORTGIO_MASKB_SET) | ||
867 | #define bfin_write_PORTGIO_MASKB_SET(val) bfin_write16(PORTGIO_MASKB_SET, val) | ||
868 | #define bfin_read_PORTGIO_MASKB_TOGGLE() bfin_read16(PORTGIO_MASKB_TOGGLE) | ||
869 | #define bfin_write_PORTGIO_MASKB_TOGGLE(val) bfin_write16(PORTGIO_MASKB_TOGGLE, val) | ||
870 | #define bfin_read_PORTGIO_DIR() bfin_read16(PORTGIO_DIR) | ||
871 | #define bfin_write_PORTGIO_DIR(val) bfin_write16(PORTGIO_DIR, val) | ||
872 | #define bfin_read_PORTGIO_POLAR() bfin_read16(PORTGIO_POLAR) | ||
873 | #define bfin_write_PORTGIO_POLAR(val) bfin_write16(PORTGIO_POLAR, val) | ||
874 | #define bfin_read_PORTGIO_EDGE() bfin_read16(PORTGIO_EDGE) | ||
875 | #define bfin_write_PORTGIO_EDGE(val) bfin_write16(PORTGIO_EDGE, val) | ||
876 | #define bfin_read_PORTGIO_BOTH() bfin_read16(PORTGIO_BOTH) | ||
877 | #define bfin_write_PORTGIO_BOTH(val) bfin_write16(PORTGIO_BOTH, val) | ||
878 | #define bfin_read_PORTGIO_INEN() bfin_read16(PORTGIO_INEN) | ||
879 | #define bfin_write_PORTGIO_INEN(val) bfin_write16(PORTGIO_INEN, val) | ||
880 | |||
881 | |||
882 | /* General Purpose I/O Port H (0xFFC01700 - 0xFFC017FF) */ | ||
883 | #define bfin_read_PORTHIO() bfin_read16(PORTHIO) | ||
884 | #define bfin_write_PORTHIO(val) bfin_write16(PORTHIO, val) | ||
885 | #define bfin_read_PORTHIO_CLEAR() bfin_read16(PORTHIO_CLEAR) | ||
886 | #define bfin_write_PORTHIO_CLEAR(val) bfin_write16(PORTHIO_CLEAR, val) | ||
887 | #define bfin_read_PORTHIO_SET() bfin_read16(PORTHIO_SET) | ||
888 | #define bfin_write_PORTHIO_SET(val) bfin_write16(PORTHIO_SET, val) | ||
889 | #define bfin_read_PORTHIO_TOGGLE() bfin_read16(PORTHIO_TOGGLE) | ||
890 | #define bfin_write_PORTHIO_TOGGLE(val) bfin_write16(PORTHIO_TOGGLE, val) | ||
891 | #define bfin_read_PORTHIO_MASKA() bfin_read16(PORTHIO_MASKA) | ||
892 | #define bfin_write_PORTHIO_MASKA(val) bfin_write16(PORTHIO_MASKA, val) | ||
893 | #define bfin_read_PORTHIO_MASKA_CLEAR() bfin_read16(PORTHIO_MASKA_CLEAR) | ||
894 | #define bfin_write_PORTHIO_MASKA_CLEAR(val) bfin_write16(PORTHIO_MASKA_CLEAR, val) | ||
895 | #define bfin_read_PORTHIO_MASKA_SET() bfin_read16(PORTHIO_MASKA_SET) | ||
896 | #define bfin_write_PORTHIO_MASKA_SET(val) bfin_write16(PORTHIO_MASKA_SET, val) | ||
897 | #define bfin_read_PORTHIO_MASKA_TOGGLE() bfin_read16(PORTHIO_MASKA_TOGGLE) | ||
898 | #define bfin_write_PORTHIO_MASKA_TOGGLE(val) bfin_write16(PORTHIO_MASKA_TOGGLE, val) | ||
899 | #define bfin_read_PORTHIO_MASKB() bfin_read16(PORTHIO_MASKB) | ||
900 | #define bfin_write_PORTHIO_MASKB(val) bfin_write16(PORTHIO_MASKB, val) | ||
901 | #define bfin_read_PORTHIO_MASKB_CLEAR() bfin_read16(PORTHIO_MASKB_CLEAR) | ||
902 | #define bfin_write_PORTHIO_MASKB_CLEAR(val) bfin_write16(PORTHIO_MASKB_CLEAR, val) | ||
903 | #define bfin_read_PORTHIO_MASKB_SET() bfin_read16(PORTHIO_MASKB_SET) | ||
904 | #define bfin_write_PORTHIO_MASKB_SET(val) bfin_write16(PORTHIO_MASKB_SET, val) | ||
905 | #define bfin_read_PORTHIO_MASKB_TOGGLE() bfin_read16(PORTHIO_MASKB_TOGGLE) | ||
906 | #define bfin_write_PORTHIO_MASKB_TOGGLE(val) bfin_write16(PORTHIO_MASKB_TOGGLE, val) | ||
907 | #define bfin_read_PORTHIO_DIR() bfin_read16(PORTHIO_DIR) | ||
908 | #define bfin_write_PORTHIO_DIR(val) bfin_write16(PORTHIO_DIR, val) | ||
909 | #define bfin_read_PORTHIO_POLAR() bfin_read16(PORTHIO_POLAR) | ||
910 | #define bfin_write_PORTHIO_POLAR(val) bfin_write16(PORTHIO_POLAR, val) | ||
911 | #define bfin_read_PORTHIO_EDGE() bfin_read16(PORTHIO_EDGE) | ||
912 | #define bfin_write_PORTHIO_EDGE(val) bfin_write16(PORTHIO_EDGE, val) | ||
913 | #define bfin_read_PORTHIO_BOTH() bfin_read16(PORTHIO_BOTH) | ||
914 | #define bfin_write_PORTHIO_BOTH(val) bfin_write16(PORTHIO_BOTH, val) | ||
915 | #define bfin_read_PORTHIO_INEN() bfin_read16(PORTHIO_INEN) | ||
916 | #define bfin_write_PORTHIO_INEN(val) bfin_write16(PORTHIO_INEN, val) | ||
917 | |||
918 | |||
919 | /* UART1 Controller (0xFFC02000 - 0xFFC020FF) */ | ||
920 | #define bfin_read_UART1_THR() bfin_read16(UART1_THR) | ||
921 | #define bfin_write_UART1_THR(val) bfin_write16(UART1_THR, val) | ||
922 | #define bfin_read_UART1_RBR() bfin_read16(UART1_RBR) | ||
923 | #define bfin_write_UART1_RBR(val) bfin_write16(UART1_RBR, val) | ||
924 | #define bfin_read_UART1_DLL() bfin_read16(UART1_DLL) | ||
925 | #define bfin_write_UART1_DLL(val) bfin_write16(UART1_DLL, val) | ||
926 | #define bfin_read_UART1_IER() bfin_read16(UART1_IER) | ||
927 | #define bfin_write_UART1_IER(val) bfin_write16(UART1_IER, val) | ||
928 | #define bfin_read_UART1_DLH() bfin_read16(UART1_DLH) | ||
929 | #define bfin_write_UART1_DLH(val) bfin_write16(UART1_DLH, val) | ||
930 | #define bfin_read_UART1_IIR() bfin_read16(UART1_IIR) | ||
931 | #define bfin_write_UART1_IIR(val) bfin_write16(UART1_IIR, val) | ||
932 | #define bfin_read_UART1_LCR() bfin_read16(UART1_LCR) | ||
933 | #define bfin_write_UART1_LCR(val) bfin_write16(UART1_LCR, val) | ||
934 | #define bfin_read_UART1_MCR() bfin_read16(UART1_MCR) | ||
935 | #define bfin_write_UART1_MCR(val) bfin_write16(UART1_MCR, val) | ||
936 | #define bfin_read_UART1_LSR() bfin_read16(UART1_LSR) | ||
937 | #define bfin_write_UART1_LSR(val) bfin_write16(UART1_LSR, val) | ||
938 | #define bfin_read_UART1_MSR() bfin_read16(UART1_MSR) | ||
939 | #define bfin_write_UART1_MSR(val) bfin_write16(UART1_MSR, val) | ||
940 | #define bfin_read_UART1_SCR() bfin_read16(UART1_SCR) | ||
941 | #define bfin_write_UART1_SCR(val) bfin_write16(UART1_SCR, val) | ||
942 | #define bfin_read_UART1_GCTL() bfin_read16(UART1_GCTL) | ||
943 | #define bfin_write_UART1_GCTL(val) bfin_write16(UART1_GCTL, val) | ||
944 | |||
945 | /* Omit CAN register sets from the cdefBF534.h (CAN is not in the ADSP-BF52x processor) */ | ||
946 | |||
947 | /* Pin Control Registers (0xFFC03200 - 0xFFC032FF) */ | ||
948 | #define bfin_read_PORTF_FER() bfin_read16(PORTF_FER) | ||
949 | #define bfin_write_PORTF_FER(val) bfin_write16(PORTF_FER, val) | ||
950 | #define bfin_read_PORTG_FER() bfin_read16(PORTG_FER) | ||
951 | #define bfin_write_PORTG_FER(val) bfin_write16(PORTG_FER, val) | ||
952 | #define bfin_read_PORTH_FER() bfin_read16(PORTH_FER) | ||
953 | #define bfin_write_PORTH_FER(val) bfin_write16(PORTH_FER, val) | ||
954 | #define bfin_read_PORT_MUX() bfin_read16(PORT_MUX) | ||
955 | #define bfin_write_PORT_MUX(val) bfin_write16(PORT_MUX, val) | ||
956 | |||
957 | |||
958 | /* Handshake MDMA Registers (0xFFC03300 - 0xFFC033FF) */ | ||
959 | #define bfin_read_HMDMA0_CONTROL() bfin_read16(HMDMA0_CONTROL) | ||
960 | #define bfin_write_HMDMA0_CONTROL(val) bfin_write16(HMDMA0_CONTROL, val) | ||
961 | #define bfin_read_HMDMA0_ECINIT() bfin_read16(HMDMA0_ECINIT) | ||
962 | #define bfin_write_HMDMA0_ECINIT(val) bfin_write16(HMDMA0_ECINIT, val) | ||
963 | #define bfin_read_HMDMA0_BCINIT() bfin_read16(HMDMA0_BCINIT) | ||
964 | #define bfin_write_HMDMA0_BCINIT(val) bfin_write16(HMDMA0_BCINIT, val) | ||
965 | #define bfin_read_HMDMA0_ECURGENT() bfin_read16(HMDMA0_ECURGENT) | ||
966 | #define bfin_write_HMDMA0_ECURGENT(val) bfin_write16(HMDMA0_ECURGENT, val) | ||
967 | #define bfin_read_HMDMA0_ECOVERFLOW() bfin_read16(HMDMA0_ECOVERFLOW) | ||
968 | #define bfin_write_HMDMA0_ECOVERFLOW(val) bfin_write16(HMDMA0_ECOVERFLOW, val) | ||
969 | #define bfin_read_HMDMA0_ECOUNT() bfin_read16(HMDMA0_ECOUNT) | ||
970 | #define bfin_write_HMDMA0_ECOUNT(val) bfin_write16(HMDMA0_ECOUNT, val) | ||
971 | #define bfin_read_HMDMA0_BCOUNT() bfin_read16(HMDMA0_BCOUNT) | ||
972 | #define bfin_write_HMDMA0_BCOUNT(val) bfin_write16(HMDMA0_BCOUNT, val) | ||
973 | |||
974 | #define bfin_read_HMDMA1_CONTROL() bfin_read16(HMDMA1_CONTROL) | ||
975 | #define bfin_write_HMDMA1_CONTROL(val) bfin_write16(HMDMA1_CONTROL, val) | ||
976 | #define bfin_read_HMDMA1_ECINIT() bfin_read16(HMDMA1_ECINIT) | ||
977 | #define bfin_write_HMDMA1_ECINIT(val) bfin_write16(HMDMA1_ECINIT, val) | ||
978 | #define bfin_read_HMDMA1_BCINIT() bfin_read16(HMDMA1_BCINIT) | ||
979 | #define bfin_write_HMDMA1_BCINIT(val) bfin_write16(HMDMA1_BCINIT, val) | ||
980 | #define bfin_read_HMDMA1_ECURGENT() bfin_read16(HMDMA1_ECURGENT) | ||
981 | #define bfin_write_HMDMA1_ECURGENT(val) bfin_write16(HMDMA1_ECURGENT, val) | ||
982 | #define bfin_read_HMDMA1_ECOVERFLOW() bfin_read16(HMDMA1_ECOVERFLOW) | ||
983 | #define bfin_write_HMDMA1_ECOVERFLOW(val) bfin_write16(HMDMA1_ECOVERFLOW, val) | ||
984 | #define bfin_read_HMDMA1_ECOUNT() bfin_read16(HMDMA1_ECOUNT) | ||
985 | #define bfin_write_HMDMA1_ECOUNT(val) bfin_write16(HMDMA1_ECOUNT, val) | ||
986 | #define bfin_read_HMDMA1_BCOUNT() bfin_read16(HMDMA1_BCOUNT) | ||
987 | #define bfin_write_HMDMA1_BCOUNT(val) bfin_write16(HMDMA1_BCOUNT, val) | ||
988 | |||
989 | /* ==== end from cdefBF534.h ==== */ | ||
990 | |||
991 | /* GPIO PIN mux (0xFFC03210 - OxFFC03288) */ | ||
992 | |||
993 | #define bfin_read_PORTF_MUX() bfin_read16(PORTF_MUX) | ||
994 | #define bfin_write_PORTF_MUX(val) bfin_write16(PORTF_MUX, val) | ||
995 | #define bfin_read_PORTG_MUX() bfin_read16(PORTG_MUX) | ||
996 | #define bfin_write_PORTG_MUX(val) bfin_write16(PORTG_MUX, val) | ||
997 | #define bfin_read_PORTH_MUX() bfin_read16(PORTH_MUX) | ||
998 | #define bfin_write_PORTH_MUX(val) bfin_write16(PORTH_MUX, val) | ||
999 | |||
1000 | #define bfin_read_PORTF_DRIVE() bfin_read16(PORTF_DRIVE) | ||
1001 | #define bfin_write_PORTF_DRIVE(val) bfin_write16(PORTF_DRIVE, val) | ||
1002 | #define bfin_read_PORTG_DRIVE() bfin_read16(PORTG_DRIVE) | ||
1003 | #define bfin_write_PORTG_DRIVE(val) bfin_write16(PORTG_DRIVE, val) | ||
1004 | #define bfin_read_PORTH_DRIVE() bfin_read16(PORTH_DRIVE) | ||
1005 | #define bfin_write_PORTH_DRIVE(val) bfin_write16(PORTH_DRIVE, val) | ||
1006 | #define bfin_read_PORTF_SLEW() bfin_read16(PORTF_SLEW) | ||
1007 | #define bfin_write_PORTF_SLEW(val) bfin_write16(PORTF_SLEW, val) | ||
1008 | #define bfin_read_PORTG_SLEW() bfin_read16(PORTG_SLEW) | ||
1009 | #define bfin_write_PORTG_SLEW(val) bfin_write16(PORTG_SLEW, val) | ||
1010 | #define bfin_read_PORTH_SLEW() bfin_read16(PORTH_SLEW) | ||
1011 | #define bfin_write_PORTH_SLEW(val) bfin_write16(PORTH_SLEW, val) | ||
1012 | #define bfin_read_PORTF_HYSTERISIS() bfin_read16(PORTF_HYSTERISIS) | ||
1013 | #define bfin_write_PORTF_HYSTERISIS(val) bfin_write16(PORTF_HYSTERISIS, val) | ||
1014 | #define bfin_read_PORTG_HYSTERISIS() bfin_read16(PORTG_HYSTERISIS) | ||
1015 | #define bfin_write_PORTG_HYSTERISIS(val) bfin_write16(PORTG_HYSTERISIS, val) | ||
1016 | #define bfin_read_PORTH_HYSTERISIS() bfin_read16(PORTH_HYSTERISIS) | ||
1017 | #define bfin_write_PORTH_HYSTERISIS(val) bfin_write16(PORTH_HYSTERISIS, val) | ||
1018 | #define bfin_read_MISCPORT_DRIVE() bfin_read16(MISCPORT_DRIVE) | ||
1019 | #define bfin_write_MISCPORT_DRIVE(val) bfin_write16(MISCPORT_DRIVE, val) | ||
1020 | #define bfin_read_MISCPORT_SLEW() bfin_read16(MISCPORT_SLEW) | ||
1021 | #define bfin_write_MISCPORT_SLEW(val) bfin_write16(MISCPORT_SLEW, val) | ||
1022 | #define bfin_read_MISCPORT_HYSTERISIS() bfin_read16(MISCPORT_HYSTERISIS) | ||
1023 | #define bfin_write_MISCPORT_HYSTERISIS(val) bfin_write16(MISCPORT_HYSTERISIS, val) | ||
1024 | |||
1025 | /* HOST Port Registers */ | ||
1026 | |||
1027 | #define bfin_read_HOST_CONTROL() bfin_read16(HOST_CONTROL) | ||
1028 | #define bfin_write_HOST_CONTROL(val) bfin_write16(HOST_CONTROL, val) | ||
1029 | #define bfin_read_HOST_STATUS() bfin_read16(HOST_STATUS) | ||
1030 | #define bfin_write_HOST_STATUS(val) bfin_write16(HOST_STATUS, val) | ||
1031 | #define bfin_read_HOST_TIMEOUT() bfin_read16(HOST_TIMEOUT) | ||
1032 | #define bfin_write_HOST_TIMEOUT(val) bfin_write16(HOST_TIMEOUT, val) | ||
1033 | |||
1034 | /* Counter Registers */ | ||
1035 | |||
1036 | #define bfin_read_CNT_CONFIG() bfin_read16(CNT_CONFIG) | ||
1037 | #define bfin_write_CNT_CONFIG(val) bfin_write16(CNT_CONFIG, val) | ||
1038 | #define bfin_read_CNT_IMASK() bfin_read16(CNT_IMASK) | ||
1039 | #define bfin_write_CNT_IMASK(val) bfin_write16(CNT_IMASK, val) | ||
1040 | #define bfin_read_CNT_STATUS() bfin_read16(CNT_STATUS) | ||
1041 | #define bfin_write_CNT_STATUS(val) bfin_write16(CNT_STATUS, val) | ||
1042 | #define bfin_read_CNT_COMMAND() bfin_read16(CNT_COMMAND) | ||
1043 | #define bfin_write_CNT_COMMAND(val) bfin_write16(CNT_COMMAND, val) | ||
1044 | #define bfin_read_CNT_DEBOUNCE() bfin_read16(CNT_DEBOUNCE) | ||
1045 | #define bfin_write_CNT_DEBOUNCE(val) bfin_write16(CNT_DEBOUNCE, val) | ||
1046 | #define bfin_read_CNT_COUNTER() bfin_read32(CNT_COUNTER) | ||
1047 | #define bfin_write_CNT_COUNTER(val) bfin_write32(CNT_COUNTER, val) | ||
1048 | #define bfin_read_CNT_MAX() bfin_read32(CNT_MAX) | ||
1049 | #define bfin_write_CNT_MAX(val) bfin_write32(CNT_MAX, val) | ||
1050 | #define bfin_read_CNT_MIN() bfin_read32(CNT_MIN) | ||
1051 | #define bfin_write_CNT_MIN(val) bfin_write32(CNT_MIN, val) | ||
1052 | |||
1053 | /* Security Registers */ | ||
1054 | |||
1055 | #define bfin_read_SECURE_SYSSWT() bfin_read32(SECURE_SYSSWT) | ||
1056 | #define bfin_write_SECURE_SYSSWT(val) bfin_write32(SECURE_SYSSWT, val) | ||
1057 | #define bfin_read_SECURE_CONTROL() bfin_read16(SECURE_CONTROL) | ||
1058 | #define bfin_write_SECURE_CONTROL(val) bfin_write16(SECURE_CONTROL, val) | ||
1059 | #define bfin_read_SECURE_STATUS() bfin_read16(SECURE_STATUS) | ||
1060 | #define bfin_write_SECURE_STATUS(val) bfin_write16(SECURE_STATUS, val) | ||
1061 | |||
1062 | /* NFC Registers */ | ||
1063 | |||
1064 | #define bfin_read_NFC_CTL() bfin_read16(NFC_CTL) | ||
1065 | #define bfin_write_NFC_CTL(val) bfin_write16(NFC_CTL, val) | ||
1066 | #define bfin_read_NFC_STAT() bfin_read16(NFC_STAT) | ||
1067 | #define bfin_write_NFC_STAT(val) bfin_write16(NFC_STAT, val) | ||
1068 | #define bfin_read_NFC_IRQSTAT() bfin_read16(NFC_IRQSTAT) | ||
1069 | #define bfin_write_NFC_IRQSTAT(val) bfin_write16(NFC_IRQSTAT, val) | ||
1070 | #define bfin_read_NFC_IRQMASK() bfin_read16(NFC_IRQMASK) | ||
1071 | #define bfin_write_NFC_IRQMASK(val) bfin_write16(NFC_IRQMASK, val) | ||
1072 | #define bfin_read_NFC_ECC0() bfin_read16(NFC_ECC0) | ||
1073 | #define bfin_write_NFC_ECC0(val) bfin_write16(NFC_ECC0, val) | ||
1074 | #define bfin_read_NFC_ECC1() bfin_read16(NFC_ECC1) | ||
1075 | #define bfin_write_NFC_ECC1(val) bfin_write16(NFC_ECC1, val) | ||
1076 | #define bfin_read_NFC_ECC2() bfin_read16(NFC_ECC2) | ||
1077 | #define bfin_write_NFC_ECC2(val) bfin_write16(NFC_ECC2, val) | ||
1078 | #define bfin_read_NFC_ECC3() bfin_read16(NFC_ECC3) | ||
1079 | #define bfin_write_NFC_ECC3(val) bfin_write16(NFC_ECC3, val) | ||
1080 | #define bfin_read_NFC_COUNT() bfin_read16(NFC_COUNT) | ||
1081 | #define bfin_write_NFC_COUNT(val) bfin_write16(NFC_COUNT, val) | ||
1082 | #define bfin_read_NFC_RST() bfin_read16(NFC_RST) | ||
1083 | #define bfin_write_NFC_RST(val) bfin_write16(NFC_RST, val) | ||
1084 | #define bfin_read_NFC_PGCTL() bfin_read16(NFC_PGCTL) | ||
1085 | #define bfin_write_NFC_PGCTL(val) bfin_write16(NFC_PGCTL, val) | ||
1086 | #define bfin_read_NFC_READ() bfin_read16(NFC_READ) | ||
1087 | #define bfin_write_NFC_READ(val) bfin_write16(NFC_READ, val) | ||
1088 | #define bfin_read_NFC_ADDR() bfin_read16(NFC_ADDR) | ||
1089 | #define bfin_write_NFC_ADDR(val) bfin_write16(NFC_ADDR, val) | ||
1090 | #define bfin_read_NFC_CMD() bfin_read16(NFC_CMD) | ||
1091 | #define bfin_write_NFC_CMD(val) bfin_write16(NFC_CMD, val) | ||
1092 | #define bfin_read_NFC_DATA_WR() bfin_read16(NFC_DATA_WR) | ||
1093 | #define bfin_write_NFC_DATA_WR(val) bfin_write16(NFC_DATA_WR, val) | ||
1094 | #define bfin_read_NFC_DATA_RD() bfin_read16(NFC_DATA_RD) | ||
1095 | #define bfin_write_NFC_DATA_RD(val) bfin_write16(NFC_DATA_RD, val) | ||
1096 | |||
1097 | /* These need to be last due to the cdef/linux inter-dependencies */ | ||
1098 | #include <asm/irq.h> | ||
1099 | |||
1100 | #endif /* _CDEF_BF52X_H */ | ||
diff --git a/arch/blackfin/mach-bf527/include/mach/defBF522.h b/arch/blackfin/mach-bf527/include/mach/defBF522.h index b1da029f1d6c..89f5420ee6cd 100644 --- a/arch/blackfin/mach-bf527/include/mach/defBF522.h +++ b/arch/blackfin/mach-bf527/include/mach/defBF522.h | |||
@@ -7,7 +7,1393 @@ | |||
7 | #ifndef _DEF_BF522_H | 7 | #ifndef _DEF_BF522_H |
8 | #define _DEF_BF522_H | 8 | #define _DEF_BF522_H |
9 | 9 | ||
10 | /* Include defBF52x_base.h for the set of #defines that are common to all ADSP-BF52x processors */ | 10 | /* ************************************************************** */ |
11 | #include "defBF52x_base.h" | 11 | /* SYSTEM & MMR ADDRESS DEFINITIONS COMMON TO ALL ADSP-BF52x */ |
12 | /* ************************************************************** */ | ||
13 | |||
14 | /* ==== begin from defBF534.h ==== */ | ||
15 | |||
16 | /* Clock and System Control (0xFFC00000 - 0xFFC000FF) */ | ||
17 | #define PLL_CTL 0xFFC00000 /* PLL Control Register */ | ||
18 | #define PLL_DIV 0xFFC00004 /* PLL Divide Register */ | ||
19 | #define VR_CTL 0xFFC00008 /* Voltage Regulator Control Register */ | ||
20 | #define PLL_STAT 0xFFC0000C /* PLL Status Register */ | ||
21 | #define PLL_LOCKCNT 0xFFC00010 /* PLL Lock Count Register */ | ||
22 | #define CHIPID 0xFFC00014 /* Device ID Register */ | ||
23 | |||
24 | |||
25 | /* System Interrupt Controller (0xFFC00100 - 0xFFC001FF) */ | ||
26 | #define SWRST 0xFFC00100 /* Software Reset Register */ | ||
27 | #define SYSCR 0xFFC00104 /* System Configuration Register */ | ||
28 | #define SIC_RVECT 0xFFC00108 /* Interrupt Reset Vector Address Register */ | ||
29 | |||
30 | #define SIC_IMASK0 0xFFC0010C /* Interrupt Mask Register */ | ||
31 | #define SIC_IAR0 0xFFC00110 /* Interrupt Assignment Register 0 */ | ||
32 | #define SIC_IAR1 0xFFC00114 /* Interrupt Assignment Register 1 */ | ||
33 | #define SIC_IAR2 0xFFC00118 /* Interrupt Assignment Register 2 */ | ||
34 | #define SIC_IAR3 0xFFC0011C /* Interrupt Assignment Register 3 */ | ||
35 | #define SIC_ISR0 0xFFC00120 /* Interrupt Status Register */ | ||
36 | #define SIC_IWR0 0xFFC00124 /* Interrupt Wakeup Register */ | ||
37 | |||
38 | /* SIC Additions to ADSP-BF52x (0xFFC0014C - 0xFFC00162) */ | ||
39 | #define SIC_IMASK1 0xFFC0014C /* Interrupt Mask register of SIC2 */ | ||
40 | #define SIC_IAR4 0xFFC00150 /* Interrupt Assignment register4 */ | ||
41 | #define SIC_IAR5 0xFFC00154 /* Interrupt Assignment register5 */ | ||
42 | #define SIC_IAR6 0xFFC00158 /* Interrupt Assignment register6 */ | ||
43 | #define SIC_IAR7 0xFFC0015C /* Interrupt Assignment register7 */ | ||
44 | #define SIC_ISR1 0xFFC00160 /* Interrupt Statur register */ | ||
45 | #define SIC_IWR1 0xFFC00164 /* Interrupt Wakeup register */ | ||
46 | |||
47 | |||
48 | /* Watchdog Timer (0xFFC00200 - 0xFFC002FF) */ | ||
49 | #define WDOG_CTL 0xFFC00200 /* Watchdog Control Register */ | ||
50 | #define WDOG_CNT 0xFFC00204 /* Watchdog Count Register */ | ||
51 | #define WDOG_STAT 0xFFC00208 /* Watchdog Status Register */ | ||
52 | |||
53 | |||
54 | /* Real Time Clock (0xFFC00300 - 0xFFC003FF) */ | ||
55 | #define RTC_STAT 0xFFC00300 /* RTC Status Register */ | ||
56 | #define RTC_ICTL 0xFFC00304 /* RTC Interrupt Control Register */ | ||
57 | #define RTC_ISTAT 0xFFC00308 /* RTC Interrupt Status Register */ | ||
58 | #define RTC_SWCNT 0xFFC0030C /* RTC Stopwatch Count Register */ | ||
59 | #define RTC_ALARM 0xFFC00310 /* RTC Alarm Time Register */ | ||
60 | #define RTC_FAST 0xFFC00314 /* RTC Prescaler Enable Register */ | ||
61 | #define RTC_PREN 0xFFC00314 /* RTC Prescaler Enable Alternate Macro */ | ||
62 | |||
63 | |||
64 | /* UART0 Controller (0xFFC00400 - 0xFFC004FF) */ | ||
65 | #define UART0_THR 0xFFC00400 /* Transmit Holding register */ | ||
66 | #define UART0_RBR 0xFFC00400 /* Receive Buffer register */ | ||
67 | #define UART0_DLL 0xFFC00400 /* Divisor Latch (Low-Byte) */ | ||
68 | #define UART0_IER 0xFFC00404 /* Interrupt Enable Register */ | ||
69 | #define UART0_DLH 0xFFC00404 /* Divisor Latch (High-Byte) */ | ||
70 | #define UART0_IIR 0xFFC00408 /* Interrupt Identification Register */ | ||
71 | #define UART0_LCR 0xFFC0040C /* Line Control Register */ | ||
72 | #define UART0_MCR 0xFFC00410 /* Modem Control Register */ | ||
73 | #define UART0_LSR 0xFFC00414 /* Line Status Register */ | ||
74 | #define UART0_MSR 0xFFC00418 /* Modem Status Register */ | ||
75 | #define UART0_SCR 0xFFC0041C /* SCR Scratch Register */ | ||
76 | #define UART0_GCTL 0xFFC00424 /* Global Control Register */ | ||
77 | |||
78 | |||
79 | /* SPI Controller (0xFFC00500 - 0xFFC005FF) */ | ||
80 | #define SPI0_REGBASE 0xFFC00500 | ||
81 | #define SPI_CTL 0xFFC00500 /* SPI Control Register */ | ||
82 | #define SPI_FLG 0xFFC00504 /* SPI Flag register */ | ||
83 | #define SPI_STAT 0xFFC00508 /* SPI Status register */ | ||
84 | #define SPI_TDBR 0xFFC0050C /* SPI Transmit Data Buffer Register */ | ||
85 | #define SPI_RDBR 0xFFC00510 /* SPI Receive Data Buffer Register */ | ||
86 | #define SPI_BAUD 0xFFC00514 /* SPI Baud rate Register */ | ||
87 | #define SPI_SHADOW 0xFFC00518 /* SPI_RDBR Shadow Register */ | ||
88 | |||
89 | |||
90 | /* TIMER0-7 Registers (0xFFC00600 - 0xFFC006FF) */ | ||
91 | #define TIMER0_CONFIG 0xFFC00600 /* Timer 0 Configuration Register */ | ||
92 | #define TIMER0_COUNTER 0xFFC00604 /* Timer 0 Counter Register */ | ||
93 | #define TIMER0_PERIOD 0xFFC00608 /* Timer 0 Period Register */ | ||
94 | #define TIMER0_WIDTH 0xFFC0060C /* Timer 0 Width Register */ | ||
95 | |||
96 | #define TIMER1_CONFIG 0xFFC00610 /* Timer 1 Configuration Register */ | ||
97 | #define TIMER1_COUNTER 0xFFC00614 /* Timer 1 Counter Register */ | ||
98 | #define TIMER1_PERIOD 0xFFC00618 /* Timer 1 Period Register */ | ||
99 | #define TIMER1_WIDTH 0xFFC0061C /* Timer 1 Width Register */ | ||
100 | |||
101 | #define TIMER2_CONFIG 0xFFC00620 /* Timer 2 Configuration Register */ | ||
102 | #define TIMER2_COUNTER 0xFFC00624 /* Timer 2 Counter Register */ | ||
103 | #define TIMER2_PERIOD 0xFFC00628 /* Timer 2 Period Register */ | ||
104 | #define TIMER2_WIDTH 0xFFC0062C /* Timer 2 Width Register */ | ||
105 | |||
106 | #define TIMER3_CONFIG 0xFFC00630 /* Timer 3 Configuration Register */ | ||
107 | #define TIMER3_COUNTER 0xFFC00634 /* Timer 3 Counter Register */ | ||
108 | #define TIMER3_PERIOD 0xFFC00638 /* Timer 3 Period Register */ | ||
109 | #define TIMER3_WIDTH 0xFFC0063C /* Timer 3 Width Register */ | ||
110 | |||
111 | #define TIMER4_CONFIG 0xFFC00640 /* Timer 4 Configuration Register */ | ||
112 | #define TIMER4_COUNTER 0xFFC00644 /* Timer 4 Counter Register */ | ||
113 | #define TIMER4_PERIOD 0xFFC00648 /* Timer 4 Period Register */ | ||
114 | #define TIMER4_WIDTH 0xFFC0064C /* Timer 4 Width Register */ | ||
115 | |||
116 | #define TIMER5_CONFIG 0xFFC00650 /* Timer 5 Configuration Register */ | ||
117 | #define TIMER5_COUNTER 0xFFC00654 /* Timer 5 Counter Register */ | ||
118 | #define TIMER5_PERIOD 0xFFC00658 /* Timer 5 Period Register */ | ||
119 | #define TIMER5_WIDTH 0xFFC0065C /* Timer 5 Width Register */ | ||
120 | |||
121 | #define TIMER6_CONFIG 0xFFC00660 /* Timer 6 Configuration Register */ | ||
122 | #define TIMER6_COUNTER 0xFFC00664 /* Timer 6 Counter Register */ | ||
123 | #define TIMER6_PERIOD 0xFFC00668 /* Timer 6 Period Register */ | ||
124 | #define TIMER6_WIDTH 0xFFC0066C /* Timer 6 Width Register */ | ||
125 | |||
126 | #define TIMER7_CONFIG 0xFFC00670 /* Timer 7 Configuration Register */ | ||
127 | #define TIMER7_COUNTER 0xFFC00674 /* Timer 7 Counter Register */ | ||
128 | #define TIMER7_PERIOD 0xFFC00678 /* Timer 7 Period Register */ | ||
129 | #define TIMER7_WIDTH 0xFFC0067C /* Timer 7 Width Register */ | ||
130 | |||
131 | #define TIMER_ENABLE 0xFFC00680 /* Timer Enable Register */ | ||
132 | #define TIMER_DISABLE 0xFFC00684 /* Timer Disable Register */ | ||
133 | #define TIMER_STATUS 0xFFC00688 /* Timer Status Register */ | ||
134 | |||
135 | |||
136 | /* General Purpose I/O Port F (0xFFC00700 - 0xFFC007FF) */ | ||
137 | #define PORTFIO 0xFFC00700 /* Port F I/O Pin State Specify Register */ | ||
138 | #define PORTFIO_CLEAR 0xFFC00704 /* Port F I/O Peripheral Interrupt Clear Register */ | ||
139 | #define PORTFIO_SET 0xFFC00708 /* Port F I/O Peripheral Interrupt Set Register */ | ||
140 | #define PORTFIO_TOGGLE 0xFFC0070C /* Port F I/O Pin State Toggle Register */ | ||
141 | #define PORTFIO_MASKA 0xFFC00710 /* Port F I/O Mask State Specify Interrupt A Register */ | ||
142 | #define PORTFIO_MASKA_CLEAR 0xFFC00714 /* Port F I/O Mask Disable Interrupt A Register */ | ||
143 | #define PORTFIO_MASKA_SET 0xFFC00718 /* Port F I/O Mask Enable Interrupt A Register */ | ||
144 | #define PORTFIO_MASKA_TOGGLE 0xFFC0071C /* Port F I/O Mask Toggle Enable Interrupt A Register */ | ||
145 | #define PORTFIO_MASKB 0xFFC00720 /* Port F I/O Mask State Specify Interrupt B Register */ | ||
146 | #define PORTFIO_MASKB_CLEAR 0xFFC00724 /* Port F I/O Mask Disable Interrupt B Register */ | ||
147 | #define PORTFIO_MASKB_SET 0xFFC00728 /* Port F I/O Mask Enable Interrupt B Register */ | ||
148 | #define PORTFIO_MASKB_TOGGLE 0xFFC0072C /* Port F I/O Mask Toggle Enable Interrupt B Register */ | ||
149 | #define PORTFIO_DIR 0xFFC00730 /* Port F I/O Direction Register */ | ||
150 | #define PORTFIO_POLAR 0xFFC00734 /* Port F I/O Source Polarity Register */ | ||
151 | #define PORTFIO_EDGE 0xFFC00738 /* Port F I/O Source Sensitivity Register */ | ||
152 | #define PORTFIO_BOTH 0xFFC0073C /* Port F I/O Set on BOTH Edges Register */ | ||
153 | #define PORTFIO_INEN 0xFFC00740 /* Port F I/O Input Enable Register */ | ||
154 | |||
155 | |||
156 | /* SPORT0 Controller (0xFFC00800 - 0xFFC008FF) */ | ||
157 | #define SPORT0_TCR1 0xFFC00800 /* SPORT0 Transmit Configuration 1 Register */ | ||
158 | #define SPORT0_TCR2 0xFFC00804 /* SPORT0 Transmit Configuration 2 Register */ | ||
159 | #define SPORT0_TCLKDIV 0xFFC00808 /* SPORT0 Transmit Clock Divider */ | ||
160 | #define SPORT0_TFSDIV 0xFFC0080C /* SPORT0 Transmit Frame Sync Divider */ | ||
161 | #define SPORT0_TX 0xFFC00810 /* SPORT0 TX Data Register */ | ||
162 | #define SPORT0_RX 0xFFC00818 /* SPORT0 RX Data Register */ | ||
163 | #define SPORT0_RCR1 0xFFC00820 /* SPORT0 Transmit Configuration 1 Register */ | ||
164 | #define SPORT0_RCR2 0xFFC00824 /* SPORT0 Transmit Configuration 2 Register */ | ||
165 | #define SPORT0_RCLKDIV 0xFFC00828 /* SPORT0 Receive Clock Divider */ | ||
166 | #define SPORT0_RFSDIV 0xFFC0082C /* SPORT0 Receive Frame Sync Divider */ | ||
167 | #define SPORT0_STAT 0xFFC00830 /* SPORT0 Status Register */ | ||
168 | #define SPORT0_CHNL 0xFFC00834 /* SPORT0 Current Channel Register */ | ||
169 | #define SPORT0_MCMC1 0xFFC00838 /* SPORT0 Multi-Channel Configuration Register 1 */ | ||
170 | #define SPORT0_MCMC2 0xFFC0083C /* SPORT0 Multi-Channel Configuration Register 2 */ | ||
171 | #define SPORT0_MTCS0 0xFFC00840 /* SPORT0 Multi-Channel Transmit Select Register 0 */ | ||
172 | #define SPORT0_MTCS1 0xFFC00844 /* SPORT0 Multi-Channel Transmit Select Register 1 */ | ||
173 | #define SPORT0_MTCS2 0xFFC00848 /* SPORT0 Multi-Channel Transmit Select Register 2 */ | ||
174 | #define SPORT0_MTCS3 0xFFC0084C /* SPORT0 Multi-Channel Transmit Select Register 3 */ | ||
175 | #define SPORT0_MRCS0 0xFFC00850 /* SPORT0 Multi-Channel Receive Select Register 0 */ | ||
176 | #define SPORT0_MRCS1 0xFFC00854 /* SPORT0 Multi-Channel Receive Select Register 1 */ | ||
177 | #define SPORT0_MRCS2 0xFFC00858 /* SPORT0 Multi-Channel Receive Select Register 2 */ | ||
178 | #define SPORT0_MRCS3 0xFFC0085C /* SPORT0 Multi-Channel Receive Select Register 3 */ | ||
179 | |||
180 | |||
181 | /* SPORT1 Controller (0xFFC00900 - 0xFFC009FF) */ | ||
182 | #define SPORT1_TCR1 0xFFC00900 /* SPORT1 Transmit Configuration 1 Register */ | ||
183 | #define SPORT1_TCR2 0xFFC00904 /* SPORT1 Transmit Configuration 2 Register */ | ||
184 | #define SPORT1_TCLKDIV 0xFFC00908 /* SPORT1 Transmit Clock Divider */ | ||
185 | #define SPORT1_TFSDIV 0xFFC0090C /* SPORT1 Transmit Frame Sync Divider */ | ||
186 | #define SPORT1_TX 0xFFC00910 /* SPORT1 TX Data Register */ | ||
187 | #define SPORT1_RX 0xFFC00918 /* SPORT1 RX Data Register */ | ||
188 | #define SPORT1_RCR1 0xFFC00920 /* SPORT1 Transmit Configuration 1 Register */ | ||
189 | #define SPORT1_RCR2 0xFFC00924 /* SPORT1 Transmit Configuration 2 Register */ | ||
190 | #define SPORT1_RCLKDIV 0xFFC00928 /* SPORT1 Receive Clock Divider */ | ||
191 | #define SPORT1_RFSDIV 0xFFC0092C /* SPORT1 Receive Frame Sync Divider */ | ||
192 | #define SPORT1_STAT 0xFFC00930 /* SPORT1 Status Register */ | ||
193 | #define SPORT1_CHNL 0xFFC00934 /* SPORT1 Current Channel Register */ | ||
194 | #define SPORT1_MCMC1 0xFFC00938 /* SPORT1 Multi-Channel Configuration Register 1 */ | ||
195 | #define SPORT1_MCMC2 0xFFC0093C /* SPORT1 Multi-Channel Configuration Register 2 */ | ||
196 | #define SPORT1_MTCS0 0xFFC00940 /* SPORT1 Multi-Channel Transmit Select Register 0 */ | ||
197 | #define SPORT1_MTCS1 0xFFC00944 /* SPORT1 Multi-Channel Transmit Select Register 1 */ | ||
198 | #define SPORT1_MTCS2 0xFFC00948 /* SPORT1 Multi-Channel Transmit Select Register 2 */ | ||
199 | #define SPORT1_MTCS3 0xFFC0094C /* SPORT1 Multi-Channel Transmit Select Register 3 */ | ||
200 | #define SPORT1_MRCS0 0xFFC00950 /* SPORT1 Multi-Channel Receive Select Register 0 */ | ||
201 | #define SPORT1_MRCS1 0xFFC00954 /* SPORT1 Multi-Channel Receive Select Register 1 */ | ||
202 | #define SPORT1_MRCS2 0xFFC00958 /* SPORT1 Multi-Channel Receive Select Register 2 */ | ||
203 | #define SPORT1_MRCS3 0xFFC0095C /* SPORT1 Multi-Channel Receive Select Register 3 */ | ||
204 | |||
205 | |||
206 | /* External Bus Interface Unit (0xFFC00A00 - 0xFFC00AFF) */ | ||
207 | #define EBIU_AMGCTL 0xFFC00A00 /* Asynchronous Memory Global Control Register */ | ||
208 | #define EBIU_AMBCTL0 0xFFC00A04 /* Asynchronous Memory Bank Control Register 0 */ | ||
209 | #define EBIU_AMBCTL1 0xFFC00A08 /* Asynchronous Memory Bank Control Register 1 */ | ||
210 | #define EBIU_SDGCTL 0xFFC00A10 /* SDRAM Global Control Register */ | ||
211 | #define EBIU_SDBCTL 0xFFC00A14 /* SDRAM Bank Control Register */ | ||
212 | #define EBIU_SDRRC 0xFFC00A18 /* SDRAM Refresh Rate Control Register */ | ||
213 | #define EBIU_SDSTAT 0xFFC00A1C /* SDRAM Status Register */ | ||
214 | |||
215 | |||
216 | /* DMA Traffic Control Registers */ | ||
217 | #define DMAC_TC_PER 0xFFC00B0C /* Traffic Control Periods Register */ | ||
218 | #define DMAC_TC_CNT 0xFFC00B10 /* Traffic Control Current Counts Register */ | ||
219 | |||
220 | /* DMA Controller (0xFFC00C00 - 0xFFC00FFF) */ | ||
221 | #define DMA0_NEXT_DESC_PTR 0xFFC00C00 /* DMA Channel 0 Next Descriptor Pointer Register */ | ||
222 | #define DMA0_START_ADDR 0xFFC00C04 /* DMA Channel 0 Start Address Register */ | ||
223 | #define DMA0_CONFIG 0xFFC00C08 /* DMA Channel 0 Configuration Register */ | ||
224 | #define DMA0_X_COUNT 0xFFC00C10 /* DMA Channel 0 X Count Register */ | ||
225 | #define DMA0_X_MODIFY 0xFFC00C14 /* DMA Channel 0 X Modify Register */ | ||
226 | #define DMA0_Y_COUNT 0xFFC00C18 /* DMA Channel 0 Y Count Register */ | ||
227 | #define DMA0_Y_MODIFY 0xFFC00C1C /* DMA Channel 0 Y Modify Register */ | ||
228 | #define DMA0_CURR_DESC_PTR 0xFFC00C20 /* DMA Channel 0 Current Descriptor Pointer Register */ | ||
229 | #define DMA0_CURR_ADDR 0xFFC00C24 /* DMA Channel 0 Current Address Register */ | ||
230 | #define DMA0_IRQ_STATUS 0xFFC00C28 /* DMA Channel 0 Interrupt/Status Register */ | ||
231 | #define DMA0_PERIPHERAL_MAP 0xFFC00C2C /* DMA Channel 0 Peripheral Map Register */ | ||
232 | #define DMA0_CURR_X_COUNT 0xFFC00C30 /* DMA Channel 0 Current X Count Register */ | ||
233 | #define DMA0_CURR_Y_COUNT 0xFFC00C38 /* DMA Channel 0 Current Y Count Register */ | ||
234 | |||
235 | #define DMA1_NEXT_DESC_PTR 0xFFC00C40 /* DMA Channel 1 Next Descriptor Pointer Register */ | ||
236 | #define DMA1_START_ADDR 0xFFC00C44 /* DMA Channel 1 Start Address Register */ | ||
237 | #define DMA1_CONFIG 0xFFC00C48 /* DMA Channel 1 Configuration Register */ | ||
238 | #define DMA1_X_COUNT 0xFFC00C50 /* DMA Channel 1 X Count Register */ | ||
239 | #define DMA1_X_MODIFY 0xFFC00C54 /* DMA Channel 1 X Modify Register */ | ||
240 | #define DMA1_Y_COUNT 0xFFC00C58 /* DMA Channel 1 Y Count Register */ | ||
241 | #define DMA1_Y_MODIFY 0xFFC00C5C /* DMA Channel 1 Y Modify Register */ | ||
242 | #define DMA1_CURR_DESC_PTR 0xFFC00C60 /* DMA Channel 1 Current Descriptor Pointer Register */ | ||
243 | #define DMA1_CURR_ADDR 0xFFC00C64 /* DMA Channel 1 Current Address Register */ | ||
244 | #define DMA1_IRQ_STATUS 0xFFC00C68 /* DMA Channel 1 Interrupt/Status Register */ | ||
245 | #define DMA1_PERIPHERAL_MAP 0xFFC00C6C /* DMA Channel 1 Peripheral Map Register */ | ||
246 | #define DMA1_CURR_X_COUNT 0xFFC00C70 /* DMA Channel 1 Current X Count Register */ | ||
247 | #define DMA1_CURR_Y_COUNT 0xFFC00C78 /* DMA Channel 1 Current Y Count Register */ | ||
248 | |||
249 | #define DMA2_NEXT_DESC_PTR 0xFFC00C80 /* DMA Channel 2 Next Descriptor Pointer Register */ | ||
250 | #define DMA2_START_ADDR 0xFFC00C84 /* DMA Channel 2 Start Address Register */ | ||
251 | #define DMA2_CONFIG 0xFFC00C88 /* DMA Channel 2 Configuration Register */ | ||
252 | #define DMA2_X_COUNT 0xFFC00C90 /* DMA Channel 2 X Count Register */ | ||
253 | #define DMA2_X_MODIFY 0xFFC00C94 /* DMA Channel 2 X Modify Register */ | ||
254 | #define DMA2_Y_COUNT 0xFFC00C98 /* DMA Channel 2 Y Count Register */ | ||
255 | #define DMA2_Y_MODIFY 0xFFC00C9C /* DMA Channel 2 Y Modify Register */ | ||
256 | #define DMA2_CURR_DESC_PTR 0xFFC00CA0 /* DMA Channel 2 Current Descriptor Pointer Register */ | ||
257 | #define DMA2_CURR_ADDR 0xFFC00CA4 /* DMA Channel 2 Current Address Register */ | ||
258 | #define DMA2_IRQ_STATUS 0xFFC00CA8 /* DMA Channel 2 Interrupt/Status Register */ | ||
259 | #define DMA2_PERIPHERAL_MAP 0xFFC00CAC /* DMA Channel 2 Peripheral Map Register */ | ||
260 | #define DMA2_CURR_X_COUNT 0xFFC00CB0 /* DMA Channel 2 Current X Count Register */ | ||
261 | #define DMA2_CURR_Y_COUNT 0xFFC00CB8 /* DMA Channel 2 Current Y Count Register */ | ||
262 | |||
263 | #define DMA3_NEXT_DESC_PTR 0xFFC00CC0 /* DMA Channel 3 Next Descriptor Pointer Register */ | ||
264 | #define DMA3_START_ADDR 0xFFC00CC4 /* DMA Channel 3 Start Address Register */ | ||
265 | #define DMA3_CONFIG 0xFFC00CC8 /* DMA Channel 3 Configuration Register */ | ||
266 | #define DMA3_X_COUNT 0xFFC00CD0 /* DMA Channel 3 X Count Register */ | ||
267 | #define DMA3_X_MODIFY 0xFFC00CD4 /* DMA Channel 3 X Modify Register */ | ||
268 | #define DMA3_Y_COUNT 0xFFC00CD8 /* DMA Channel 3 Y Count Register */ | ||
269 | #define DMA3_Y_MODIFY 0xFFC00CDC /* DMA Channel 3 Y Modify Register */ | ||
270 | #define DMA3_CURR_DESC_PTR 0xFFC00CE0 /* DMA Channel 3 Current Descriptor Pointer Register */ | ||
271 | #define DMA3_CURR_ADDR 0xFFC00CE4 /* DMA Channel 3 Current Address Register */ | ||
272 | #define DMA3_IRQ_STATUS 0xFFC00CE8 /* DMA Channel 3 Interrupt/Status Register */ | ||
273 | #define DMA3_PERIPHERAL_MAP 0xFFC00CEC /* DMA Channel 3 Peripheral Map Register */ | ||
274 | #define DMA3_CURR_X_COUNT 0xFFC00CF0 /* DMA Channel 3 Current X Count Register */ | ||
275 | #define DMA3_CURR_Y_COUNT 0xFFC00CF8 /* DMA Channel 3 Current Y Count Register */ | ||
276 | |||
277 | #define DMA4_NEXT_DESC_PTR 0xFFC00D00 /* DMA Channel 4 Next Descriptor Pointer Register */ | ||
278 | #define DMA4_START_ADDR 0xFFC00D04 /* DMA Channel 4 Start Address Register */ | ||
279 | #define DMA4_CONFIG 0xFFC00D08 /* DMA Channel 4 Configuration Register */ | ||
280 | #define DMA4_X_COUNT 0xFFC00D10 /* DMA Channel 4 X Count Register */ | ||
281 | #define DMA4_X_MODIFY 0xFFC00D14 /* DMA Channel 4 X Modify Register */ | ||
282 | #define DMA4_Y_COUNT 0xFFC00D18 /* DMA Channel 4 Y Count Register */ | ||
283 | #define DMA4_Y_MODIFY 0xFFC00D1C /* DMA Channel 4 Y Modify Register */ | ||
284 | #define DMA4_CURR_DESC_PTR 0xFFC00D20 /* DMA Channel 4 Current Descriptor Pointer Register */ | ||
285 | #define DMA4_CURR_ADDR 0xFFC00D24 /* DMA Channel 4 Current Address Register */ | ||
286 | #define DMA4_IRQ_STATUS 0xFFC00D28 /* DMA Channel 4 Interrupt/Status Register */ | ||
287 | #define DMA4_PERIPHERAL_MAP 0xFFC00D2C /* DMA Channel 4 Peripheral Map Register */ | ||
288 | #define DMA4_CURR_X_COUNT 0xFFC00D30 /* DMA Channel 4 Current X Count Register */ | ||
289 | #define DMA4_CURR_Y_COUNT 0xFFC00D38 /* DMA Channel 4 Current Y Count Register */ | ||
290 | |||
291 | #define DMA5_NEXT_DESC_PTR 0xFFC00D40 /* DMA Channel 5 Next Descriptor Pointer Register */ | ||
292 | #define DMA5_START_ADDR 0xFFC00D44 /* DMA Channel 5 Start Address Register */ | ||
293 | #define DMA5_CONFIG 0xFFC00D48 /* DMA Channel 5 Configuration Register */ | ||
294 | #define DMA5_X_COUNT 0xFFC00D50 /* DMA Channel 5 X Count Register */ | ||
295 | #define DMA5_X_MODIFY 0xFFC00D54 /* DMA Channel 5 X Modify Register */ | ||
296 | #define DMA5_Y_COUNT 0xFFC00D58 /* DMA Channel 5 Y Count Register */ | ||
297 | #define DMA5_Y_MODIFY 0xFFC00D5C /* DMA Channel 5 Y Modify Register */ | ||
298 | #define DMA5_CURR_DESC_PTR 0xFFC00D60 /* DMA Channel 5 Current Descriptor Pointer Register */ | ||
299 | #define DMA5_CURR_ADDR 0xFFC00D64 /* DMA Channel 5 Current Address Register */ | ||
300 | #define DMA5_IRQ_STATUS 0xFFC00D68 /* DMA Channel 5 Interrupt/Status Register */ | ||
301 | #define DMA5_PERIPHERAL_MAP 0xFFC00D6C /* DMA Channel 5 Peripheral Map Register */ | ||
302 | #define DMA5_CURR_X_COUNT 0xFFC00D70 /* DMA Channel 5 Current X Count Register */ | ||
303 | #define DMA5_CURR_Y_COUNT 0xFFC00D78 /* DMA Channel 5 Current Y Count Register */ | ||
304 | |||
305 | #define DMA6_NEXT_DESC_PTR 0xFFC00D80 /* DMA Channel 6 Next Descriptor Pointer Register */ | ||
306 | #define DMA6_START_ADDR 0xFFC00D84 /* DMA Channel 6 Start Address Register */ | ||
307 | #define DMA6_CONFIG 0xFFC00D88 /* DMA Channel 6 Configuration Register */ | ||
308 | #define DMA6_X_COUNT 0xFFC00D90 /* DMA Channel 6 X Count Register */ | ||
309 | #define DMA6_X_MODIFY 0xFFC00D94 /* DMA Channel 6 X Modify Register */ | ||
310 | #define DMA6_Y_COUNT 0xFFC00D98 /* DMA Channel 6 Y Count Register */ | ||
311 | #define DMA6_Y_MODIFY 0xFFC00D9C /* DMA Channel 6 Y Modify Register */ | ||
312 | #define DMA6_CURR_DESC_PTR 0xFFC00DA0 /* DMA Channel 6 Current Descriptor Pointer Register */ | ||
313 | #define DMA6_CURR_ADDR 0xFFC00DA4 /* DMA Channel 6 Current Address Register */ | ||
314 | #define DMA6_IRQ_STATUS 0xFFC00DA8 /* DMA Channel 6 Interrupt/Status Register */ | ||
315 | #define DMA6_PERIPHERAL_MAP 0xFFC00DAC /* DMA Channel 6 Peripheral Map Register */ | ||
316 | #define DMA6_CURR_X_COUNT 0xFFC00DB0 /* DMA Channel 6 Current X Count Register */ | ||
317 | #define DMA6_CURR_Y_COUNT 0xFFC00DB8 /* DMA Channel 6 Current Y Count Register */ | ||
318 | |||
319 | #define DMA7_NEXT_DESC_PTR 0xFFC00DC0 /* DMA Channel 7 Next Descriptor Pointer Register */ | ||
320 | #define DMA7_START_ADDR 0xFFC00DC4 /* DMA Channel 7 Start Address Register */ | ||
321 | #define DMA7_CONFIG 0xFFC00DC8 /* DMA Channel 7 Configuration Register */ | ||
322 | #define DMA7_X_COUNT 0xFFC00DD0 /* DMA Channel 7 X Count Register */ | ||
323 | #define DMA7_X_MODIFY 0xFFC00DD4 /* DMA Channel 7 X Modify Register */ | ||
324 | #define DMA7_Y_COUNT 0xFFC00DD8 /* DMA Channel 7 Y Count Register */ | ||
325 | #define DMA7_Y_MODIFY 0xFFC00DDC /* DMA Channel 7 Y Modify Register */ | ||
326 | #define DMA7_CURR_DESC_PTR 0xFFC00DE0 /* DMA Channel 7 Current Descriptor Pointer Register */ | ||
327 | #define DMA7_CURR_ADDR 0xFFC00DE4 /* DMA Channel 7 Current Address Register */ | ||
328 | #define DMA7_IRQ_STATUS 0xFFC00DE8 /* DMA Channel 7 Interrupt/Status Register */ | ||
329 | #define DMA7_PERIPHERAL_MAP 0xFFC00DEC /* DMA Channel 7 Peripheral Map Register */ | ||
330 | #define DMA7_CURR_X_COUNT 0xFFC00DF0 /* DMA Channel 7 Current X Count Register */ | ||
331 | #define DMA7_CURR_Y_COUNT 0xFFC00DF8 /* DMA Channel 7 Current Y Count Register */ | ||
332 | |||
333 | #define DMA8_NEXT_DESC_PTR 0xFFC00E00 /* DMA Channel 8 Next Descriptor Pointer Register */ | ||
334 | #define DMA8_START_ADDR 0xFFC00E04 /* DMA Channel 8 Start Address Register */ | ||
335 | #define DMA8_CONFIG 0xFFC00E08 /* DMA Channel 8 Configuration Register */ | ||
336 | #define DMA8_X_COUNT 0xFFC00E10 /* DMA Channel 8 X Count Register */ | ||
337 | #define DMA8_X_MODIFY 0xFFC00E14 /* DMA Channel 8 X Modify Register */ | ||
338 | #define DMA8_Y_COUNT 0xFFC00E18 /* DMA Channel 8 Y Count Register */ | ||
339 | #define DMA8_Y_MODIFY 0xFFC00E1C /* DMA Channel 8 Y Modify Register */ | ||
340 | #define DMA8_CURR_DESC_PTR 0xFFC00E20 /* DMA Channel 8 Current Descriptor Pointer Register */ | ||
341 | #define DMA8_CURR_ADDR 0xFFC00E24 /* DMA Channel 8 Current Address Register */ | ||
342 | #define DMA8_IRQ_STATUS 0xFFC00E28 /* DMA Channel 8 Interrupt/Status Register */ | ||
343 | #define DMA8_PERIPHERAL_MAP 0xFFC00E2C /* DMA Channel 8 Peripheral Map Register */ | ||
344 | #define DMA8_CURR_X_COUNT 0xFFC00E30 /* DMA Channel 8 Current X Count Register */ | ||
345 | #define DMA8_CURR_Y_COUNT 0xFFC00E38 /* DMA Channel 8 Current Y Count Register */ | ||
346 | |||
347 | #define DMA9_NEXT_DESC_PTR 0xFFC00E40 /* DMA Channel 9 Next Descriptor Pointer Register */ | ||
348 | #define DMA9_START_ADDR 0xFFC00E44 /* DMA Channel 9 Start Address Register */ | ||
349 | #define DMA9_CONFIG 0xFFC00E48 /* DMA Channel 9 Configuration Register */ | ||
350 | #define DMA9_X_COUNT 0xFFC00E50 /* DMA Channel 9 X Count Register */ | ||
351 | #define DMA9_X_MODIFY 0xFFC00E54 /* DMA Channel 9 X Modify Register */ | ||
352 | #define DMA9_Y_COUNT 0xFFC00E58 /* DMA Channel 9 Y Count Register */ | ||
353 | #define DMA9_Y_MODIFY 0xFFC00E5C /* DMA Channel 9 Y Modify Register */ | ||
354 | #define DMA9_CURR_DESC_PTR 0xFFC00E60 /* DMA Channel 9 Current Descriptor Pointer Register */ | ||
355 | #define DMA9_CURR_ADDR 0xFFC00E64 /* DMA Channel 9 Current Address Register */ | ||
356 | #define DMA9_IRQ_STATUS 0xFFC00E68 /* DMA Channel 9 Interrupt/Status Register */ | ||
357 | #define DMA9_PERIPHERAL_MAP 0xFFC00E6C /* DMA Channel 9 Peripheral Map Register */ | ||
358 | #define DMA9_CURR_X_COUNT 0xFFC00E70 /* DMA Channel 9 Current X Count Register */ | ||
359 | #define DMA9_CURR_Y_COUNT 0xFFC00E78 /* DMA Channel 9 Current Y Count Register */ | ||
360 | |||
361 | #define DMA10_NEXT_DESC_PTR 0xFFC00E80 /* DMA Channel 10 Next Descriptor Pointer Register */ | ||
362 | #define DMA10_START_ADDR 0xFFC00E84 /* DMA Channel 10 Start Address Register */ | ||
363 | #define DMA10_CONFIG 0xFFC00E88 /* DMA Channel 10 Configuration Register */ | ||
364 | #define DMA10_X_COUNT 0xFFC00E90 /* DMA Channel 10 X Count Register */ | ||
365 | #define DMA10_X_MODIFY 0xFFC00E94 /* DMA Channel 10 X Modify Register */ | ||
366 | #define DMA10_Y_COUNT 0xFFC00E98 /* DMA Channel 10 Y Count Register */ | ||
367 | #define DMA10_Y_MODIFY 0xFFC00E9C /* DMA Channel 10 Y Modify Register */ | ||
368 | #define DMA10_CURR_DESC_PTR 0xFFC00EA0 /* DMA Channel 10 Current Descriptor Pointer Register */ | ||
369 | #define DMA10_CURR_ADDR 0xFFC00EA4 /* DMA Channel 10 Current Address Register */ | ||
370 | #define DMA10_IRQ_STATUS 0xFFC00EA8 /* DMA Channel 10 Interrupt/Status Register */ | ||
371 | #define DMA10_PERIPHERAL_MAP 0xFFC00EAC /* DMA Channel 10 Peripheral Map Register */ | ||
372 | #define DMA10_CURR_X_COUNT 0xFFC00EB0 /* DMA Channel 10 Current X Count Register */ | ||
373 | #define DMA10_CURR_Y_COUNT 0xFFC00EB8 /* DMA Channel 10 Current Y Count Register */ | ||
374 | |||
375 | #define DMA11_NEXT_DESC_PTR 0xFFC00EC0 /* DMA Channel 11 Next Descriptor Pointer Register */ | ||
376 | #define DMA11_START_ADDR 0xFFC00EC4 /* DMA Channel 11 Start Address Register */ | ||
377 | #define DMA11_CONFIG 0xFFC00EC8 /* DMA Channel 11 Configuration Register */ | ||
378 | #define DMA11_X_COUNT 0xFFC00ED0 /* DMA Channel 11 X Count Register */ | ||
379 | #define DMA11_X_MODIFY 0xFFC00ED4 /* DMA Channel 11 X Modify Register */ | ||
380 | #define DMA11_Y_COUNT 0xFFC00ED8 /* DMA Channel 11 Y Count Register */ | ||
381 | #define DMA11_Y_MODIFY 0xFFC00EDC /* DMA Channel 11 Y Modify Register */ | ||
382 | #define DMA11_CURR_DESC_PTR 0xFFC00EE0 /* DMA Channel 11 Current Descriptor Pointer Register */ | ||
383 | #define DMA11_CURR_ADDR 0xFFC00EE4 /* DMA Channel 11 Current Address Register */ | ||
384 | #define DMA11_IRQ_STATUS 0xFFC00EE8 /* DMA Channel 11 Interrupt/Status Register */ | ||
385 | #define DMA11_PERIPHERAL_MAP 0xFFC00EEC /* DMA Channel 11 Peripheral Map Register */ | ||
386 | #define DMA11_CURR_X_COUNT 0xFFC00EF0 /* DMA Channel 11 Current X Count Register */ | ||
387 | #define DMA11_CURR_Y_COUNT 0xFFC00EF8 /* DMA Channel 11 Current Y Count Register */ | ||
388 | |||
389 | #define MDMA_D0_NEXT_DESC_PTR 0xFFC00F00 /* MemDMA Stream 0 Destination Next Descriptor Pointer Register */ | ||
390 | #define MDMA_D0_START_ADDR 0xFFC00F04 /* MemDMA Stream 0 Destination Start Address Register */ | ||
391 | #define MDMA_D0_CONFIG 0xFFC00F08 /* MemDMA Stream 0 Destination Configuration Register */ | ||
392 | #define MDMA_D0_X_COUNT 0xFFC00F10 /* MemDMA Stream 0 Destination X Count Register */ | ||
393 | #define MDMA_D0_X_MODIFY 0xFFC00F14 /* MemDMA Stream 0 Destination X Modify Register */ | ||
394 | #define MDMA_D0_Y_COUNT 0xFFC00F18 /* MemDMA Stream 0 Destination Y Count Register */ | ||
395 | #define MDMA_D0_Y_MODIFY 0xFFC00F1C /* MemDMA Stream 0 Destination Y Modify Register */ | ||
396 | #define MDMA_D0_CURR_DESC_PTR 0xFFC00F20 /* MemDMA Stream 0 Destination Current Descriptor Pointer Register */ | ||
397 | #define MDMA_D0_CURR_ADDR 0xFFC00F24 /* MemDMA Stream 0 Destination Current Address Register */ | ||
398 | #define MDMA_D0_IRQ_STATUS 0xFFC00F28 /* MemDMA Stream 0 Destination Interrupt/Status Register */ | ||
399 | #define MDMA_D0_PERIPHERAL_MAP 0xFFC00F2C /* MemDMA Stream 0 Destination Peripheral Map Register */ | ||
400 | #define MDMA_D0_CURR_X_COUNT 0xFFC00F30 /* MemDMA Stream 0 Destination Current X Count Register */ | ||
401 | #define MDMA_D0_CURR_Y_COUNT 0xFFC00F38 /* MemDMA Stream 0 Destination Current Y Count Register */ | ||
402 | |||
403 | #define MDMA_S0_NEXT_DESC_PTR 0xFFC00F40 /* MemDMA Stream 0 Source Next Descriptor Pointer Register */ | ||
404 | #define MDMA_S0_START_ADDR 0xFFC00F44 /* MemDMA Stream 0 Source Start Address Register */ | ||
405 | #define MDMA_S0_CONFIG 0xFFC00F48 /* MemDMA Stream 0 Source Configuration Register */ | ||
406 | #define MDMA_S0_X_COUNT 0xFFC00F50 /* MemDMA Stream 0 Source X Count Register */ | ||
407 | #define MDMA_S0_X_MODIFY 0xFFC00F54 /* MemDMA Stream 0 Source X Modify Register */ | ||
408 | #define MDMA_S0_Y_COUNT 0xFFC00F58 /* MemDMA Stream 0 Source Y Count Register */ | ||
409 | #define MDMA_S0_Y_MODIFY 0xFFC00F5C /* MemDMA Stream 0 Source Y Modify Register */ | ||
410 | #define MDMA_S0_CURR_DESC_PTR 0xFFC00F60 /* MemDMA Stream 0 Source Current Descriptor Pointer Register */ | ||
411 | #define MDMA_S0_CURR_ADDR 0xFFC00F64 /* MemDMA Stream 0 Source Current Address Register */ | ||
412 | #define MDMA_S0_IRQ_STATUS 0xFFC00F68 /* MemDMA Stream 0 Source Interrupt/Status Register */ | ||
413 | #define MDMA_S0_PERIPHERAL_MAP 0xFFC00F6C /* MemDMA Stream 0 Source Peripheral Map Register */ | ||
414 | #define MDMA_S0_CURR_X_COUNT 0xFFC00F70 /* MemDMA Stream 0 Source Current X Count Register */ | ||
415 | #define MDMA_S0_CURR_Y_COUNT 0xFFC00F78 /* MemDMA Stream 0 Source Current Y Count Register */ | ||
416 | |||
417 | #define MDMA_D1_NEXT_DESC_PTR 0xFFC00F80 /* MemDMA Stream 1 Destination Next Descriptor Pointer Register */ | ||
418 | #define MDMA_D1_START_ADDR 0xFFC00F84 /* MemDMA Stream 1 Destination Start Address Register */ | ||
419 | #define MDMA_D1_CONFIG 0xFFC00F88 /* MemDMA Stream 1 Destination Configuration Register */ | ||
420 | #define MDMA_D1_X_COUNT 0xFFC00F90 /* MemDMA Stream 1 Destination X Count Register */ | ||
421 | #define MDMA_D1_X_MODIFY 0xFFC00F94 /* MemDMA Stream 1 Destination X Modify Register */ | ||
422 | #define MDMA_D1_Y_COUNT 0xFFC00F98 /* MemDMA Stream 1 Destination Y Count Register */ | ||
423 | #define MDMA_D1_Y_MODIFY 0xFFC00F9C /* MemDMA Stream 1 Destination Y Modify Register */ | ||
424 | #define MDMA_D1_CURR_DESC_PTR 0xFFC00FA0 /* MemDMA Stream 1 Destination Current Descriptor Pointer Register */ | ||
425 | #define MDMA_D1_CURR_ADDR 0xFFC00FA4 /* MemDMA Stream 1 Destination Current Address Register */ | ||
426 | #define MDMA_D1_IRQ_STATUS 0xFFC00FA8 /* MemDMA Stream 1 Destination Interrupt/Status Register */ | ||
427 | #define MDMA_D1_PERIPHERAL_MAP 0xFFC00FAC /* MemDMA Stream 1 Destination Peripheral Map Register */ | ||
428 | #define MDMA_D1_CURR_X_COUNT 0xFFC00FB0 /* MemDMA Stream 1 Destination Current X Count Register */ | ||
429 | #define MDMA_D1_CURR_Y_COUNT 0xFFC00FB8 /* MemDMA Stream 1 Destination Current Y Count Register */ | ||
430 | |||
431 | #define MDMA_S1_NEXT_DESC_PTR 0xFFC00FC0 /* MemDMA Stream 1 Source Next Descriptor Pointer Register */ | ||
432 | #define MDMA_S1_START_ADDR 0xFFC00FC4 /* MemDMA Stream 1 Source Start Address Register */ | ||
433 | #define MDMA_S1_CONFIG 0xFFC00FC8 /* MemDMA Stream 1 Source Configuration Register */ | ||
434 | #define MDMA_S1_X_COUNT 0xFFC00FD0 /* MemDMA Stream 1 Source X Count Register */ | ||
435 | #define MDMA_S1_X_MODIFY 0xFFC00FD4 /* MemDMA Stream 1 Source X Modify Register */ | ||
436 | #define MDMA_S1_Y_COUNT 0xFFC00FD8 /* MemDMA Stream 1 Source Y Count Register */ | ||
437 | #define MDMA_S1_Y_MODIFY 0xFFC00FDC /* MemDMA Stream 1 Source Y Modify Register */ | ||
438 | #define MDMA_S1_CURR_DESC_PTR 0xFFC00FE0 /* MemDMA Stream 1 Source Current Descriptor Pointer Register */ | ||
439 | #define MDMA_S1_CURR_ADDR 0xFFC00FE4 /* MemDMA Stream 1 Source Current Address Register */ | ||
440 | #define MDMA_S1_IRQ_STATUS 0xFFC00FE8 /* MemDMA Stream 1 Source Interrupt/Status Register */ | ||
441 | #define MDMA_S1_PERIPHERAL_MAP 0xFFC00FEC /* MemDMA Stream 1 Source Peripheral Map Register */ | ||
442 | #define MDMA_S1_CURR_X_COUNT 0xFFC00FF0 /* MemDMA Stream 1 Source Current X Count Register */ | ||
443 | #define MDMA_S1_CURR_Y_COUNT 0xFFC00FF8 /* MemDMA Stream 1 Source Current Y Count Register */ | ||
444 | |||
445 | |||
446 | /* Parallel Peripheral Interface (0xFFC01000 - 0xFFC010FF) */ | ||
447 | #define PPI_CONTROL 0xFFC01000 /* PPI Control Register */ | ||
448 | #define PPI_STATUS 0xFFC01004 /* PPI Status Register */ | ||
449 | #define PPI_COUNT 0xFFC01008 /* PPI Transfer Count Register */ | ||
450 | #define PPI_DELAY 0xFFC0100C /* PPI Delay Count Register */ | ||
451 | #define PPI_FRAME 0xFFC01010 /* PPI Frame Length Register */ | ||
452 | |||
453 | |||
454 | /* Two-Wire Interface (0xFFC01400 - 0xFFC014FF) */ | ||
455 | #define TWI0_REGBASE 0xFFC01400 | ||
456 | #define TWI0_CLKDIV 0xFFC01400 /* Serial Clock Divider Register */ | ||
457 | #define TWI0_CONTROL 0xFFC01404 /* TWI Control Register */ | ||
458 | #define TWI0_SLAVE_CTL 0xFFC01408 /* Slave Mode Control Register */ | ||
459 | #define TWI0_SLAVE_STAT 0xFFC0140C /* Slave Mode Status Register */ | ||
460 | #define TWI0_SLAVE_ADDR 0xFFC01410 /* Slave Mode Address Register */ | ||
461 | #define TWI0_MASTER_CTL 0xFFC01414 /* Master Mode Control Register */ | ||
462 | #define TWI0_MASTER_STAT 0xFFC01418 /* Master Mode Status Register */ | ||
463 | #define TWI0_MASTER_ADDR 0xFFC0141C /* Master Mode Address Register */ | ||
464 | #define TWI0_INT_STAT 0xFFC01420 /* TWI Interrupt Status Register */ | ||
465 | #define TWI0_INT_MASK 0xFFC01424 /* TWI Master Interrupt Mask Register */ | ||
466 | #define TWI0_FIFO_CTL 0xFFC01428 /* FIFO Control Register */ | ||
467 | #define TWI0_FIFO_STAT 0xFFC0142C /* FIFO Status Register */ | ||
468 | #define TWI0_XMT_DATA8 0xFFC01480 /* FIFO Transmit Data Single Byte Register */ | ||
469 | #define TWI0_XMT_DATA16 0xFFC01484 /* FIFO Transmit Data Double Byte Register */ | ||
470 | #define TWI0_RCV_DATA8 0xFFC01488 /* FIFO Receive Data Single Byte Register */ | ||
471 | #define TWI0_RCV_DATA16 0xFFC0148C /* FIFO Receive Data Double Byte Register */ | ||
472 | |||
473 | |||
474 | /* General Purpose I/O Port G (0xFFC01500 - 0xFFC015FF) */ | ||
475 | #define PORTGIO 0xFFC01500 /* Port G I/O Pin State Specify Register */ | ||
476 | #define PORTGIO_CLEAR 0xFFC01504 /* Port G I/O Peripheral Interrupt Clear Register */ | ||
477 | #define PORTGIO_SET 0xFFC01508 /* Port G I/O Peripheral Interrupt Set Register */ | ||
478 | #define PORTGIO_TOGGLE 0xFFC0150C /* Port G I/O Pin State Toggle Register */ | ||
479 | #define PORTGIO_MASKA 0xFFC01510 /* Port G I/O Mask State Specify Interrupt A Register */ | ||
480 | #define PORTGIO_MASKA_CLEAR 0xFFC01514 /* Port G I/O Mask Disable Interrupt A Register */ | ||
481 | #define PORTGIO_MASKA_SET 0xFFC01518 /* Port G I/O Mask Enable Interrupt A Register */ | ||
482 | #define PORTGIO_MASKA_TOGGLE 0xFFC0151C /* Port G I/O Mask Toggle Enable Interrupt A Register */ | ||
483 | #define PORTGIO_MASKB 0xFFC01520 /* Port G I/O Mask State Specify Interrupt B Register */ | ||
484 | #define PORTGIO_MASKB_CLEAR 0xFFC01524 /* Port G I/O Mask Disable Interrupt B Register */ | ||
485 | #define PORTGIO_MASKB_SET 0xFFC01528 /* Port G I/O Mask Enable Interrupt B Register */ | ||
486 | #define PORTGIO_MASKB_TOGGLE 0xFFC0152C /* Port G I/O Mask Toggle Enable Interrupt B Register */ | ||
487 | #define PORTGIO_DIR 0xFFC01530 /* Port G I/O Direction Register */ | ||
488 | #define PORTGIO_POLAR 0xFFC01534 /* Port G I/O Source Polarity Register */ | ||
489 | #define PORTGIO_EDGE 0xFFC01538 /* Port G I/O Source Sensitivity Register */ | ||
490 | #define PORTGIO_BOTH 0xFFC0153C /* Port G I/O Set on BOTH Edges Register */ | ||
491 | #define PORTGIO_INEN 0xFFC01540 /* Port G I/O Input Enable Register */ | ||
492 | |||
493 | |||
494 | /* General Purpose I/O Port H (0xFFC01700 - 0xFFC017FF) */ | ||
495 | #define PORTHIO 0xFFC01700 /* Port H I/O Pin State Specify Register */ | ||
496 | #define PORTHIO_CLEAR 0xFFC01704 /* Port H I/O Peripheral Interrupt Clear Register */ | ||
497 | #define PORTHIO_SET 0xFFC01708 /* Port H I/O Peripheral Interrupt Set Register */ | ||
498 | #define PORTHIO_TOGGLE 0xFFC0170C /* Port H I/O Pin State Toggle Register */ | ||
499 | #define PORTHIO_MASKA 0xFFC01710 /* Port H I/O Mask State Specify Interrupt A Register */ | ||
500 | #define PORTHIO_MASKA_CLEAR 0xFFC01714 /* Port H I/O Mask Disable Interrupt A Register */ | ||
501 | #define PORTHIO_MASKA_SET 0xFFC01718 /* Port H I/O Mask Enable Interrupt A Register */ | ||
502 | #define PORTHIO_MASKA_TOGGLE 0xFFC0171C /* Port H I/O Mask Toggle Enable Interrupt A Register */ | ||
503 | #define PORTHIO_MASKB 0xFFC01720 /* Port H I/O Mask State Specify Interrupt B Register */ | ||
504 | #define PORTHIO_MASKB_CLEAR 0xFFC01724 /* Port H I/O Mask Disable Interrupt B Register */ | ||
505 | #define PORTHIO_MASKB_SET 0xFFC01728 /* Port H I/O Mask Enable Interrupt B Register */ | ||
506 | #define PORTHIO_MASKB_TOGGLE 0xFFC0172C /* Port H I/O Mask Toggle Enable Interrupt B Register */ | ||
507 | #define PORTHIO_DIR 0xFFC01730 /* Port H I/O Direction Register */ | ||
508 | #define PORTHIO_POLAR 0xFFC01734 /* Port H I/O Source Polarity Register */ | ||
509 | #define PORTHIO_EDGE 0xFFC01738 /* Port H I/O Source Sensitivity Register */ | ||
510 | #define PORTHIO_BOTH 0xFFC0173C /* Port H I/O Set on BOTH Edges Register */ | ||
511 | #define PORTHIO_INEN 0xFFC01740 /* Port H I/O Input Enable Register */ | ||
512 | |||
513 | |||
514 | /* UART1 Controller (0xFFC02000 - 0xFFC020FF) */ | ||
515 | #define UART1_THR 0xFFC02000 /* Transmit Holding register */ | ||
516 | #define UART1_RBR 0xFFC02000 /* Receive Buffer register */ | ||
517 | #define UART1_DLL 0xFFC02000 /* Divisor Latch (Low-Byte) */ | ||
518 | #define UART1_IER 0xFFC02004 /* Interrupt Enable Register */ | ||
519 | #define UART1_DLH 0xFFC02004 /* Divisor Latch (High-Byte) */ | ||
520 | #define UART1_IIR 0xFFC02008 /* Interrupt Identification Register */ | ||
521 | #define UART1_LCR 0xFFC0200C /* Line Control Register */ | ||
522 | #define UART1_MCR 0xFFC02010 /* Modem Control Register */ | ||
523 | #define UART1_LSR 0xFFC02014 /* Line Status Register */ | ||
524 | #define UART1_MSR 0xFFC02018 /* Modem Status Register */ | ||
525 | #define UART1_SCR 0xFFC0201C /* SCR Scratch Register */ | ||
526 | #define UART1_GCTL 0xFFC02024 /* Global Control Register */ | ||
527 | |||
528 | |||
529 | /* Omit CAN register sets from the defBF534.h (CAN is not in the ADSP-BF52x processor) */ | ||
530 | |||
531 | /* Pin Control Registers (0xFFC03200 - 0xFFC032FF) */ | ||
532 | #define PORTF_FER 0xFFC03200 /* Port F Function Enable Register (Alternate/Flag*) */ | ||
533 | #define PORTG_FER 0xFFC03204 /* Port G Function Enable Register (Alternate/Flag*) */ | ||
534 | #define PORTH_FER 0xFFC03208 /* Port H Function Enable Register (Alternate/Flag*) */ | ||
535 | #define BFIN_PORT_MUX 0xFFC0320C /* Port Multiplexer Control Register */ | ||
536 | |||
537 | |||
538 | /* Handshake MDMA Registers (0xFFC03300 - 0xFFC033FF) */ | ||
539 | #define HMDMA0_CONTROL 0xFFC03300 /* Handshake MDMA0 Control Register */ | ||
540 | #define HMDMA0_ECINIT 0xFFC03304 /* HMDMA0 Initial Edge Count Register */ | ||
541 | #define HMDMA0_BCINIT 0xFFC03308 /* HMDMA0 Initial Block Count Register */ | ||
542 | #define HMDMA0_ECURGENT 0xFFC0330C /* HMDMA0 Urgent Edge Count Threshold Register */ | ||
543 | #define HMDMA0_ECOVERFLOW 0xFFC03310 /* HMDMA0 Edge Count Overflow Interrupt Register */ | ||
544 | #define HMDMA0_ECOUNT 0xFFC03314 /* HMDMA0 Current Edge Count Register */ | ||
545 | #define HMDMA0_BCOUNT 0xFFC03318 /* HMDMA0 Current Block Count Register */ | ||
546 | |||
547 | #define HMDMA1_CONTROL 0xFFC03340 /* Handshake MDMA1 Control Register */ | ||
548 | #define HMDMA1_ECINIT 0xFFC03344 /* HMDMA1 Initial Edge Count Register */ | ||
549 | #define HMDMA1_BCINIT 0xFFC03348 /* HMDMA1 Initial Block Count Register */ | ||
550 | #define HMDMA1_ECURGENT 0xFFC0334C /* HMDMA1 Urgent Edge Count Threshold Register */ | ||
551 | #define HMDMA1_ECOVERFLOW 0xFFC03350 /* HMDMA1 Edge Count Overflow Interrupt Register */ | ||
552 | #define HMDMA1_ECOUNT 0xFFC03354 /* HMDMA1 Current Edge Count Register */ | ||
553 | #define HMDMA1_BCOUNT 0xFFC03358 /* HMDMA1 Current Block Count Register */ | ||
554 | |||
555 | /* GPIO PIN mux (0xFFC03210 - OxFFC03288) */ | ||
556 | #define PORTF_MUX 0xFFC03210 /* Port F mux control */ | ||
557 | #define PORTG_MUX 0xFFC03214 /* Port G mux control */ | ||
558 | #define PORTH_MUX 0xFFC03218 /* Port H mux control */ | ||
559 | #define PORTF_DRIVE 0xFFC03220 /* Port F drive strength control */ | ||
560 | #define PORTG_DRIVE 0xFFC03224 /* Port G drive strength control */ | ||
561 | #define PORTH_DRIVE 0xFFC03228 /* Port H drive strength control */ | ||
562 | #define PORTF_SLEW 0xFFC03230 /* Port F slew control */ | ||
563 | #define PORTG_SLEW 0xFFC03234 /* Port G slew control */ | ||
564 | #define PORTH_SLEW 0xFFC03238 /* Port H slew control */ | ||
565 | #define PORTF_HYSTERISIS 0xFFC03240 /* Port F Schmitt trigger control */ | ||
566 | #define PORTG_HYSTERISIS 0xFFC03244 /* Port G Schmitt trigger control */ | ||
567 | #define PORTH_HYSTERISIS 0xFFC03248 /* Port H Schmitt trigger control */ | ||
568 | #define MISCPORT_DRIVE 0xFFC03280 /* Misc Port drive strength control */ | ||
569 | #define MISCPORT_SLEW 0xFFC03284 /* Misc Port slew control */ | ||
570 | #define MISCPORT_HYSTERISIS 0xFFC03288 /* Misc Port Schmitt trigger control */ | ||
571 | |||
572 | |||
573 | /*********************************************************************************** | ||
574 | ** System MMR Register Bits And Macros | ||
575 | ** | ||
576 | ** Disclaimer: All macros are intended to make C and Assembly code more readable. | ||
577 | ** Use these macros carefully, as any that do left shifts for field | ||
578 | ** depositing will result in the lower order bits being destroyed. Any | ||
579 | ** macro that shifts left to properly position the bit-field should be | ||
580 | ** used as part of an OR to initialize a register and NOT as a dynamic | ||
581 | ** modifier UNLESS the lower order bits are saved and ORed back in when | ||
582 | ** the macro is used. | ||
583 | *************************************************************************************/ | ||
584 | |||
585 | /* CHIPID Masks */ | ||
586 | #define CHIPID_VERSION 0xF0000000 | ||
587 | #define CHIPID_FAMILY 0x0FFFF000 | ||
588 | #define CHIPID_MANUFACTURE 0x00000FFE | ||
589 | |||
590 | /* SWRST Masks */ | ||
591 | #define SYSTEM_RESET 0x0007 /* Initiates A System Software Reset */ | ||
592 | #define DOUBLE_FAULT 0x0008 /* Core Double Fault Causes Reset */ | ||
593 | #define RESET_DOUBLE 0x2000 /* SW Reset Generated By Core Double-Fault */ | ||
594 | #define RESET_WDOG 0x4000 /* SW Reset Generated By Watchdog Timer */ | ||
595 | #define RESET_SOFTWARE 0x8000 /* SW Reset Occurred Since Last Read Of SWRST */ | ||
596 | |||
597 | /* SYSCR Masks */ | ||
598 | #define BMODE 0x0007 /* Boot Mode - Latched During HW Reset From Mode Pins */ | ||
599 | #define NOBOOT 0x0010 /* Execute From L1 or ASYNC Bank 0 When BMODE = 0 */ | ||
600 | |||
601 | |||
602 | /* ************* SYSTEM INTERRUPT CONTROLLER MASKS *************************************/ | ||
603 | /* Peripheral Masks For SIC_ISR, SIC_IWR, SIC_IMASK */ | ||
604 | |||
605 | #if 0 | ||
606 | #define IRQ_PLL_WAKEUP 0x00000001 /* PLL Wakeup Interrupt */ | ||
607 | |||
608 | #define IRQ_ERROR1 0x00000002 /* Error Interrupt (DMA, DMARx Block, DMARx Overflow) */ | ||
609 | #define IRQ_ERROR2 0x00000004 /* Error Interrupt (CAN, Ethernet, SPORTx, PPI, SPI, UARTx) */ | ||
610 | #define IRQ_RTC 0x00000008 /* Real Time Clock Interrupt */ | ||
611 | #define IRQ_DMA0 0x00000010 /* DMA Channel 0 (PPI) Interrupt */ | ||
612 | #define IRQ_DMA3 0x00000020 /* DMA Channel 3 (SPORT0 RX) Interrupt */ | ||
613 | #define IRQ_DMA4 0x00000040 /* DMA Channel 4 (SPORT0 TX) Interrupt */ | ||
614 | #define IRQ_DMA5 0x00000080 /* DMA Channel 5 (SPORT1 RX) Interrupt */ | ||
615 | |||
616 | #define IRQ_DMA6 0x00000100 /* DMA Channel 6 (SPORT1 TX) Interrupt */ | ||
617 | #define IRQ_TWI 0x00000200 /* TWI Interrupt */ | ||
618 | #define IRQ_DMA7 0x00000400 /* DMA Channel 7 (SPI) Interrupt */ | ||
619 | #define IRQ_DMA8 0x00000800 /* DMA Channel 8 (UART0 RX) Interrupt */ | ||
620 | #define IRQ_DMA9 0x00001000 /* DMA Channel 9 (UART0 TX) Interrupt */ | ||
621 | #define IRQ_DMA10 0x00002000 /* DMA Channel 10 (UART1 RX) Interrupt */ | ||
622 | #define IRQ_DMA11 0x00004000 /* DMA Channel 11 (UART1 TX) Interrupt */ | ||
623 | #define IRQ_CAN_RX 0x00008000 /* CAN Receive Interrupt */ | ||
624 | |||
625 | #define IRQ_CAN_TX 0x00010000 /* CAN Transmit Interrupt */ | ||
626 | #define IRQ_DMA1 0x00020000 /* DMA Channel 1 (Ethernet RX) Interrupt */ | ||
627 | #define IRQ_PFA_PORTH 0x00020000 /* PF Port H (PF47:32) Interrupt A */ | ||
628 | #define IRQ_DMA2 0x00040000 /* DMA Channel 2 (Ethernet TX) Interrupt */ | ||
629 | #define IRQ_PFB_PORTH 0x00040000 /* PF Port H (PF47:32) Interrupt B */ | ||
630 | #define IRQ_TIMER0 0x00080000 /* Timer 0 Interrupt */ | ||
631 | #define IRQ_TIMER1 0x00100000 /* Timer 1 Interrupt */ | ||
632 | #define IRQ_TIMER2 0x00200000 /* Timer 2 Interrupt */ | ||
633 | #define IRQ_TIMER3 0x00400000 /* Timer 3 Interrupt */ | ||
634 | #define IRQ_TIMER4 0x00800000 /* Timer 4 Interrupt */ | ||
635 | |||
636 | #define IRQ_TIMER5 0x01000000 /* Timer 5 Interrupt */ | ||
637 | #define IRQ_TIMER6 0x02000000 /* Timer 6 Interrupt */ | ||
638 | #define IRQ_TIMER7 0x04000000 /* Timer 7 Interrupt */ | ||
639 | #define IRQ_PFA_PORTFG 0x08000000 /* PF Ports F&G (PF31:0) Interrupt A */ | ||
640 | #define IRQ_PFB_PORTF 0x80000000 /* PF Port F (PF15:0) Interrupt B */ | ||
641 | #define IRQ_DMA12 0x20000000 /* DMA Channels 12 (MDMA1 Source) RX Interrupt */ | ||
642 | #define IRQ_DMA13 0x20000000 /* DMA Channels 13 (MDMA1 Destination) TX Interrupt */ | ||
643 | #define IRQ_DMA14 0x40000000 /* DMA Channels 14 (MDMA0 Source) RX Interrupt */ | ||
644 | #define IRQ_DMA15 0x40000000 /* DMA Channels 15 (MDMA0 Destination) TX Interrupt */ | ||
645 | #define IRQ_WDOG 0x80000000 /* Software Watchdog Timer Interrupt */ | ||
646 | #define IRQ_PFB_PORTG 0x10000000 /* PF Port G (PF31:16) Interrupt B */ | ||
647 | #endif | ||
648 | |||
649 | /* SIC_IAR0 Macros */ | ||
650 | #define P0_IVG(x) (((x)&0xF)-7) /* Peripheral #0 assigned IVG #x */ | ||
651 | #define P1_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #1 assigned IVG #x */ | ||
652 | #define P2_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #2 assigned IVG #x */ | ||
653 | #define P3_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #3 assigned IVG #x */ | ||
654 | #define P4_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #4 assigned IVG #x */ | ||
655 | #define P5_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #5 assigned IVG #x */ | ||
656 | #define P6_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #6 assigned IVG #x */ | ||
657 | #define P7_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #7 assigned IVG #x */ | ||
658 | |||
659 | /* SIC_IAR1 Macros */ | ||
660 | #define P8_IVG(x) (((x)&0xF)-7) /* Peripheral #8 assigned IVG #x */ | ||
661 | #define P9_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #9 assigned IVG #x */ | ||
662 | #define P10_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #10 assigned IVG #x */ | ||
663 | #define P11_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #11 assigned IVG #x */ | ||
664 | #define P12_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #12 assigned IVG #x */ | ||
665 | #define P13_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #13 assigned IVG #x */ | ||
666 | #define P14_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #14 assigned IVG #x */ | ||
667 | #define P15_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #15 assigned IVG #x */ | ||
668 | |||
669 | /* SIC_IAR2 Macros */ | ||
670 | #define P16_IVG(x) (((x)&0xF)-7) /* Peripheral #16 assigned IVG #x */ | ||
671 | #define P17_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #17 assigned IVG #x */ | ||
672 | #define P18_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #18 assigned IVG #x */ | ||
673 | #define P19_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #19 assigned IVG #x */ | ||
674 | #define P20_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #20 assigned IVG #x */ | ||
675 | #define P21_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #21 assigned IVG #x */ | ||
676 | #define P22_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #22 assigned IVG #x */ | ||
677 | #define P23_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #23 assigned IVG #x */ | ||
678 | |||
679 | /* SIC_IAR3 Macros */ | ||
680 | #define P24_IVG(x) (((x)&0xF)-7) /* Peripheral #24 assigned IVG #x */ | ||
681 | #define P25_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #25 assigned IVG #x */ | ||
682 | #define P26_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #26 assigned IVG #x */ | ||
683 | #define P27_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #27 assigned IVG #x */ | ||
684 | #define P28_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #28 assigned IVG #x */ | ||
685 | #define P29_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #29 assigned IVG #x */ | ||
686 | #define P30_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #30 assigned IVG #x */ | ||
687 | #define P31_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #31 assigned IVG #x */ | ||
688 | |||
689 | |||
690 | /* SIC_IMASK Masks */ | ||
691 | #define SIC_UNMASK_ALL 0x00000000 /* Unmask all peripheral interrupts */ | ||
692 | #define SIC_MASK_ALL 0xFFFFFFFF /* Mask all peripheral interrupts */ | ||
693 | #define SIC_MASK(x) (1 << ((x)&0x1F)) /* Mask Peripheral #x interrupt */ | ||
694 | #define SIC_UNMASK(x) (0xFFFFFFFF ^ (1 << ((x)&0x1F))) /* Unmask Peripheral #x interrupt */ | ||
695 | |||
696 | /* SIC_IWR Masks */ | ||
697 | #define IWR_DISABLE_ALL 0x00000000 /* Wakeup Disable all peripherals */ | ||
698 | #define IWR_ENABLE_ALL 0xFFFFFFFF /* Wakeup Enable all peripherals */ | ||
699 | #define IWR_ENABLE(x) (1 << ((x)&0x1F)) /* Wakeup Enable Peripheral #x */ | ||
700 | #define IWR_DISABLE(x) (0xFFFFFFFF ^ (1 << ((x)&0x1F))) /* Wakeup Disable Peripheral #x */ | ||
701 | |||
702 | /* **************** GENERAL PURPOSE TIMER MASKS **********************/ | ||
703 | /* TIMER_ENABLE Masks */ | ||
704 | #define TIMEN0 0x0001 /* Enable Timer 0 */ | ||
705 | #define TIMEN1 0x0002 /* Enable Timer 1 */ | ||
706 | #define TIMEN2 0x0004 /* Enable Timer 2 */ | ||
707 | #define TIMEN3 0x0008 /* Enable Timer 3 */ | ||
708 | #define TIMEN4 0x0010 /* Enable Timer 4 */ | ||
709 | #define TIMEN5 0x0020 /* Enable Timer 5 */ | ||
710 | #define TIMEN6 0x0040 /* Enable Timer 6 */ | ||
711 | #define TIMEN7 0x0080 /* Enable Timer 7 */ | ||
712 | |||
713 | /* TIMER_DISABLE Masks */ | ||
714 | #define TIMDIS0 TIMEN0 /* Disable Timer 0 */ | ||
715 | #define TIMDIS1 TIMEN1 /* Disable Timer 1 */ | ||
716 | #define TIMDIS2 TIMEN2 /* Disable Timer 2 */ | ||
717 | #define TIMDIS3 TIMEN3 /* Disable Timer 3 */ | ||
718 | #define TIMDIS4 TIMEN4 /* Disable Timer 4 */ | ||
719 | #define TIMDIS5 TIMEN5 /* Disable Timer 5 */ | ||
720 | #define TIMDIS6 TIMEN6 /* Disable Timer 6 */ | ||
721 | #define TIMDIS7 TIMEN7 /* Disable Timer 7 */ | ||
722 | |||
723 | /* TIMER_STATUS Masks */ | ||
724 | #define TIMIL0 0x00000001 /* Timer 0 Interrupt */ | ||
725 | #define TIMIL1 0x00000002 /* Timer 1 Interrupt */ | ||
726 | #define TIMIL2 0x00000004 /* Timer 2 Interrupt */ | ||
727 | #define TIMIL3 0x00000008 /* Timer 3 Interrupt */ | ||
728 | #define TOVF_ERR0 0x00000010 /* Timer 0 Counter Overflow */ | ||
729 | #define TOVF_ERR1 0x00000020 /* Timer 1 Counter Overflow */ | ||
730 | #define TOVF_ERR2 0x00000040 /* Timer 2 Counter Overflow */ | ||
731 | #define TOVF_ERR3 0x00000080 /* Timer 3 Counter Overflow */ | ||
732 | #define TRUN0 0x00001000 /* Timer 0 Slave Enable Status */ | ||
733 | #define TRUN1 0x00002000 /* Timer 1 Slave Enable Status */ | ||
734 | #define TRUN2 0x00004000 /* Timer 2 Slave Enable Status */ | ||
735 | #define TRUN3 0x00008000 /* Timer 3 Slave Enable Status */ | ||
736 | #define TIMIL4 0x00010000 /* Timer 4 Interrupt */ | ||
737 | #define TIMIL5 0x00020000 /* Timer 5 Interrupt */ | ||
738 | #define TIMIL6 0x00040000 /* Timer 6 Interrupt */ | ||
739 | #define TIMIL7 0x00080000 /* Timer 7 Interrupt */ | ||
740 | #define TOVF_ERR4 0x00100000 /* Timer 4 Counter Overflow */ | ||
741 | #define TOVF_ERR5 0x00200000 /* Timer 5 Counter Overflow */ | ||
742 | #define TOVF_ERR6 0x00400000 /* Timer 6 Counter Overflow */ | ||
743 | #define TOVF_ERR7 0x00800000 /* Timer 7 Counter Overflow */ | ||
744 | #define TRUN4 0x10000000 /* Timer 4 Slave Enable Status */ | ||
745 | #define TRUN5 0x20000000 /* Timer 5 Slave Enable Status */ | ||
746 | #define TRUN6 0x40000000 /* Timer 6 Slave Enable Status */ | ||
747 | #define TRUN7 0x80000000 /* Timer 7 Slave Enable Status */ | ||
748 | |||
749 | /* Alternate Deprecated Macros Provided For Backwards Code Compatibility */ | ||
750 | #define TOVL_ERR0 TOVF_ERR0 | ||
751 | #define TOVL_ERR1 TOVF_ERR1 | ||
752 | #define TOVL_ERR2 TOVF_ERR2 | ||
753 | #define TOVL_ERR3 TOVF_ERR3 | ||
754 | #define TOVL_ERR4 TOVF_ERR4 | ||
755 | #define TOVL_ERR5 TOVF_ERR5 | ||
756 | #define TOVL_ERR6 TOVF_ERR6 | ||
757 | #define TOVL_ERR7 TOVF_ERR7 | ||
758 | |||
759 | /* TIMERx_CONFIG Masks */ | ||
760 | #define PWM_OUT 0x0001 /* Pulse-Width Modulation Output Mode */ | ||
761 | #define WDTH_CAP 0x0002 /* Width Capture Input Mode */ | ||
762 | #define EXT_CLK 0x0003 /* External Clock Mode */ | ||
763 | #define PULSE_HI 0x0004 /* Action Pulse (Positive/Negative*) */ | ||
764 | #define PERIOD_CNT 0x0008 /* Period Count */ | ||
765 | #define IRQ_ENA 0x0010 /* Interrupt Request Enable */ | ||
766 | #define TIN_SEL 0x0020 /* Timer Input Select */ | ||
767 | #define OUT_DIS 0x0040 /* Output Pad Disable */ | ||
768 | #define CLK_SEL 0x0080 /* Timer Clock Select */ | ||
769 | #define TOGGLE_HI 0x0100 /* PWM_OUT PULSE_HI Toggle Mode */ | ||
770 | #define EMU_RUN 0x0200 /* Emulation Behavior Select */ | ||
771 | #define ERR_TYP 0xC000 /* Error Type */ | ||
772 | |||
773 | /* ********************* ASYNCHRONOUS MEMORY CONTROLLER MASKS *************************/ | ||
774 | /* EBIU_AMGCTL Masks */ | ||
775 | #define AMCKEN 0x0001 /* Enable CLKOUT */ | ||
776 | #define AMBEN_NONE 0x0000 /* All Banks Disabled */ | ||
777 | #define AMBEN_B0 0x0002 /* Enable Async Memory Bank 0 only */ | ||
778 | #define AMBEN_B0_B1 0x0004 /* Enable Async Memory Banks 0 & 1 only */ | ||
779 | #define AMBEN_B0_B1_B2 0x0006 /* Enable Async Memory Banks 0, 1, and 2 */ | ||
780 | #define AMBEN_ALL 0x0008 /* Enable Async Memory Banks (all) 0, 1, 2, and 3 */ | ||
781 | |||
782 | /* EBIU_AMBCTL0 Masks */ | ||
783 | #define B0RDYEN 0x00000001 /* Bank 0 (B0) RDY Enable */ | ||
784 | #define B0RDYPOL 0x00000002 /* B0 RDY Active High */ | ||
785 | #define B0TT_1 0x00000004 /* B0 Transition Time (Read to Write) = 1 cycle */ | ||
786 | #define B0TT_2 0x00000008 /* B0 Transition Time (Read to Write) = 2 cycles */ | ||
787 | #define B0TT_3 0x0000000C /* B0 Transition Time (Read to Write) = 3 cycles */ | ||
788 | #define B0TT_4 0x00000000 /* B0 Transition Time (Read to Write) = 4 cycles */ | ||
789 | #define B0ST_1 0x00000010 /* B0 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
790 | #define B0ST_2 0x00000020 /* B0 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
791 | #define B0ST_3 0x00000030 /* B0 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
792 | #define B0ST_4 0x00000000 /* B0 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
793 | #define B0HT_1 0x00000040 /* B0 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
794 | #define B0HT_2 0x00000080 /* B0 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
795 | #define B0HT_3 0x000000C0 /* B0 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
796 | #define B0HT_0 0x00000000 /* B0 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
797 | #define B0RAT_1 0x00000100 /* B0 Read Access Time = 1 cycle */ | ||
798 | #define B0RAT_2 0x00000200 /* B0 Read Access Time = 2 cycles */ | ||
799 | #define B0RAT_3 0x00000300 /* B0 Read Access Time = 3 cycles */ | ||
800 | #define B0RAT_4 0x00000400 /* B0 Read Access Time = 4 cycles */ | ||
801 | #define B0RAT_5 0x00000500 /* B0 Read Access Time = 5 cycles */ | ||
802 | #define B0RAT_6 0x00000600 /* B0 Read Access Time = 6 cycles */ | ||
803 | #define B0RAT_7 0x00000700 /* B0 Read Access Time = 7 cycles */ | ||
804 | #define B0RAT_8 0x00000800 /* B0 Read Access Time = 8 cycles */ | ||
805 | #define B0RAT_9 0x00000900 /* B0 Read Access Time = 9 cycles */ | ||
806 | #define B0RAT_10 0x00000A00 /* B0 Read Access Time = 10 cycles */ | ||
807 | #define B0RAT_11 0x00000B00 /* B0 Read Access Time = 11 cycles */ | ||
808 | #define B0RAT_12 0x00000C00 /* B0 Read Access Time = 12 cycles */ | ||
809 | #define B0RAT_13 0x00000D00 /* B0 Read Access Time = 13 cycles */ | ||
810 | #define B0RAT_14 0x00000E00 /* B0 Read Access Time = 14 cycles */ | ||
811 | #define B0RAT_15 0x00000F00 /* B0 Read Access Time = 15 cycles */ | ||
812 | #define B0WAT_1 0x00001000 /* B0 Write Access Time = 1 cycle */ | ||
813 | #define B0WAT_2 0x00002000 /* B0 Write Access Time = 2 cycles */ | ||
814 | #define B0WAT_3 0x00003000 /* B0 Write Access Time = 3 cycles */ | ||
815 | #define B0WAT_4 0x00004000 /* B0 Write Access Time = 4 cycles */ | ||
816 | #define B0WAT_5 0x00005000 /* B0 Write Access Time = 5 cycles */ | ||
817 | #define B0WAT_6 0x00006000 /* B0 Write Access Time = 6 cycles */ | ||
818 | #define B0WAT_7 0x00007000 /* B0 Write Access Time = 7 cycles */ | ||
819 | #define B0WAT_8 0x00008000 /* B0 Write Access Time = 8 cycles */ | ||
820 | #define B0WAT_9 0x00009000 /* B0 Write Access Time = 9 cycles */ | ||
821 | #define B0WAT_10 0x0000A000 /* B0 Write Access Time = 10 cycles */ | ||
822 | #define B0WAT_11 0x0000B000 /* B0 Write Access Time = 11 cycles */ | ||
823 | #define B0WAT_12 0x0000C000 /* B0 Write Access Time = 12 cycles */ | ||
824 | #define B0WAT_13 0x0000D000 /* B0 Write Access Time = 13 cycles */ | ||
825 | #define B0WAT_14 0x0000E000 /* B0 Write Access Time = 14 cycles */ | ||
826 | #define B0WAT_15 0x0000F000 /* B0 Write Access Time = 15 cycles */ | ||
827 | |||
828 | #define B1RDYEN 0x00010000 /* Bank 1 (B1) RDY Enable */ | ||
829 | #define B1RDYPOL 0x00020000 /* B1 RDY Active High */ | ||
830 | #define B1TT_1 0x00040000 /* B1 Transition Time (Read to Write) = 1 cycle */ | ||
831 | #define B1TT_2 0x00080000 /* B1 Transition Time (Read to Write) = 2 cycles */ | ||
832 | #define B1TT_3 0x000C0000 /* B1 Transition Time (Read to Write) = 3 cycles */ | ||
833 | #define B1TT_4 0x00000000 /* B1 Transition Time (Read to Write) = 4 cycles */ | ||
834 | #define B1ST_1 0x00100000 /* B1 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
835 | #define B1ST_2 0x00200000 /* B1 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
836 | #define B1ST_3 0x00300000 /* B1 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
837 | #define B1ST_4 0x00000000 /* B1 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
838 | #define B1HT_1 0x00400000 /* B1 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
839 | #define B1HT_2 0x00800000 /* B1 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
840 | #define B1HT_3 0x00C00000 /* B1 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
841 | #define B1HT_0 0x00000000 /* B1 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
842 | #define B1RAT_1 0x01000000 /* B1 Read Access Time = 1 cycle */ | ||
843 | #define B1RAT_2 0x02000000 /* B1 Read Access Time = 2 cycles */ | ||
844 | #define B1RAT_3 0x03000000 /* B1 Read Access Time = 3 cycles */ | ||
845 | #define B1RAT_4 0x04000000 /* B1 Read Access Time = 4 cycles */ | ||
846 | #define B1RAT_5 0x05000000 /* B1 Read Access Time = 5 cycles */ | ||
847 | #define B1RAT_6 0x06000000 /* B1 Read Access Time = 6 cycles */ | ||
848 | #define B1RAT_7 0x07000000 /* B1 Read Access Time = 7 cycles */ | ||
849 | #define B1RAT_8 0x08000000 /* B1 Read Access Time = 8 cycles */ | ||
850 | #define B1RAT_9 0x09000000 /* B1 Read Access Time = 9 cycles */ | ||
851 | #define B1RAT_10 0x0A000000 /* B1 Read Access Time = 10 cycles */ | ||
852 | #define B1RAT_11 0x0B000000 /* B1 Read Access Time = 11 cycles */ | ||
853 | #define B1RAT_12 0x0C000000 /* B1 Read Access Time = 12 cycles */ | ||
854 | #define B1RAT_13 0x0D000000 /* B1 Read Access Time = 13 cycles */ | ||
855 | #define B1RAT_14 0x0E000000 /* B1 Read Access Time = 14 cycles */ | ||
856 | #define B1RAT_15 0x0F000000 /* B1 Read Access Time = 15 cycles */ | ||
857 | #define B1WAT_1 0x10000000 /* B1 Write Access Time = 1 cycle */ | ||
858 | #define B1WAT_2 0x20000000 /* B1 Write Access Time = 2 cycles */ | ||
859 | #define B1WAT_3 0x30000000 /* B1 Write Access Time = 3 cycles */ | ||
860 | #define B1WAT_4 0x40000000 /* B1 Write Access Time = 4 cycles */ | ||
861 | #define B1WAT_5 0x50000000 /* B1 Write Access Time = 5 cycles */ | ||
862 | #define B1WAT_6 0x60000000 /* B1 Write Access Time = 6 cycles */ | ||
863 | #define B1WAT_7 0x70000000 /* B1 Write Access Time = 7 cycles */ | ||
864 | #define B1WAT_8 0x80000000 /* B1 Write Access Time = 8 cycles */ | ||
865 | #define B1WAT_9 0x90000000 /* B1 Write Access Time = 9 cycles */ | ||
866 | #define B1WAT_10 0xA0000000 /* B1 Write Access Time = 10 cycles */ | ||
867 | #define B1WAT_11 0xB0000000 /* B1 Write Access Time = 11 cycles */ | ||
868 | #define B1WAT_12 0xC0000000 /* B1 Write Access Time = 12 cycles */ | ||
869 | #define B1WAT_13 0xD0000000 /* B1 Write Access Time = 13 cycles */ | ||
870 | #define B1WAT_14 0xE0000000 /* B1 Write Access Time = 14 cycles */ | ||
871 | #define B1WAT_15 0xF0000000 /* B1 Write Access Time = 15 cycles */ | ||
872 | |||
873 | /* EBIU_AMBCTL1 Masks */ | ||
874 | #define B2RDYEN 0x00000001 /* Bank 2 (B2) RDY Enable */ | ||
875 | #define B2RDYPOL 0x00000002 /* B2 RDY Active High */ | ||
876 | #define B2TT_1 0x00000004 /* B2 Transition Time (Read to Write) = 1 cycle */ | ||
877 | #define B2TT_2 0x00000008 /* B2 Transition Time (Read to Write) = 2 cycles */ | ||
878 | #define B2TT_3 0x0000000C /* B2 Transition Time (Read to Write) = 3 cycles */ | ||
879 | #define B2TT_4 0x00000000 /* B2 Transition Time (Read to Write) = 4 cycles */ | ||
880 | #define B2ST_1 0x00000010 /* B2 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
881 | #define B2ST_2 0x00000020 /* B2 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
882 | #define B2ST_3 0x00000030 /* B2 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
883 | #define B2ST_4 0x00000000 /* B2 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
884 | #define B2HT_1 0x00000040 /* B2 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
885 | #define B2HT_2 0x00000080 /* B2 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
886 | #define B2HT_3 0x000000C0 /* B2 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
887 | #define B2HT_0 0x00000000 /* B2 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
888 | #define B2RAT_1 0x00000100 /* B2 Read Access Time = 1 cycle */ | ||
889 | #define B2RAT_2 0x00000200 /* B2 Read Access Time = 2 cycles */ | ||
890 | #define B2RAT_3 0x00000300 /* B2 Read Access Time = 3 cycles */ | ||
891 | #define B2RAT_4 0x00000400 /* B2 Read Access Time = 4 cycles */ | ||
892 | #define B2RAT_5 0x00000500 /* B2 Read Access Time = 5 cycles */ | ||
893 | #define B2RAT_6 0x00000600 /* B2 Read Access Time = 6 cycles */ | ||
894 | #define B2RAT_7 0x00000700 /* B2 Read Access Time = 7 cycles */ | ||
895 | #define B2RAT_8 0x00000800 /* B2 Read Access Time = 8 cycles */ | ||
896 | #define B2RAT_9 0x00000900 /* B2 Read Access Time = 9 cycles */ | ||
897 | #define B2RAT_10 0x00000A00 /* B2 Read Access Time = 10 cycles */ | ||
898 | #define B2RAT_11 0x00000B00 /* B2 Read Access Time = 11 cycles */ | ||
899 | #define B2RAT_12 0x00000C00 /* B2 Read Access Time = 12 cycles */ | ||
900 | #define B2RAT_13 0x00000D00 /* B2 Read Access Time = 13 cycles */ | ||
901 | #define B2RAT_14 0x00000E00 /* B2 Read Access Time = 14 cycles */ | ||
902 | #define B2RAT_15 0x00000F00 /* B2 Read Access Time = 15 cycles */ | ||
903 | #define B2WAT_1 0x00001000 /* B2 Write Access Time = 1 cycle */ | ||
904 | #define B2WAT_2 0x00002000 /* B2 Write Access Time = 2 cycles */ | ||
905 | #define B2WAT_3 0x00003000 /* B2 Write Access Time = 3 cycles */ | ||
906 | #define B2WAT_4 0x00004000 /* B2 Write Access Time = 4 cycles */ | ||
907 | #define B2WAT_5 0x00005000 /* B2 Write Access Time = 5 cycles */ | ||
908 | #define B2WAT_6 0x00006000 /* B2 Write Access Time = 6 cycles */ | ||
909 | #define B2WAT_7 0x00007000 /* B2 Write Access Time = 7 cycles */ | ||
910 | #define B2WAT_8 0x00008000 /* B2 Write Access Time = 8 cycles */ | ||
911 | #define B2WAT_9 0x00009000 /* B2 Write Access Time = 9 cycles */ | ||
912 | #define B2WAT_10 0x0000A000 /* B2 Write Access Time = 10 cycles */ | ||
913 | #define B2WAT_11 0x0000B000 /* B2 Write Access Time = 11 cycles */ | ||
914 | #define B2WAT_12 0x0000C000 /* B2 Write Access Time = 12 cycles */ | ||
915 | #define B2WAT_13 0x0000D000 /* B2 Write Access Time = 13 cycles */ | ||
916 | #define B2WAT_14 0x0000E000 /* B2 Write Access Time = 14 cycles */ | ||
917 | #define B2WAT_15 0x0000F000 /* B2 Write Access Time = 15 cycles */ | ||
918 | |||
919 | #define B3RDYEN 0x00010000 /* Bank 3 (B3) RDY Enable */ | ||
920 | #define B3RDYPOL 0x00020000 /* B3 RDY Active High */ | ||
921 | #define B3TT_1 0x00040000 /* B3 Transition Time (Read to Write) = 1 cycle */ | ||
922 | #define B3TT_2 0x00080000 /* B3 Transition Time (Read to Write) = 2 cycles */ | ||
923 | #define B3TT_3 0x000C0000 /* B3 Transition Time (Read to Write) = 3 cycles */ | ||
924 | #define B3TT_4 0x00000000 /* B3 Transition Time (Read to Write) = 4 cycles */ | ||
925 | #define B3ST_1 0x00100000 /* B3 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
926 | #define B3ST_2 0x00200000 /* B3 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
927 | #define B3ST_3 0x00300000 /* B3 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
928 | #define B3ST_4 0x00000000 /* B3 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
929 | #define B3HT_1 0x00400000 /* B3 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
930 | #define B3HT_2 0x00800000 /* B3 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
931 | #define B3HT_3 0x00C00000 /* B3 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
932 | #define B3HT_0 0x00000000 /* B3 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
933 | #define B3RAT_1 0x01000000 /* B3 Read Access Time = 1 cycle */ | ||
934 | #define B3RAT_2 0x02000000 /* B3 Read Access Time = 2 cycles */ | ||
935 | #define B3RAT_3 0x03000000 /* B3 Read Access Time = 3 cycles */ | ||
936 | #define B3RAT_4 0x04000000 /* B3 Read Access Time = 4 cycles */ | ||
937 | #define B3RAT_5 0x05000000 /* B3 Read Access Time = 5 cycles */ | ||
938 | #define B3RAT_6 0x06000000 /* B3 Read Access Time = 6 cycles */ | ||
939 | #define B3RAT_7 0x07000000 /* B3 Read Access Time = 7 cycles */ | ||
940 | #define B3RAT_8 0x08000000 /* B3 Read Access Time = 8 cycles */ | ||
941 | #define B3RAT_9 0x09000000 /* B3 Read Access Time = 9 cycles */ | ||
942 | #define B3RAT_10 0x0A000000 /* B3 Read Access Time = 10 cycles */ | ||
943 | #define B3RAT_11 0x0B000000 /* B3 Read Access Time = 11 cycles */ | ||
944 | #define B3RAT_12 0x0C000000 /* B3 Read Access Time = 12 cycles */ | ||
945 | #define B3RAT_13 0x0D000000 /* B3 Read Access Time = 13 cycles */ | ||
946 | #define B3RAT_14 0x0E000000 /* B3 Read Access Time = 14 cycles */ | ||
947 | #define B3RAT_15 0x0F000000 /* B3 Read Access Time = 15 cycles */ | ||
948 | #define B3WAT_1 0x10000000 /* B3 Write Access Time = 1 cycle */ | ||
949 | #define B3WAT_2 0x20000000 /* B3 Write Access Time = 2 cycles */ | ||
950 | #define B3WAT_3 0x30000000 /* B3 Write Access Time = 3 cycles */ | ||
951 | #define B3WAT_4 0x40000000 /* B3 Write Access Time = 4 cycles */ | ||
952 | #define B3WAT_5 0x50000000 /* B3 Write Access Time = 5 cycles */ | ||
953 | #define B3WAT_6 0x60000000 /* B3 Write Access Time = 6 cycles */ | ||
954 | #define B3WAT_7 0x70000000 /* B3 Write Access Time = 7 cycles */ | ||
955 | #define B3WAT_8 0x80000000 /* B3 Write Access Time = 8 cycles */ | ||
956 | #define B3WAT_9 0x90000000 /* B3 Write Access Time = 9 cycles */ | ||
957 | #define B3WAT_10 0xA0000000 /* B3 Write Access Time = 10 cycles */ | ||
958 | #define B3WAT_11 0xB0000000 /* B3 Write Access Time = 11 cycles */ | ||
959 | #define B3WAT_12 0xC0000000 /* B3 Write Access Time = 12 cycles */ | ||
960 | #define B3WAT_13 0xD0000000 /* B3 Write Access Time = 13 cycles */ | ||
961 | #define B3WAT_14 0xE0000000 /* B3 Write Access Time = 14 cycles */ | ||
962 | #define B3WAT_15 0xF0000000 /* B3 Write Access Time = 15 cycles */ | ||
963 | |||
964 | |||
965 | /* ********************** SDRAM CONTROLLER MASKS **********************************************/ | ||
966 | /* EBIU_SDGCTL Masks */ | ||
967 | #define SCTLE 0x00000001 /* Enable SDRAM Signals */ | ||
968 | #define CL_2 0x00000008 /* SDRAM CAS Latency = 2 cycles */ | ||
969 | #define CL_3 0x0000000C /* SDRAM CAS Latency = 3 cycles */ | ||
970 | #define PASR_ALL 0x00000000 /* All 4 SDRAM Banks Refreshed In Self-Refresh */ | ||
971 | #define PASR_B0_B1 0x00000010 /* SDRAM Banks 0 and 1 Are Refreshed In Self-Refresh */ | ||
972 | #define PASR_B0 0x00000020 /* Only SDRAM Bank 0 Is Refreshed In Self-Refresh */ | ||
973 | #define TRAS_1 0x00000040 /* SDRAM tRAS = 1 cycle */ | ||
974 | #define TRAS_2 0x00000080 /* SDRAM tRAS = 2 cycles */ | ||
975 | #define TRAS_3 0x000000C0 /* SDRAM tRAS = 3 cycles */ | ||
976 | #define TRAS_4 0x00000100 /* SDRAM tRAS = 4 cycles */ | ||
977 | #define TRAS_5 0x00000140 /* SDRAM tRAS = 5 cycles */ | ||
978 | #define TRAS_6 0x00000180 /* SDRAM tRAS = 6 cycles */ | ||
979 | #define TRAS_7 0x000001C0 /* SDRAM tRAS = 7 cycles */ | ||
980 | #define TRAS_8 0x00000200 /* SDRAM tRAS = 8 cycles */ | ||
981 | #define TRAS_9 0x00000240 /* SDRAM tRAS = 9 cycles */ | ||
982 | #define TRAS_10 0x00000280 /* SDRAM tRAS = 10 cycles */ | ||
983 | #define TRAS_11 0x000002C0 /* SDRAM tRAS = 11 cycles */ | ||
984 | #define TRAS_12 0x00000300 /* SDRAM tRAS = 12 cycles */ | ||
985 | #define TRAS_13 0x00000340 /* SDRAM tRAS = 13 cycles */ | ||
986 | #define TRAS_14 0x00000380 /* SDRAM tRAS = 14 cycles */ | ||
987 | #define TRAS_15 0x000003C0 /* SDRAM tRAS = 15 cycles */ | ||
988 | #define TRP_1 0x00000800 /* SDRAM tRP = 1 cycle */ | ||
989 | #define TRP_2 0x00001000 /* SDRAM tRP = 2 cycles */ | ||
990 | #define TRP_3 0x00001800 /* SDRAM tRP = 3 cycles */ | ||
991 | #define TRP_4 0x00002000 /* SDRAM tRP = 4 cycles */ | ||
992 | #define TRP_5 0x00002800 /* SDRAM tRP = 5 cycles */ | ||
993 | #define TRP_6 0x00003000 /* SDRAM tRP = 6 cycles */ | ||
994 | #define TRP_7 0x00003800 /* SDRAM tRP = 7 cycles */ | ||
995 | #define TRCD_1 0x00008000 /* SDRAM tRCD = 1 cycle */ | ||
996 | #define TRCD_2 0x00010000 /* SDRAM tRCD = 2 cycles */ | ||
997 | #define TRCD_3 0x00018000 /* SDRAM tRCD = 3 cycles */ | ||
998 | #define TRCD_4 0x00020000 /* SDRAM tRCD = 4 cycles */ | ||
999 | #define TRCD_5 0x00028000 /* SDRAM tRCD = 5 cycles */ | ||
1000 | #define TRCD_6 0x00030000 /* SDRAM tRCD = 6 cycles */ | ||
1001 | #define TRCD_7 0x00038000 /* SDRAM tRCD = 7 cycles */ | ||
1002 | #define TWR_1 0x00080000 /* SDRAM tWR = 1 cycle */ | ||
1003 | #define TWR_2 0x00100000 /* SDRAM tWR = 2 cycles */ | ||
1004 | #define TWR_3 0x00180000 /* SDRAM tWR = 3 cycles */ | ||
1005 | #define PUPSD 0x00200000 /* Power-Up Start Delay (15 SCLK Cycles Delay) */ | ||
1006 | #define PSM 0x00400000 /* Power-Up Sequence (Mode Register Before/After* Refresh) */ | ||
1007 | #define PSS 0x00800000 /* Enable Power-Up Sequence on Next SDRAM Access */ | ||
1008 | #define SRFS 0x01000000 /* Enable SDRAM Self-Refresh Mode */ | ||
1009 | #define EBUFE 0x02000000 /* Enable External Buffering Timing */ | ||
1010 | #define FBBRW 0x04000000 /* Enable Fast Back-To-Back Read To Write */ | ||
1011 | #define EMREN 0x10000000 /* Extended Mode Register Enable */ | ||
1012 | #define TCSR 0x20000000 /* Temp-Compensated Self-Refresh Value (85/45* Deg C) */ | ||
1013 | #define CDDBG 0x40000000 /* Tristate SDRAM Controls During Bus Grant */ | ||
1014 | |||
1015 | /* EBIU_SDBCTL Masks */ | ||
1016 | #define EBE 0x0001 /* Enable SDRAM External Bank */ | ||
1017 | #define EBSZ_16 0x0000 /* SDRAM External Bank Size = 16MB */ | ||
1018 | #define EBSZ_32 0x0002 /* SDRAM External Bank Size = 32MB */ | ||
1019 | #define EBSZ_64 0x0004 /* SDRAM External Bank Size = 64MB */ | ||
1020 | #define EBSZ_128 0x0006 /* SDRAM External Bank Size = 128MB */ | ||
1021 | #define EBSZ_256 0x0008 /* SDRAM External Bank Size = 256MB */ | ||
1022 | #define EBSZ_512 0x000A /* SDRAM External Bank Size = 512MB */ | ||
1023 | #define EBCAW_8 0x0000 /* SDRAM External Bank Column Address Width = 8 Bits */ | ||
1024 | #define EBCAW_9 0x0010 /* SDRAM External Bank Column Address Width = 9 Bits */ | ||
1025 | #define EBCAW_10 0x0020 /* SDRAM External Bank Column Address Width = 10 Bits */ | ||
1026 | #define EBCAW_11 0x0030 /* SDRAM External Bank Column Address Width = 11 Bits */ | ||
1027 | |||
1028 | /* EBIU_SDSTAT Masks */ | ||
1029 | #define SDCI 0x0001 /* SDRAM Controller Idle */ | ||
1030 | #define SDSRA 0x0002 /* SDRAM Self-Refresh Active */ | ||
1031 | #define SDPUA 0x0004 /* SDRAM Power-Up Active */ | ||
1032 | #define SDRS 0x0008 /* SDRAM Will Power-Up On Next Access */ | ||
1033 | #define SDEASE 0x0010 /* SDRAM EAB Sticky Error Status */ | ||
1034 | #define BGSTAT 0x0020 /* Bus Grant Status */ | ||
1035 | |||
1036 | |||
1037 | /* ************************** DMA CONTROLLER MASKS ********************************/ | ||
1038 | |||
1039 | /* DMAx_PERIPHERAL_MAP, MDMA_yy_PERIPHERAL_MAP Masks */ | ||
1040 | #define CTYPE 0x0040 /* DMA Channel Type Indicator (Memory/Peripheral*) */ | ||
1041 | #define PMAP 0xF000 /* Peripheral Mapped To This Channel */ | ||
1042 | #define PMAP_PPI 0x0000 /* PPI Port DMA */ | ||
1043 | #define PMAP_EMACRX 0x1000 /* Ethernet Receive DMA */ | ||
1044 | #define PMAP_EMACTX 0x2000 /* Ethernet Transmit DMA */ | ||
1045 | #define PMAP_SPORT0RX 0x3000 /* SPORT0 Receive DMA */ | ||
1046 | #define PMAP_SPORT0TX 0x4000 /* SPORT0 Transmit DMA */ | ||
1047 | #define PMAP_SPORT1RX 0x5000 /* SPORT1 Receive DMA */ | ||
1048 | #define PMAP_SPORT1TX 0x6000 /* SPORT1 Transmit DMA */ | ||
1049 | #define PMAP_SPI 0x7000 /* SPI Port DMA */ | ||
1050 | #define PMAP_UART0RX 0x8000 /* UART0 Port Receive DMA */ | ||
1051 | #define PMAP_UART0TX 0x9000 /* UART0 Port Transmit DMA */ | ||
1052 | #define PMAP_UART1RX 0xA000 /* UART1 Port Receive DMA */ | ||
1053 | #define PMAP_UART1TX 0xB000 /* UART1 Port Transmit DMA */ | ||
1054 | |||
1055 | /* ************ PARALLEL PERIPHERAL INTERFACE (PPI) MASKS *************/ | ||
1056 | /* PPI_CONTROL Masks */ | ||
1057 | #define PORT_EN 0x0001 /* PPI Port Enable */ | ||
1058 | #define PORT_DIR 0x0002 /* PPI Port Direction */ | ||
1059 | #define XFR_TYPE 0x000C /* PPI Transfer Type */ | ||
1060 | #define PORT_CFG 0x0030 /* PPI Port Configuration */ | ||
1061 | #define FLD_SEL 0x0040 /* PPI Active Field Select */ | ||
1062 | #define PACK_EN 0x0080 /* PPI Packing Mode */ | ||
1063 | #define DMA32 0x0100 /* PPI 32-bit DMA Enable */ | ||
1064 | #define SKIP_EN 0x0200 /* PPI Skip Element Enable */ | ||
1065 | #define SKIP_EO 0x0400 /* PPI Skip Even/Odd Elements */ | ||
1066 | #define DLEN_8 0x0000 /* Data Length = 8 Bits */ | ||
1067 | #define DLEN_10 0x0800 /* Data Length = 10 Bits */ | ||
1068 | #define DLEN_11 0x1000 /* Data Length = 11 Bits */ | ||
1069 | #define DLEN_12 0x1800 /* Data Length = 12 Bits */ | ||
1070 | #define DLEN_13 0x2000 /* Data Length = 13 Bits */ | ||
1071 | #define DLEN_14 0x2800 /* Data Length = 14 Bits */ | ||
1072 | #define DLEN_15 0x3000 /* Data Length = 15 Bits */ | ||
1073 | #define DLEN_16 0x3800 /* Data Length = 16 Bits */ | ||
1074 | #define DLENGTH 0x3800 /* PPI Data Length */ | ||
1075 | #define POLC 0x4000 /* PPI Clock Polarity */ | ||
1076 | #define POLS 0x8000 /* PPI Frame Sync Polarity */ | ||
1077 | |||
1078 | /* PPI_STATUS Masks */ | ||
1079 | #define FLD 0x0400 /* Field Indicator */ | ||
1080 | #define FT_ERR 0x0800 /* Frame Track Error */ | ||
1081 | #define OVR 0x1000 /* FIFO Overflow Error */ | ||
1082 | #define UNDR 0x2000 /* FIFO Underrun Error */ | ||
1083 | #define ERR_DET 0x4000 /* Error Detected Indicator */ | ||
1084 | #define ERR_NCOR 0x8000 /* Error Not Corrected Indicator */ | ||
1085 | |||
1086 | |||
1087 | /* ******************** TWO-WIRE INTERFACE (TWI) MASKS ***********************/ | ||
1088 | /* TWI_CLKDIV Macros (Use: *pTWI_CLKDIV = CLKLOW(x)|CLKHI(y); ) */ | ||
1089 | #define CLKLOW(x) ((x) & 0xFF) /* Periods Clock Is Held Low */ | ||
1090 | #define CLKHI(y) (((y)&0xFF)<<0x8) /* Periods Before New Clock Low */ | ||
1091 | |||
1092 | /* TWI_PRESCALE Masks */ | ||
1093 | #define PRESCALE 0x007F /* SCLKs Per Internal Time Reference (10MHz) */ | ||
1094 | #define TWI_ENA 0x0080 /* TWI Enable */ | ||
1095 | #define SCCB 0x0200 /* SCCB Compatibility Enable */ | ||
1096 | |||
1097 | /* TWI_SLAVE_CTL Masks */ | ||
1098 | #define SEN 0x0001 /* Slave Enable */ | ||
1099 | #define SADD_LEN 0x0002 /* Slave Address Length */ | ||
1100 | #define STDVAL 0x0004 /* Slave Transmit Data Valid */ | ||
1101 | #define NAK 0x0008 /* NAK/ACK* Generated At Conclusion Of Transfer */ | ||
1102 | #define GEN 0x0010 /* General Call Adrress Matching Enabled */ | ||
1103 | |||
1104 | /* TWI_SLAVE_STAT Masks */ | ||
1105 | #define SDIR 0x0001 /* Slave Transfer Direction (Transmit/Receive*) */ | ||
1106 | #define GCALL 0x0002 /* General Call Indicator */ | ||
1107 | |||
1108 | /* TWI_MASTER_CTL Masks */ | ||
1109 | #define MEN 0x0001 /* Master Mode Enable */ | ||
1110 | #define MADD_LEN 0x0002 /* Master Address Length */ | ||
1111 | #define MDIR 0x0004 /* Master Transmit Direction (RX/TX*) */ | ||
1112 | #define FAST 0x0008 /* Use Fast Mode Timing Specs */ | ||
1113 | #define STOP 0x0010 /* Issue Stop Condition */ | ||
1114 | #define RSTART 0x0020 /* Repeat Start or Stop* At End Of Transfer */ | ||
1115 | #define DCNT 0x3FC0 /* Data Bytes To Transfer */ | ||
1116 | #define SDAOVR 0x4000 /* Serial Data Override */ | ||
1117 | #define SCLOVR 0x8000 /* Serial Clock Override */ | ||
1118 | |||
1119 | /* TWI_MASTER_STAT Masks */ | ||
1120 | #define MPROG 0x0001 /* Master Transfer In Progress */ | ||
1121 | #define LOSTARB 0x0002 /* Lost Arbitration Indicator (Xfer Aborted) */ | ||
1122 | #define ANAK 0x0004 /* Address Not Acknowledged */ | ||
1123 | #define DNAK 0x0008 /* Data Not Acknowledged */ | ||
1124 | #define BUFRDERR 0x0010 /* Buffer Read Error */ | ||
1125 | #define BUFWRERR 0x0020 /* Buffer Write Error */ | ||
1126 | #define SDASEN 0x0040 /* Serial Data Sense */ | ||
1127 | #define SCLSEN 0x0080 /* Serial Clock Sense */ | ||
1128 | #define BUSBUSY 0x0100 /* Bus Busy Indicator */ | ||
1129 | |||
1130 | /* TWI_INT_SRC and TWI_INT_ENABLE Masks */ | ||
1131 | #define SINIT 0x0001 /* Slave Transfer Initiated */ | ||
1132 | #define SCOMP 0x0002 /* Slave Transfer Complete */ | ||
1133 | #define SERR 0x0004 /* Slave Transfer Error */ | ||
1134 | #define SOVF 0x0008 /* Slave Overflow */ | ||
1135 | #define MCOMP 0x0010 /* Master Transfer Complete */ | ||
1136 | #define MERR 0x0020 /* Master Transfer Error */ | ||
1137 | #define XMTSERV 0x0040 /* Transmit FIFO Service */ | ||
1138 | #define RCVSERV 0x0080 /* Receive FIFO Service */ | ||
1139 | |||
1140 | /* TWI_FIFO_CTRL Masks */ | ||
1141 | #define XMTFLUSH 0x0001 /* Transmit Buffer Flush */ | ||
1142 | #define RCVFLUSH 0x0002 /* Receive Buffer Flush */ | ||
1143 | #define XMTINTLEN 0x0004 /* Transmit Buffer Interrupt Length */ | ||
1144 | #define RCVINTLEN 0x0008 /* Receive Buffer Interrupt Length */ | ||
1145 | |||
1146 | /* TWI_FIFO_STAT Masks */ | ||
1147 | #define XMTSTAT 0x0003 /* Transmit FIFO Status */ | ||
1148 | #define XMT_EMPTY 0x0000 /* Transmit FIFO Empty */ | ||
1149 | #define XMT_HALF 0x0001 /* Transmit FIFO Has 1 Byte To Write */ | ||
1150 | #define XMT_FULL 0x0003 /* Transmit FIFO Full (2 Bytes To Write) */ | ||
1151 | |||
1152 | #define RCVSTAT 0x000C /* Receive FIFO Status */ | ||
1153 | #define RCV_EMPTY 0x0000 /* Receive FIFO Empty */ | ||
1154 | #define RCV_HALF 0x0004 /* Receive FIFO Has 1 Byte To Read */ | ||
1155 | #define RCV_FULL 0x000C /* Receive FIFO Full (2 Bytes To Read) */ | ||
1156 | |||
1157 | |||
1158 | /* Omit CAN masks from defBF534.h */ | ||
1159 | |||
1160 | /* ******************* PIN CONTROL REGISTER MASKS ************************/ | ||
1161 | /* PORT_MUX Masks */ | ||
1162 | #define PJSE 0x0001 /* Port J SPI/SPORT Enable */ | ||
1163 | #define PJSE_SPORT 0x0000 /* Enable TFS0/DT0PRI */ | ||
1164 | #define PJSE_SPI 0x0001 /* Enable SPI_SSEL3:2 */ | ||
1165 | |||
1166 | #define PJCE(x) (((x)&0x3)<<1) /* Port J CAN/SPI/SPORT Enable */ | ||
1167 | #define PJCE_SPORT 0x0000 /* Enable DR0SEC/DT0SEC */ | ||
1168 | #define PJCE_CAN 0x0002 /* Enable CAN RX/TX */ | ||
1169 | #define PJCE_SPI 0x0004 /* Enable SPI_SSEL7 */ | ||
1170 | |||
1171 | #define PFDE 0x0008 /* Port F DMA Request Enable */ | ||
1172 | #define PFDE_UART 0x0000 /* Enable UART0 RX/TX */ | ||
1173 | #define PFDE_DMA 0x0008 /* Enable DMAR1:0 */ | ||
1174 | |||
1175 | #define PFTE 0x0010 /* Port F Timer Enable */ | ||
1176 | #define PFTE_UART 0x0000 /* Enable UART1 RX/TX */ | ||
1177 | #define PFTE_TIMER 0x0010 /* Enable TMR7:6 */ | ||
1178 | |||
1179 | #define PFS6E 0x0020 /* Port F SPI SSEL 6 Enable */ | ||
1180 | #define PFS6E_TIMER 0x0000 /* Enable TMR5 */ | ||
1181 | #define PFS6E_SPI 0x0020 /* Enable SPI_SSEL6 */ | ||
1182 | |||
1183 | #define PFS5E 0x0040 /* Port F SPI SSEL 5 Enable */ | ||
1184 | #define PFS5E_TIMER 0x0000 /* Enable TMR4 */ | ||
1185 | #define PFS5E_SPI 0x0040 /* Enable SPI_SSEL5 */ | ||
1186 | |||
1187 | #define PFS4E 0x0080 /* Port F SPI SSEL 4 Enable */ | ||
1188 | #define PFS4E_TIMER 0x0000 /* Enable TMR3 */ | ||
1189 | #define PFS4E_SPI 0x0080 /* Enable SPI_SSEL4 */ | ||
1190 | |||
1191 | #define PFFE 0x0100 /* Port F PPI Frame Sync Enable */ | ||
1192 | #define PFFE_TIMER 0x0000 /* Enable TMR2 */ | ||
1193 | #define PFFE_PPI 0x0100 /* Enable PPI FS3 */ | ||
1194 | |||
1195 | #define PGSE 0x0200 /* Port G SPORT1 Secondary Enable */ | ||
1196 | #define PGSE_PPI 0x0000 /* Enable PPI D9:8 */ | ||
1197 | #define PGSE_SPORT 0x0200 /* Enable DR1SEC/DT1SEC */ | ||
1198 | |||
1199 | #define PGRE 0x0400 /* Port G SPORT1 Receive Enable */ | ||
1200 | #define PGRE_PPI 0x0000 /* Enable PPI D12:10 */ | ||
1201 | #define PGRE_SPORT 0x0400 /* Enable DR1PRI/RFS1/RSCLK1 */ | ||
1202 | |||
1203 | #define PGTE 0x0800 /* Port G SPORT1 Transmit Enable */ | ||
1204 | #define PGTE_PPI 0x0000 /* Enable PPI D15:13 */ | ||
1205 | #define PGTE_SPORT 0x0800 /* Enable DT1PRI/TFS1/TSCLK1 */ | ||
1206 | |||
1207 | |||
1208 | /* ****************** HANDSHAKE DMA (HDMA) MASKS *********************/ | ||
1209 | /* HDMAx_CTL Masks */ | ||
1210 | #define HMDMAEN 0x0001 /* Enable Handshake DMA 0/1 */ | ||
1211 | #define REP 0x0002 /* HDMA Request Polarity */ | ||
1212 | #define UTE 0x0004 /* Urgency Threshold Enable */ | ||
1213 | #define OIE 0x0010 /* Overflow Interrupt Enable */ | ||
1214 | #define BDIE 0x0020 /* Block Done Interrupt Enable */ | ||
1215 | #define MBDI 0x0040 /* Mask Block Done IRQ If Pending ECNT */ | ||
1216 | #define DRQ 0x0300 /* HDMA Request Type */ | ||
1217 | #define DRQ_NONE 0x0000 /* No Request */ | ||
1218 | #define DRQ_SINGLE 0x0100 /* Channels Request Single */ | ||
1219 | #define DRQ_MULTI 0x0200 /* Channels Request Multi (Default) */ | ||
1220 | #define DRQ_URGENT 0x0300 /* Channels Request Multi Urgent */ | ||
1221 | #define RBC 0x1000 /* Reload BCNT With IBCNT */ | ||
1222 | #define PS 0x2000 /* HDMA Pin Status */ | ||
1223 | #define OI 0x4000 /* Overflow Interrupt Generated */ | ||
1224 | #define BDI 0x8000 /* Block Done Interrupt Generated */ | ||
1225 | |||
1226 | /* entry addresses of the user-callable Boot ROM functions */ | ||
1227 | |||
1228 | #define _BOOTROM_RESET 0xEF000000 | ||
1229 | #define _BOOTROM_FINAL_INIT 0xEF000002 | ||
1230 | #define _BOOTROM_DO_MEMORY_DMA 0xEF000006 | ||
1231 | #define _BOOTROM_BOOT_DXE_FLASH 0xEF000008 | ||
1232 | #define _BOOTROM_BOOT_DXE_SPI 0xEF00000A | ||
1233 | #define _BOOTROM_BOOT_DXE_TWI 0xEF00000C | ||
1234 | #define _BOOTROM_GET_DXE_ADDRESS_FLASH 0xEF000010 | ||
1235 | #define _BOOTROM_GET_DXE_ADDRESS_SPI 0xEF000012 | ||
1236 | #define _BOOTROM_GET_DXE_ADDRESS_TWI 0xEF000014 | ||
1237 | |||
1238 | /* Alternate Deprecated Macros Provided For Backwards Code Compatibility */ | ||
1239 | #define PGDE_UART PFDE_UART | ||
1240 | #define PGDE_DMA PFDE_DMA | ||
1241 | #define CKELOW SCKELOW | ||
1242 | |||
1243 | /* ==== end from defBF534.h ==== */ | ||
1244 | |||
1245 | /* HOST Port Registers */ | ||
1246 | |||
1247 | #define HOST_CONTROL 0xffc03400 /* HOST Control Register */ | ||
1248 | #define HOST_STATUS 0xffc03404 /* HOST Status Register */ | ||
1249 | #define HOST_TIMEOUT 0xffc03408 /* HOST Acknowledge Mode Timeout Register */ | ||
1250 | |||
1251 | /* Counter Registers */ | ||
1252 | |||
1253 | #define CNT_CONFIG 0xffc03500 /* Configuration Register */ | ||
1254 | #define CNT_IMASK 0xffc03504 /* Interrupt Mask Register */ | ||
1255 | #define CNT_STATUS 0xffc03508 /* Status Register */ | ||
1256 | #define CNT_COMMAND 0xffc0350c /* Command Register */ | ||
1257 | #define CNT_DEBOUNCE 0xffc03510 /* Debounce Register */ | ||
1258 | #define CNT_COUNTER 0xffc03514 /* Counter Register */ | ||
1259 | #define CNT_MAX 0xffc03518 /* Maximal Count Register */ | ||
1260 | #define CNT_MIN 0xffc0351c /* Minimal Count Register */ | ||
1261 | |||
1262 | /* OTP/FUSE Registers */ | ||
1263 | |||
1264 | #define OTP_CONTROL 0xffc03600 /* OTP/Fuse Control Register */ | ||
1265 | #define OTP_BEN 0xffc03604 /* OTP/Fuse Byte Enable */ | ||
1266 | #define OTP_STATUS 0xffc03608 /* OTP/Fuse Status */ | ||
1267 | #define OTP_TIMING 0xffc0360c /* OTP/Fuse Access Timing */ | ||
1268 | |||
1269 | /* Security Registers */ | ||
1270 | |||
1271 | #define SECURE_SYSSWT 0xffc03620 /* Secure System Switches */ | ||
1272 | #define SECURE_CONTROL 0xffc03624 /* Secure Control */ | ||
1273 | #define SECURE_STATUS 0xffc03628 /* Secure Status */ | ||
1274 | |||
1275 | /* OTP Read/Write Data Buffer Registers */ | ||
1276 | |||
1277 | #define OTP_DATA0 0xffc03680 /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1278 | #define OTP_DATA1 0xffc03684 /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1279 | #define OTP_DATA2 0xffc03688 /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1280 | #define OTP_DATA3 0xffc0368c /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1281 | |||
1282 | /* NFC Registers */ | ||
1283 | |||
1284 | #define NFC_CTL 0xffc03700 /* NAND Control Register */ | ||
1285 | #define NFC_STAT 0xffc03704 /* NAND Status Register */ | ||
1286 | #define NFC_IRQSTAT 0xffc03708 /* NAND Interrupt Status Register */ | ||
1287 | #define NFC_IRQMASK 0xffc0370c /* NAND Interrupt Mask Register */ | ||
1288 | #define NFC_ECC0 0xffc03710 /* NAND ECC Register 0 */ | ||
1289 | #define NFC_ECC1 0xffc03714 /* NAND ECC Register 1 */ | ||
1290 | #define NFC_ECC2 0xffc03718 /* NAND ECC Register 2 */ | ||
1291 | #define NFC_ECC3 0xffc0371c /* NAND ECC Register 3 */ | ||
1292 | #define NFC_COUNT 0xffc03720 /* NAND ECC Count Register */ | ||
1293 | #define NFC_RST 0xffc03724 /* NAND ECC Reset Register */ | ||
1294 | #define NFC_PGCTL 0xffc03728 /* NAND Page Control Register */ | ||
1295 | #define NFC_READ 0xffc0372c /* NAND Read Data Register */ | ||
1296 | #define NFC_ADDR 0xffc03740 /* NAND Address Register */ | ||
1297 | #define NFC_CMD 0xffc03744 /* NAND Command Register */ | ||
1298 | #define NFC_DATA_WR 0xffc03748 /* NAND Data Write Register */ | ||
1299 | #define NFC_DATA_RD 0xffc0374c /* NAND Data Read Register */ | ||
1300 | |||
1301 | /* ********************************************************** */ | ||
1302 | /* SINGLE BIT MACRO PAIRS (bit mask and negated one) */ | ||
1303 | /* and MULTI BIT READ MACROS */ | ||
1304 | /* ********************************************************** */ | ||
1305 | |||
1306 | /* Bit masks for HOST_CONTROL */ | ||
1307 | |||
1308 | #define HOST_CNTR_HOST_EN 0x1 /* Host Enable */ | ||
1309 | #define HOST_CNTR_nHOST_EN 0x0 | ||
1310 | #define HOST_CNTR_HOST_END 0x2 /* Host Endianess */ | ||
1311 | #define HOST_CNTR_nHOST_END 0x0 | ||
1312 | #define HOST_CNTR_DATA_SIZE 0x4 /* Data Size */ | ||
1313 | #define HOST_CNTR_nDATA_SIZE 0x0 | ||
1314 | #define HOST_CNTR_HOST_RST 0x8 /* Host Reset */ | ||
1315 | #define HOST_CNTR_nHOST_RST 0x0 | ||
1316 | #define HOST_CNTR_HRDY_OVR 0x20 /* Host Ready Override */ | ||
1317 | #define HOST_CNTR_nHRDY_OVR 0x0 | ||
1318 | #define HOST_CNTR_INT_MODE 0x40 /* Interrupt Mode */ | ||
1319 | #define HOST_CNTR_nINT_MODE 0x0 | ||
1320 | #define HOST_CNTR_BT_EN 0x80 /* Bus Timeout Enable */ | ||
1321 | #define HOST_CNTR_ nBT_EN 0x0 | ||
1322 | #define HOST_CNTR_EHW 0x100 /* Enable Host Write */ | ||
1323 | #define HOST_CNTR_nEHW 0x0 | ||
1324 | #define HOST_CNTR_EHR 0x200 /* Enable Host Read */ | ||
1325 | #define HOST_CNTR_nEHR 0x0 | ||
1326 | #define HOST_CNTR_BDR 0x400 /* Burst DMA Requests */ | ||
1327 | #define HOST_CNTR_nBDR 0x0 | ||
1328 | |||
1329 | /* Bit masks for HOST_STATUS */ | ||
1330 | |||
1331 | #define HOST_STAT_READY 0x1 /* DMA Ready */ | ||
1332 | #define HOST_STAT_nREADY 0x0 | ||
1333 | #define HOST_STAT_FIFOFULL 0x2 /* FIFO Full */ | ||
1334 | #define HOST_STAT_nFIFOFULL 0x0 | ||
1335 | #define HOST_STAT_FIFOEMPTY 0x4 /* FIFO Empty */ | ||
1336 | #define HOST_STAT_nFIFOEMPTY 0x0 | ||
1337 | #define HOST_STAT_COMPLETE 0x8 /* DMA Complete */ | ||
1338 | #define HOST_STAT_nCOMPLETE 0x0 | ||
1339 | #define HOST_STAT_HSHK 0x10 /* Host Handshake */ | ||
1340 | #define HOST_STAT_nHSHK 0x0 | ||
1341 | #define HOST_STAT_TIMEOUT 0x20 /* Host Timeout */ | ||
1342 | #define HOST_STAT_nTIMEOUT 0x0 | ||
1343 | #define HOST_STAT_HIRQ 0x40 /* Host Interrupt Request */ | ||
1344 | #define HOST_STAT_nHIRQ 0x0 | ||
1345 | #define HOST_STAT_ALLOW_CNFG 0x80 /* Allow New Configuration */ | ||
1346 | #define HOST_STAT_nALLOW_CNFG 0x0 | ||
1347 | #define HOST_STAT_DMA_DIR 0x100 /* DMA Direction */ | ||
1348 | #define HOST_STAT_nDMA_DIR 0x0 | ||
1349 | #define HOST_STAT_BTE 0x200 /* Bus Timeout Enabled */ | ||
1350 | #define HOST_STAT_nBTE 0x0 | ||
1351 | #define HOST_STAT_HOSTRD_DONE 0x8000 /* Host Read Completion Interrupt */ | ||
1352 | #define HOST_STAT_nHOSTRD_DONE 0x0 | ||
1353 | |||
1354 | /* Bit masks for HOST_TIMEOUT */ | ||
1355 | |||
1356 | #define HOST_COUNT_TIMEOUT 0x7ff /* Host Timeout count */ | ||
1357 | |||
1358 | /* Bit masks for SECURE_SYSSWT */ | ||
1359 | |||
1360 | #define EMUDABL 0x1 /* Emulation Disable. */ | ||
1361 | #define nEMUDABL 0x0 | ||
1362 | #define RSTDABL 0x2 /* Reset Disable */ | ||
1363 | #define nRSTDABL 0x0 | ||
1364 | #define L1IDABL 0x1c /* L1 Instruction Memory Disable. */ | ||
1365 | #define L1DADABL 0xe0 /* L1 Data Bank A Memory Disable. */ | ||
1366 | #define L1DBDABL 0x700 /* L1 Data Bank B Memory Disable. */ | ||
1367 | #define DMA0OVR 0x800 /* DMA0 Memory Access Override */ | ||
1368 | #define nDMA0OVR 0x0 | ||
1369 | #define DMA1OVR 0x1000 /* DMA1 Memory Access Override */ | ||
1370 | #define nDMA1OVR 0x0 | ||
1371 | #define EMUOVR 0x4000 /* Emulation Override */ | ||
1372 | #define nEMUOVR 0x0 | ||
1373 | #define OTPSEN 0x8000 /* OTP Secrets Enable. */ | ||
1374 | #define nOTPSEN 0x0 | ||
1375 | #define L2DABL 0x70000 /* L2 Memory Disable. */ | ||
1376 | |||
1377 | /* Bit masks for SECURE_CONTROL */ | ||
1378 | |||
1379 | #define SECURE0 0x1 /* SECURE 0 */ | ||
1380 | #define nSECURE0 0x0 | ||
1381 | #define SECURE1 0x2 /* SECURE 1 */ | ||
1382 | #define nSECURE1 0x0 | ||
1383 | #define SECURE2 0x4 /* SECURE 2 */ | ||
1384 | #define nSECURE2 0x0 | ||
1385 | #define SECURE3 0x8 /* SECURE 3 */ | ||
1386 | #define nSECURE3 0x0 | ||
1387 | |||
1388 | /* Bit masks for SECURE_STATUS */ | ||
1389 | |||
1390 | #define SECMODE 0x3 /* Secured Mode Control State */ | ||
1391 | #define NMI 0x4 /* Non Maskable Interrupt */ | ||
1392 | #define nNMI 0x0 | ||
1393 | #define AFVALID 0x8 /* Authentication Firmware Valid */ | ||
1394 | #define nAFVALID 0x0 | ||
1395 | #define AFEXIT 0x10 /* Authentication Firmware Exit */ | ||
1396 | #define nAFEXIT 0x0 | ||
1397 | #define SECSTAT 0xe0 /* Secure Status */ | ||
12 | 1398 | ||
13 | #endif /* _DEF_BF522_H */ | 1399 | #endif /* _DEF_BF522_H */ |
diff --git a/arch/blackfin/mach-bf527/include/mach/defBF52x_base.h b/arch/blackfin/mach-bf527/include/mach/defBF52x_base.h deleted file mode 100644 index 640990e07db0..000000000000 --- a/arch/blackfin/mach-bf527/include/mach/defBF52x_base.h +++ /dev/null | |||
@@ -1,1400 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright 2007-2010 Analog Devices Inc. | ||
3 | * | ||
4 | * Licensed under the ADI BSD license or the GPL-2 (or later) | ||
5 | */ | ||
6 | |||
7 | #ifndef _DEF_BF52X_H | ||
8 | #define _DEF_BF52X_H | ||
9 | |||
10 | |||
11 | /* ************************************************************** */ | ||
12 | /* SYSTEM & MMR ADDRESS DEFINITIONS COMMON TO ALL ADSP-BF52x */ | ||
13 | /* ************************************************************** */ | ||
14 | |||
15 | /* ==== begin from defBF534.h ==== */ | ||
16 | |||
17 | /* Clock and System Control (0xFFC00000 - 0xFFC000FF) */ | ||
18 | #define PLL_CTL 0xFFC00000 /* PLL Control Register */ | ||
19 | #define PLL_DIV 0xFFC00004 /* PLL Divide Register */ | ||
20 | #define VR_CTL 0xFFC00008 /* Voltage Regulator Control Register */ | ||
21 | #define PLL_STAT 0xFFC0000C /* PLL Status Register */ | ||
22 | #define PLL_LOCKCNT 0xFFC00010 /* PLL Lock Count Register */ | ||
23 | #define CHIPID 0xFFC00014 /* Device ID Register */ | ||
24 | |||
25 | |||
26 | /* System Interrupt Controller (0xFFC00100 - 0xFFC001FF) */ | ||
27 | #define SWRST 0xFFC00100 /* Software Reset Register */ | ||
28 | #define SYSCR 0xFFC00104 /* System Configuration Register */ | ||
29 | #define SIC_RVECT 0xFFC00108 /* Interrupt Reset Vector Address Register */ | ||
30 | |||
31 | #define SIC_IMASK0 0xFFC0010C /* Interrupt Mask Register */ | ||
32 | #define SIC_IAR0 0xFFC00110 /* Interrupt Assignment Register 0 */ | ||
33 | #define SIC_IAR1 0xFFC00114 /* Interrupt Assignment Register 1 */ | ||
34 | #define SIC_IAR2 0xFFC00118 /* Interrupt Assignment Register 2 */ | ||
35 | #define SIC_IAR3 0xFFC0011C /* Interrupt Assignment Register 3 */ | ||
36 | #define SIC_ISR0 0xFFC00120 /* Interrupt Status Register */ | ||
37 | #define SIC_IWR0 0xFFC00124 /* Interrupt Wakeup Register */ | ||
38 | |||
39 | /* SIC Additions to ADSP-BF52x (0xFFC0014C - 0xFFC00162) */ | ||
40 | #define SIC_IMASK1 0xFFC0014C /* Interrupt Mask register of SIC2 */ | ||
41 | #define SIC_IAR4 0xFFC00150 /* Interrupt Assignment register4 */ | ||
42 | #define SIC_IAR5 0xFFC00154 /* Interrupt Assignment register5 */ | ||
43 | #define SIC_IAR6 0xFFC00158 /* Interrupt Assignment register6 */ | ||
44 | #define SIC_IAR7 0xFFC0015C /* Interrupt Assignment register7 */ | ||
45 | #define SIC_ISR1 0xFFC00160 /* Interrupt Statur register */ | ||
46 | #define SIC_IWR1 0xFFC00164 /* Interrupt Wakeup register */ | ||
47 | |||
48 | |||
49 | /* Watchdog Timer (0xFFC00200 - 0xFFC002FF) */ | ||
50 | #define WDOG_CTL 0xFFC00200 /* Watchdog Control Register */ | ||
51 | #define WDOG_CNT 0xFFC00204 /* Watchdog Count Register */ | ||
52 | #define WDOG_STAT 0xFFC00208 /* Watchdog Status Register */ | ||
53 | |||
54 | |||
55 | /* Real Time Clock (0xFFC00300 - 0xFFC003FF) */ | ||
56 | #define RTC_STAT 0xFFC00300 /* RTC Status Register */ | ||
57 | #define RTC_ICTL 0xFFC00304 /* RTC Interrupt Control Register */ | ||
58 | #define RTC_ISTAT 0xFFC00308 /* RTC Interrupt Status Register */ | ||
59 | #define RTC_SWCNT 0xFFC0030C /* RTC Stopwatch Count Register */ | ||
60 | #define RTC_ALARM 0xFFC00310 /* RTC Alarm Time Register */ | ||
61 | #define RTC_FAST 0xFFC00314 /* RTC Prescaler Enable Register */ | ||
62 | #define RTC_PREN 0xFFC00314 /* RTC Prescaler Enable Alternate Macro */ | ||
63 | |||
64 | |||
65 | /* UART0 Controller (0xFFC00400 - 0xFFC004FF) */ | ||
66 | #define UART0_THR 0xFFC00400 /* Transmit Holding register */ | ||
67 | #define UART0_RBR 0xFFC00400 /* Receive Buffer register */ | ||
68 | #define UART0_DLL 0xFFC00400 /* Divisor Latch (Low-Byte) */ | ||
69 | #define UART0_IER 0xFFC00404 /* Interrupt Enable Register */ | ||
70 | #define UART0_DLH 0xFFC00404 /* Divisor Latch (High-Byte) */ | ||
71 | #define UART0_IIR 0xFFC00408 /* Interrupt Identification Register */ | ||
72 | #define UART0_LCR 0xFFC0040C /* Line Control Register */ | ||
73 | #define UART0_MCR 0xFFC00410 /* Modem Control Register */ | ||
74 | #define UART0_LSR 0xFFC00414 /* Line Status Register */ | ||
75 | #define UART0_MSR 0xFFC00418 /* Modem Status Register */ | ||
76 | #define UART0_SCR 0xFFC0041C /* SCR Scratch Register */ | ||
77 | #define UART0_GCTL 0xFFC00424 /* Global Control Register */ | ||
78 | |||
79 | |||
80 | /* SPI Controller (0xFFC00500 - 0xFFC005FF) */ | ||
81 | #define SPI0_REGBASE 0xFFC00500 | ||
82 | #define SPI_CTL 0xFFC00500 /* SPI Control Register */ | ||
83 | #define SPI_FLG 0xFFC00504 /* SPI Flag register */ | ||
84 | #define SPI_STAT 0xFFC00508 /* SPI Status register */ | ||
85 | #define SPI_TDBR 0xFFC0050C /* SPI Transmit Data Buffer Register */ | ||
86 | #define SPI_RDBR 0xFFC00510 /* SPI Receive Data Buffer Register */ | ||
87 | #define SPI_BAUD 0xFFC00514 /* SPI Baud rate Register */ | ||
88 | #define SPI_SHADOW 0xFFC00518 /* SPI_RDBR Shadow Register */ | ||
89 | |||
90 | |||
91 | /* TIMER0-7 Registers (0xFFC00600 - 0xFFC006FF) */ | ||
92 | #define TIMER0_CONFIG 0xFFC00600 /* Timer 0 Configuration Register */ | ||
93 | #define TIMER0_COUNTER 0xFFC00604 /* Timer 0 Counter Register */ | ||
94 | #define TIMER0_PERIOD 0xFFC00608 /* Timer 0 Period Register */ | ||
95 | #define TIMER0_WIDTH 0xFFC0060C /* Timer 0 Width Register */ | ||
96 | |||
97 | #define TIMER1_CONFIG 0xFFC00610 /* Timer 1 Configuration Register */ | ||
98 | #define TIMER1_COUNTER 0xFFC00614 /* Timer 1 Counter Register */ | ||
99 | #define TIMER1_PERIOD 0xFFC00618 /* Timer 1 Period Register */ | ||
100 | #define TIMER1_WIDTH 0xFFC0061C /* Timer 1 Width Register */ | ||
101 | |||
102 | #define TIMER2_CONFIG 0xFFC00620 /* Timer 2 Configuration Register */ | ||
103 | #define TIMER2_COUNTER 0xFFC00624 /* Timer 2 Counter Register */ | ||
104 | #define TIMER2_PERIOD 0xFFC00628 /* Timer 2 Period Register */ | ||
105 | #define TIMER2_WIDTH 0xFFC0062C /* Timer 2 Width Register */ | ||
106 | |||
107 | #define TIMER3_CONFIG 0xFFC00630 /* Timer 3 Configuration Register */ | ||
108 | #define TIMER3_COUNTER 0xFFC00634 /* Timer 3 Counter Register */ | ||
109 | #define TIMER3_PERIOD 0xFFC00638 /* Timer 3 Period Register */ | ||
110 | #define TIMER3_WIDTH 0xFFC0063C /* Timer 3 Width Register */ | ||
111 | |||
112 | #define TIMER4_CONFIG 0xFFC00640 /* Timer 4 Configuration Register */ | ||
113 | #define TIMER4_COUNTER 0xFFC00644 /* Timer 4 Counter Register */ | ||
114 | #define TIMER4_PERIOD 0xFFC00648 /* Timer 4 Period Register */ | ||
115 | #define TIMER4_WIDTH 0xFFC0064C /* Timer 4 Width Register */ | ||
116 | |||
117 | #define TIMER5_CONFIG 0xFFC00650 /* Timer 5 Configuration Register */ | ||
118 | #define TIMER5_COUNTER 0xFFC00654 /* Timer 5 Counter Register */ | ||
119 | #define TIMER5_PERIOD 0xFFC00658 /* Timer 5 Period Register */ | ||
120 | #define TIMER5_WIDTH 0xFFC0065C /* Timer 5 Width Register */ | ||
121 | |||
122 | #define TIMER6_CONFIG 0xFFC00660 /* Timer 6 Configuration Register */ | ||
123 | #define TIMER6_COUNTER 0xFFC00664 /* Timer 6 Counter Register */ | ||
124 | #define TIMER6_PERIOD 0xFFC00668 /* Timer 6 Period Register */ | ||
125 | #define TIMER6_WIDTH 0xFFC0066C /* Timer 6 Width Register */ | ||
126 | |||
127 | #define TIMER7_CONFIG 0xFFC00670 /* Timer 7 Configuration Register */ | ||
128 | #define TIMER7_COUNTER 0xFFC00674 /* Timer 7 Counter Register */ | ||
129 | #define TIMER7_PERIOD 0xFFC00678 /* Timer 7 Period Register */ | ||
130 | #define TIMER7_WIDTH 0xFFC0067C /* Timer 7 Width Register */ | ||
131 | |||
132 | #define TIMER_ENABLE 0xFFC00680 /* Timer Enable Register */ | ||
133 | #define TIMER_DISABLE 0xFFC00684 /* Timer Disable Register */ | ||
134 | #define TIMER_STATUS 0xFFC00688 /* Timer Status Register */ | ||
135 | |||
136 | |||
137 | /* General Purpose I/O Port F (0xFFC00700 - 0xFFC007FF) */ | ||
138 | #define PORTFIO 0xFFC00700 /* Port F I/O Pin State Specify Register */ | ||
139 | #define PORTFIO_CLEAR 0xFFC00704 /* Port F I/O Peripheral Interrupt Clear Register */ | ||
140 | #define PORTFIO_SET 0xFFC00708 /* Port F I/O Peripheral Interrupt Set Register */ | ||
141 | #define PORTFIO_TOGGLE 0xFFC0070C /* Port F I/O Pin State Toggle Register */ | ||
142 | #define PORTFIO_MASKA 0xFFC00710 /* Port F I/O Mask State Specify Interrupt A Register */ | ||
143 | #define PORTFIO_MASKA_CLEAR 0xFFC00714 /* Port F I/O Mask Disable Interrupt A Register */ | ||
144 | #define PORTFIO_MASKA_SET 0xFFC00718 /* Port F I/O Mask Enable Interrupt A Register */ | ||
145 | #define PORTFIO_MASKA_TOGGLE 0xFFC0071C /* Port F I/O Mask Toggle Enable Interrupt A Register */ | ||
146 | #define PORTFIO_MASKB 0xFFC00720 /* Port F I/O Mask State Specify Interrupt B Register */ | ||
147 | #define PORTFIO_MASKB_CLEAR 0xFFC00724 /* Port F I/O Mask Disable Interrupt B Register */ | ||
148 | #define PORTFIO_MASKB_SET 0xFFC00728 /* Port F I/O Mask Enable Interrupt B Register */ | ||
149 | #define PORTFIO_MASKB_TOGGLE 0xFFC0072C /* Port F I/O Mask Toggle Enable Interrupt B Register */ | ||
150 | #define PORTFIO_DIR 0xFFC00730 /* Port F I/O Direction Register */ | ||
151 | #define PORTFIO_POLAR 0xFFC00734 /* Port F I/O Source Polarity Register */ | ||
152 | #define PORTFIO_EDGE 0xFFC00738 /* Port F I/O Source Sensitivity Register */ | ||
153 | #define PORTFIO_BOTH 0xFFC0073C /* Port F I/O Set on BOTH Edges Register */ | ||
154 | #define PORTFIO_INEN 0xFFC00740 /* Port F I/O Input Enable Register */ | ||
155 | |||
156 | |||
157 | /* SPORT0 Controller (0xFFC00800 - 0xFFC008FF) */ | ||
158 | #define SPORT0_TCR1 0xFFC00800 /* SPORT0 Transmit Configuration 1 Register */ | ||
159 | #define SPORT0_TCR2 0xFFC00804 /* SPORT0 Transmit Configuration 2 Register */ | ||
160 | #define SPORT0_TCLKDIV 0xFFC00808 /* SPORT0 Transmit Clock Divider */ | ||
161 | #define SPORT0_TFSDIV 0xFFC0080C /* SPORT0 Transmit Frame Sync Divider */ | ||
162 | #define SPORT0_TX 0xFFC00810 /* SPORT0 TX Data Register */ | ||
163 | #define SPORT0_RX 0xFFC00818 /* SPORT0 RX Data Register */ | ||
164 | #define SPORT0_RCR1 0xFFC00820 /* SPORT0 Transmit Configuration 1 Register */ | ||
165 | #define SPORT0_RCR2 0xFFC00824 /* SPORT0 Transmit Configuration 2 Register */ | ||
166 | #define SPORT0_RCLKDIV 0xFFC00828 /* SPORT0 Receive Clock Divider */ | ||
167 | #define SPORT0_RFSDIV 0xFFC0082C /* SPORT0 Receive Frame Sync Divider */ | ||
168 | #define SPORT0_STAT 0xFFC00830 /* SPORT0 Status Register */ | ||
169 | #define SPORT0_CHNL 0xFFC00834 /* SPORT0 Current Channel Register */ | ||
170 | #define SPORT0_MCMC1 0xFFC00838 /* SPORT0 Multi-Channel Configuration Register 1 */ | ||
171 | #define SPORT0_MCMC2 0xFFC0083C /* SPORT0 Multi-Channel Configuration Register 2 */ | ||
172 | #define SPORT0_MTCS0 0xFFC00840 /* SPORT0 Multi-Channel Transmit Select Register 0 */ | ||
173 | #define SPORT0_MTCS1 0xFFC00844 /* SPORT0 Multi-Channel Transmit Select Register 1 */ | ||
174 | #define SPORT0_MTCS2 0xFFC00848 /* SPORT0 Multi-Channel Transmit Select Register 2 */ | ||
175 | #define SPORT0_MTCS3 0xFFC0084C /* SPORT0 Multi-Channel Transmit Select Register 3 */ | ||
176 | #define SPORT0_MRCS0 0xFFC00850 /* SPORT0 Multi-Channel Receive Select Register 0 */ | ||
177 | #define SPORT0_MRCS1 0xFFC00854 /* SPORT0 Multi-Channel Receive Select Register 1 */ | ||
178 | #define SPORT0_MRCS2 0xFFC00858 /* SPORT0 Multi-Channel Receive Select Register 2 */ | ||
179 | #define SPORT0_MRCS3 0xFFC0085C /* SPORT0 Multi-Channel Receive Select Register 3 */ | ||
180 | |||
181 | |||
182 | /* SPORT1 Controller (0xFFC00900 - 0xFFC009FF) */ | ||
183 | #define SPORT1_TCR1 0xFFC00900 /* SPORT1 Transmit Configuration 1 Register */ | ||
184 | #define SPORT1_TCR2 0xFFC00904 /* SPORT1 Transmit Configuration 2 Register */ | ||
185 | #define SPORT1_TCLKDIV 0xFFC00908 /* SPORT1 Transmit Clock Divider */ | ||
186 | #define SPORT1_TFSDIV 0xFFC0090C /* SPORT1 Transmit Frame Sync Divider */ | ||
187 | #define SPORT1_TX 0xFFC00910 /* SPORT1 TX Data Register */ | ||
188 | #define SPORT1_RX 0xFFC00918 /* SPORT1 RX Data Register */ | ||
189 | #define SPORT1_RCR1 0xFFC00920 /* SPORT1 Transmit Configuration 1 Register */ | ||
190 | #define SPORT1_RCR2 0xFFC00924 /* SPORT1 Transmit Configuration 2 Register */ | ||
191 | #define SPORT1_RCLKDIV 0xFFC00928 /* SPORT1 Receive Clock Divider */ | ||
192 | #define SPORT1_RFSDIV 0xFFC0092C /* SPORT1 Receive Frame Sync Divider */ | ||
193 | #define SPORT1_STAT 0xFFC00930 /* SPORT1 Status Register */ | ||
194 | #define SPORT1_CHNL 0xFFC00934 /* SPORT1 Current Channel Register */ | ||
195 | #define SPORT1_MCMC1 0xFFC00938 /* SPORT1 Multi-Channel Configuration Register 1 */ | ||
196 | #define SPORT1_MCMC2 0xFFC0093C /* SPORT1 Multi-Channel Configuration Register 2 */ | ||
197 | #define SPORT1_MTCS0 0xFFC00940 /* SPORT1 Multi-Channel Transmit Select Register 0 */ | ||
198 | #define SPORT1_MTCS1 0xFFC00944 /* SPORT1 Multi-Channel Transmit Select Register 1 */ | ||
199 | #define SPORT1_MTCS2 0xFFC00948 /* SPORT1 Multi-Channel Transmit Select Register 2 */ | ||
200 | #define SPORT1_MTCS3 0xFFC0094C /* SPORT1 Multi-Channel Transmit Select Register 3 */ | ||
201 | #define SPORT1_MRCS0 0xFFC00950 /* SPORT1 Multi-Channel Receive Select Register 0 */ | ||
202 | #define SPORT1_MRCS1 0xFFC00954 /* SPORT1 Multi-Channel Receive Select Register 1 */ | ||
203 | #define SPORT1_MRCS2 0xFFC00958 /* SPORT1 Multi-Channel Receive Select Register 2 */ | ||
204 | #define SPORT1_MRCS3 0xFFC0095C /* SPORT1 Multi-Channel Receive Select Register 3 */ | ||
205 | |||
206 | |||
207 | /* External Bus Interface Unit (0xFFC00A00 - 0xFFC00AFF) */ | ||
208 | #define EBIU_AMGCTL 0xFFC00A00 /* Asynchronous Memory Global Control Register */ | ||
209 | #define EBIU_AMBCTL0 0xFFC00A04 /* Asynchronous Memory Bank Control Register 0 */ | ||
210 | #define EBIU_AMBCTL1 0xFFC00A08 /* Asynchronous Memory Bank Control Register 1 */ | ||
211 | #define EBIU_SDGCTL 0xFFC00A10 /* SDRAM Global Control Register */ | ||
212 | #define EBIU_SDBCTL 0xFFC00A14 /* SDRAM Bank Control Register */ | ||
213 | #define EBIU_SDRRC 0xFFC00A18 /* SDRAM Refresh Rate Control Register */ | ||
214 | #define EBIU_SDSTAT 0xFFC00A1C /* SDRAM Status Register */ | ||
215 | |||
216 | |||
217 | /* DMA Traffic Control Registers */ | ||
218 | #define DMAC_TC_PER 0xFFC00B0C /* Traffic Control Periods Register */ | ||
219 | #define DMAC_TC_CNT 0xFFC00B10 /* Traffic Control Current Counts Register */ | ||
220 | |||
221 | /* DMA Controller (0xFFC00C00 - 0xFFC00FFF) */ | ||
222 | #define DMA0_NEXT_DESC_PTR 0xFFC00C00 /* DMA Channel 0 Next Descriptor Pointer Register */ | ||
223 | #define DMA0_START_ADDR 0xFFC00C04 /* DMA Channel 0 Start Address Register */ | ||
224 | #define DMA0_CONFIG 0xFFC00C08 /* DMA Channel 0 Configuration Register */ | ||
225 | #define DMA0_X_COUNT 0xFFC00C10 /* DMA Channel 0 X Count Register */ | ||
226 | #define DMA0_X_MODIFY 0xFFC00C14 /* DMA Channel 0 X Modify Register */ | ||
227 | #define DMA0_Y_COUNT 0xFFC00C18 /* DMA Channel 0 Y Count Register */ | ||
228 | #define DMA0_Y_MODIFY 0xFFC00C1C /* DMA Channel 0 Y Modify Register */ | ||
229 | #define DMA0_CURR_DESC_PTR 0xFFC00C20 /* DMA Channel 0 Current Descriptor Pointer Register */ | ||
230 | #define DMA0_CURR_ADDR 0xFFC00C24 /* DMA Channel 0 Current Address Register */ | ||
231 | #define DMA0_IRQ_STATUS 0xFFC00C28 /* DMA Channel 0 Interrupt/Status Register */ | ||
232 | #define DMA0_PERIPHERAL_MAP 0xFFC00C2C /* DMA Channel 0 Peripheral Map Register */ | ||
233 | #define DMA0_CURR_X_COUNT 0xFFC00C30 /* DMA Channel 0 Current X Count Register */ | ||
234 | #define DMA0_CURR_Y_COUNT 0xFFC00C38 /* DMA Channel 0 Current Y Count Register */ | ||
235 | |||
236 | #define DMA1_NEXT_DESC_PTR 0xFFC00C40 /* DMA Channel 1 Next Descriptor Pointer Register */ | ||
237 | #define DMA1_START_ADDR 0xFFC00C44 /* DMA Channel 1 Start Address Register */ | ||
238 | #define DMA1_CONFIG 0xFFC00C48 /* DMA Channel 1 Configuration Register */ | ||
239 | #define DMA1_X_COUNT 0xFFC00C50 /* DMA Channel 1 X Count Register */ | ||
240 | #define DMA1_X_MODIFY 0xFFC00C54 /* DMA Channel 1 X Modify Register */ | ||
241 | #define DMA1_Y_COUNT 0xFFC00C58 /* DMA Channel 1 Y Count Register */ | ||
242 | #define DMA1_Y_MODIFY 0xFFC00C5C /* DMA Channel 1 Y Modify Register */ | ||
243 | #define DMA1_CURR_DESC_PTR 0xFFC00C60 /* DMA Channel 1 Current Descriptor Pointer Register */ | ||
244 | #define DMA1_CURR_ADDR 0xFFC00C64 /* DMA Channel 1 Current Address Register */ | ||
245 | #define DMA1_IRQ_STATUS 0xFFC00C68 /* DMA Channel 1 Interrupt/Status Register */ | ||
246 | #define DMA1_PERIPHERAL_MAP 0xFFC00C6C /* DMA Channel 1 Peripheral Map Register */ | ||
247 | #define DMA1_CURR_X_COUNT 0xFFC00C70 /* DMA Channel 1 Current X Count Register */ | ||
248 | #define DMA1_CURR_Y_COUNT 0xFFC00C78 /* DMA Channel 1 Current Y Count Register */ | ||
249 | |||
250 | #define DMA2_NEXT_DESC_PTR 0xFFC00C80 /* DMA Channel 2 Next Descriptor Pointer Register */ | ||
251 | #define DMA2_START_ADDR 0xFFC00C84 /* DMA Channel 2 Start Address Register */ | ||
252 | #define DMA2_CONFIG 0xFFC00C88 /* DMA Channel 2 Configuration Register */ | ||
253 | #define DMA2_X_COUNT 0xFFC00C90 /* DMA Channel 2 X Count Register */ | ||
254 | #define DMA2_X_MODIFY 0xFFC00C94 /* DMA Channel 2 X Modify Register */ | ||
255 | #define DMA2_Y_COUNT 0xFFC00C98 /* DMA Channel 2 Y Count Register */ | ||
256 | #define DMA2_Y_MODIFY 0xFFC00C9C /* DMA Channel 2 Y Modify Register */ | ||
257 | #define DMA2_CURR_DESC_PTR 0xFFC00CA0 /* DMA Channel 2 Current Descriptor Pointer Register */ | ||
258 | #define DMA2_CURR_ADDR 0xFFC00CA4 /* DMA Channel 2 Current Address Register */ | ||
259 | #define DMA2_IRQ_STATUS 0xFFC00CA8 /* DMA Channel 2 Interrupt/Status Register */ | ||
260 | #define DMA2_PERIPHERAL_MAP 0xFFC00CAC /* DMA Channel 2 Peripheral Map Register */ | ||
261 | #define DMA2_CURR_X_COUNT 0xFFC00CB0 /* DMA Channel 2 Current X Count Register */ | ||
262 | #define DMA2_CURR_Y_COUNT 0xFFC00CB8 /* DMA Channel 2 Current Y Count Register */ | ||
263 | |||
264 | #define DMA3_NEXT_DESC_PTR 0xFFC00CC0 /* DMA Channel 3 Next Descriptor Pointer Register */ | ||
265 | #define DMA3_START_ADDR 0xFFC00CC4 /* DMA Channel 3 Start Address Register */ | ||
266 | #define DMA3_CONFIG 0xFFC00CC8 /* DMA Channel 3 Configuration Register */ | ||
267 | #define DMA3_X_COUNT 0xFFC00CD0 /* DMA Channel 3 X Count Register */ | ||
268 | #define DMA3_X_MODIFY 0xFFC00CD4 /* DMA Channel 3 X Modify Register */ | ||
269 | #define DMA3_Y_COUNT 0xFFC00CD8 /* DMA Channel 3 Y Count Register */ | ||
270 | #define DMA3_Y_MODIFY 0xFFC00CDC /* DMA Channel 3 Y Modify Register */ | ||
271 | #define DMA3_CURR_DESC_PTR 0xFFC00CE0 /* DMA Channel 3 Current Descriptor Pointer Register */ | ||
272 | #define DMA3_CURR_ADDR 0xFFC00CE4 /* DMA Channel 3 Current Address Register */ | ||
273 | #define DMA3_IRQ_STATUS 0xFFC00CE8 /* DMA Channel 3 Interrupt/Status Register */ | ||
274 | #define DMA3_PERIPHERAL_MAP 0xFFC00CEC /* DMA Channel 3 Peripheral Map Register */ | ||
275 | #define DMA3_CURR_X_COUNT 0xFFC00CF0 /* DMA Channel 3 Current X Count Register */ | ||
276 | #define DMA3_CURR_Y_COUNT 0xFFC00CF8 /* DMA Channel 3 Current Y Count Register */ | ||
277 | |||
278 | #define DMA4_NEXT_DESC_PTR 0xFFC00D00 /* DMA Channel 4 Next Descriptor Pointer Register */ | ||
279 | #define DMA4_START_ADDR 0xFFC00D04 /* DMA Channel 4 Start Address Register */ | ||
280 | #define DMA4_CONFIG 0xFFC00D08 /* DMA Channel 4 Configuration Register */ | ||
281 | #define DMA4_X_COUNT 0xFFC00D10 /* DMA Channel 4 X Count Register */ | ||
282 | #define DMA4_X_MODIFY 0xFFC00D14 /* DMA Channel 4 X Modify Register */ | ||
283 | #define DMA4_Y_COUNT 0xFFC00D18 /* DMA Channel 4 Y Count Register */ | ||
284 | #define DMA4_Y_MODIFY 0xFFC00D1C /* DMA Channel 4 Y Modify Register */ | ||
285 | #define DMA4_CURR_DESC_PTR 0xFFC00D20 /* DMA Channel 4 Current Descriptor Pointer Register */ | ||
286 | #define DMA4_CURR_ADDR 0xFFC00D24 /* DMA Channel 4 Current Address Register */ | ||
287 | #define DMA4_IRQ_STATUS 0xFFC00D28 /* DMA Channel 4 Interrupt/Status Register */ | ||
288 | #define DMA4_PERIPHERAL_MAP 0xFFC00D2C /* DMA Channel 4 Peripheral Map Register */ | ||
289 | #define DMA4_CURR_X_COUNT 0xFFC00D30 /* DMA Channel 4 Current X Count Register */ | ||
290 | #define DMA4_CURR_Y_COUNT 0xFFC00D38 /* DMA Channel 4 Current Y Count Register */ | ||
291 | |||
292 | #define DMA5_NEXT_DESC_PTR 0xFFC00D40 /* DMA Channel 5 Next Descriptor Pointer Register */ | ||
293 | #define DMA5_START_ADDR 0xFFC00D44 /* DMA Channel 5 Start Address Register */ | ||
294 | #define DMA5_CONFIG 0xFFC00D48 /* DMA Channel 5 Configuration Register */ | ||
295 | #define DMA5_X_COUNT 0xFFC00D50 /* DMA Channel 5 X Count Register */ | ||
296 | #define DMA5_X_MODIFY 0xFFC00D54 /* DMA Channel 5 X Modify Register */ | ||
297 | #define DMA5_Y_COUNT 0xFFC00D58 /* DMA Channel 5 Y Count Register */ | ||
298 | #define DMA5_Y_MODIFY 0xFFC00D5C /* DMA Channel 5 Y Modify Register */ | ||
299 | #define DMA5_CURR_DESC_PTR 0xFFC00D60 /* DMA Channel 5 Current Descriptor Pointer Register */ | ||
300 | #define DMA5_CURR_ADDR 0xFFC00D64 /* DMA Channel 5 Current Address Register */ | ||
301 | #define DMA5_IRQ_STATUS 0xFFC00D68 /* DMA Channel 5 Interrupt/Status Register */ | ||
302 | #define DMA5_PERIPHERAL_MAP 0xFFC00D6C /* DMA Channel 5 Peripheral Map Register */ | ||
303 | #define DMA5_CURR_X_COUNT 0xFFC00D70 /* DMA Channel 5 Current X Count Register */ | ||
304 | #define DMA5_CURR_Y_COUNT 0xFFC00D78 /* DMA Channel 5 Current Y Count Register */ | ||
305 | |||
306 | #define DMA6_NEXT_DESC_PTR 0xFFC00D80 /* DMA Channel 6 Next Descriptor Pointer Register */ | ||
307 | #define DMA6_START_ADDR 0xFFC00D84 /* DMA Channel 6 Start Address Register */ | ||
308 | #define DMA6_CONFIG 0xFFC00D88 /* DMA Channel 6 Configuration Register */ | ||
309 | #define DMA6_X_COUNT 0xFFC00D90 /* DMA Channel 6 X Count Register */ | ||
310 | #define DMA6_X_MODIFY 0xFFC00D94 /* DMA Channel 6 X Modify Register */ | ||
311 | #define DMA6_Y_COUNT 0xFFC00D98 /* DMA Channel 6 Y Count Register */ | ||
312 | #define DMA6_Y_MODIFY 0xFFC00D9C /* DMA Channel 6 Y Modify Register */ | ||
313 | #define DMA6_CURR_DESC_PTR 0xFFC00DA0 /* DMA Channel 6 Current Descriptor Pointer Register */ | ||
314 | #define DMA6_CURR_ADDR 0xFFC00DA4 /* DMA Channel 6 Current Address Register */ | ||
315 | #define DMA6_IRQ_STATUS 0xFFC00DA8 /* DMA Channel 6 Interrupt/Status Register */ | ||
316 | #define DMA6_PERIPHERAL_MAP 0xFFC00DAC /* DMA Channel 6 Peripheral Map Register */ | ||
317 | #define DMA6_CURR_X_COUNT 0xFFC00DB0 /* DMA Channel 6 Current X Count Register */ | ||
318 | #define DMA6_CURR_Y_COUNT 0xFFC00DB8 /* DMA Channel 6 Current Y Count Register */ | ||
319 | |||
320 | #define DMA7_NEXT_DESC_PTR 0xFFC00DC0 /* DMA Channel 7 Next Descriptor Pointer Register */ | ||
321 | #define DMA7_START_ADDR 0xFFC00DC4 /* DMA Channel 7 Start Address Register */ | ||
322 | #define DMA7_CONFIG 0xFFC00DC8 /* DMA Channel 7 Configuration Register */ | ||
323 | #define DMA7_X_COUNT 0xFFC00DD0 /* DMA Channel 7 X Count Register */ | ||
324 | #define DMA7_X_MODIFY 0xFFC00DD4 /* DMA Channel 7 X Modify Register */ | ||
325 | #define DMA7_Y_COUNT 0xFFC00DD8 /* DMA Channel 7 Y Count Register */ | ||
326 | #define DMA7_Y_MODIFY 0xFFC00DDC /* DMA Channel 7 Y Modify Register */ | ||
327 | #define DMA7_CURR_DESC_PTR 0xFFC00DE0 /* DMA Channel 7 Current Descriptor Pointer Register */ | ||
328 | #define DMA7_CURR_ADDR 0xFFC00DE4 /* DMA Channel 7 Current Address Register */ | ||
329 | #define DMA7_IRQ_STATUS 0xFFC00DE8 /* DMA Channel 7 Interrupt/Status Register */ | ||
330 | #define DMA7_PERIPHERAL_MAP 0xFFC00DEC /* DMA Channel 7 Peripheral Map Register */ | ||
331 | #define DMA7_CURR_X_COUNT 0xFFC00DF0 /* DMA Channel 7 Current X Count Register */ | ||
332 | #define DMA7_CURR_Y_COUNT 0xFFC00DF8 /* DMA Channel 7 Current Y Count Register */ | ||
333 | |||
334 | #define DMA8_NEXT_DESC_PTR 0xFFC00E00 /* DMA Channel 8 Next Descriptor Pointer Register */ | ||
335 | #define DMA8_START_ADDR 0xFFC00E04 /* DMA Channel 8 Start Address Register */ | ||
336 | #define DMA8_CONFIG 0xFFC00E08 /* DMA Channel 8 Configuration Register */ | ||
337 | #define DMA8_X_COUNT 0xFFC00E10 /* DMA Channel 8 X Count Register */ | ||
338 | #define DMA8_X_MODIFY 0xFFC00E14 /* DMA Channel 8 X Modify Register */ | ||
339 | #define DMA8_Y_COUNT 0xFFC00E18 /* DMA Channel 8 Y Count Register */ | ||
340 | #define DMA8_Y_MODIFY 0xFFC00E1C /* DMA Channel 8 Y Modify Register */ | ||
341 | #define DMA8_CURR_DESC_PTR 0xFFC00E20 /* DMA Channel 8 Current Descriptor Pointer Register */ | ||
342 | #define DMA8_CURR_ADDR 0xFFC00E24 /* DMA Channel 8 Current Address Register */ | ||
343 | #define DMA8_IRQ_STATUS 0xFFC00E28 /* DMA Channel 8 Interrupt/Status Register */ | ||
344 | #define DMA8_PERIPHERAL_MAP 0xFFC00E2C /* DMA Channel 8 Peripheral Map Register */ | ||
345 | #define DMA8_CURR_X_COUNT 0xFFC00E30 /* DMA Channel 8 Current X Count Register */ | ||
346 | #define DMA8_CURR_Y_COUNT 0xFFC00E38 /* DMA Channel 8 Current Y Count Register */ | ||
347 | |||
348 | #define DMA9_NEXT_DESC_PTR 0xFFC00E40 /* DMA Channel 9 Next Descriptor Pointer Register */ | ||
349 | #define DMA9_START_ADDR 0xFFC00E44 /* DMA Channel 9 Start Address Register */ | ||
350 | #define DMA9_CONFIG 0xFFC00E48 /* DMA Channel 9 Configuration Register */ | ||
351 | #define DMA9_X_COUNT 0xFFC00E50 /* DMA Channel 9 X Count Register */ | ||
352 | #define DMA9_X_MODIFY 0xFFC00E54 /* DMA Channel 9 X Modify Register */ | ||
353 | #define DMA9_Y_COUNT 0xFFC00E58 /* DMA Channel 9 Y Count Register */ | ||
354 | #define DMA9_Y_MODIFY 0xFFC00E5C /* DMA Channel 9 Y Modify Register */ | ||
355 | #define DMA9_CURR_DESC_PTR 0xFFC00E60 /* DMA Channel 9 Current Descriptor Pointer Register */ | ||
356 | #define DMA9_CURR_ADDR 0xFFC00E64 /* DMA Channel 9 Current Address Register */ | ||
357 | #define DMA9_IRQ_STATUS 0xFFC00E68 /* DMA Channel 9 Interrupt/Status Register */ | ||
358 | #define DMA9_PERIPHERAL_MAP 0xFFC00E6C /* DMA Channel 9 Peripheral Map Register */ | ||
359 | #define DMA9_CURR_X_COUNT 0xFFC00E70 /* DMA Channel 9 Current X Count Register */ | ||
360 | #define DMA9_CURR_Y_COUNT 0xFFC00E78 /* DMA Channel 9 Current Y Count Register */ | ||
361 | |||
362 | #define DMA10_NEXT_DESC_PTR 0xFFC00E80 /* DMA Channel 10 Next Descriptor Pointer Register */ | ||
363 | #define DMA10_START_ADDR 0xFFC00E84 /* DMA Channel 10 Start Address Register */ | ||
364 | #define DMA10_CONFIG 0xFFC00E88 /* DMA Channel 10 Configuration Register */ | ||
365 | #define DMA10_X_COUNT 0xFFC00E90 /* DMA Channel 10 X Count Register */ | ||
366 | #define DMA10_X_MODIFY 0xFFC00E94 /* DMA Channel 10 X Modify Register */ | ||
367 | #define DMA10_Y_COUNT 0xFFC00E98 /* DMA Channel 10 Y Count Register */ | ||
368 | #define DMA10_Y_MODIFY 0xFFC00E9C /* DMA Channel 10 Y Modify Register */ | ||
369 | #define DMA10_CURR_DESC_PTR 0xFFC00EA0 /* DMA Channel 10 Current Descriptor Pointer Register */ | ||
370 | #define DMA10_CURR_ADDR 0xFFC00EA4 /* DMA Channel 10 Current Address Register */ | ||
371 | #define DMA10_IRQ_STATUS 0xFFC00EA8 /* DMA Channel 10 Interrupt/Status Register */ | ||
372 | #define DMA10_PERIPHERAL_MAP 0xFFC00EAC /* DMA Channel 10 Peripheral Map Register */ | ||
373 | #define DMA10_CURR_X_COUNT 0xFFC00EB0 /* DMA Channel 10 Current X Count Register */ | ||
374 | #define DMA10_CURR_Y_COUNT 0xFFC00EB8 /* DMA Channel 10 Current Y Count Register */ | ||
375 | |||
376 | #define DMA11_NEXT_DESC_PTR 0xFFC00EC0 /* DMA Channel 11 Next Descriptor Pointer Register */ | ||
377 | #define DMA11_START_ADDR 0xFFC00EC4 /* DMA Channel 11 Start Address Register */ | ||
378 | #define DMA11_CONFIG 0xFFC00EC8 /* DMA Channel 11 Configuration Register */ | ||
379 | #define DMA11_X_COUNT 0xFFC00ED0 /* DMA Channel 11 X Count Register */ | ||
380 | #define DMA11_X_MODIFY 0xFFC00ED4 /* DMA Channel 11 X Modify Register */ | ||
381 | #define DMA11_Y_COUNT 0xFFC00ED8 /* DMA Channel 11 Y Count Register */ | ||
382 | #define DMA11_Y_MODIFY 0xFFC00EDC /* DMA Channel 11 Y Modify Register */ | ||
383 | #define DMA11_CURR_DESC_PTR 0xFFC00EE0 /* DMA Channel 11 Current Descriptor Pointer Register */ | ||
384 | #define DMA11_CURR_ADDR 0xFFC00EE4 /* DMA Channel 11 Current Address Register */ | ||
385 | #define DMA11_IRQ_STATUS 0xFFC00EE8 /* DMA Channel 11 Interrupt/Status Register */ | ||
386 | #define DMA11_PERIPHERAL_MAP 0xFFC00EEC /* DMA Channel 11 Peripheral Map Register */ | ||
387 | #define DMA11_CURR_X_COUNT 0xFFC00EF0 /* DMA Channel 11 Current X Count Register */ | ||
388 | #define DMA11_CURR_Y_COUNT 0xFFC00EF8 /* DMA Channel 11 Current Y Count Register */ | ||
389 | |||
390 | #define MDMA_D0_NEXT_DESC_PTR 0xFFC00F00 /* MemDMA Stream 0 Destination Next Descriptor Pointer Register */ | ||
391 | #define MDMA_D0_START_ADDR 0xFFC00F04 /* MemDMA Stream 0 Destination Start Address Register */ | ||
392 | #define MDMA_D0_CONFIG 0xFFC00F08 /* MemDMA Stream 0 Destination Configuration Register */ | ||
393 | #define MDMA_D0_X_COUNT 0xFFC00F10 /* MemDMA Stream 0 Destination X Count Register */ | ||
394 | #define MDMA_D0_X_MODIFY 0xFFC00F14 /* MemDMA Stream 0 Destination X Modify Register */ | ||
395 | #define MDMA_D0_Y_COUNT 0xFFC00F18 /* MemDMA Stream 0 Destination Y Count Register */ | ||
396 | #define MDMA_D0_Y_MODIFY 0xFFC00F1C /* MemDMA Stream 0 Destination Y Modify Register */ | ||
397 | #define MDMA_D0_CURR_DESC_PTR 0xFFC00F20 /* MemDMA Stream 0 Destination Current Descriptor Pointer Register */ | ||
398 | #define MDMA_D0_CURR_ADDR 0xFFC00F24 /* MemDMA Stream 0 Destination Current Address Register */ | ||
399 | #define MDMA_D0_IRQ_STATUS 0xFFC00F28 /* MemDMA Stream 0 Destination Interrupt/Status Register */ | ||
400 | #define MDMA_D0_PERIPHERAL_MAP 0xFFC00F2C /* MemDMA Stream 0 Destination Peripheral Map Register */ | ||
401 | #define MDMA_D0_CURR_X_COUNT 0xFFC00F30 /* MemDMA Stream 0 Destination Current X Count Register */ | ||
402 | #define MDMA_D0_CURR_Y_COUNT 0xFFC00F38 /* MemDMA Stream 0 Destination Current Y Count Register */ | ||
403 | |||
404 | #define MDMA_S0_NEXT_DESC_PTR 0xFFC00F40 /* MemDMA Stream 0 Source Next Descriptor Pointer Register */ | ||
405 | #define MDMA_S0_START_ADDR 0xFFC00F44 /* MemDMA Stream 0 Source Start Address Register */ | ||
406 | #define MDMA_S0_CONFIG 0xFFC00F48 /* MemDMA Stream 0 Source Configuration Register */ | ||
407 | #define MDMA_S0_X_COUNT 0xFFC00F50 /* MemDMA Stream 0 Source X Count Register */ | ||
408 | #define MDMA_S0_X_MODIFY 0xFFC00F54 /* MemDMA Stream 0 Source X Modify Register */ | ||
409 | #define MDMA_S0_Y_COUNT 0xFFC00F58 /* MemDMA Stream 0 Source Y Count Register */ | ||
410 | #define MDMA_S0_Y_MODIFY 0xFFC00F5C /* MemDMA Stream 0 Source Y Modify Register */ | ||
411 | #define MDMA_S0_CURR_DESC_PTR 0xFFC00F60 /* MemDMA Stream 0 Source Current Descriptor Pointer Register */ | ||
412 | #define MDMA_S0_CURR_ADDR 0xFFC00F64 /* MemDMA Stream 0 Source Current Address Register */ | ||
413 | #define MDMA_S0_IRQ_STATUS 0xFFC00F68 /* MemDMA Stream 0 Source Interrupt/Status Register */ | ||
414 | #define MDMA_S0_PERIPHERAL_MAP 0xFFC00F6C /* MemDMA Stream 0 Source Peripheral Map Register */ | ||
415 | #define MDMA_S0_CURR_X_COUNT 0xFFC00F70 /* MemDMA Stream 0 Source Current X Count Register */ | ||
416 | #define MDMA_S0_CURR_Y_COUNT 0xFFC00F78 /* MemDMA Stream 0 Source Current Y Count Register */ | ||
417 | |||
418 | #define MDMA_D1_NEXT_DESC_PTR 0xFFC00F80 /* MemDMA Stream 1 Destination Next Descriptor Pointer Register */ | ||
419 | #define MDMA_D1_START_ADDR 0xFFC00F84 /* MemDMA Stream 1 Destination Start Address Register */ | ||
420 | #define MDMA_D1_CONFIG 0xFFC00F88 /* MemDMA Stream 1 Destination Configuration Register */ | ||
421 | #define MDMA_D1_X_COUNT 0xFFC00F90 /* MemDMA Stream 1 Destination X Count Register */ | ||
422 | #define MDMA_D1_X_MODIFY 0xFFC00F94 /* MemDMA Stream 1 Destination X Modify Register */ | ||
423 | #define MDMA_D1_Y_COUNT 0xFFC00F98 /* MemDMA Stream 1 Destination Y Count Register */ | ||
424 | #define MDMA_D1_Y_MODIFY 0xFFC00F9C /* MemDMA Stream 1 Destination Y Modify Register */ | ||
425 | #define MDMA_D1_CURR_DESC_PTR 0xFFC00FA0 /* MemDMA Stream 1 Destination Current Descriptor Pointer Register */ | ||
426 | #define MDMA_D1_CURR_ADDR 0xFFC00FA4 /* MemDMA Stream 1 Destination Current Address Register */ | ||
427 | #define MDMA_D1_IRQ_STATUS 0xFFC00FA8 /* MemDMA Stream 1 Destination Interrupt/Status Register */ | ||
428 | #define MDMA_D1_PERIPHERAL_MAP 0xFFC00FAC /* MemDMA Stream 1 Destination Peripheral Map Register */ | ||
429 | #define MDMA_D1_CURR_X_COUNT 0xFFC00FB0 /* MemDMA Stream 1 Destination Current X Count Register */ | ||
430 | #define MDMA_D1_CURR_Y_COUNT 0xFFC00FB8 /* MemDMA Stream 1 Destination Current Y Count Register */ | ||
431 | |||
432 | #define MDMA_S1_NEXT_DESC_PTR 0xFFC00FC0 /* MemDMA Stream 1 Source Next Descriptor Pointer Register */ | ||
433 | #define MDMA_S1_START_ADDR 0xFFC00FC4 /* MemDMA Stream 1 Source Start Address Register */ | ||
434 | #define MDMA_S1_CONFIG 0xFFC00FC8 /* MemDMA Stream 1 Source Configuration Register */ | ||
435 | #define MDMA_S1_X_COUNT 0xFFC00FD0 /* MemDMA Stream 1 Source X Count Register */ | ||
436 | #define MDMA_S1_X_MODIFY 0xFFC00FD4 /* MemDMA Stream 1 Source X Modify Register */ | ||
437 | #define MDMA_S1_Y_COUNT 0xFFC00FD8 /* MemDMA Stream 1 Source Y Count Register */ | ||
438 | #define MDMA_S1_Y_MODIFY 0xFFC00FDC /* MemDMA Stream 1 Source Y Modify Register */ | ||
439 | #define MDMA_S1_CURR_DESC_PTR 0xFFC00FE0 /* MemDMA Stream 1 Source Current Descriptor Pointer Register */ | ||
440 | #define MDMA_S1_CURR_ADDR 0xFFC00FE4 /* MemDMA Stream 1 Source Current Address Register */ | ||
441 | #define MDMA_S1_IRQ_STATUS 0xFFC00FE8 /* MemDMA Stream 1 Source Interrupt/Status Register */ | ||
442 | #define MDMA_S1_PERIPHERAL_MAP 0xFFC00FEC /* MemDMA Stream 1 Source Peripheral Map Register */ | ||
443 | #define MDMA_S1_CURR_X_COUNT 0xFFC00FF0 /* MemDMA Stream 1 Source Current X Count Register */ | ||
444 | #define MDMA_S1_CURR_Y_COUNT 0xFFC00FF8 /* MemDMA Stream 1 Source Current Y Count Register */ | ||
445 | |||
446 | |||
447 | /* Parallel Peripheral Interface (0xFFC01000 - 0xFFC010FF) */ | ||
448 | #define PPI_CONTROL 0xFFC01000 /* PPI Control Register */ | ||
449 | #define PPI_STATUS 0xFFC01004 /* PPI Status Register */ | ||
450 | #define PPI_COUNT 0xFFC01008 /* PPI Transfer Count Register */ | ||
451 | #define PPI_DELAY 0xFFC0100C /* PPI Delay Count Register */ | ||
452 | #define PPI_FRAME 0xFFC01010 /* PPI Frame Length Register */ | ||
453 | |||
454 | |||
455 | /* Two-Wire Interface (0xFFC01400 - 0xFFC014FF) */ | ||
456 | #define TWI0_REGBASE 0xFFC01400 | ||
457 | #define TWI0_CLKDIV 0xFFC01400 /* Serial Clock Divider Register */ | ||
458 | #define TWI0_CONTROL 0xFFC01404 /* TWI Control Register */ | ||
459 | #define TWI0_SLAVE_CTL 0xFFC01408 /* Slave Mode Control Register */ | ||
460 | #define TWI0_SLAVE_STAT 0xFFC0140C /* Slave Mode Status Register */ | ||
461 | #define TWI0_SLAVE_ADDR 0xFFC01410 /* Slave Mode Address Register */ | ||
462 | #define TWI0_MASTER_CTL 0xFFC01414 /* Master Mode Control Register */ | ||
463 | #define TWI0_MASTER_STAT 0xFFC01418 /* Master Mode Status Register */ | ||
464 | #define TWI0_MASTER_ADDR 0xFFC0141C /* Master Mode Address Register */ | ||
465 | #define TWI0_INT_STAT 0xFFC01420 /* TWI Interrupt Status Register */ | ||
466 | #define TWI0_INT_MASK 0xFFC01424 /* TWI Master Interrupt Mask Register */ | ||
467 | #define TWI0_FIFO_CTL 0xFFC01428 /* FIFO Control Register */ | ||
468 | #define TWI0_FIFO_STAT 0xFFC0142C /* FIFO Status Register */ | ||
469 | #define TWI0_XMT_DATA8 0xFFC01480 /* FIFO Transmit Data Single Byte Register */ | ||
470 | #define TWI0_XMT_DATA16 0xFFC01484 /* FIFO Transmit Data Double Byte Register */ | ||
471 | #define TWI0_RCV_DATA8 0xFFC01488 /* FIFO Receive Data Single Byte Register */ | ||
472 | #define TWI0_RCV_DATA16 0xFFC0148C /* FIFO Receive Data Double Byte Register */ | ||
473 | |||
474 | |||
475 | /* General Purpose I/O Port G (0xFFC01500 - 0xFFC015FF) */ | ||
476 | #define PORTGIO 0xFFC01500 /* Port G I/O Pin State Specify Register */ | ||
477 | #define PORTGIO_CLEAR 0xFFC01504 /* Port G I/O Peripheral Interrupt Clear Register */ | ||
478 | #define PORTGIO_SET 0xFFC01508 /* Port G I/O Peripheral Interrupt Set Register */ | ||
479 | #define PORTGIO_TOGGLE 0xFFC0150C /* Port G I/O Pin State Toggle Register */ | ||
480 | #define PORTGIO_MASKA 0xFFC01510 /* Port G I/O Mask State Specify Interrupt A Register */ | ||
481 | #define PORTGIO_MASKA_CLEAR 0xFFC01514 /* Port G I/O Mask Disable Interrupt A Register */ | ||
482 | #define PORTGIO_MASKA_SET 0xFFC01518 /* Port G I/O Mask Enable Interrupt A Register */ | ||
483 | #define PORTGIO_MASKA_TOGGLE 0xFFC0151C /* Port G I/O Mask Toggle Enable Interrupt A Register */ | ||
484 | #define PORTGIO_MASKB 0xFFC01520 /* Port G I/O Mask State Specify Interrupt B Register */ | ||
485 | #define PORTGIO_MASKB_CLEAR 0xFFC01524 /* Port G I/O Mask Disable Interrupt B Register */ | ||
486 | #define PORTGIO_MASKB_SET 0xFFC01528 /* Port G I/O Mask Enable Interrupt B Register */ | ||
487 | #define PORTGIO_MASKB_TOGGLE 0xFFC0152C /* Port G I/O Mask Toggle Enable Interrupt B Register */ | ||
488 | #define PORTGIO_DIR 0xFFC01530 /* Port G I/O Direction Register */ | ||
489 | #define PORTGIO_POLAR 0xFFC01534 /* Port G I/O Source Polarity Register */ | ||
490 | #define PORTGIO_EDGE 0xFFC01538 /* Port G I/O Source Sensitivity Register */ | ||
491 | #define PORTGIO_BOTH 0xFFC0153C /* Port G I/O Set on BOTH Edges Register */ | ||
492 | #define PORTGIO_INEN 0xFFC01540 /* Port G I/O Input Enable Register */ | ||
493 | |||
494 | |||
495 | /* General Purpose I/O Port H (0xFFC01700 - 0xFFC017FF) */ | ||
496 | #define PORTHIO 0xFFC01700 /* Port H I/O Pin State Specify Register */ | ||
497 | #define PORTHIO_CLEAR 0xFFC01704 /* Port H I/O Peripheral Interrupt Clear Register */ | ||
498 | #define PORTHIO_SET 0xFFC01708 /* Port H I/O Peripheral Interrupt Set Register */ | ||
499 | #define PORTHIO_TOGGLE 0xFFC0170C /* Port H I/O Pin State Toggle Register */ | ||
500 | #define PORTHIO_MASKA 0xFFC01710 /* Port H I/O Mask State Specify Interrupt A Register */ | ||
501 | #define PORTHIO_MASKA_CLEAR 0xFFC01714 /* Port H I/O Mask Disable Interrupt A Register */ | ||
502 | #define PORTHIO_MASKA_SET 0xFFC01718 /* Port H I/O Mask Enable Interrupt A Register */ | ||
503 | #define PORTHIO_MASKA_TOGGLE 0xFFC0171C /* Port H I/O Mask Toggle Enable Interrupt A Register */ | ||
504 | #define PORTHIO_MASKB 0xFFC01720 /* Port H I/O Mask State Specify Interrupt B Register */ | ||
505 | #define PORTHIO_MASKB_CLEAR 0xFFC01724 /* Port H I/O Mask Disable Interrupt B Register */ | ||
506 | #define PORTHIO_MASKB_SET 0xFFC01728 /* Port H I/O Mask Enable Interrupt B Register */ | ||
507 | #define PORTHIO_MASKB_TOGGLE 0xFFC0172C /* Port H I/O Mask Toggle Enable Interrupt B Register */ | ||
508 | #define PORTHIO_DIR 0xFFC01730 /* Port H I/O Direction Register */ | ||
509 | #define PORTHIO_POLAR 0xFFC01734 /* Port H I/O Source Polarity Register */ | ||
510 | #define PORTHIO_EDGE 0xFFC01738 /* Port H I/O Source Sensitivity Register */ | ||
511 | #define PORTHIO_BOTH 0xFFC0173C /* Port H I/O Set on BOTH Edges Register */ | ||
512 | #define PORTHIO_INEN 0xFFC01740 /* Port H I/O Input Enable Register */ | ||
513 | |||
514 | |||
515 | /* UART1 Controller (0xFFC02000 - 0xFFC020FF) */ | ||
516 | #define UART1_THR 0xFFC02000 /* Transmit Holding register */ | ||
517 | #define UART1_RBR 0xFFC02000 /* Receive Buffer register */ | ||
518 | #define UART1_DLL 0xFFC02000 /* Divisor Latch (Low-Byte) */ | ||
519 | #define UART1_IER 0xFFC02004 /* Interrupt Enable Register */ | ||
520 | #define UART1_DLH 0xFFC02004 /* Divisor Latch (High-Byte) */ | ||
521 | #define UART1_IIR 0xFFC02008 /* Interrupt Identification Register */ | ||
522 | #define UART1_LCR 0xFFC0200C /* Line Control Register */ | ||
523 | #define UART1_MCR 0xFFC02010 /* Modem Control Register */ | ||
524 | #define UART1_LSR 0xFFC02014 /* Line Status Register */ | ||
525 | #define UART1_MSR 0xFFC02018 /* Modem Status Register */ | ||
526 | #define UART1_SCR 0xFFC0201C /* SCR Scratch Register */ | ||
527 | #define UART1_GCTL 0xFFC02024 /* Global Control Register */ | ||
528 | |||
529 | |||
530 | /* Omit CAN register sets from the defBF534.h (CAN is not in the ADSP-BF52x processor) */ | ||
531 | |||
532 | /* Pin Control Registers (0xFFC03200 - 0xFFC032FF) */ | ||
533 | #define PORTF_FER 0xFFC03200 /* Port F Function Enable Register (Alternate/Flag*) */ | ||
534 | #define PORTG_FER 0xFFC03204 /* Port G Function Enable Register (Alternate/Flag*) */ | ||
535 | #define PORTH_FER 0xFFC03208 /* Port H Function Enable Register (Alternate/Flag*) */ | ||
536 | #define BFIN_PORT_MUX 0xFFC0320C /* Port Multiplexer Control Register */ | ||
537 | |||
538 | |||
539 | /* Handshake MDMA Registers (0xFFC03300 - 0xFFC033FF) */ | ||
540 | #define HMDMA0_CONTROL 0xFFC03300 /* Handshake MDMA0 Control Register */ | ||
541 | #define HMDMA0_ECINIT 0xFFC03304 /* HMDMA0 Initial Edge Count Register */ | ||
542 | #define HMDMA0_BCINIT 0xFFC03308 /* HMDMA0 Initial Block Count Register */ | ||
543 | #define HMDMA0_ECURGENT 0xFFC0330C /* HMDMA0 Urgent Edge Count Threshold Register */ | ||
544 | #define HMDMA0_ECOVERFLOW 0xFFC03310 /* HMDMA0 Edge Count Overflow Interrupt Register */ | ||
545 | #define HMDMA0_ECOUNT 0xFFC03314 /* HMDMA0 Current Edge Count Register */ | ||
546 | #define HMDMA0_BCOUNT 0xFFC03318 /* HMDMA0 Current Block Count Register */ | ||
547 | |||
548 | #define HMDMA1_CONTROL 0xFFC03340 /* Handshake MDMA1 Control Register */ | ||
549 | #define HMDMA1_ECINIT 0xFFC03344 /* HMDMA1 Initial Edge Count Register */ | ||
550 | #define HMDMA1_BCINIT 0xFFC03348 /* HMDMA1 Initial Block Count Register */ | ||
551 | #define HMDMA1_ECURGENT 0xFFC0334C /* HMDMA1 Urgent Edge Count Threshold Register */ | ||
552 | #define HMDMA1_ECOVERFLOW 0xFFC03350 /* HMDMA1 Edge Count Overflow Interrupt Register */ | ||
553 | #define HMDMA1_ECOUNT 0xFFC03354 /* HMDMA1 Current Edge Count Register */ | ||
554 | #define HMDMA1_BCOUNT 0xFFC03358 /* HMDMA1 Current Block Count Register */ | ||
555 | |||
556 | /* GPIO PIN mux (0xFFC03210 - OxFFC03288) */ | ||
557 | #define PORTF_MUX 0xFFC03210 /* Port F mux control */ | ||
558 | #define PORTG_MUX 0xFFC03214 /* Port G mux control */ | ||
559 | #define PORTH_MUX 0xFFC03218 /* Port H mux control */ | ||
560 | #define PORTF_DRIVE 0xFFC03220 /* Port F drive strength control */ | ||
561 | #define PORTG_DRIVE 0xFFC03224 /* Port G drive strength control */ | ||
562 | #define PORTH_DRIVE 0xFFC03228 /* Port H drive strength control */ | ||
563 | #define PORTF_SLEW 0xFFC03230 /* Port F slew control */ | ||
564 | #define PORTG_SLEW 0xFFC03234 /* Port G slew control */ | ||
565 | #define PORTH_SLEW 0xFFC03238 /* Port H slew control */ | ||
566 | #define PORTF_HYSTERISIS 0xFFC03240 /* Port F Schmitt trigger control */ | ||
567 | #define PORTG_HYSTERISIS 0xFFC03244 /* Port G Schmitt trigger control */ | ||
568 | #define PORTH_HYSTERISIS 0xFFC03248 /* Port H Schmitt trigger control */ | ||
569 | #define MISCPORT_DRIVE 0xFFC03280 /* Misc Port drive strength control */ | ||
570 | #define MISCPORT_SLEW 0xFFC03284 /* Misc Port slew control */ | ||
571 | #define MISCPORT_HYSTERISIS 0xFFC03288 /* Misc Port Schmitt trigger control */ | ||
572 | |||
573 | |||
574 | /*********************************************************************************** | ||
575 | ** System MMR Register Bits And Macros | ||
576 | ** | ||
577 | ** Disclaimer: All macros are intended to make C and Assembly code more readable. | ||
578 | ** Use these macros carefully, as any that do left shifts for field | ||
579 | ** depositing will result in the lower order bits being destroyed. Any | ||
580 | ** macro that shifts left to properly position the bit-field should be | ||
581 | ** used as part of an OR to initialize a register and NOT as a dynamic | ||
582 | ** modifier UNLESS the lower order bits are saved and ORed back in when | ||
583 | ** the macro is used. | ||
584 | *************************************************************************************/ | ||
585 | |||
586 | /* CHIPID Masks */ | ||
587 | #define CHIPID_VERSION 0xF0000000 | ||
588 | #define CHIPID_FAMILY 0x0FFFF000 | ||
589 | #define CHIPID_MANUFACTURE 0x00000FFE | ||
590 | |||
591 | /* SWRST Masks */ | ||
592 | #define SYSTEM_RESET 0x0007 /* Initiates A System Software Reset */ | ||
593 | #define DOUBLE_FAULT 0x0008 /* Core Double Fault Causes Reset */ | ||
594 | #define RESET_DOUBLE 0x2000 /* SW Reset Generated By Core Double-Fault */ | ||
595 | #define RESET_WDOG 0x4000 /* SW Reset Generated By Watchdog Timer */ | ||
596 | #define RESET_SOFTWARE 0x8000 /* SW Reset Occurred Since Last Read Of SWRST */ | ||
597 | |||
598 | /* SYSCR Masks */ | ||
599 | #define BMODE 0x0007 /* Boot Mode - Latched During HW Reset From Mode Pins */ | ||
600 | #define NOBOOT 0x0010 /* Execute From L1 or ASYNC Bank 0 When BMODE = 0 */ | ||
601 | |||
602 | |||
603 | /* ************* SYSTEM INTERRUPT CONTROLLER MASKS *************************************/ | ||
604 | /* Peripheral Masks For SIC_ISR, SIC_IWR, SIC_IMASK */ | ||
605 | |||
606 | #if 0 | ||
607 | #define IRQ_PLL_WAKEUP 0x00000001 /* PLL Wakeup Interrupt */ | ||
608 | |||
609 | #define IRQ_ERROR1 0x00000002 /* Error Interrupt (DMA, DMARx Block, DMARx Overflow) */ | ||
610 | #define IRQ_ERROR2 0x00000004 /* Error Interrupt (CAN, Ethernet, SPORTx, PPI, SPI, UARTx) */ | ||
611 | #define IRQ_RTC 0x00000008 /* Real Time Clock Interrupt */ | ||
612 | #define IRQ_DMA0 0x00000010 /* DMA Channel 0 (PPI) Interrupt */ | ||
613 | #define IRQ_DMA3 0x00000020 /* DMA Channel 3 (SPORT0 RX) Interrupt */ | ||
614 | #define IRQ_DMA4 0x00000040 /* DMA Channel 4 (SPORT0 TX) Interrupt */ | ||
615 | #define IRQ_DMA5 0x00000080 /* DMA Channel 5 (SPORT1 RX) Interrupt */ | ||
616 | |||
617 | #define IRQ_DMA6 0x00000100 /* DMA Channel 6 (SPORT1 TX) Interrupt */ | ||
618 | #define IRQ_TWI 0x00000200 /* TWI Interrupt */ | ||
619 | #define IRQ_DMA7 0x00000400 /* DMA Channel 7 (SPI) Interrupt */ | ||
620 | #define IRQ_DMA8 0x00000800 /* DMA Channel 8 (UART0 RX) Interrupt */ | ||
621 | #define IRQ_DMA9 0x00001000 /* DMA Channel 9 (UART0 TX) Interrupt */ | ||
622 | #define IRQ_DMA10 0x00002000 /* DMA Channel 10 (UART1 RX) Interrupt */ | ||
623 | #define IRQ_DMA11 0x00004000 /* DMA Channel 11 (UART1 TX) Interrupt */ | ||
624 | #define IRQ_CAN_RX 0x00008000 /* CAN Receive Interrupt */ | ||
625 | |||
626 | #define IRQ_CAN_TX 0x00010000 /* CAN Transmit Interrupt */ | ||
627 | #define IRQ_DMA1 0x00020000 /* DMA Channel 1 (Ethernet RX) Interrupt */ | ||
628 | #define IRQ_PFA_PORTH 0x00020000 /* PF Port H (PF47:32) Interrupt A */ | ||
629 | #define IRQ_DMA2 0x00040000 /* DMA Channel 2 (Ethernet TX) Interrupt */ | ||
630 | #define IRQ_PFB_PORTH 0x00040000 /* PF Port H (PF47:32) Interrupt B */ | ||
631 | #define IRQ_TIMER0 0x00080000 /* Timer 0 Interrupt */ | ||
632 | #define IRQ_TIMER1 0x00100000 /* Timer 1 Interrupt */ | ||
633 | #define IRQ_TIMER2 0x00200000 /* Timer 2 Interrupt */ | ||
634 | #define IRQ_TIMER3 0x00400000 /* Timer 3 Interrupt */ | ||
635 | #define IRQ_TIMER4 0x00800000 /* Timer 4 Interrupt */ | ||
636 | |||
637 | #define IRQ_TIMER5 0x01000000 /* Timer 5 Interrupt */ | ||
638 | #define IRQ_TIMER6 0x02000000 /* Timer 6 Interrupt */ | ||
639 | #define IRQ_TIMER7 0x04000000 /* Timer 7 Interrupt */ | ||
640 | #define IRQ_PFA_PORTFG 0x08000000 /* PF Ports F&G (PF31:0) Interrupt A */ | ||
641 | #define IRQ_PFB_PORTF 0x80000000 /* PF Port F (PF15:0) Interrupt B */ | ||
642 | #define IRQ_DMA12 0x20000000 /* DMA Channels 12 (MDMA1 Source) RX Interrupt */ | ||
643 | #define IRQ_DMA13 0x20000000 /* DMA Channels 13 (MDMA1 Destination) TX Interrupt */ | ||
644 | #define IRQ_DMA14 0x40000000 /* DMA Channels 14 (MDMA0 Source) RX Interrupt */ | ||
645 | #define IRQ_DMA15 0x40000000 /* DMA Channels 15 (MDMA0 Destination) TX Interrupt */ | ||
646 | #define IRQ_WDOG 0x80000000 /* Software Watchdog Timer Interrupt */ | ||
647 | #define IRQ_PFB_PORTG 0x10000000 /* PF Port G (PF31:16) Interrupt B */ | ||
648 | #endif | ||
649 | |||
650 | /* SIC_IAR0 Macros */ | ||
651 | #define P0_IVG(x) (((x)&0xF)-7) /* Peripheral #0 assigned IVG #x */ | ||
652 | #define P1_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #1 assigned IVG #x */ | ||
653 | #define P2_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #2 assigned IVG #x */ | ||
654 | #define P3_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #3 assigned IVG #x */ | ||
655 | #define P4_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #4 assigned IVG #x */ | ||
656 | #define P5_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #5 assigned IVG #x */ | ||
657 | #define P6_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #6 assigned IVG #x */ | ||
658 | #define P7_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #7 assigned IVG #x */ | ||
659 | |||
660 | /* SIC_IAR1 Macros */ | ||
661 | #define P8_IVG(x) (((x)&0xF)-7) /* Peripheral #8 assigned IVG #x */ | ||
662 | #define P9_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #9 assigned IVG #x */ | ||
663 | #define P10_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #10 assigned IVG #x */ | ||
664 | #define P11_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #11 assigned IVG #x */ | ||
665 | #define P12_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #12 assigned IVG #x */ | ||
666 | #define P13_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #13 assigned IVG #x */ | ||
667 | #define P14_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #14 assigned IVG #x */ | ||
668 | #define P15_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #15 assigned IVG #x */ | ||
669 | |||
670 | /* SIC_IAR2 Macros */ | ||
671 | #define P16_IVG(x) (((x)&0xF)-7) /* Peripheral #16 assigned IVG #x */ | ||
672 | #define P17_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #17 assigned IVG #x */ | ||
673 | #define P18_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #18 assigned IVG #x */ | ||
674 | #define P19_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #19 assigned IVG #x */ | ||
675 | #define P20_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #20 assigned IVG #x */ | ||
676 | #define P21_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #21 assigned IVG #x */ | ||
677 | #define P22_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #22 assigned IVG #x */ | ||
678 | #define P23_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #23 assigned IVG #x */ | ||
679 | |||
680 | /* SIC_IAR3 Macros */ | ||
681 | #define P24_IVG(x) (((x)&0xF)-7) /* Peripheral #24 assigned IVG #x */ | ||
682 | #define P25_IVG(x) (((x)&0xF)-7) << 0x4 /* Peripheral #25 assigned IVG #x */ | ||
683 | #define P26_IVG(x) (((x)&0xF)-7) << 0x8 /* Peripheral #26 assigned IVG #x */ | ||
684 | #define P27_IVG(x) (((x)&0xF)-7) << 0xC /* Peripheral #27 assigned IVG #x */ | ||
685 | #define P28_IVG(x) (((x)&0xF)-7) << 0x10 /* Peripheral #28 assigned IVG #x */ | ||
686 | #define P29_IVG(x) (((x)&0xF)-7) << 0x14 /* Peripheral #29 assigned IVG #x */ | ||
687 | #define P30_IVG(x) (((x)&0xF)-7) << 0x18 /* Peripheral #30 assigned IVG #x */ | ||
688 | #define P31_IVG(x) (((x)&0xF)-7) << 0x1C /* Peripheral #31 assigned IVG #x */ | ||
689 | |||
690 | |||
691 | /* SIC_IMASK Masks */ | ||
692 | #define SIC_UNMASK_ALL 0x00000000 /* Unmask all peripheral interrupts */ | ||
693 | #define SIC_MASK_ALL 0xFFFFFFFF /* Mask all peripheral interrupts */ | ||
694 | #define SIC_MASK(x) (1 << ((x)&0x1F)) /* Mask Peripheral #x interrupt */ | ||
695 | #define SIC_UNMASK(x) (0xFFFFFFFF ^ (1 << ((x)&0x1F))) /* Unmask Peripheral #x interrupt */ | ||
696 | |||
697 | /* SIC_IWR Masks */ | ||
698 | #define IWR_DISABLE_ALL 0x00000000 /* Wakeup Disable all peripherals */ | ||
699 | #define IWR_ENABLE_ALL 0xFFFFFFFF /* Wakeup Enable all peripherals */ | ||
700 | #define IWR_ENABLE(x) (1 << ((x)&0x1F)) /* Wakeup Enable Peripheral #x */ | ||
701 | #define IWR_DISABLE(x) (0xFFFFFFFF ^ (1 << ((x)&0x1F))) /* Wakeup Disable Peripheral #x */ | ||
702 | |||
703 | /* **************** GENERAL PURPOSE TIMER MASKS **********************/ | ||
704 | /* TIMER_ENABLE Masks */ | ||
705 | #define TIMEN0 0x0001 /* Enable Timer 0 */ | ||
706 | #define TIMEN1 0x0002 /* Enable Timer 1 */ | ||
707 | #define TIMEN2 0x0004 /* Enable Timer 2 */ | ||
708 | #define TIMEN3 0x0008 /* Enable Timer 3 */ | ||
709 | #define TIMEN4 0x0010 /* Enable Timer 4 */ | ||
710 | #define TIMEN5 0x0020 /* Enable Timer 5 */ | ||
711 | #define TIMEN6 0x0040 /* Enable Timer 6 */ | ||
712 | #define TIMEN7 0x0080 /* Enable Timer 7 */ | ||
713 | |||
714 | /* TIMER_DISABLE Masks */ | ||
715 | #define TIMDIS0 TIMEN0 /* Disable Timer 0 */ | ||
716 | #define TIMDIS1 TIMEN1 /* Disable Timer 1 */ | ||
717 | #define TIMDIS2 TIMEN2 /* Disable Timer 2 */ | ||
718 | #define TIMDIS3 TIMEN3 /* Disable Timer 3 */ | ||
719 | #define TIMDIS4 TIMEN4 /* Disable Timer 4 */ | ||
720 | #define TIMDIS5 TIMEN5 /* Disable Timer 5 */ | ||
721 | #define TIMDIS6 TIMEN6 /* Disable Timer 6 */ | ||
722 | #define TIMDIS7 TIMEN7 /* Disable Timer 7 */ | ||
723 | |||
724 | /* TIMER_STATUS Masks */ | ||
725 | #define TIMIL0 0x00000001 /* Timer 0 Interrupt */ | ||
726 | #define TIMIL1 0x00000002 /* Timer 1 Interrupt */ | ||
727 | #define TIMIL2 0x00000004 /* Timer 2 Interrupt */ | ||
728 | #define TIMIL3 0x00000008 /* Timer 3 Interrupt */ | ||
729 | #define TOVF_ERR0 0x00000010 /* Timer 0 Counter Overflow */ | ||
730 | #define TOVF_ERR1 0x00000020 /* Timer 1 Counter Overflow */ | ||
731 | #define TOVF_ERR2 0x00000040 /* Timer 2 Counter Overflow */ | ||
732 | #define TOVF_ERR3 0x00000080 /* Timer 3 Counter Overflow */ | ||
733 | #define TRUN0 0x00001000 /* Timer 0 Slave Enable Status */ | ||
734 | #define TRUN1 0x00002000 /* Timer 1 Slave Enable Status */ | ||
735 | #define TRUN2 0x00004000 /* Timer 2 Slave Enable Status */ | ||
736 | #define TRUN3 0x00008000 /* Timer 3 Slave Enable Status */ | ||
737 | #define TIMIL4 0x00010000 /* Timer 4 Interrupt */ | ||
738 | #define TIMIL5 0x00020000 /* Timer 5 Interrupt */ | ||
739 | #define TIMIL6 0x00040000 /* Timer 6 Interrupt */ | ||
740 | #define TIMIL7 0x00080000 /* Timer 7 Interrupt */ | ||
741 | #define TOVF_ERR4 0x00100000 /* Timer 4 Counter Overflow */ | ||
742 | #define TOVF_ERR5 0x00200000 /* Timer 5 Counter Overflow */ | ||
743 | #define TOVF_ERR6 0x00400000 /* Timer 6 Counter Overflow */ | ||
744 | #define TOVF_ERR7 0x00800000 /* Timer 7 Counter Overflow */ | ||
745 | #define TRUN4 0x10000000 /* Timer 4 Slave Enable Status */ | ||
746 | #define TRUN5 0x20000000 /* Timer 5 Slave Enable Status */ | ||
747 | #define TRUN6 0x40000000 /* Timer 6 Slave Enable Status */ | ||
748 | #define TRUN7 0x80000000 /* Timer 7 Slave Enable Status */ | ||
749 | |||
750 | /* Alternate Deprecated Macros Provided For Backwards Code Compatibility */ | ||
751 | #define TOVL_ERR0 TOVF_ERR0 | ||
752 | #define TOVL_ERR1 TOVF_ERR1 | ||
753 | #define TOVL_ERR2 TOVF_ERR2 | ||
754 | #define TOVL_ERR3 TOVF_ERR3 | ||
755 | #define TOVL_ERR4 TOVF_ERR4 | ||
756 | #define TOVL_ERR5 TOVF_ERR5 | ||
757 | #define TOVL_ERR6 TOVF_ERR6 | ||
758 | #define TOVL_ERR7 TOVF_ERR7 | ||
759 | |||
760 | /* TIMERx_CONFIG Masks */ | ||
761 | #define PWM_OUT 0x0001 /* Pulse-Width Modulation Output Mode */ | ||
762 | #define WDTH_CAP 0x0002 /* Width Capture Input Mode */ | ||
763 | #define EXT_CLK 0x0003 /* External Clock Mode */ | ||
764 | #define PULSE_HI 0x0004 /* Action Pulse (Positive/Negative*) */ | ||
765 | #define PERIOD_CNT 0x0008 /* Period Count */ | ||
766 | #define IRQ_ENA 0x0010 /* Interrupt Request Enable */ | ||
767 | #define TIN_SEL 0x0020 /* Timer Input Select */ | ||
768 | #define OUT_DIS 0x0040 /* Output Pad Disable */ | ||
769 | #define CLK_SEL 0x0080 /* Timer Clock Select */ | ||
770 | #define TOGGLE_HI 0x0100 /* PWM_OUT PULSE_HI Toggle Mode */ | ||
771 | #define EMU_RUN 0x0200 /* Emulation Behavior Select */ | ||
772 | #define ERR_TYP 0xC000 /* Error Type */ | ||
773 | |||
774 | /* ********************* ASYNCHRONOUS MEMORY CONTROLLER MASKS *************************/ | ||
775 | /* EBIU_AMGCTL Masks */ | ||
776 | #define AMCKEN 0x0001 /* Enable CLKOUT */ | ||
777 | #define AMBEN_NONE 0x0000 /* All Banks Disabled */ | ||
778 | #define AMBEN_B0 0x0002 /* Enable Async Memory Bank 0 only */ | ||
779 | #define AMBEN_B0_B1 0x0004 /* Enable Async Memory Banks 0 & 1 only */ | ||
780 | #define AMBEN_B0_B1_B2 0x0006 /* Enable Async Memory Banks 0, 1, and 2 */ | ||
781 | #define AMBEN_ALL 0x0008 /* Enable Async Memory Banks (all) 0, 1, 2, and 3 */ | ||
782 | |||
783 | /* EBIU_AMBCTL0 Masks */ | ||
784 | #define B0RDYEN 0x00000001 /* Bank 0 (B0) RDY Enable */ | ||
785 | #define B0RDYPOL 0x00000002 /* B0 RDY Active High */ | ||
786 | #define B0TT_1 0x00000004 /* B0 Transition Time (Read to Write) = 1 cycle */ | ||
787 | #define B0TT_2 0x00000008 /* B0 Transition Time (Read to Write) = 2 cycles */ | ||
788 | #define B0TT_3 0x0000000C /* B0 Transition Time (Read to Write) = 3 cycles */ | ||
789 | #define B0TT_4 0x00000000 /* B0 Transition Time (Read to Write) = 4 cycles */ | ||
790 | #define B0ST_1 0x00000010 /* B0 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
791 | #define B0ST_2 0x00000020 /* B0 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
792 | #define B0ST_3 0x00000030 /* B0 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
793 | #define B0ST_4 0x00000000 /* B0 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
794 | #define B0HT_1 0x00000040 /* B0 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
795 | #define B0HT_2 0x00000080 /* B0 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
796 | #define B0HT_3 0x000000C0 /* B0 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
797 | #define B0HT_0 0x00000000 /* B0 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
798 | #define B0RAT_1 0x00000100 /* B0 Read Access Time = 1 cycle */ | ||
799 | #define B0RAT_2 0x00000200 /* B0 Read Access Time = 2 cycles */ | ||
800 | #define B0RAT_3 0x00000300 /* B0 Read Access Time = 3 cycles */ | ||
801 | #define B0RAT_4 0x00000400 /* B0 Read Access Time = 4 cycles */ | ||
802 | #define B0RAT_5 0x00000500 /* B0 Read Access Time = 5 cycles */ | ||
803 | #define B0RAT_6 0x00000600 /* B0 Read Access Time = 6 cycles */ | ||
804 | #define B0RAT_7 0x00000700 /* B0 Read Access Time = 7 cycles */ | ||
805 | #define B0RAT_8 0x00000800 /* B0 Read Access Time = 8 cycles */ | ||
806 | #define B0RAT_9 0x00000900 /* B0 Read Access Time = 9 cycles */ | ||
807 | #define B0RAT_10 0x00000A00 /* B0 Read Access Time = 10 cycles */ | ||
808 | #define B0RAT_11 0x00000B00 /* B0 Read Access Time = 11 cycles */ | ||
809 | #define B0RAT_12 0x00000C00 /* B0 Read Access Time = 12 cycles */ | ||
810 | #define B0RAT_13 0x00000D00 /* B0 Read Access Time = 13 cycles */ | ||
811 | #define B0RAT_14 0x00000E00 /* B0 Read Access Time = 14 cycles */ | ||
812 | #define B0RAT_15 0x00000F00 /* B0 Read Access Time = 15 cycles */ | ||
813 | #define B0WAT_1 0x00001000 /* B0 Write Access Time = 1 cycle */ | ||
814 | #define B0WAT_2 0x00002000 /* B0 Write Access Time = 2 cycles */ | ||
815 | #define B0WAT_3 0x00003000 /* B0 Write Access Time = 3 cycles */ | ||
816 | #define B0WAT_4 0x00004000 /* B0 Write Access Time = 4 cycles */ | ||
817 | #define B0WAT_5 0x00005000 /* B0 Write Access Time = 5 cycles */ | ||
818 | #define B0WAT_6 0x00006000 /* B0 Write Access Time = 6 cycles */ | ||
819 | #define B0WAT_7 0x00007000 /* B0 Write Access Time = 7 cycles */ | ||
820 | #define B0WAT_8 0x00008000 /* B0 Write Access Time = 8 cycles */ | ||
821 | #define B0WAT_9 0x00009000 /* B0 Write Access Time = 9 cycles */ | ||
822 | #define B0WAT_10 0x0000A000 /* B0 Write Access Time = 10 cycles */ | ||
823 | #define B0WAT_11 0x0000B000 /* B0 Write Access Time = 11 cycles */ | ||
824 | #define B0WAT_12 0x0000C000 /* B0 Write Access Time = 12 cycles */ | ||
825 | #define B0WAT_13 0x0000D000 /* B0 Write Access Time = 13 cycles */ | ||
826 | #define B0WAT_14 0x0000E000 /* B0 Write Access Time = 14 cycles */ | ||
827 | #define B0WAT_15 0x0000F000 /* B0 Write Access Time = 15 cycles */ | ||
828 | |||
829 | #define B1RDYEN 0x00010000 /* Bank 1 (B1) RDY Enable */ | ||
830 | #define B1RDYPOL 0x00020000 /* B1 RDY Active High */ | ||
831 | #define B1TT_1 0x00040000 /* B1 Transition Time (Read to Write) = 1 cycle */ | ||
832 | #define B1TT_2 0x00080000 /* B1 Transition Time (Read to Write) = 2 cycles */ | ||
833 | #define B1TT_3 0x000C0000 /* B1 Transition Time (Read to Write) = 3 cycles */ | ||
834 | #define B1TT_4 0x00000000 /* B1 Transition Time (Read to Write) = 4 cycles */ | ||
835 | #define B1ST_1 0x00100000 /* B1 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
836 | #define B1ST_2 0x00200000 /* B1 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
837 | #define B1ST_3 0x00300000 /* B1 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
838 | #define B1ST_4 0x00000000 /* B1 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
839 | #define B1HT_1 0x00400000 /* B1 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
840 | #define B1HT_2 0x00800000 /* B1 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
841 | #define B1HT_3 0x00C00000 /* B1 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
842 | #define B1HT_0 0x00000000 /* B1 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
843 | #define B1RAT_1 0x01000000 /* B1 Read Access Time = 1 cycle */ | ||
844 | #define B1RAT_2 0x02000000 /* B1 Read Access Time = 2 cycles */ | ||
845 | #define B1RAT_3 0x03000000 /* B1 Read Access Time = 3 cycles */ | ||
846 | #define B1RAT_4 0x04000000 /* B1 Read Access Time = 4 cycles */ | ||
847 | #define B1RAT_5 0x05000000 /* B1 Read Access Time = 5 cycles */ | ||
848 | #define B1RAT_6 0x06000000 /* B1 Read Access Time = 6 cycles */ | ||
849 | #define B1RAT_7 0x07000000 /* B1 Read Access Time = 7 cycles */ | ||
850 | #define B1RAT_8 0x08000000 /* B1 Read Access Time = 8 cycles */ | ||
851 | #define B1RAT_9 0x09000000 /* B1 Read Access Time = 9 cycles */ | ||
852 | #define B1RAT_10 0x0A000000 /* B1 Read Access Time = 10 cycles */ | ||
853 | #define B1RAT_11 0x0B000000 /* B1 Read Access Time = 11 cycles */ | ||
854 | #define B1RAT_12 0x0C000000 /* B1 Read Access Time = 12 cycles */ | ||
855 | #define B1RAT_13 0x0D000000 /* B1 Read Access Time = 13 cycles */ | ||
856 | #define B1RAT_14 0x0E000000 /* B1 Read Access Time = 14 cycles */ | ||
857 | #define B1RAT_15 0x0F000000 /* B1 Read Access Time = 15 cycles */ | ||
858 | #define B1WAT_1 0x10000000 /* B1 Write Access Time = 1 cycle */ | ||
859 | #define B1WAT_2 0x20000000 /* B1 Write Access Time = 2 cycles */ | ||
860 | #define B1WAT_3 0x30000000 /* B1 Write Access Time = 3 cycles */ | ||
861 | #define B1WAT_4 0x40000000 /* B1 Write Access Time = 4 cycles */ | ||
862 | #define B1WAT_5 0x50000000 /* B1 Write Access Time = 5 cycles */ | ||
863 | #define B1WAT_6 0x60000000 /* B1 Write Access Time = 6 cycles */ | ||
864 | #define B1WAT_7 0x70000000 /* B1 Write Access Time = 7 cycles */ | ||
865 | #define B1WAT_8 0x80000000 /* B1 Write Access Time = 8 cycles */ | ||
866 | #define B1WAT_9 0x90000000 /* B1 Write Access Time = 9 cycles */ | ||
867 | #define B1WAT_10 0xA0000000 /* B1 Write Access Time = 10 cycles */ | ||
868 | #define B1WAT_11 0xB0000000 /* B1 Write Access Time = 11 cycles */ | ||
869 | #define B1WAT_12 0xC0000000 /* B1 Write Access Time = 12 cycles */ | ||
870 | #define B1WAT_13 0xD0000000 /* B1 Write Access Time = 13 cycles */ | ||
871 | #define B1WAT_14 0xE0000000 /* B1 Write Access Time = 14 cycles */ | ||
872 | #define B1WAT_15 0xF0000000 /* B1 Write Access Time = 15 cycles */ | ||
873 | |||
874 | /* EBIU_AMBCTL1 Masks */ | ||
875 | #define B2RDYEN 0x00000001 /* Bank 2 (B2) RDY Enable */ | ||
876 | #define B2RDYPOL 0x00000002 /* B2 RDY Active High */ | ||
877 | #define B2TT_1 0x00000004 /* B2 Transition Time (Read to Write) = 1 cycle */ | ||
878 | #define B2TT_2 0x00000008 /* B2 Transition Time (Read to Write) = 2 cycles */ | ||
879 | #define B2TT_3 0x0000000C /* B2 Transition Time (Read to Write) = 3 cycles */ | ||
880 | #define B2TT_4 0x00000000 /* B2 Transition Time (Read to Write) = 4 cycles */ | ||
881 | #define B2ST_1 0x00000010 /* B2 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
882 | #define B2ST_2 0x00000020 /* B2 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
883 | #define B2ST_3 0x00000030 /* B2 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
884 | #define B2ST_4 0x00000000 /* B2 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
885 | #define B2HT_1 0x00000040 /* B2 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
886 | #define B2HT_2 0x00000080 /* B2 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
887 | #define B2HT_3 0x000000C0 /* B2 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
888 | #define B2HT_0 0x00000000 /* B2 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
889 | #define B2RAT_1 0x00000100 /* B2 Read Access Time = 1 cycle */ | ||
890 | #define B2RAT_2 0x00000200 /* B2 Read Access Time = 2 cycles */ | ||
891 | #define B2RAT_3 0x00000300 /* B2 Read Access Time = 3 cycles */ | ||
892 | #define B2RAT_4 0x00000400 /* B2 Read Access Time = 4 cycles */ | ||
893 | #define B2RAT_5 0x00000500 /* B2 Read Access Time = 5 cycles */ | ||
894 | #define B2RAT_6 0x00000600 /* B2 Read Access Time = 6 cycles */ | ||
895 | #define B2RAT_7 0x00000700 /* B2 Read Access Time = 7 cycles */ | ||
896 | #define B2RAT_8 0x00000800 /* B2 Read Access Time = 8 cycles */ | ||
897 | #define B2RAT_9 0x00000900 /* B2 Read Access Time = 9 cycles */ | ||
898 | #define B2RAT_10 0x00000A00 /* B2 Read Access Time = 10 cycles */ | ||
899 | #define B2RAT_11 0x00000B00 /* B2 Read Access Time = 11 cycles */ | ||
900 | #define B2RAT_12 0x00000C00 /* B2 Read Access Time = 12 cycles */ | ||
901 | #define B2RAT_13 0x00000D00 /* B2 Read Access Time = 13 cycles */ | ||
902 | #define B2RAT_14 0x00000E00 /* B2 Read Access Time = 14 cycles */ | ||
903 | #define B2RAT_15 0x00000F00 /* B2 Read Access Time = 15 cycles */ | ||
904 | #define B2WAT_1 0x00001000 /* B2 Write Access Time = 1 cycle */ | ||
905 | #define B2WAT_2 0x00002000 /* B2 Write Access Time = 2 cycles */ | ||
906 | #define B2WAT_3 0x00003000 /* B2 Write Access Time = 3 cycles */ | ||
907 | #define B2WAT_4 0x00004000 /* B2 Write Access Time = 4 cycles */ | ||
908 | #define B2WAT_5 0x00005000 /* B2 Write Access Time = 5 cycles */ | ||
909 | #define B2WAT_6 0x00006000 /* B2 Write Access Time = 6 cycles */ | ||
910 | #define B2WAT_7 0x00007000 /* B2 Write Access Time = 7 cycles */ | ||
911 | #define B2WAT_8 0x00008000 /* B2 Write Access Time = 8 cycles */ | ||
912 | #define B2WAT_9 0x00009000 /* B2 Write Access Time = 9 cycles */ | ||
913 | #define B2WAT_10 0x0000A000 /* B2 Write Access Time = 10 cycles */ | ||
914 | #define B2WAT_11 0x0000B000 /* B2 Write Access Time = 11 cycles */ | ||
915 | #define B2WAT_12 0x0000C000 /* B2 Write Access Time = 12 cycles */ | ||
916 | #define B2WAT_13 0x0000D000 /* B2 Write Access Time = 13 cycles */ | ||
917 | #define B2WAT_14 0x0000E000 /* B2 Write Access Time = 14 cycles */ | ||
918 | #define B2WAT_15 0x0000F000 /* B2 Write Access Time = 15 cycles */ | ||
919 | |||
920 | #define B3RDYEN 0x00010000 /* Bank 3 (B3) RDY Enable */ | ||
921 | #define B3RDYPOL 0x00020000 /* B3 RDY Active High */ | ||
922 | #define B3TT_1 0x00040000 /* B3 Transition Time (Read to Write) = 1 cycle */ | ||
923 | #define B3TT_2 0x00080000 /* B3 Transition Time (Read to Write) = 2 cycles */ | ||
924 | #define B3TT_3 0x000C0000 /* B3 Transition Time (Read to Write) = 3 cycles */ | ||
925 | #define B3TT_4 0x00000000 /* B3 Transition Time (Read to Write) = 4 cycles */ | ||
926 | #define B3ST_1 0x00100000 /* B3 Setup Time (AOE to Read/Write) = 1 cycle */ | ||
927 | #define B3ST_2 0x00200000 /* B3 Setup Time (AOE to Read/Write) = 2 cycles */ | ||
928 | #define B3ST_3 0x00300000 /* B3 Setup Time (AOE to Read/Write) = 3 cycles */ | ||
929 | #define B3ST_4 0x00000000 /* B3 Setup Time (AOE to Read/Write) = 4 cycles */ | ||
930 | #define B3HT_1 0x00400000 /* B3 Hold Time (~Read/Write to ~AOE) = 1 cycle */ | ||
931 | #define B3HT_2 0x00800000 /* B3 Hold Time (~Read/Write to ~AOE) = 2 cycles */ | ||
932 | #define B3HT_3 0x00C00000 /* B3 Hold Time (~Read/Write to ~AOE) = 3 cycles */ | ||
933 | #define B3HT_0 0x00000000 /* B3 Hold Time (~Read/Write to ~AOE) = 0 cycles */ | ||
934 | #define B3RAT_1 0x01000000 /* B3 Read Access Time = 1 cycle */ | ||
935 | #define B3RAT_2 0x02000000 /* B3 Read Access Time = 2 cycles */ | ||
936 | #define B3RAT_3 0x03000000 /* B3 Read Access Time = 3 cycles */ | ||
937 | #define B3RAT_4 0x04000000 /* B3 Read Access Time = 4 cycles */ | ||
938 | #define B3RAT_5 0x05000000 /* B3 Read Access Time = 5 cycles */ | ||
939 | #define B3RAT_6 0x06000000 /* B3 Read Access Time = 6 cycles */ | ||
940 | #define B3RAT_7 0x07000000 /* B3 Read Access Time = 7 cycles */ | ||
941 | #define B3RAT_8 0x08000000 /* B3 Read Access Time = 8 cycles */ | ||
942 | #define B3RAT_9 0x09000000 /* B3 Read Access Time = 9 cycles */ | ||
943 | #define B3RAT_10 0x0A000000 /* B3 Read Access Time = 10 cycles */ | ||
944 | #define B3RAT_11 0x0B000000 /* B3 Read Access Time = 11 cycles */ | ||
945 | #define B3RAT_12 0x0C000000 /* B3 Read Access Time = 12 cycles */ | ||
946 | #define B3RAT_13 0x0D000000 /* B3 Read Access Time = 13 cycles */ | ||
947 | #define B3RAT_14 0x0E000000 /* B3 Read Access Time = 14 cycles */ | ||
948 | #define B3RAT_15 0x0F000000 /* B3 Read Access Time = 15 cycles */ | ||
949 | #define B3WAT_1 0x10000000 /* B3 Write Access Time = 1 cycle */ | ||
950 | #define B3WAT_2 0x20000000 /* B3 Write Access Time = 2 cycles */ | ||
951 | #define B3WAT_3 0x30000000 /* B3 Write Access Time = 3 cycles */ | ||
952 | #define B3WAT_4 0x40000000 /* B3 Write Access Time = 4 cycles */ | ||
953 | #define B3WAT_5 0x50000000 /* B3 Write Access Time = 5 cycles */ | ||
954 | #define B3WAT_6 0x60000000 /* B3 Write Access Time = 6 cycles */ | ||
955 | #define B3WAT_7 0x70000000 /* B3 Write Access Time = 7 cycles */ | ||
956 | #define B3WAT_8 0x80000000 /* B3 Write Access Time = 8 cycles */ | ||
957 | #define B3WAT_9 0x90000000 /* B3 Write Access Time = 9 cycles */ | ||
958 | #define B3WAT_10 0xA0000000 /* B3 Write Access Time = 10 cycles */ | ||
959 | #define B3WAT_11 0xB0000000 /* B3 Write Access Time = 11 cycles */ | ||
960 | #define B3WAT_12 0xC0000000 /* B3 Write Access Time = 12 cycles */ | ||
961 | #define B3WAT_13 0xD0000000 /* B3 Write Access Time = 13 cycles */ | ||
962 | #define B3WAT_14 0xE0000000 /* B3 Write Access Time = 14 cycles */ | ||
963 | #define B3WAT_15 0xF0000000 /* B3 Write Access Time = 15 cycles */ | ||
964 | |||
965 | |||
966 | /* ********************** SDRAM CONTROLLER MASKS **********************************************/ | ||
967 | /* EBIU_SDGCTL Masks */ | ||
968 | #define SCTLE 0x00000001 /* Enable SDRAM Signals */ | ||
969 | #define CL_2 0x00000008 /* SDRAM CAS Latency = 2 cycles */ | ||
970 | #define CL_3 0x0000000C /* SDRAM CAS Latency = 3 cycles */ | ||
971 | #define PASR_ALL 0x00000000 /* All 4 SDRAM Banks Refreshed In Self-Refresh */ | ||
972 | #define PASR_B0_B1 0x00000010 /* SDRAM Banks 0 and 1 Are Refreshed In Self-Refresh */ | ||
973 | #define PASR_B0 0x00000020 /* Only SDRAM Bank 0 Is Refreshed In Self-Refresh */ | ||
974 | #define TRAS_1 0x00000040 /* SDRAM tRAS = 1 cycle */ | ||
975 | #define TRAS_2 0x00000080 /* SDRAM tRAS = 2 cycles */ | ||
976 | #define TRAS_3 0x000000C0 /* SDRAM tRAS = 3 cycles */ | ||
977 | #define TRAS_4 0x00000100 /* SDRAM tRAS = 4 cycles */ | ||
978 | #define TRAS_5 0x00000140 /* SDRAM tRAS = 5 cycles */ | ||
979 | #define TRAS_6 0x00000180 /* SDRAM tRAS = 6 cycles */ | ||
980 | #define TRAS_7 0x000001C0 /* SDRAM tRAS = 7 cycles */ | ||
981 | #define TRAS_8 0x00000200 /* SDRAM tRAS = 8 cycles */ | ||
982 | #define TRAS_9 0x00000240 /* SDRAM tRAS = 9 cycles */ | ||
983 | #define TRAS_10 0x00000280 /* SDRAM tRAS = 10 cycles */ | ||
984 | #define TRAS_11 0x000002C0 /* SDRAM tRAS = 11 cycles */ | ||
985 | #define TRAS_12 0x00000300 /* SDRAM tRAS = 12 cycles */ | ||
986 | #define TRAS_13 0x00000340 /* SDRAM tRAS = 13 cycles */ | ||
987 | #define TRAS_14 0x00000380 /* SDRAM tRAS = 14 cycles */ | ||
988 | #define TRAS_15 0x000003C0 /* SDRAM tRAS = 15 cycles */ | ||
989 | #define TRP_1 0x00000800 /* SDRAM tRP = 1 cycle */ | ||
990 | #define TRP_2 0x00001000 /* SDRAM tRP = 2 cycles */ | ||
991 | #define TRP_3 0x00001800 /* SDRAM tRP = 3 cycles */ | ||
992 | #define TRP_4 0x00002000 /* SDRAM tRP = 4 cycles */ | ||
993 | #define TRP_5 0x00002800 /* SDRAM tRP = 5 cycles */ | ||
994 | #define TRP_6 0x00003000 /* SDRAM tRP = 6 cycles */ | ||
995 | #define TRP_7 0x00003800 /* SDRAM tRP = 7 cycles */ | ||
996 | #define TRCD_1 0x00008000 /* SDRAM tRCD = 1 cycle */ | ||
997 | #define TRCD_2 0x00010000 /* SDRAM tRCD = 2 cycles */ | ||
998 | #define TRCD_3 0x00018000 /* SDRAM tRCD = 3 cycles */ | ||
999 | #define TRCD_4 0x00020000 /* SDRAM tRCD = 4 cycles */ | ||
1000 | #define TRCD_5 0x00028000 /* SDRAM tRCD = 5 cycles */ | ||
1001 | #define TRCD_6 0x00030000 /* SDRAM tRCD = 6 cycles */ | ||
1002 | #define TRCD_7 0x00038000 /* SDRAM tRCD = 7 cycles */ | ||
1003 | #define TWR_1 0x00080000 /* SDRAM tWR = 1 cycle */ | ||
1004 | #define TWR_2 0x00100000 /* SDRAM tWR = 2 cycles */ | ||
1005 | #define TWR_3 0x00180000 /* SDRAM tWR = 3 cycles */ | ||
1006 | #define PUPSD 0x00200000 /* Power-Up Start Delay (15 SCLK Cycles Delay) */ | ||
1007 | #define PSM 0x00400000 /* Power-Up Sequence (Mode Register Before/After* Refresh) */ | ||
1008 | #define PSS 0x00800000 /* Enable Power-Up Sequence on Next SDRAM Access */ | ||
1009 | #define SRFS 0x01000000 /* Enable SDRAM Self-Refresh Mode */ | ||
1010 | #define EBUFE 0x02000000 /* Enable External Buffering Timing */ | ||
1011 | #define FBBRW 0x04000000 /* Enable Fast Back-To-Back Read To Write */ | ||
1012 | #define EMREN 0x10000000 /* Extended Mode Register Enable */ | ||
1013 | #define TCSR 0x20000000 /* Temp-Compensated Self-Refresh Value (85/45* Deg C) */ | ||
1014 | #define CDDBG 0x40000000 /* Tristate SDRAM Controls During Bus Grant */ | ||
1015 | |||
1016 | /* EBIU_SDBCTL Masks */ | ||
1017 | #define EBE 0x0001 /* Enable SDRAM External Bank */ | ||
1018 | #define EBSZ_16 0x0000 /* SDRAM External Bank Size = 16MB */ | ||
1019 | #define EBSZ_32 0x0002 /* SDRAM External Bank Size = 32MB */ | ||
1020 | #define EBSZ_64 0x0004 /* SDRAM External Bank Size = 64MB */ | ||
1021 | #define EBSZ_128 0x0006 /* SDRAM External Bank Size = 128MB */ | ||
1022 | #define EBSZ_256 0x0008 /* SDRAM External Bank Size = 256MB */ | ||
1023 | #define EBSZ_512 0x000A /* SDRAM External Bank Size = 512MB */ | ||
1024 | #define EBCAW_8 0x0000 /* SDRAM External Bank Column Address Width = 8 Bits */ | ||
1025 | #define EBCAW_9 0x0010 /* SDRAM External Bank Column Address Width = 9 Bits */ | ||
1026 | #define EBCAW_10 0x0020 /* SDRAM External Bank Column Address Width = 10 Bits */ | ||
1027 | #define EBCAW_11 0x0030 /* SDRAM External Bank Column Address Width = 11 Bits */ | ||
1028 | |||
1029 | /* EBIU_SDSTAT Masks */ | ||
1030 | #define SDCI 0x0001 /* SDRAM Controller Idle */ | ||
1031 | #define SDSRA 0x0002 /* SDRAM Self-Refresh Active */ | ||
1032 | #define SDPUA 0x0004 /* SDRAM Power-Up Active */ | ||
1033 | #define SDRS 0x0008 /* SDRAM Will Power-Up On Next Access */ | ||
1034 | #define SDEASE 0x0010 /* SDRAM EAB Sticky Error Status */ | ||
1035 | #define BGSTAT 0x0020 /* Bus Grant Status */ | ||
1036 | |||
1037 | |||
1038 | /* ************************** DMA CONTROLLER MASKS ********************************/ | ||
1039 | |||
1040 | /* DMAx_PERIPHERAL_MAP, MDMA_yy_PERIPHERAL_MAP Masks */ | ||
1041 | #define CTYPE 0x0040 /* DMA Channel Type Indicator (Memory/Peripheral*) */ | ||
1042 | #define PMAP 0xF000 /* Peripheral Mapped To This Channel */ | ||
1043 | #define PMAP_PPI 0x0000 /* PPI Port DMA */ | ||
1044 | #define PMAP_EMACRX 0x1000 /* Ethernet Receive DMA */ | ||
1045 | #define PMAP_EMACTX 0x2000 /* Ethernet Transmit DMA */ | ||
1046 | #define PMAP_SPORT0RX 0x3000 /* SPORT0 Receive DMA */ | ||
1047 | #define PMAP_SPORT0TX 0x4000 /* SPORT0 Transmit DMA */ | ||
1048 | #define PMAP_SPORT1RX 0x5000 /* SPORT1 Receive DMA */ | ||
1049 | #define PMAP_SPORT1TX 0x6000 /* SPORT1 Transmit DMA */ | ||
1050 | #define PMAP_SPI 0x7000 /* SPI Port DMA */ | ||
1051 | #define PMAP_UART0RX 0x8000 /* UART0 Port Receive DMA */ | ||
1052 | #define PMAP_UART0TX 0x9000 /* UART0 Port Transmit DMA */ | ||
1053 | #define PMAP_UART1RX 0xA000 /* UART1 Port Receive DMA */ | ||
1054 | #define PMAP_UART1TX 0xB000 /* UART1 Port Transmit DMA */ | ||
1055 | |||
1056 | /* ************ PARALLEL PERIPHERAL INTERFACE (PPI) MASKS *************/ | ||
1057 | /* PPI_CONTROL Masks */ | ||
1058 | #define PORT_EN 0x0001 /* PPI Port Enable */ | ||
1059 | #define PORT_DIR 0x0002 /* PPI Port Direction */ | ||
1060 | #define XFR_TYPE 0x000C /* PPI Transfer Type */ | ||
1061 | #define PORT_CFG 0x0030 /* PPI Port Configuration */ | ||
1062 | #define FLD_SEL 0x0040 /* PPI Active Field Select */ | ||
1063 | #define PACK_EN 0x0080 /* PPI Packing Mode */ | ||
1064 | #define DMA32 0x0100 /* PPI 32-bit DMA Enable */ | ||
1065 | #define SKIP_EN 0x0200 /* PPI Skip Element Enable */ | ||
1066 | #define SKIP_EO 0x0400 /* PPI Skip Even/Odd Elements */ | ||
1067 | #define DLEN_8 0x0000 /* Data Length = 8 Bits */ | ||
1068 | #define DLEN_10 0x0800 /* Data Length = 10 Bits */ | ||
1069 | #define DLEN_11 0x1000 /* Data Length = 11 Bits */ | ||
1070 | #define DLEN_12 0x1800 /* Data Length = 12 Bits */ | ||
1071 | #define DLEN_13 0x2000 /* Data Length = 13 Bits */ | ||
1072 | #define DLEN_14 0x2800 /* Data Length = 14 Bits */ | ||
1073 | #define DLEN_15 0x3000 /* Data Length = 15 Bits */ | ||
1074 | #define DLEN_16 0x3800 /* Data Length = 16 Bits */ | ||
1075 | #define DLENGTH 0x3800 /* PPI Data Length */ | ||
1076 | #define POLC 0x4000 /* PPI Clock Polarity */ | ||
1077 | #define POLS 0x8000 /* PPI Frame Sync Polarity */ | ||
1078 | |||
1079 | /* PPI_STATUS Masks */ | ||
1080 | #define FLD 0x0400 /* Field Indicator */ | ||
1081 | #define FT_ERR 0x0800 /* Frame Track Error */ | ||
1082 | #define OVR 0x1000 /* FIFO Overflow Error */ | ||
1083 | #define UNDR 0x2000 /* FIFO Underrun Error */ | ||
1084 | #define ERR_DET 0x4000 /* Error Detected Indicator */ | ||
1085 | #define ERR_NCOR 0x8000 /* Error Not Corrected Indicator */ | ||
1086 | |||
1087 | |||
1088 | /* ******************** TWO-WIRE INTERFACE (TWI) MASKS ***********************/ | ||
1089 | /* TWI_CLKDIV Macros (Use: *pTWI_CLKDIV = CLKLOW(x)|CLKHI(y); ) */ | ||
1090 | #define CLKLOW(x) ((x) & 0xFF) /* Periods Clock Is Held Low */ | ||
1091 | #define CLKHI(y) (((y)&0xFF)<<0x8) /* Periods Before New Clock Low */ | ||
1092 | |||
1093 | /* TWI_PRESCALE Masks */ | ||
1094 | #define PRESCALE 0x007F /* SCLKs Per Internal Time Reference (10MHz) */ | ||
1095 | #define TWI_ENA 0x0080 /* TWI Enable */ | ||
1096 | #define SCCB 0x0200 /* SCCB Compatibility Enable */ | ||
1097 | |||
1098 | /* TWI_SLAVE_CTL Masks */ | ||
1099 | #define SEN 0x0001 /* Slave Enable */ | ||
1100 | #define SADD_LEN 0x0002 /* Slave Address Length */ | ||
1101 | #define STDVAL 0x0004 /* Slave Transmit Data Valid */ | ||
1102 | #define NAK 0x0008 /* NAK/ACK* Generated At Conclusion Of Transfer */ | ||
1103 | #define GEN 0x0010 /* General Call Adrress Matching Enabled */ | ||
1104 | |||
1105 | /* TWI_SLAVE_STAT Masks */ | ||
1106 | #define SDIR 0x0001 /* Slave Transfer Direction (Transmit/Receive*) */ | ||
1107 | #define GCALL 0x0002 /* General Call Indicator */ | ||
1108 | |||
1109 | /* TWI_MASTER_CTL Masks */ | ||
1110 | #define MEN 0x0001 /* Master Mode Enable */ | ||
1111 | #define MADD_LEN 0x0002 /* Master Address Length */ | ||
1112 | #define MDIR 0x0004 /* Master Transmit Direction (RX/TX*) */ | ||
1113 | #define FAST 0x0008 /* Use Fast Mode Timing Specs */ | ||
1114 | #define STOP 0x0010 /* Issue Stop Condition */ | ||
1115 | #define RSTART 0x0020 /* Repeat Start or Stop* At End Of Transfer */ | ||
1116 | #define DCNT 0x3FC0 /* Data Bytes To Transfer */ | ||
1117 | #define SDAOVR 0x4000 /* Serial Data Override */ | ||
1118 | #define SCLOVR 0x8000 /* Serial Clock Override */ | ||
1119 | |||
1120 | /* TWI_MASTER_STAT Masks */ | ||
1121 | #define MPROG 0x0001 /* Master Transfer In Progress */ | ||
1122 | #define LOSTARB 0x0002 /* Lost Arbitration Indicator (Xfer Aborted) */ | ||
1123 | #define ANAK 0x0004 /* Address Not Acknowledged */ | ||
1124 | #define DNAK 0x0008 /* Data Not Acknowledged */ | ||
1125 | #define BUFRDERR 0x0010 /* Buffer Read Error */ | ||
1126 | #define BUFWRERR 0x0020 /* Buffer Write Error */ | ||
1127 | #define SDASEN 0x0040 /* Serial Data Sense */ | ||
1128 | #define SCLSEN 0x0080 /* Serial Clock Sense */ | ||
1129 | #define BUSBUSY 0x0100 /* Bus Busy Indicator */ | ||
1130 | |||
1131 | /* TWI_INT_SRC and TWI_INT_ENABLE Masks */ | ||
1132 | #define SINIT 0x0001 /* Slave Transfer Initiated */ | ||
1133 | #define SCOMP 0x0002 /* Slave Transfer Complete */ | ||
1134 | #define SERR 0x0004 /* Slave Transfer Error */ | ||
1135 | #define SOVF 0x0008 /* Slave Overflow */ | ||
1136 | #define MCOMP 0x0010 /* Master Transfer Complete */ | ||
1137 | #define MERR 0x0020 /* Master Transfer Error */ | ||
1138 | #define XMTSERV 0x0040 /* Transmit FIFO Service */ | ||
1139 | #define RCVSERV 0x0080 /* Receive FIFO Service */ | ||
1140 | |||
1141 | /* TWI_FIFO_CTRL Masks */ | ||
1142 | #define XMTFLUSH 0x0001 /* Transmit Buffer Flush */ | ||
1143 | #define RCVFLUSH 0x0002 /* Receive Buffer Flush */ | ||
1144 | #define XMTINTLEN 0x0004 /* Transmit Buffer Interrupt Length */ | ||
1145 | #define RCVINTLEN 0x0008 /* Receive Buffer Interrupt Length */ | ||
1146 | |||
1147 | /* TWI_FIFO_STAT Masks */ | ||
1148 | #define XMTSTAT 0x0003 /* Transmit FIFO Status */ | ||
1149 | #define XMT_EMPTY 0x0000 /* Transmit FIFO Empty */ | ||
1150 | #define XMT_HALF 0x0001 /* Transmit FIFO Has 1 Byte To Write */ | ||
1151 | #define XMT_FULL 0x0003 /* Transmit FIFO Full (2 Bytes To Write) */ | ||
1152 | |||
1153 | #define RCVSTAT 0x000C /* Receive FIFO Status */ | ||
1154 | #define RCV_EMPTY 0x0000 /* Receive FIFO Empty */ | ||
1155 | #define RCV_HALF 0x0004 /* Receive FIFO Has 1 Byte To Read */ | ||
1156 | #define RCV_FULL 0x000C /* Receive FIFO Full (2 Bytes To Read) */ | ||
1157 | |||
1158 | |||
1159 | /* Omit CAN masks from defBF534.h */ | ||
1160 | |||
1161 | /* ******************* PIN CONTROL REGISTER MASKS ************************/ | ||
1162 | /* PORT_MUX Masks */ | ||
1163 | #define PJSE 0x0001 /* Port J SPI/SPORT Enable */ | ||
1164 | #define PJSE_SPORT 0x0000 /* Enable TFS0/DT0PRI */ | ||
1165 | #define PJSE_SPI 0x0001 /* Enable SPI_SSEL3:2 */ | ||
1166 | |||
1167 | #define PJCE(x) (((x)&0x3)<<1) /* Port J CAN/SPI/SPORT Enable */ | ||
1168 | #define PJCE_SPORT 0x0000 /* Enable DR0SEC/DT0SEC */ | ||
1169 | #define PJCE_CAN 0x0002 /* Enable CAN RX/TX */ | ||
1170 | #define PJCE_SPI 0x0004 /* Enable SPI_SSEL7 */ | ||
1171 | |||
1172 | #define PFDE 0x0008 /* Port F DMA Request Enable */ | ||
1173 | #define PFDE_UART 0x0000 /* Enable UART0 RX/TX */ | ||
1174 | #define PFDE_DMA 0x0008 /* Enable DMAR1:0 */ | ||
1175 | |||
1176 | #define PFTE 0x0010 /* Port F Timer Enable */ | ||
1177 | #define PFTE_UART 0x0000 /* Enable UART1 RX/TX */ | ||
1178 | #define PFTE_TIMER 0x0010 /* Enable TMR7:6 */ | ||
1179 | |||
1180 | #define PFS6E 0x0020 /* Port F SPI SSEL 6 Enable */ | ||
1181 | #define PFS6E_TIMER 0x0000 /* Enable TMR5 */ | ||
1182 | #define PFS6E_SPI 0x0020 /* Enable SPI_SSEL6 */ | ||
1183 | |||
1184 | #define PFS5E 0x0040 /* Port F SPI SSEL 5 Enable */ | ||
1185 | #define PFS5E_TIMER 0x0000 /* Enable TMR4 */ | ||
1186 | #define PFS5E_SPI 0x0040 /* Enable SPI_SSEL5 */ | ||
1187 | |||
1188 | #define PFS4E 0x0080 /* Port F SPI SSEL 4 Enable */ | ||
1189 | #define PFS4E_TIMER 0x0000 /* Enable TMR3 */ | ||
1190 | #define PFS4E_SPI 0x0080 /* Enable SPI_SSEL4 */ | ||
1191 | |||
1192 | #define PFFE 0x0100 /* Port F PPI Frame Sync Enable */ | ||
1193 | #define PFFE_TIMER 0x0000 /* Enable TMR2 */ | ||
1194 | #define PFFE_PPI 0x0100 /* Enable PPI FS3 */ | ||
1195 | |||
1196 | #define PGSE 0x0200 /* Port G SPORT1 Secondary Enable */ | ||
1197 | #define PGSE_PPI 0x0000 /* Enable PPI D9:8 */ | ||
1198 | #define PGSE_SPORT 0x0200 /* Enable DR1SEC/DT1SEC */ | ||
1199 | |||
1200 | #define PGRE 0x0400 /* Port G SPORT1 Receive Enable */ | ||
1201 | #define PGRE_PPI 0x0000 /* Enable PPI D12:10 */ | ||
1202 | #define PGRE_SPORT 0x0400 /* Enable DR1PRI/RFS1/RSCLK1 */ | ||
1203 | |||
1204 | #define PGTE 0x0800 /* Port G SPORT1 Transmit Enable */ | ||
1205 | #define PGTE_PPI 0x0000 /* Enable PPI D15:13 */ | ||
1206 | #define PGTE_SPORT 0x0800 /* Enable DT1PRI/TFS1/TSCLK1 */ | ||
1207 | |||
1208 | |||
1209 | /* ****************** HANDSHAKE DMA (HDMA) MASKS *********************/ | ||
1210 | /* HDMAx_CTL Masks */ | ||
1211 | #define HMDMAEN 0x0001 /* Enable Handshake DMA 0/1 */ | ||
1212 | #define REP 0x0002 /* HDMA Request Polarity */ | ||
1213 | #define UTE 0x0004 /* Urgency Threshold Enable */ | ||
1214 | #define OIE 0x0010 /* Overflow Interrupt Enable */ | ||
1215 | #define BDIE 0x0020 /* Block Done Interrupt Enable */ | ||
1216 | #define MBDI 0x0040 /* Mask Block Done IRQ If Pending ECNT */ | ||
1217 | #define DRQ 0x0300 /* HDMA Request Type */ | ||
1218 | #define DRQ_NONE 0x0000 /* No Request */ | ||
1219 | #define DRQ_SINGLE 0x0100 /* Channels Request Single */ | ||
1220 | #define DRQ_MULTI 0x0200 /* Channels Request Multi (Default) */ | ||
1221 | #define DRQ_URGENT 0x0300 /* Channels Request Multi Urgent */ | ||
1222 | #define RBC 0x1000 /* Reload BCNT With IBCNT */ | ||
1223 | #define PS 0x2000 /* HDMA Pin Status */ | ||
1224 | #define OI 0x4000 /* Overflow Interrupt Generated */ | ||
1225 | #define BDI 0x8000 /* Block Done Interrupt Generated */ | ||
1226 | |||
1227 | /* entry addresses of the user-callable Boot ROM functions */ | ||
1228 | |||
1229 | #define _BOOTROM_RESET 0xEF000000 | ||
1230 | #define _BOOTROM_FINAL_INIT 0xEF000002 | ||
1231 | #define _BOOTROM_DO_MEMORY_DMA 0xEF000006 | ||
1232 | #define _BOOTROM_BOOT_DXE_FLASH 0xEF000008 | ||
1233 | #define _BOOTROM_BOOT_DXE_SPI 0xEF00000A | ||
1234 | #define _BOOTROM_BOOT_DXE_TWI 0xEF00000C | ||
1235 | #define _BOOTROM_GET_DXE_ADDRESS_FLASH 0xEF000010 | ||
1236 | #define _BOOTROM_GET_DXE_ADDRESS_SPI 0xEF000012 | ||
1237 | #define _BOOTROM_GET_DXE_ADDRESS_TWI 0xEF000014 | ||
1238 | |||
1239 | /* Alternate Deprecated Macros Provided For Backwards Code Compatibility */ | ||
1240 | #define PGDE_UART PFDE_UART | ||
1241 | #define PGDE_DMA PFDE_DMA | ||
1242 | #define CKELOW SCKELOW | ||
1243 | |||
1244 | /* ==== end from defBF534.h ==== */ | ||
1245 | |||
1246 | /* HOST Port Registers */ | ||
1247 | |||
1248 | #define HOST_CONTROL 0xffc03400 /* HOST Control Register */ | ||
1249 | #define HOST_STATUS 0xffc03404 /* HOST Status Register */ | ||
1250 | #define HOST_TIMEOUT 0xffc03408 /* HOST Acknowledge Mode Timeout Register */ | ||
1251 | |||
1252 | /* Counter Registers */ | ||
1253 | |||
1254 | #define CNT_CONFIG 0xffc03500 /* Configuration Register */ | ||
1255 | #define CNT_IMASK 0xffc03504 /* Interrupt Mask Register */ | ||
1256 | #define CNT_STATUS 0xffc03508 /* Status Register */ | ||
1257 | #define CNT_COMMAND 0xffc0350c /* Command Register */ | ||
1258 | #define CNT_DEBOUNCE 0xffc03510 /* Debounce Register */ | ||
1259 | #define CNT_COUNTER 0xffc03514 /* Counter Register */ | ||
1260 | #define CNT_MAX 0xffc03518 /* Maximal Count Register */ | ||
1261 | #define CNT_MIN 0xffc0351c /* Minimal Count Register */ | ||
1262 | |||
1263 | /* OTP/FUSE Registers */ | ||
1264 | |||
1265 | #define OTP_CONTROL 0xffc03600 /* OTP/Fuse Control Register */ | ||
1266 | #define OTP_BEN 0xffc03604 /* OTP/Fuse Byte Enable */ | ||
1267 | #define OTP_STATUS 0xffc03608 /* OTP/Fuse Status */ | ||
1268 | #define OTP_TIMING 0xffc0360c /* OTP/Fuse Access Timing */ | ||
1269 | |||
1270 | /* Security Registers */ | ||
1271 | |||
1272 | #define SECURE_SYSSWT 0xffc03620 /* Secure System Switches */ | ||
1273 | #define SECURE_CONTROL 0xffc03624 /* Secure Control */ | ||
1274 | #define SECURE_STATUS 0xffc03628 /* Secure Status */ | ||
1275 | |||
1276 | /* OTP Read/Write Data Buffer Registers */ | ||
1277 | |||
1278 | #define OTP_DATA0 0xffc03680 /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1279 | #define OTP_DATA1 0xffc03684 /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1280 | #define OTP_DATA2 0xffc03688 /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1281 | #define OTP_DATA3 0xffc0368c /* OTP/Fuse Data (OTP_DATA0-3) accesses the fuse read write buffer */ | ||
1282 | |||
1283 | /* NFC Registers */ | ||
1284 | |||
1285 | #define NFC_CTL 0xffc03700 /* NAND Control Register */ | ||
1286 | #define NFC_STAT 0xffc03704 /* NAND Status Register */ | ||
1287 | #define NFC_IRQSTAT 0xffc03708 /* NAND Interrupt Status Register */ | ||
1288 | #define NFC_IRQMASK 0xffc0370c /* NAND Interrupt Mask Register */ | ||
1289 | #define NFC_ECC0 0xffc03710 /* NAND ECC Register 0 */ | ||
1290 | #define NFC_ECC1 0xffc03714 /* NAND ECC Register 1 */ | ||
1291 | #define NFC_ECC2 0xffc03718 /* NAND ECC Register 2 */ | ||
1292 | #define NFC_ECC3 0xffc0371c /* NAND ECC Register 3 */ | ||
1293 | #define NFC_COUNT 0xffc03720 /* NAND ECC Count Register */ | ||
1294 | #define NFC_RST 0xffc03724 /* NAND ECC Reset Register */ | ||
1295 | #define NFC_PGCTL 0xffc03728 /* NAND Page Control Register */ | ||
1296 | #define NFC_READ 0xffc0372c /* NAND Read Data Register */ | ||
1297 | #define NFC_ADDR 0xffc03740 /* NAND Address Register */ | ||
1298 | #define NFC_CMD 0xffc03744 /* NAND Command Register */ | ||
1299 | #define NFC_DATA_WR 0xffc03748 /* NAND Data Write Register */ | ||
1300 | #define NFC_DATA_RD 0xffc0374c /* NAND Data Read Register */ | ||
1301 | |||
1302 | /* ********************************************************** */ | ||
1303 | /* SINGLE BIT MACRO PAIRS (bit mask and negated one) */ | ||
1304 | /* and MULTI BIT READ MACROS */ | ||
1305 | /* ********************************************************** */ | ||
1306 | |||
1307 | /* Bit masks for HOST_CONTROL */ | ||
1308 | |||
1309 | #define HOST_CNTR_HOST_EN 0x1 /* Host Enable */ | ||
1310 | #define HOST_CNTR_nHOST_EN 0x0 | ||
1311 | #define HOST_CNTR_HOST_END 0x2 /* Host Endianess */ | ||
1312 | #define HOST_CNTR_nHOST_END 0x0 | ||
1313 | #define HOST_CNTR_DATA_SIZE 0x4 /* Data Size */ | ||
1314 | #define HOST_CNTR_nDATA_SIZE 0x0 | ||
1315 | #define HOST_CNTR_HOST_RST 0x8 /* Host Reset */ | ||
1316 | #define HOST_CNTR_nHOST_RST 0x0 | ||
1317 | #define HOST_CNTR_HRDY_OVR 0x20 /* Host Ready Override */ | ||
1318 | #define HOST_CNTR_nHRDY_OVR 0x0 | ||
1319 | #define HOST_CNTR_INT_MODE 0x40 /* Interrupt Mode */ | ||
1320 | #define HOST_CNTR_nINT_MODE 0x0 | ||
1321 | #define HOST_CNTR_BT_EN 0x80 /* Bus Timeout Enable */ | ||
1322 | #define HOST_CNTR_ nBT_EN 0x0 | ||
1323 | #define HOST_CNTR_EHW 0x100 /* Enable Host Write */ | ||
1324 | #define HOST_CNTR_nEHW 0x0 | ||
1325 | #define HOST_CNTR_EHR 0x200 /* Enable Host Read */ | ||
1326 | #define HOST_CNTR_nEHR 0x0 | ||
1327 | #define HOST_CNTR_BDR 0x400 /* Burst DMA Requests */ | ||
1328 | #define HOST_CNTR_nBDR 0x0 | ||
1329 | |||
1330 | /* Bit masks for HOST_STATUS */ | ||
1331 | |||
1332 | #define HOST_STAT_READY 0x1 /* DMA Ready */ | ||
1333 | #define HOST_STAT_nREADY 0x0 | ||
1334 | #define HOST_STAT_FIFOFULL 0x2 /* FIFO Full */ | ||
1335 | #define HOST_STAT_nFIFOFULL 0x0 | ||
1336 | #define HOST_STAT_FIFOEMPTY 0x4 /* FIFO Empty */ | ||
1337 | #define HOST_STAT_nFIFOEMPTY 0x0 | ||
1338 | #define HOST_STAT_COMPLETE 0x8 /* DMA Complete */ | ||
1339 | #define HOST_STAT_nCOMPLETE 0x0 | ||
1340 | #define HOST_STAT_HSHK 0x10 /* Host Handshake */ | ||
1341 | #define HOST_STAT_nHSHK 0x0 | ||
1342 | #define HOST_STAT_TIMEOUT 0x20 /* Host Timeout */ | ||
1343 | #define HOST_STAT_nTIMEOUT 0x0 | ||
1344 | #define HOST_STAT_HIRQ 0x40 /* Host Interrupt Request */ | ||
1345 | #define HOST_STAT_nHIRQ 0x0 | ||
1346 | #define HOST_STAT_ALLOW_CNFG 0x80 /* Allow New Configuration */ | ||
1347 | #define HOST_STAT_nALLOW_CNFG 0x0 | ||
1348 | #define HOST_STAT_DMA_DIR 0x100 /* DMA Direction */ | ||
1349 | #define HOST_STAT_nDMA_DIR 0x0 | ||
1350 | #define HOST_STAT_BTE 0x200 /* Bus Timeout Enabled */ | ||
1351 | #define HOST_STAT_nBTE 0x0 | ||
1352 | #define HOST_STAT_HOSTRD_DONE 0x8000 /* Host Read Completion Interrupt */ | ||
1353 | #define HOST_STAT_nHOSTRD_DONE 0x0 | ||
1354 | |||
1355 | /* Bit masks for HOST_TIMEOUT */ | ||
1356 | |||
1357 | #define HOST_COUNT_TIMEOUT 0x7ff /* Host Timeout count */ | ||
1358 | |||
1359 | /* Bit masks for SECURE_SYSSWT */ | ||
1360 | |||
1361 | #define EMUDABL 0x1 /* Emulation Disable. */ | ||
1362 | #define nEMUDABL 0x0 | ||
1363 | #define RSTDABL 0x2 /* Reset Disable */ | ||
1364 | #define nRSTDABL 0x0 | ||
1365 | #define L1IDABL 0x1c /* L1 Instruction Memory Disable. */ | ||
1366 | #define L1DADABL 0xe0 /* L1 Data Bank A Memory Disable. */ | ||
1367 | #define L1DBDABL 0x700 /* L1 Data Bank B Memory Disable. */ | ||
1368 | #define DMA0OVR 0x800 /* DMA0 Memory Access Override */ | ||
1369 | #define nDMA0OVR 0x0 | ||
1370 | #define DMA1OVR 0x1000 /* DMA1 Memory Access Override */ | ||
1371 | #define nDMA1OVR 0x0 | ||
1372 | #define EMUOVR 0x4000 /* Emulation Override */ | ||
1373 | #define nEMUOVR 0x0 | ||
1374 | #define OTPSEN 0x8000 /* OTP Secrets Enable. */ | ||
1375 | #define nOTPSEN 0x0 | ||
1376 | #define L2DABL 0x70000 /* L2 Memory Disable. */ | ||
1377 | |||
1378 | /* Bit masks for SECURE_CONTROL */ | ||
1379 | |||
1380 | #define SECURE0 0x1 /* SECURE 0 */ | ||
1381 | #define nSECURE0 0x0 | ||
1382 | #define SECURE1 0x2 /* SECURE 1 */ | ||
1383 | #define nSECURE1 0x0 | ||
1384 | #define SECURE2 0x4 /* SECURE 2 */ | ||
1385 | #define nSECURE2 0x0 | ||
1386 | #define SECURE3 0x8 /* SECURE 3 */ | ||
1387 | #define nSECURE3 0x0 | ||
1388 | |||
1389 | /* Bit masks for SECURE_STATUS */ | ||
1390 | |||
1391 | #define SECMODE 0x3 /* Secured Mode Control State */ | ||
1392 | #define NMI 0x4 /* Non Maskable Interrupt */ | ||
1393 | #define nNMI 0x0 | ||
1394 | #define AFVALID 0x8 /* Authentication Firmware Valid */ | ||
1395 | #define nAFVALID 0x0 | ||
1396 | #define AFEXIT 0x10 /* Authentication Firmware Exit */ | ||
1397 | #define nAFEXIT 0x0 | ||
1398 | #define SECSTAT 0xe0 /* Secure Status */ | ||
1399 | |||
1400 | #endif /* _DEF_BF52X_H */ | ||