2 * arch/arm/mach-at91rm9200/at91rm9200.c
4 * Copyright (C) 2005 SAN People
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.
13 #include <linux/module.h>
15 #include <asm/mach/arch.h>
16 #include <asm/mach/map.h>
18 #include <asm/hardware.h>
22 static struct map_desc at91rm9200_io_desc
[] __initdata
= {
24 .virtual = AT91_VA_BASE_SYS
,
25 .pfn
= __phys_to_pfn(AT91_BASE_SYS
),
29 .virtual = AT91_VA_BASE_SPI
,
30 .pfn
= __phys_to_pfn(AT91RM9200_BASE_SPI
),
34 .virtual = AT91_VA_BASE_EMAC
,
35 .pfn
= __phys_to_pfn(AT91RM9200_BASE_EMAC
),
39 .virtual = AT91_VA_BASE_TWI
,
40 .pfn
= __phys_to_pfn(AT91RM9200_BASE_TWI
),
44 .virtual = AT91_VA_BASE_MCI
,
45 .pfn
= __phys_to_pfn(AT91RM9200_BASE_MCI
),
49 .virtual = AT91_VA_BASE_UDP
,
50 .pfn
= __phys_to_pfn(AT91RM9200_BASE_UDP
),
54 .virtual = AT91_SRAM_VIRT_BASE
,
55 .pfn
= __phys_to_pfn(AT91RM9200_SRAM_BASE
),
56 .length
= AT91RM9200_SRAM_SIZE
,
61 /* --------------------------------------------------------------------
63 * -------------------------------------------------------------------- */
66 * The peripheral clocks.
68 static struct clk udc_clk
= {
70 .pmc_mask
= 1 << AT91RM9200_ID_UDP
,
71 .type
= CLK_TYPE_PERIPHERAL
,
73 static struct clk ohci_clk
= {
75 .pmc_mask
= 1 << AT91RM9200_ID_UHP
,
76 .type
= CLK_TYPE_PERIPHERAL
,
78 static struct clk ether_clk
= {
80 .pmc_mask
= 1 << AT91RM9200_ID_EMAC
,
81 .type
= CLK_TYPE_PERIPHERAL
,
83 static struct clk mmc_clk
= {
85 .pmc_mask
= 1 << AT91RM9200_ID_MCI
,
86 .type
= CLK_TYPE_PERIPHERAL
,
88 static struct clk twi_clk
= {
90 .pmc_mask
= 1 << AT91RM9200_ID_TWI
,
91 .type
= CLK_TYPE_PERIPHERAL
,
93 static struct clk usart0_clk
= {
95 .pmc_mask
= 1 << AT91RM9200_ID_US0
,
96 .type
= CLK_TYPE_PERIPHERAL
,
98 static struct clk usart1_clk
= {
100 .pmc_mask
= 1 << AT91RM9200_ID_US1
,
101 .type
= CLK_TYPE_PERIPHERAL
,
103 static struct clk usart2_clk
= {
104 .name
= "usart2_clk",
105 .pmc_mask
= 1 << AT91RM9200_ID_US2
,
106 .type
= CLK_TYPE_PERIPHERAL
,
108 static struct clk usart3_clk
= {
109 .name
= "usart3_clk",
110 .pmc_mask
= 1 << AT91RM9200_ID_US3
,
111 .type
= CLK_TYPE_PERIPHERAL
,
113 static struct clk spi_clk
= {
115 .pmc_mask
= 1 << AT91RM9200_ID_SPI
,
116 .type
= CLK_TYPE_PERIPHERAL
,
118 static struct clk pioA_clk
= {
120 .pmc_mask
= 1 << AT91RM9200_ID_PIOA
,
121 .type
= CLK_TYPE_PERIPHERAL
,
123 static struct clk pioB_clk
= {
125 .pmc_mask
= 1 << AT91RM9200_ID_PIOB
,
126 .type
= CLK_TYPE_PERIPHERAL
,
128 static struct clk pioC_clk
= {
130 .pmc_mask
= 1 << AT91RM9200_ID_PIOC
,
131 .type
= CLK_TYPE_PERIPHERAL
,
133 static struct clk pioD_clk
= {
135 .pmc_mask
= 1 << AT91RM9200_ID_PIOD
,
136 .type
= CLK_TYPE_PERIPHERAL
,
139 static struct clk
*periph_clocks
[] __initdata
= {
160 * The four programmable clocks.
161 * You must configure pin multiplexing to bring these signals out.
163 static struct clk pck0
= {
165 .pmc_mask
= AT91_PMC_PCK0
,
166 .type
= CLK_TYPE_PROGRAMMABLE
,
169 static struct clk pck1
= {
171 .pmc_mask
= AT91_PMC_PCK1
,
172 .type
= CLK_TYPE_PROGRAMMABLE
,
175 static struct clk pck2
= {
177 .pmc_mask
= AT91_PMC_PCK2
,
178 .type
= CLK_TYPE_PROGRAMMABLE
,
181 static struct clk pck3
= {
183 .pmc_mask
= AT91_PMC_PCK3
,
184 .type
= CLK_TYPE_PROGRAMMABLE
,
188 static void __init
at91rm9200_register_clocks(void)
192 for (i
= 0; i
< ARRAY_SIZE(periph_clocks
); i
++)
193 clk_register(periph_clocks
[i
]);
201 /* --------------------------------------------------------------------
203 * -------------------------------------------------------------------- */
205 static struct at91_gpio_bank at91rm9200_gpio
[] = {
207 .id
= AT91RM9200_ID_PIOA
,
211 .id
= AT91RM9200_ID_PIOB
,
215 .id
= AT91RM9200_ID_PIOC
,
219 .id
= AT91RM9200_ID_PIOD
,
225 /* --------------------------------------------------------------------
226 * AT91RM9200 processor initialization
227 * -------------------------------------------------------------------- */
228 void __init
at91rm9200_initialize(unsigned long main_clock
, unsigned short banks
)
230 /* Map peripherals */
231 iotable_init(at91rm9200_io_desc
, ARRAY_SIZE(at91rm9200_io_desc
));
233 /* Init clock subsystem */
234 at91_clock_init(main_clock
);
236 /* Register the processor-specific clocks */
237 at91rm9200_register_clocks();
239 /* Initialize GPIO subsystem */
240 at91_gpio_init(at91rm9200_gpio
, banks
);
244 /* --------------------------------------------------------------------
245 * Interrupt initialization
246 * -------------------------------------------------------------------- */
249 * The default interrupt priority levels (0 = lowest, 7 = highest).
251 static unsigned int at91rm9200_default_irq_priority
[NR_AIC_IRQS
] __initdata
= {
252 7, /* Advanced Interrupt Controller (FIQ) */
253 7, /* System Peripherals */
254 0, /* Parallel IO Controller A */
255 0, /* Parallel IO Controller B */
256 0, /* Parallel IO Controller C */
257 0, /* Parallel IO Controller D */
262 0, /* Multimedia Card Interface */
263 4, /* USB Device Port */
264 0, /* Two-Wire Interface */
265 6, /* Serial Peripheral Interface */
266 5, /* Serial Synchronous Controller 0 */
267 5, /* Serial Synchronous Controller 1 */
268 5, /* Serial Synchronous Controller 2 */
269 0, /* Timer Counter 0 */
270 0, /* Timer Counter 1 */
271 0, /* Timer Counter 2 */
272 0, /* Timer Counter 3 */
273 0, /* Timer Counter 4 */
274 0, /* Timer Counter 5 */
275 3, /* USB Host port */
276 3, /* Ethernet MAC */
277 0, /* Advanced Interrupt Controller (IRQ0) */
278 0, /* Advanced Interrupt Controller (IRQ1) */
279 0, /* Advanced Interrupt Controller (IRQ2) */
280 0, /* Advanced Interrupt Controller (IRQ3) */
281 0, /* Advanced Interrupt Controller (IRQ4) */
282 0, /* Advanced Interrupt Controller (IRQ5) */
283 0 /* Advanced Interrupt Controller (IRQ6) */
286 void __init
at91rm9200_init_interrupts(unsigned int priority
[NR_AIC_IRQS
])
289 priority
= at91rm9200_default_irq_priority
;
291 /* Initialize the AIC interrupt controller */
292 at91_aic_init(priority
);
294 /* Enable GPIO interrupts */
295 at91_gpio_irq_setup();