]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-at91rm9200/at91rm9200.c
c32d0c996f90cdb7068d9d8ae663007f1630d7c7
[linux-2.6-omap-h63xx.git] / arch / arm / mach-at91rm9200 / at91rm9200.c
1 /*
2  * arch/arm/mach-at91rm9200/at91rm9200.c
3  *
4  *  Copyright (C) 2005 SAN People
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  */
12
13 #include <linux/module.h>
14
15 #include <asm/mach/arch.h>
16 #include <asm/mach/map.h>
17
18 #include <asm/hardware.h>
19 #include "generic.h"
20 #include "clock.h"
21
22 static struct map_desc at91rm9200_io_desc[] __initdata = {
23         {
24                 .virtual        = AT91_VA_BASE_SYS,
25                 .pfn            = __phys_to_pfn(AT91_BASE_SYS),
26                 .length         = SZ_4K,
27                 .type           = MT_DEVICE,
28         }, {
29                 .virtual        = AT91_VA_BASE_SPI,
30                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_SPI),
31                 .length         = SZ_16K,
32                 .type           = MT_DEVICE,
33         }, {
34                 .virtual        = AT91_VA_BASE_SSC2,
35                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_SSC2),
36                 .length         = SZ_16K,
37                 .type           = MT_DEVICE,
38         }, {
39                 .virtual        = AT91_VA_BASE_SSC1,
40                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_SSC1),
41                 .length         = SZ_16K,
42                 .type           = MT_DEVICE,
43         }, {
44                 .virtual        = AT91_VA_BASE_SSC0,
45                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_SSC0),
46                 .length         = SZ_16K,
47                 .type           = MT_DEVICE,
48         }, {
49                 .virtual        = AT91_VA_BASE_US3,
50                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_US3),
51                 .length         = SZ_16K,
52                 .type           = MT_DEVICE,
53         }, {
54                 .virtual        = AT91_VA_BASE_US2,
55                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_US2),
56                 .length         = SZ_16K,
57                 .type           = MT_DEVICE,
58         }, {
59                 .virtual        = AT91_VA_BASE_US1,
60                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_US1),
61                 .length         = SZ_16K,
62                 .type           = MT_DEVICE,
63         }, {
64                 .virtual        = AT91_VA_BASE_US0,
65                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_US0),
66                 .length         = SZ_16K,
67                 .type           = MT_DEVICE,
68         }, {
69                 .virtual        = AT91_VA_BASE_EMAC,
70                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_EMAC),
71                 .length         = SZ_16K,
72                 .type           = MT_DEVICE,
73         }, {
74                 .virtual        = AT91_VA_BASE_TWI,
75                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_TWI),
76                 .length         = SZ_16K,
77                 .type           = MT_DEVICE,
78         }, {
79                 .virtual        = AT91_VA_BASE_MCI,
80                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_MCI),
81                 .length         = SZ_16K,
82                 .type           = MT_DEVICE,
83         }, {
84                 .virtual        = AT91_VA_BASE_UDP,
85                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_UDP),
86                 .length         = SZ_16K,
87                 .type           = MT_DEVICE,
88         }, {
89                 .virtual        = AT91_VA_BASE_TCB1,
90                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_TCB1),
91                 .length         = SZ_16K,
92                 .type           = MT_DEVICE,
93         }, {
94                 .virtual        = AT91_VA_BASE_TCB0,
95                 .pfn            = __phys_to_pfn(AT91RM9200_BASE_TCB0),
96                 .length         = SZ_16K,
97                 .type           = MT_DEVICE,
98         }, {
99                 .virtual        = AT91_SRAM_VIRT_BASE,
100                 .pfn            = __phys_to_pfn(AT91RM9200_SRAM_BASE),
101                 .length         = AT91RM9200_SRAM_SIZE,
102                 .type           = MT_DEVICE,
103         },
104 };
105
106 /* --------------------------------------------------------------------
107  *  Clocks
108  * -------------------------------------------------------------------- */
109
110 /*
111  * The peripheral clocks.
112  */
113 static struct clk udc_clk = {
114         .name           = "udc_clk",
115         .pmc_mask       = 1 << AT91RM9200_ID_UDP,
116         .type           = CLK_TYPE_PERIPHERAL,
117 };
118 static struct clk ohci_clk = {
119         .name           = "ohci_clk",
120         .pmc_mask       = 1 << AT91RM9200_ID_UHP,
121         .type           = CLK_TYPE_PERIPHERAL,
122 };
123 static struct clk ether_clk = {
124         .name           = "ether_clk",
125         .pmc_mask       = 1 << AT91RM9200_ID_EMAC,
126         .type           = CLK_TYPE_PERIPHERAL,
127 };
128 static struct clk mmc_clk = {
129         .name           = "mci_clk",
130         .pmc_mask       = 1 << AT91RM9200_ID_MCI,
131         .type           = CLK_TYPE_PERIPHERAL,
132 };
133 static struct clk twi_clk = {
134         .name           = "twi_clk",
135         .pmc_mask       = 1 << AT91RM9200_ID_TWI,
136         .type           = CLK_TYPE_PERIPHERAL,
137 };
138 static struct clk usart0_clk = {
139         .name           = "usart0_clk",
140         .pmc_mask       = 1 << AT91RM9200_ID_US0,
141         .type           = CLK_TYPE_PERIPHERAL,
142 };
143 static struct clk usart1_clk = {
144         .name           = "usart1_clk",
145         .pmc_mask       = 1 << AT91RM9200_ID_US1,
146         .type           = CLK_TYPE_PERIPHERAL,
147 };
148 static struct clk usart2_clk = {
149         .name           = "usart2_clk",
150         .pmc_mask       = 1 << AT91RM9200_ID_US2,
151         .type           = CLK_TYPE_PERIPHERAL,
152 };
153 static struct clk usart3_clk = {
154         .name           = "usart3_clk",
155         .pmc_mask       = 1 << AT91RM9200_ID_US3,
156         .type           = CLK_TYPE_PERIPHERAL,
157 };
158 static struct clk spi_clk = {
159         .name           = "spi_clk",
160         .pmc_mask       = 1 << AT91RM9200_ID_SPI,
161         .type           = CLK_TYPE_PERIPHERAL,
162 };
163 static struct clk pioA_clk = {
164         .name           = "pioA_clk",
165         .pmc_mask       = 1 << AT91RM9200_ID_PIOA,
166         .type           = CLK_TYPE_PERIPHERAL,
167 };
168 static struct clk pioB_clk = {
169         .name           = "pioB_clk",
170         .pmc_mask       = 1 << AT91RM9200_ID_PIOB,
171         .type           = CLK_TYPE_PERIPHERAL,
172 };
173 static struct clk pioC_clk = {
174         .name           = "pioC_clk",
175         .pmc_mask       = 1 << AT91RM9200_ID_PIOC,
176         .type           = CLK_TYPE_PERIPHERAL,
177 };
178 static struct clk pioD_clk = {
179         .name           = "pioD_clk",
180         .pmc_mask       = 1 << AT91RM9200_ID_PIOD,
181         .type           = CLK_TYPE_PERIPHERAL,
182 };
183
184 static struct clk *periph_clocks[] __initdata = {
185         &pioA_clk,
186         &pioB_clk,
187         &pioC_clk,
188         &pioD_clk,
189         &usart0_clk,
190         &usart1_clk,
191         &usart2_clk,
192         &usart3_clk,
193         &mmc_clk,
194         &udc_clk,
195         &twi_clk,
196         &spi_clk,
197         // ssc 0 .. ssc2
198         // tc0 .. tc5
199         &ohci_clk,
200         &ether_clk,
201         // irq0 .. irq6
202 };
203
204 /*
205  * The four programmable clocks.
206  * You must configure pin multiplexing to bring these signals out.
207  */
208 static struct clk pck0 = {
209         .name           = "pck0",
210         .pmc_mask       = AT91_PMC_PCK0,
211         .type           = CLK_TYPE_PROGRAMMABLE,
212         .id             = 0,
213 };
214 static struct clk pck1 = {
215         .name           = "pck1",
216         .pmc_mask       = AT91_PMC_PCK1,
217         .type           = CLK_TYPE_PROGRAMMABLE,
218         .id             = 1,
219 };
220 static struct clk pck2 = {
221         .name           = "pck2",
222         .pmc_mask       = AT91_PMC_PCK2,
223         .type           = CLK_TYPE_PROGRAMMABLE,
224         .id             = 2,
225 };
226 static struct clk pck3 = {
227         .name           = "pck3",
228         .pmc_mask       = AT91_PMC_PCK3,
229         .type           = CLK_TYPE_PROGRAMMABLE,
230         .id             = 3,
231 };
232
233 static void __init at91rm9200_register_clocks(void)
234 {
235         int i;
236
237         for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
238                 clk_register(periph_clocks[i]);
239
240         clk_register(&pck0);
241         clk_register(&pck1);
242         clk_register(&pck2);
243         clk_register(&pck3);
244 }
245
246 /* --------------------------------------------------------------------
247  *  GPIO
248  * -------------------------------------------------------------------- */
249
250 static struct at91_gpio_bank at91rm9200_gpio[] = {
251         {
252                 .id             = AT91RM9200_ID_PIOA,
253                 .offset         = AT91_PIOA,
254                 .clock          = &pioA_clk,
255         }, {
256                 .id             = AT91RM9200_ID_PIOB,
257                 .offset         = AT91_PIOB,
258                 .clock          = &pioB_clk,
259         }, {
260                 .id             = AT91RM9200_ID_PIOC,
261                 .offset         = AT91_PIOC,
262                 .clock          = &pioC_clk,
263         }, {
264                 .id             = AT91RM9200_ID_PIOD,
265                 .offset         = AT91_PIOD,
266                 .clock          = &pioD_clk,
267         }
268 };
269
270 /* --------------------------------------------------------------------
271  *  AT91RM9200 processor initialization
272  * -------------------------------------------------------------------- */
273 void __init at91rm9200_initialize(unsigned long main_clock, unsigned short banks)
274 {
275         /* Map peripherals */
276         iotable_init(at91rm9200_io_desc, ARRAY_SIZE(at91rm9200_io_desc));
277
278         /* Init clock subsystem */
279         at91_clock_init(main_clock);
280
281         /* Register the processor-specific clocks */
282         at91rm9200_register_clocks();
283
284         /* Initialize GPIO subsystem */
285         at91_gpio_init(at91rm9200_gpio, banks);
286 }
287
288
289 /* --------------------------------------------------------------------
290  *  Interrupt initialization
291  * -------------------------------------------------------------------- */
292
293 /*
294  * The default interrupt priority levels (0 = lowest, 7 = highest).
295  */
296 static unsigned int at91rm9200_default_irq_priority[NR_AIC_IRQS] __initdata = {
297         7,      /* Advanced Interrupt Controller (FIQ) */
298         7,      /* System Peripherals */
299         0,      /* Parallel IO Controller A */
300         0,      /* Parallel IO Controller B */
301         0,      /* Parallel IO Controller C */
302         0,      /* Parallel IO Controller D */
303         6,      /* USART 0 */
304         6,      /* USART 1 */
305         6,      /* USART 2 */
306         6,      /* USART 3 */
307         0,      /* Multimedia Card Interface */
308         4,      /* USB Device Port */
309         0,      /* Two-Wire Interface */
310         6,      /* Serial Peripheral Interface */
311         5,      /* Serial Synchronous Controller 0 */
312         5,      /* Serial Synchronous Controller 1 */
313         5,      /* Serial Synchronous Controller 2 */
314         0,      /* Timer Counter 0 */
315         0,      /* Timer Counter 1 */
316         0,      /* Timer Counter 2 */
317         0,      /* Timer Counter 3 */
318         0,      /* Timer Counter 4 */
319         0,      /* Timer Counter 5 */
320         3,      /* USB Host port */
321         3,      /* Ethernet MAC */
322         0,      /* Advanced Interrupt Controller (IRQ0) */
323         0,      /* Advanced Interrupt Controller (IRQ1) */
324         0,      /* Advanced Interrupt Controller (IRQ2) */
325         0,      /* Advanced Interrupt Controller (IRQ3) */
326         0,      /* Advanced Interrupt Controller (IRQ4) */
327         0,      /* Advanced Interrupt Controller (IRQ5) */
328         0       /* Advanced Interrupt Controller (IRQ6) */
329 };
330
331 void __init at91rm9200_init_interrupts(unsigned int priority[NR_AIC_IRQS])
332 {
333         if (!priority)
334                 priority = at91rm9200_default_irq_priority;
335
336         /* Initialize the AIC interrupt controller */
337         at91_aic_init(priority);
338
339         /* Enable GPIO interrupts */
340         at91_gpio_irq_setup();
341 }