blob: da13f02acf5176b0008a5a1cb061cab9a8c0766e [file] [log] [blame]
Andrew Victorb2c65612007-02-08 09:42:40 +01001/*
2 * arch/arm/mach-at91/at91sam9263.c
3 *
4 * Copyright (C) 2007 Atmel Corporation.
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>
Andrew Victor3ef2fb42008-04-02 21:36:06 +010014#include <linux/pm.h>
Andrew Victorb2c65612007-02-08 09:42:40 +010015
Russell King80b02c12009-01-08 10:01:47 +000016#include <asm/irq.h>
Andrew Victorb2c65612007-02-08 09:42:40 +010017#include <asm/mach/arch.h>
18#include <asm/mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/at91sam9263.h>
20#include <mach/at91_pmc.h>
21#include <mach/at91_rstc.h>
22#include <mach/at91_shdwc.h>
Andrew Victorb2c65612007-02-08 09:42:40 +010023
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080024#include "soc.h"
Andrew Victorb2c65612007-02-08 09:42:40 +010025#include "generic.h"
26#include "clock.h"
27
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080028static struct map_desc at91sam9263_sram_desc[] __initdata = {
Andrew Victorb2c65612007-02-08 09:42:40 +010029 {
Andrew Victorb2c65612007-02-08 09:42:40 +010030 .virtual = AT91_IO_VIRT_BASE - AT91SAM9263_SRAM0_SIZE,
31 .pfn = __phys_to_pfn(AT91SAM9263_SRAM0_BASE),
32 .length = AT91SAM9263_SRAM0_SIZE,
33 .type = MT_DEVICE,
34 }, {
35 .virtual = AT91_IO_VIRT_BASE - AT91SAM9263_SRAM0_SIZE - AT91SAM9263_SRAM1_SIZE,
36 .pfn = __phys_to_pfn(AT91SAM9263_SRAM1_BASE),
37 .length = AT91SAM9263_SRAM1_SIZE,
38 .type = MT_DEVICE,
39 },
40};
41
42/* --------------------------------------------------------------------
43 * Clocks
44 * -------------------------------------------------------------------- */
45
46/*
47 * The peripheral clocks.
48 */
49static struct clk pioA_clk = {
50 .name = "pioA_clk",
51 .pmc_mask = 1 << AT91SAM9263_ID_PIOA,
52 .type = CLK_TYPE_PERIPHERAL,
53};
54static struct clk pioB_clk = {
55 .name = "pioB_clk",
56 .pmc_mask = 1 << AT91SAM9263_ID_PIOB,
57 .type = CLK_TYPE_PERIPHERAL,
58};
59static struct clk pioCDE_clk = {
60 .name = "pioCDE_clk",
61 .pmc_mask = 1 << AT91SAM9263_ID_PIOCDE,
62 .type = CLK_TYPE_PERIPHERAL,
63};
64static struct clk usart0_clk = {
65 .name = "usart0_clk",
66 .pmc_mask = 1 << AT91SAM9263_ID_US0,
67 .type = CLK_TYPE_PERIPHERAL,
68};
69static struct clk usart1_clk = {
70 .name = "usart1_clk",
71 .pmc_mask = 1 << AT91SAM9263_ID_US1,
72 .type = CLK_TYPE_PERIPHERAL,
73};
74static struct clk usart2_clk = {
75 .name = "usart2_clk",
76 .pmc_mask = 1 << AT91SAM9263_ID_US2,
77 .type = CLK_TYPE_PERIPHERAL,
78};
79static struct clk mmc0_clk = {
80 .name = "mci0_clk",
81 .pmc_mask = 1 << AT91SAM9263_ID_MCI0,
82 .type = CLK_TYPE_PERIPHERAL,
83};
84static struct clk mmc1_clk = {
85 .name = "mci1_clk",
86 .pmc_mask = 1 << AT91SAM9263_ID_MCI1,
87 .type = CLK_TYPE_PERIPHERAL,
88};
Andrew Victore8788ba2007-05-02 17:14:57 +010089static struct clk can_clk = {
90 .name = "can_clk",
91 .pmc_mask = 1 << AT91SAM9263_ID_CAN,
92 .type = CLK_TYPE_PERIPHERAL,
93};
Andrew Victorb2c65612007-02-08 09:42:40 +010094static struct clk twi_clk = {
95 .name = "twi_clk",
96 .pmc_mask = 1 << AT91SAM9263_ID_TWI,
97 .type = CLK_TYPE_PERIPHERAL,
98};
99static struct clk spi0_clk = {
100 .name = "spi0_clk",
101 .pmc_mask = 1 << AT91SAM9263_ID_SPI0,
102 .type = CLK_TYPE_PERIPHERAL,
103};
104static struct clk spi1_clk = {
105 .name = "spi1_clk",
106 .pmc_mask = 1 << AT91SAM9263_ID_SPI1,
107 .type = CLK_TYPE_PERIPHERAL,
108};
Andrew Victore8788ba2007-05-02 17:14:57 +0100109static struct clk ssc0_clk = {
110 .name = "ssc0_clk",
111 .pmc_mask = 1 << AT91SAM9263_ID_SSC0,
112 .type = CLK_TYPE_PERIPHERAL,
113};
114static struct clk ssc1_clk = {
115 .name = "ssc1_clk",
116 .pmc_mask = 1 << AT91SAM9263_ID_SSC1,
117 .type = CLK_TYPE_PERIPHERAL,
118};
119static struct clk ac97_clk = {
120 .name = "ac97_clk",
121 .pmc_mask = 1 << AT91SAM9263_ID_AC97C,
122 .type = CLK_TYPE_PERIPHERAL,
123};
Andrew Victorb2c65612007-02-08 09:42:40 +0100124static struct clk tcb_clk = {
125 .name = "tcb_clk",
126 .pmc_mask = 1 << AT91SAM9263_ID_TCB,
127 .type = CLK_TYPE_PERIPHERAL,
128};
Andrew Victorbb1ad682008-09-18 19:42:37 +0100129static struct clk pwm_clk = {
130 .name = "pwm_clk",
Andrew Victore8788ba2007-05-02 17:14:57 +0100131 .pmc_mask = 1 << AT91SAM9263_ID_PWMC,
132 .type = CLK_TYPE_PERIPHERAL,
133};
Andrew Victor69b2e992007-02-14 08:44:43 +0100134static struct clk macb_clk = {
135 .name = "macb_clk",
Andrew Victorb2c65612007-02-08 09:42:40 +0100136 .pmc_mask = 1 << AT91SAM9263_ID_EMAC,
137 .type = CLK_TYPE_PERIPHERAL,
138};
Andrew Victore8788ba2007-05-02 17:14:57 +0100139static struct clk dma_clk = {
140 .name = "dma_clk",
141 .pmc_mask = 1 << AT91SAM9263_ID_DMA,
142 .type = CLK_TYPE_PERIPHERAL,
143};
144static struct clk twodge_clk = {
145 .name = "2dge_clk",
146 .pmc_mask = 1 << AT91SAM9263_ID_2DGE,
147 .type = CLK_TYPE_PERIPHERAL,
148};
Andrew Victorb2c65612007-02-08 09:42:40 +0100149static struct clk udc_clk = {
150 .name = "udc_clk",
151 .pmc_mask = 1 << AT91SAM9263_ID_UDP,
152 .type = CLK_TYPE_PERIPHERAL,
153};
154static struct clk isi_clk = {
155 .name = "isi_clk",
156 .pmc_mask = 1 << AT91SAM9263_ID_ISI,
157 .type = CLK_TYPE_PERIPHERAL,
158};
159static struct clk lcdc_clk = {
160 .name = "lcdc_clk",
Andrew Victor7f6e2d92007-02-22 07:34:56 +0100161 .pmc_mask = 1 << AT91SAM9263_ID_LCDC,
Andrew Victorb2c65612007-02-08 09:42:40 +0100162 .type = CLK_TYPE_PERIPHERAL,
163};
164static struct clk ohci_clk = {
165 .name = "ohci_clk",
166 .pmc_mask = 1 << AT91SAM9263_ID_UHP,
167 .type = CLK_TYPE_PERIPHERAL,
168};
169
170static struct clk *periph_clocks[] __initdata = {
171 &pioA_clk,
172 &pioB_clk,
173 &pioCDE_clk,
174 &usart0_clk,
175 &usart1_clk,
176 &usart2_clk,
177 &mmc0_clk,
178 &mmc1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100179 &can_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100180 &twi_clk,
181 &spi0_clk,
182 &spi1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100183 &ssc0_clk,
184 &ssc1_clk,
185 &ac97_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100186 &tcb_clk,
Andrew Victorbb1ad682008-09-18 19:42:37 +0100187 &pwm_clk,
Andrew Victor69b2e992007-02-14 08:44:43 +0100188 &macb_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100189 &twodge_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100190 &udc_clk,
191 &isi_clk,
192 &lcdc_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100193 &dma_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100194 &ohci_clk,
195 // irq0 .. irq1
196};
197
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100198static struct clk_lookup periph_clocks_lookups[] = {
199 CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
200 CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
201 CLKDEV_CON_DEV_ID("mci_clk", "at91_mci.0", &mmc0_clk),
202 CLKDEV_CON_DEV_ID("mci_clk", "at91_mci.1", &mmc1_clk),
203 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
204 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
205 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tcb_clk),
206};
207
208static struct clk_lookup usart_clocks_lookups[] = {
209 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
210 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
211 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
212 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
213};
214
Andrew Victorb2c65612007-02-08 09:42:40 +0100215/*
216 * The four programmable clocks.
217 * You must configure pin multiplexing to bring these signals out.
218 */
219static struct clk pck0 = {
220 .name = "pck0",
221 .pmc_mask = AT91_PMC_PCK0,
222 .type = CLK_TYPE_PROGRAMMABLE,
223 .id = 0,
224};
225static struct clk pck1 = {
226 .name = "pck1",
227 .pmc_mask = AT91_PMC_PCK1,
228 .type = CLK_TYPE_PROGRAMMABLE,
229 .id = 1,
230};
231static struct clk pck2 = {
232 .name = "pck2",
233 .pmc_mask = AT91_PMC_PCK2,
234 .type = CLK_TYPE_PROGRAMMABLE,
235 .id = 2,
236};
237static struct clk pck3 = {
238 .name = "pck3",
239 .pmc_mask = AT91_PMC_PCK3,
240 .type = CLK_TYPE_PROGRAMMABLE,
241 .id = 3,
242};
243
244static void __init at91sam9263_register_clocks(void)
245{
246 int i;
247
248 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
249 clk_register(periph_clocks[i]);
250
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100251 clkdev_add_table(periph_clocks_lookups,
252 ARRAY_SIZE(periph_clocks_lookups));
253 clkdev_add_table(usart_clocks_lookups,
254 ARRAY_SIZE(usart_clocks_lookups));
255
Andrew Victorb2c65612007-02-08 09:42:40 +0100256 clk_register(&pck0);
257 clk_register(&pck1);
258 clk_register(&pck2);
259 clk_register(&pck3);
260}
261
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100262static struct clk_lookup console_clock_lookup;
263
264void __init at91sam9263_set_console_clock(int id)
265{
266 if (id >= ARRAY_SIZE(usart_clocks_lookups))
267 return;
268
269 console_clock_lookup.con_id = "usart";
270 console_clock_lookup.clk = usart_clocks_lookups[id].clk;
271 clkdev_add(&console_clock_lookup);
272}
273
Andrew Victorb2c65612007-02-08 09:42:40 +0100274/* --------------------------------------------------------------------
275 * GPIO
276 * -------------------------------------------------------------------- */
277
278static struct at91_gpio_bank at91sam9263_gpio[] = {
279 {
280 .id = AT91SAM9263_ID_PIOA,
281 .offset = AT91_PIOA,
282 .clock = &pioA_clk,
283 }, {
284 .id = AT91SAM9263_ID_PIOB,
285 .offset = AT91_PIOB,
286 .clock = &pioB_clk,
287 }, {
288 .id = AT91SAM9263_ID_PIOCDE,
289 .offset = AT91_PIOC,
290 .clock = &pioCDE_clk,
291 }, {
292 .id = AT91SAM9263_ID_PIOCDE,
293 .offset = AT91_PIOD,
294 .clock = &pioCDE_clk,
295 }, {
296 .id = AT91SAM9263_ID_PIOCDE,
297 .offset = AT91_PIOE,
298 .clock = &pioCDE_clk,
299 }
300};
301
Andrew Victor3ef2fb42008-04-02 21:36:06 +0100302static void at91sam9263_poweroff(void)
303{
304 at91_sys_write(AT91_SHDW_CR, AT91_SHDW_KEY | AT91_SHDW_SHDW);
305}
306
Andrew Victorb2c65612007-02-08 09:42:40 +0100307
308/* --------------------------------------------------------------------
309 * AT91SAM9263 processor initialization
310 * -------------------------------------------------------------------- */
311
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800312static void __init at91sam9263_map_io(void)
Andrew Victorb2c65612007-02-08 09:42:40 +0100313{
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800314 iotable_init(at91sam9263_sram_desc, ARRAY_SIZE(at91sam9263_sram_desc));
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800315}
Andrew Victorb2c65612007-02-08 09:42:40 +0100316
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800317static void __init at91sam9263_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800318{
Nicolas Ferrebb413db2010-10-14 19:14:00 +0200319 at91_arch_reset = at91sam9_alt_reset;
Andrew Victor3ef2fb42008-04-02 21:36:06 +0100320 pm_power_off = at91sam9263_poweroff;
Andrew Victorb2c65612007-02-08 09:42:40 +0100321 at91_extern_irq = (1 << AT91SAM9263_ID_IRQ0) | (1 << AT91SAM9263_ID_IRQ1);
322
Andrew Victorb2c65612007-02-08 09:42:40 +0100323 /* Register GPIO subsystem */
324 at91_gpio_init(at91sam9263_gpio, 5);
325}
326
327/* --------------------------------------------------------------------
328 * Interrupt initialization
329 * -------------------------------------------------------------------- */
330
331/*
332 * The default interrupt priority levels (0 = lowest, 7 = highest).
333 */
334static unsigned int at91sam9263_default_irq_priority[NR_AIC_IRQS] __initdata = {
335 7, /* Advanced Interrupt Controller (FIQ) */
336 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100337 1, /* Parallel IO Controller A */
338 1, /* Parallel IO Controller B */
339 1, /* Parallel IO Controller C, D and E */
Andrew Victorb2c65612007-02-08 09:42:40 +0100340 0,
341 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100342 5, /* USART 0 */
343 5, /* USART 1 */
344 5, /* USART 2 */
Andrew Victorb2c65612007-02-08 09:42:40 +0100345 0, /* Multimedia Card Interface 0 */
346 0, /* Multimedia Card Interface 1 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100347 3, /* CAN */
348 6, /* Two-Wire Interface */
349 5, /* Serial Peripheral Interface 0 */
350 5, /* Serial Peripheral Interface 1 */
351 4, /* Serial Synchronous Controller 0 */
352 4, /* Serial Synchronous Controller 1 */
353 5, /* AC97 Controller */
Andrew Victorb2c65612007-02-08 09:42:40 +0100354 0, /* Timer Counter 0, 1 and 2 */
355 0, /* Pulse Width Modulation Controller */
356 3, /* Ethernet */
357 0,
358 0, /* 2D Graphic Engine */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100359 2, /* USB Device Port */
Andrew Victorb2c65612007-02-08 09:42:40 +0100360 0, /* Image Sensor Interface */
361 3, /* LDC Controller */
362 0, /* DMA Controller */
363 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100364 2, /* USB Host port */
Andrew Victorb2c65612007-02-08 09:42:40 +0100365 0, /* Advanced Interrupt Controller (IRQ0) */
366 0, /* Advanced Interrupt Controller (IRQ1) */
367};
368
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800369struct at91_init_soc __initdata at91sam9263_soc = {
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800370 .map_io = at91sam9263_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800371 .default_irq_priority = at91sam9263_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800372 .register_clocks = at91sam9263_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800373 .init = at91sam9263_initialize,
374};