2 * arch/arm/mach-at91/at91sam9261.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>
17 #include <asm/mach/arch.h>
18 #include <asm/mach/map.h>
20 #include <mach/at91sam9261.h>
21 #include <mach/at91_pmc.h>
22 #include <mach/at91_rstc.h>
23 #include <mach/at91_shdwc.h>
28 static struct map_desc at91sam9261_io_desc
[] __initdata
= {
30 .virtual = AT91_VA_BASE_SYS
,
31 .pfn
= __phys_to_pfn(AT91_BASE_SYS
),
37 static struct map_desc at91sam9261_sram_desc
[] __initdata
= {
39 .virtual = AT91_IO_VIRT_BASE
- AT91SAM9261_SRAM_SIZE
,
40 .pfn
= __phys_to_pfn(AT91SAM9261_SRAM_BASE
),
41 .length
= AT91SAM9261_SRAM_SIZE
,
46 static struct map_desc at91sam9g10_sram_desc
[] __initdata
= {
48 .virtual = AT91_IO_VIRT_BASE
- AT91SAM9G10_SRAM_SIZE
,
49 .pfn
= __phys_to_pfn(AT91SAM9G10_SRAM_BASE
),
50 .length
= AT91SAM9G10_SRAM_SIZE
,
55 /* --------------------------------------------------------------------
57 * -------------------------------------------------------------------- */
60 * The peripheral clocks.
62 static struct clk pioA_clk
= {
64 .pmc_mask
= 1 << AT91SAM9261_ID_PIOA
,
65 .type
= CLK_TYPE_PERIPHERAL
,
67 static struct clk pioB_clk
= {
69 .pmc_mask
= 1 << AT91SAM9261_ID_PIOB
,
70 .type
= CLK_TYPE_PERIPHERAL
,
72 static struct clk pioC_clk
= {
74 .pmc_mask
= 1 << AT91SAM9261_ID_PIOC
,
75 .type
= CLK_TYPE_PERIPHERAL
,
77 static struct clk usart0_clk
= {
79 .pmc_mask
= 1 << AT91SAM9261_ID_US0
,
80 .type
= CLK_TYPE_PERIPHERAL
,
82 static struct clk usart1_clk
= {
84 .pmc_mask
= 1 << AT91SAM9261_ID_US1
,
85 .type
= CLK_TYPE_PERIPHERAL
,
87 static struct clk usart2_clk
= {
89 .pmc_mask
= 1 << AT91SAM9261_ID_US2
,
90 .type
= CLK_TYPE_PERIPHERAL
,
92 static struct clk mmc_clk
= {
94 .pmc_mask
= 1 << AT91SAM9261_ID_MCI
,
95 .type
= CLK_TYPE_PERIPHERAL
,
97 static struct clk udc_clk
= {
99 .pmc_mask
= 1 << AT91SAM9261_ID_UDP
,
100 .type
= CLK_TYPE_PERIPHERAL
,
102 static struct clk twi_clk
= {
104 .pmc_mask
= 1 << AT91SAM9261_ID_TWI
,
105 .type
= CLK_TYPE_PERIPHERAL
,
107 static struct clk spi0_clk
= {
109 .pmc_mask
= 1 << AT91SAM9261_ID_SPI0
,
110 .type
= CLK_TYPE_PERIPHERAL
,
112 static struct clk spi1_clk
= {
114 .pmc_mask
= 1 << AT91SAM9261_ID_SPI1
,
115 .type
= CLK_TYPE_PERIPHERAL
,
117 static struct clk ssc0_clk
= {
119 .pmc_mask
= 1 << AT91SAM9261_ID_SSC0
,
120 .type
= CLK_TYPE_PERIPHERAL
,
122 static struct clk ssc1_clk
= {
124 .pmc_mask
= 1 << AT91SAM9261_ID_SSC1
,
125 .type
= CLK_TYPE_PERIPHERAL
,
127 static struct clk ssc2_clk
= {
129 .pmc_mask
= 1 << AT91SAM9261_ID_SSC2
,
130 .type
= CLK_TYPE_PERIPHERAL
,
132 static struct clk tc0_clk
= {
134 .pmc_mask
= 1 << AT91SAM9261_ID_TC0
,
135 .type
= CLK_TYPE_PERIPHERAL
,
137 static struct clk tc1_clk
= {
139 .pmc_mask
= 1 << AT91SAM9261_ID_TC1
,
140 .type
= CLK_TYPE_PERIPHERAL
,
142 static struct clk tc2_clk
= {
144 .pmc_mask
= 1 << AT91SAM9261_ID_TC2
,
145 .type
= CLK_TYPE_PERIPHERAL
,
147 static struct clk ohci_clk
= {
149 .pmc_mask
= 1 << AT91SAM9261_ID_UHP
,
150 .type
= CLK_TYPE_PERIPHERAL
,
152 static struct clk lcdc_clk
= {
154 .pmc_mask
= 1 << AT91SAM9261_ID_LCDC
,
155 .type
= CLK_TYPE_PERIPHERAL
,
158 static struct clk
*periph_clocks
[] __initdata
= {
182 * The four programmable clocks.
183 * You must configure pin multiplexing to bring these signals out.
185 static struct clk pck0
= {
187 .pmc_mask
= AT91_PMC_PCK0
,
188 .type
= CLK_TYPE_PROGRAMMABLE
,
191 static struct clk pck1
= {
193 .pmc_mask
= AT91_PMC_PCK1
,
194 .type
= CLK_TYPE_PROGRAMMABLE
,
197 static struct clk pck2
= {
199 .pmc_mask
= AT91_PMC_PCK2
,
200 .type
= CLK_TYPE_PROGRAMMABLE
,
203 static struct clk pck3
= {
205 .pmc_mask
= AT91_PMC_PCK3
,
206 .type
= CLK_TYPE_PROGRAMMABLE
,
211 static struct clk hck0
= {
213 .pmc_mask
= AT91_PMC_HCK0
,
214 .type
= CLK_TYPE_SYSTEM
,
217 static struct clk hck1
= {
219 .pmc_mask
= AT91_PMC_HCK1
,
220 .type
= CLK_TYPE_SYSTEM
,
224 static void __init
at91sam9261_register_clocks(void)
228 for (i
= 0; i
< ARRAY_SIZE(periph_clocks
); i
++)
229 clk_register(periph_clocks
[i
]);
240 /* --------------------------------------------------------------------
242 * -------------------------------------------------------------------- */
244 static struct at91_gpio_bank at91sam9261_gpio
[] = {
246 .id
= AT91SAM9261_ID_PIOA
,
250 .id
= AT91SAM9261_ID_PIOB
,
254 .id
= AT91SAM9261_ID_PIOC
,
260 static void at91sam9261_reset(void)
262 at91_sys_write(AT91_RSTC_CR
, AT91_RSTC_KEY
| AT91_RSTC_PROCRST
| AT91_RSTC_PERRST
);
265 static void at91sam9261_poweroff(void)
267 at91_sys_write(AT91_SHDW_CR
, AT91_SHDW_KEY
| AT91_SHDW_SHDW
);
271 /* --------------------------------------------------------------------
272 * AT91SAM9261 processor initialization
273 * -------------------------------------------------------------------- */
275 void __init
at91sam9261_initialize(unsigned long main_clock
)
277 /* Map peripherals */
278 iotable_init(at91sam9261_io_desc
, ARRAY_SIZE(at91sam9261_io_desc
));
280 if (cpu_is_at91sam9g10())
281 iotable_init(at91sam9g10_sram_desc
, ARRAY_SIZE(at91sam9g10_sram_desc
));
283 iotable_init(at91sam9261_sram_desc
, ARRAY_SIZE(at91sam9261_sram_desc
));
286 at91_arch_reset
= at91sam9261_reset
;
287 pm_power_off
= at91sam9261_poweroff
;
288 at91_extern_irq
= (1 << AT91SAM9261_ID_IRQ0
) | (1 << AT91SAM9261_ID_IRQ1
)
289 | (1 << AT91SAM9261_ID_IRQ2
);
291 /* Init clock subsystem */
292 at91_clock_init(main_clock
);
294 /* Register the processor-specific clocks */
295 at91sam9261_register_clocks();
297 /* Register GPIO subsystem */
298 at91_gpio_init(at91sam9261_gpio
, 3);
301 /* --------------------------------------------------------------------
302 * Interrupt initialization
303 * -------------------------------------------------------------------- */
306 * The default interrupt priority levels (0 = lowest, 7 = highest).
308 static unsigned int at91sam9261_default_irq_priority
[NR_AIC_IRQS
] __initdata
= {
309 7, /* Advanced Interrupt Controller */
310 7, /* System Peripherals */
311 1, /* Parallel IO Controller A */
312 1, /* Parallel IO Controller B */
313 1, /* Parallel IO Controller C */
318 0, /* Multimedia Card Interface */
319 2, /* USB Device Port */
320 6, /* Two-Wire Interface */
321 5, /* Serial Peripheral Interface 0 */
322 5, /* Serial Peripheral Interface 1 */
323 4, /* Serial Synchronous Controller 0 */
324 4, /* Serial Synchronous Controller 1 */
325 4, /* Serial Synchronous Controller 2 */
326 0, /* Timer Counter 0 */
327 0, /* Timer Counter 1 */
328 0, /* Timer Counter 2 */
329 2, /* USB Host port */
330 3, /* LCD Controller */
338 0, /* Advanced Interrupt Controller */
339 0, /* Advanced Interrupt Controller */
340 0, /* Advanced Interrupt Controller */
343 void __init
at91sam9261_init_interrupts(unsigned int priority
[NR_AIC_IRQS
])
346 priority
= at91sam9261_default_irq_priority
;
348 /* Initialize the AIC interrupt controller */
349 at91_aic_init(priority
);
351 /* Enable GPIO interrupts */
352 at91_gpio_irq_setup();