blob: 53ac1a72e94ecdf0cfae91ff672b188bac5f19a1 [file] [log] [blame]
Andrew Victor877d7722007-05-11 20:49:56 +01001/*
2 * arch/arm/mach-at91/at91sam9rl.c
3 *
4 * Copyright (C) 2005 SAN People
5 * Copyright (C) 2007 Atmel Corporation
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file COPYING in the main directory of this archive for
9 * more details.
10 */
11
12#include <linux/module.h>
Andrew Victor3ef2fb42008-04-02 21:36:06 +010013#include <linux/pm.h>
Andrew Victor877d7722007-05-11 20:49:56 +010014
Russell King80b02c12009-01-08 10:01:47 +000015#include <asm/irq.h>
Andrew Victor877d7722007-05-11 20:49:56 +010016#include <asm/mach/arch.h>
17#include <asm/mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010018#include <mach/cpu.h>
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +080019#include <mach/at91_dbgu.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010020#include <mach/at91sam9rl.h>
21#include <mach/at91_pmc.h>
22#include <mach/at91_rstc.h>
23#include <mach/at91_shdwc.h>
Andrew Victor877d7722007-05-11 20:49:56 +010024
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080025#include "soc.h"
Andrew Victor877d7722007-05-11 20:49:56 +010026#include "generic.h"
27#include "clock.h"
28
Andrew Victor877d7722007-05-11 20:49:56 +010029static struct map_desc at91sam9rl_sram_desc[] __initdata = {
30 {
31 .pfn = __phys_to_pfn(AT91SAM9RL_SRAM_BASE),
32 .type = MT_DEVICE,
33 }
34};
35
36/* --------------------------------------------------------------------
37 * Clocks
38 * -------------------------------------------------------------------- */
39
40/*
41 * The peripheral clocks.
42 */
43static struct clk pioA_clk = {
44 .name = "pioA_clk",
45 .pmc_mask = 1 << AT91SAM9RL_ID_PIOA,
46 .type = CLK_TYPE_PERIPHERAL,
47};
48static struct clk pioB_clk = {
49 .name = "pioB_clk",
50 .pmc_mask = 1 << AT91SAM9RL_ID_PIOB,
51 .type = CLK_TYPE_PERIPHERAL,
52};
53static struct clk pioC_clk = {
54 .name = "pioC_clk",
55 .pmc_mask = 1 << AT91SAM9RL_ID_PIOC,
56 .type = CLK_TYPE_PERIPHERAL,
57};
58static struct clk pioD_clk = {
59 .name = "pioD_clk",
60 .pmc_mask = 1 << AT91SAM9RL_ID_PIOD,
61 .type = CLK_TYPE_PERIPHERAL,
62};
63static struct clk usart0_clk = {
64 .name = "usart0_clk",
65 .pmc_mask = 1 << AT91SAM9RL_ID_US0,
66 .type = CLK_TYPE_PERIPHERAL,
67};
68static struct clk usart1_clk = {
69 .name = "usart1_clk",
70 .pmc_mask = 1 << AT91SAM9RL_ID_US1,
71 .type = CLK_TYPE_PERIPHERAL,
72};
73static struct clk usart2_clk = {
74 .name = "usart2_clk",
75 .pmc_mask = 1 << AT91SAM9RL_ID_US2,
76 .type = CLK_TYPE_PERIPHERAL,
77};
78static struct clk usart3_clk = {
79 .name = "usart3_clk",
80 .pmc_mask = 1 << AT91SAM9RL_ID_US3,
81 .type = CLK_TYPE_PERIPHERAL,
82};
83static struct clk mmc_clk = {
84 .name = "mci_clk",
85 .pmc_mask = 1 << AT91SAM9RL_ID_MCI,
86 .type = CLK_TYPE_PERIPHERAL,
87};
88static struct clk twi0_clk = {
89 .name = "twi0_clk",
90 .pmc_mask = 1 << AT91SAM9RL_ID_TWI0,
91 .type = CLK_TYPE_PERIPHERAL,
92};
93static struct clk twi1_clk = {
94 .name = "twi1_clk",
95 .pmc_mask = 1 << AT91SAM9RL_ID_TWI1,
96 .type = CLK_TYPE_PERIPHERAL,
97};
98static struct clk spi_clk = {
99 .name = "spi_clk",
100 .pmc_mask = 1 << AT91SAM9RL_ID_SPI,
101 .type = CLK_TYPE_PERIPHERAL,
102};
103static struct clk ssc0_clk = {
104 .name = "ssc0_clk",
105 .pmc_mask = 1 << AT91SAM9RL_ID_SSC0,
106 .type = CLK_TYPE_PERIPHERAL,
107};
108static struct clk ssc1_clk = {
109 .name = "ssc1_clk",
110 .pmc_mask = 1 << AT91SAM9RL_ID_SSC1,
111 .type = CLK_TYPE_PERIPHERAL,
112};
113static struct clk tc0_clk = {
114 .name = "tc0_clk",
115 .pmc_mask = 1 << AT91SAM9RL_ID_TC0,
116 .type = CLK_TYPE_PERIPHERAL,
117};
118static struct clk tc1_clk = {
119 .name = "tc1_clk",
120 .pmc_mask = 1 << AT91SAM9RL_ID_TC1,
121 .type = CLK_TYPE_PERIPHERAL,
122};
123static struct clk tc2_clk = {
124 .name = "tc2_clk",
125 .pmc_mask = 1 << AT91SAM9RL_ID_TC2,
126 .type = CLK_TYPE_PERIPHERAL,
127};
Andrew Victorbb1ad682008-09-18 19:42:37 +0100128static struct clk pwm_clk = {
129 .name = "pwm_clk",
Andrew Victor877d7722007-05-11 20:49:56 +0100130 .pmc_mask = 1 << AT91SAM9RL_ID_PWMC,
131 .type = CLK_TYPE_PERIPHERAL,
132};
133static struct clk tsc_clk = {
134 .name = "tsc_clk",
135 .pmc_mask = 1 << AT91SAM9RL_ID_TSC,
136 .type = CLK_TYPE_PERIPHERAL,
137};
138static struct clk dma_clk = {
139 .name = "dma_clk",
140 .pmc_mask = 1 << AT91SAM9RL_ID_DMA,
141 .type = CLK_TYPE_PERIPHERAL,
142};
143static struct clk udphs_clk = {
144 .name = "udphs_clk",
145 .pmc_mask = 1 << AT91SAM9RL_ID_UDPHS,
146 .type = CLK_TYPE_PERIPHERAL,
147};
148static struct clk lcdc_clk = {
149 .name = "lcdc_clk",
150 .pmc_mask = 1 << AT91SAM9RL_ID_LCDC,
151 .type = CLK_TYPE_PERIPHERAL,
152};
153static struct clk ac97_clk = {
154 .name = "ac97_clk",
155 .pmc_mask = 1 << AT91SAM9RL_ID_AC97C,
156 .type = CLK_TYPE_PERIPHERAL,
157};
158
159static struct clk *periph_clocks[] __initdata = {
160 &pioA_clk,
161 &pioB_clk,
162 &pioC_clk,
163 &pioD_clk,
164 &usart0_clk,
165 &usart1_clk,
166 &usart2_clk,
167 &usart3_clk,
168 &mmc_clk,
169 &twi0_clk,
170 &twi1_clk,
171 &spi_clk,
172 &ssc0_clk,
173 &ssc1_clk,
174 &tc0_clk,
175 &tc1_clk,
176 &tc2_clk,
Andrew Victorbb1ad682008-09-18 19:42:37 +0100177 &pwm_clk,
Andrew Victor877d7722007-05-11 20:49:56 +0100178 &tsc_clk,
179 &dma_clk,
180 &udphs_clk,
181 &lcdc_clk,
182 &ac97_clk,
183 // irq0
184};
185
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100186static struct clk_lookup periph_clocks_lookups[] = {
Jean-Christophe PLAGNIOL-VILLARD9d871592011-06-21 14:24:33 +0800187 CLKDEV_CON_DEV_ID("hclk", "atmel_usba_udc", &utmi_clk),
188 CLKDEV_CON_DEV_ID("pclk", "atmel_usba_udc", &udphs_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100189 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
190 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
191 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
192 CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
193 CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
194};
195
196static struct clk_lookup usart_clocks_lookups[] = {
197 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
198 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
199 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
200 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
201 CLKDEV_CON_DEV_ID("usart", "atmel_usart.4", &usart3_clk),
202};
203
Andrew Victor877d7722007-05-11 20:49:56 +0100204/*
205 * The two programmable clocks.
206 * You must configure pin multiplexing to bring these signals out.
207 */
208static struct clk pck0 = {
209 .name = "pck0",
210 .pmc_mask = AT91_PMC_PCK0,
211 .type = CLK_TYPE_PROGRAMMABLE,
212 .id = 0,
213};
214static struct clk pck1 = {
215 .name = "pck1",
216 .pmc_mask = AT91_PMC_PCK1,
217 .type = CLK_TYPE_PROGRAMMABLE,
218 .id = 1,
219};
220
221static void __init at91sam9rl_register_clocks(void)
222{
223 int i;
224
225 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
226 clk_register(periph_clocks[i]);
227
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100228 clkdev_add_table(periph_clocks_lookups,
229 ARRAY_SIZE(periph_clocks_lookups));
230 clkdev_add_table(usart_clocks_lookups,
231 ARRAY_SIZE(usart_clocks_lookups));
232
Andrew Victor877d7722007-05-11 20:49:56 +0100233 clk_register(&pck0);
234 clk_register(&pck1);
235}
236
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100237static struct clk_lookup console_clock_lookup;
238
239void __init at91sam9rl_set_console_clock(int id)
240{
241 if (id >= ARRAY_SIZE(usart_clocks_lookups))
242 return;
243
244 console_clock_lookup.con_id = "usart";
245 console_clock_lookup.clk = usart_clocks_lookups[id].clk;
246 clkdev_add(&console_clock_lookup);
247}
248
Andrew Victor877d7722007-05-11 20:49:56 +0100249/* --------------------------------------------------------------------
250 * GPIO
251 * -------------------------------------------------------------------- */
252
253static struct at91_gpio_bank at91sam9rl_gpio[] = {
254 {
255 .id = AT91SAM9RL_ID_PIOA,
256 .offset = AT91_PIOA,
257 .clock = &pioA_clk,
258 }, {
259 .id = AT91SAM9RL_ID_PIOB,
260 .offset = AT91_PIOB,
261 .clock = &pioB_clk,
262 }, {
263 .id = AT91SAM9RL_ID_PIOC,
264 .offset = AT91_PIOC,
265 .clock = &pioC_clk,
266 }, {
267 .id = AT91SAM9RL_ID_PIOD,
268 .offset = AT91_PIOD,
269 .clock = &pioD_clk,
270 }
271};
272
Andrew Victor3ef2fb42008-04-02 21:36:06 +0100273static void at91sam9rl_poweroff(void)
274{
275 at91_sys_write(AT91_SHDW_CR, AT91_SHDW_KEY | AT91_SHDW_SHDW);
276}
277
Andrew Victor877d7722007-05-11 20:49:56 +0100278
279/* --------------------------------------------------------------------
280 * AT91SAM9RL processor initialization
281 * -------------------------------------------------------------------- */
282
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800283static void __init at91sam9rl_map_io(void)
Andrew Victor877d7722007-05-11 20:49:56 +0100284{
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800285 unsigned long sram_size;
Andrew Victor877d7722007-05-11 20:49:56 +0100286
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800287 switch (at91_soc_initdata.cidr & AT91_CIDR_SRAMSIZ) {
Andrew Victor877d7722007-05-11 20:49:56 +0100288 case AT91_CIDR_SRAMSIZ_32K:
289 sram_size = 2 * SZ_16K;
290 break;
291 case AT91_CIDR_SRAMSIZ_16K:
292 default:
293 sram_size = SZ_16K;
294 }
295
296 at91sam9rl_sram_desc->virtual = AT91_IO_VIRT_BASE - sram_size;
297 at91sam9rl_sram_desc->length = sram_size;
298
299 /* Map SRAM */
300 iotable_init(at91sam9rl_sram_desc, ARRAY_SIZE(at91sam9rl_sram_desc));
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800301}
Andrew Victor877d7722007-05-11 20:49:56 +0100302
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800303static void __init at91sam9rl_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800304{
Nicolas Ferrebb413db2010-10-14 19:14:00 +0200305 at91_arch_reset = at91sam9_alt_reset;
Andrew Victor3ef2fb42008-04-02 21:36:06 +0100306 pm_power_off = at91sam9rl_poweroff;
Andrew Victor877d7722007-05-11 20:49:56 +0100307 at91_extern_irq = (1 << AT91SAM9RL_ID_IRQ0);
308
Andrew Victor877d7722007-05-11 20:49:56 +0100309 /* Register the processor-specific clocks */
310 at91sam9rl_register_clocks();
311
312 /* Register GPIO subsystem */
313 at91_gpio_init(at91sam9rl_gpio, 4);
314}
315
316/* --------------------------------------------------------------------
317 * Interrupt initialization
318 * -------------------------------------------------------------------- */
319
320/*
321 * The default interrupt priority levels (0 = lowest, 7 = highest).
322 */
323static unsigned int at91sam9rl_default_irq_priority[NR_AIC_IRQS] __initdata = {
324 7, /* Advanced Interrupt Controller */
325 7, /* System Peripherals */
326 1, /* Parallel IO Controller A */
327 1, /* Parallel IO Controller B */
328 1, /* Parallel IO Controller C */
329 1, /* Parallel IO Controller D */
330 5, /* USART 0 */
331 5, /* USART 1 */
332 5, /* USART 2 */
333 5, /* USART 3 */
334 0, /* Multimedia Card Interface */
335 6, /* Two-Wire Interface 0 */
336 6, /* Two-Wire Interface 1 */
337 5, /* Serial Peripheral Interface */
338 4, /* Serial Synchronous Controller 0 */
339 4, /* Serial Synchronous Controller 1 */
340 0, /* Timer Counter 0 */
341 0, /* Timer Counter 1 */
342 0, /* Timer Counter 2 */
343 0,
344 0, /* Touch Screen Controller */
345 0, /* DMA Controller */
346 2, /* USB Device High speed port */
347 2, /* LCD Controller */
348 6, /* AC97 Controller */
349 0,
350 0,
351 0,
352 0,
353 0,
354 0,
355 0, /* Advanced Interrupt Controller */
356};
357
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800358struct at91_init_soc __initdata at91sam9rl_soc = {
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800359 .map_io = at91sam9rl_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800360 .default_irq_priority = at91sam9rl_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800361 .init = at91sam9rl_initialize,
362};