blob: e761e74ac64bb2e3a186608c47e82fc4b8fb9ed7 [file] [log] [blame]
Andrew Victor62c16602006-11-30 12:27:38 +01001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * arch/arm/mach-at91/at91sam9261.c
Andrew Victor62c16602006-11-30 12:27:38 +01003 *
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
Nicolas Pitrec9dfafb2011-08-02 10:21:36 -040015#include <asm/proc-fns.h>
Russell King80b02c12009-01-08 10:01:47 +000016#include <asm/irq.h>
Andrew Victor62c16602006-11-30 12:27:38 +010017#include <asm/mach/arch.h>
18#include <asm/mach/map.h>
David Howells9f97da72012-03-28 18:30:01 +010019#include <asm/system_misc.h>
Nicolas Ferreb319ff82009-06-26 15:37:01 +010020#include <mach/cpu.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/at91sam9261.h>
22#include <mach/at91_pmc.h>
Andrew Victor62c16602006-11-30 12:27:38 +010023
Jean-Christophe PLAGNIOL-VILLARDa510b9b2012-10-30 06:41:28 +080024#include "at91_aic.h"
Jean-Christophe PLAGNIOL-VILLARDf0995d02012-10-30 08:11:24 +080025#include "at91_rstc.h"
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080026#include "soc.h"
Andrew Victor62c16602006-11-30 12:27:38 +010027#include "generic.h"
28#include "clock.h"
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080029#include "sam9_smc.h"
Andrew Victor62c16602006-11-30 12:27:38 +010030
Andrew Victor62c16602006-11-30 12:27:38 +010031/* --------------------------------------------------------------------
32 * Clocks
33 * -------------------------------------------------------------------- */
34
35/*
36 * The peripheral clocks.
37 */
38static struct clk pioA_clk = {
39 .name = "pioA_clk",
40 .pmc_mask = 1 << AT91SAM9261_ID_PIOA,
41 .type = CLK_TYPE_PERIPHERAL,
42};
43static struct clk pioB_clk = {
44 .name = "pioB_clk",
45 .pmc_mask = 1 << AT91SAM9261_ID_PIOB,
46 .type = CLK_TYPE_PERIPHERAL,
47};
48static struct clk pioC_clk = {
49 .name = "pioC_clk",
50 .pmc_mask = 1 << AT91SAM9261_ID_PIOC,
51 .type = CLK_TYPE_PERIPHERAL,
52};
53static struct clk usart0_clk = {
54 .name = "usart0_clk",
55 .pmc_mask = 1 << AT91SAM9261_ID_US0,
56 .type = CLK_TYPE_PERIPHERAL,
57};
58static struct clk usart1_clk = {
59 .name = "usart1_clk",
60 .pmc_mask = 1 << AT91SAM9261_ID_US1,
61 .type = CLK_TYPE_PERIPHERAL,
62};
63static struct clk usart2_clk = {
64 .name = "usart2_clk",
65 .pmc_mask = 1 << AT91SAM9261_ID_US2,
66 .type = CLK_TYPE_PERIPHERAL,
67};
68static struct clk mmc_clk = {
69 .name = "mci_clk",
70 .pmc_mask = 1 << AT91SAM9261_ID_MCI,
71 .type = CLK_TYPE_PERIPHERAL,
72};
73static struct clk udc_clk = {
74 .name = "udc_clk",
75 .pmc_mask = 1 << AT91SAM9261_ID_UDP,
76 .type = CLK_TYPE_PERIPHERAL,
77};
78static struct clk twi_clk = {
79 .name = "twi_clk",
80 .pmc_mask = 1 << AT91SAM9261_ID_TWI,
81 .type = CLK_TYPE_PERIPHERAL,
82};
83static struct clk spi0_clk = {
84 .name = "spi0_clk",
85 .pmc_mask = 1 << AT91SAM9261_ID_SPI0,
86 .type = CLK_TYPE_PERIPHERAL,
87};
88static struct clk spi1_clk = {
89 .name = "spi1_clk",
90 .pmc_mask = 1 << AT91SAM9261_ID_SPI1,
91 .type = CLK_TYPE_PERIPHERAL,
92};
Andrew Victore8788ba2007-05-02 17:14:57 +010093static struct clk ssc0_clk = {
94 .name = "ssc0_clk",
95 .pmc_mask = 1 << AT91SAM9261_ID_SSC0,
96 .type = CLK_TYPE_PERIPHERAL,
97};
98static struct clk ssc1_clk = {
99 .name = "ssc1_clk",
100 .pmc_mask = 1 << AT91SAM9261_ID_SSC1,
101 .type = CLK_TYPE_PERIPHERAL,
102};
103static struct clk ssc2_clk = {
104 .name = "ssc2_clk",
105 .pmc_mask = 1 << AT91SAM9261_ID_SSC2,
106 .type = CLK_TYPE_PERIPHERAL,
107};
Andrew Victorc177a1e2007-02-08 10:25:38 +0100108static struct clk tc0_clk = {
109 .name = "tc0_clk",
110 .pmc_mask = 1 << AT91SAM9261_ID_TC0,
111 .type = CLK_TYPE_PERIPHERAL,
112};
113static struct clk tc1_clk = {
114 .name = "tc1_clk",
115 .pmc_mask = 1 << AT91SAM9261_ID_TC1,
116 .type = CLK_TYPE_PERIPHERAL,
117};
118static struct clk tc2_clk = {
119 .name = "tc2_clk",
120 .pmc_mask = 1 << AT91SAM9261_ID_TC2,
121 .type = CLK_TYPE_PERIPHERAL,
122};
Andrew Victor62c16602006-11-30 12:27:38 +0100123static struct clk ohci_clk = {
124 .name = "ohci_clk",
125 .pmc_mask = 1 << AT91SAM9261_ID_UHP,
126 .type = CLK_TYPE_PERIPHERAL,
127};
128static struct clk lcdc_clk = {
129 .name = "lcdc_clk",
130 .pmc_mask = 1 << AT91SAM9261_ID_LCDC,
131 .type = CLK_TYPE_PERIPHERAL,
132};
133
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200134/* HClocks */
135static struct clk hck0 = {
136 .name = "hck0",
137 .pmc_mask = AT91_PMC_HCK0,
138 .type = CLK_TYPE_SYSTEM,
139 .id = 0,
140};
141static struct clk hck1 = {
142 .name = "hck1",
143 .pmc_mask = AT91_PMC_HCK1,
144 .type = CLK_TYPE_SYSTEM,
145 .id = 1,
146};
147
Andrew Victor62c16602006-11-30 12:27:38 +0100148static struct clk *periph_clocks[] __initdata = {
149 &pioA_clk,
150 &pioB_clk,
151 &pioC_clk,
152 &usart0_clk,
153 &usart1_clk,
154 &usart2_clk,
155 &mmc_clk,
156 &udc_clk,
157 &twi_clk,
158 &spi0_clk,
159 &spi1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100160 &ssc0_clk,
161 &ssc1_clk,
162 &ssc2_clk,
Andrew Victorc177a1e2007-02-08 10:25:38 +0100163 &tc0_clk,
164 &tc1_clk,
165 &tc2_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100166 &ohci_clk,
167 &lcdc_clk,
168 // irq0 .. irq2
169};
170
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100171static struct clk_lookup periph_clocks_lookups[] = {
Johan Hovoldbbd44f6b2013-02-07 16:31:58 +0100172 CLKDEV_CON_DEV_ID("hclk", "at91sam9261-lcdfb.0", &hck1),
173 CLKDEV_CON_DEV_ID("hclk", "at91sam9g10-lcdfb.0", &hck1),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100174 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
175 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
176 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
177 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
Jean-Christophe PLAGNIOL-VILLARDc0764b22011-08-23 16:35:31 +0200178 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
Bo Shen636036d22012-11-06 13:57:51 +0800179 CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.0", &ssc0_clk),
180 CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.1", &ssc1_clk),
181 CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.2", &ssc2_clk),
Bo Shen099343c2012-11-07 11:41:41 +0800182 CLKDEV_CON_DEV_ID("pclk", "fffbc000.ssc", &ssc0_clk),
183 CLKDEV_CON_DEV_ID("pclk", "fffc0000.ssc", &ssc1_clk),
184 CLKDEV_CON_DEV_ID("pclk", "fffc4000.ssc", &ssc2_clk),
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200185 CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &hck0),
Bo Shen302090a2012-10-15 17:30:28 +0800186 CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9261.0", &twi_clk),
187 CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g10.0", &twi_clk),
Jean-Christophe PLAGNIOL-VILLARD619d4a42011-11-13 13:00:58 +0800188 CLKDEV_CON_ID("pioA", &pioA_clk),
189 CLKDEV_CON_ID("pioB", &pioB_clk),
190 CLKDEV_CON_ID("pioC", &pioC_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100191};
192
193static struct clk_lookup usart_clocks_lookups[] = {
194 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
195 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
196 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
197 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
198};
199
Andrew Victor62c16602006-11-30 12:27:38 +0100200/*
201 * The four programmable clocks.
202 * You must configure pin multiplexing to bring these signals out.
203 */
204static struct clk pck0 = {
205 .name = "pck0",
206 .pmc_mask = AT91_PMC_PCK0,
207 .type = CLK_TYPE_PROGRAMMABLE,
208 .id = 0,
209};
210static struct clk pck1 = {
211 .name = "pck1",
212 .pmc_mask = AT91_PMC_PCK1,
213 .type = CLK_TYPE_PROGRAMMABLE,
214 .id = 1,
215};
216static struct clk pck2 = {
217 .name = "pck2",
218 .pmc_mask = AT91_PMC_PCK2,
219 .type = CLK_TYPE_PROGRAMMABLE,
220 .id = 2,
221};
222static struct clk pck3 = {
223 .name = "pck3",
224 .pmc_mask = AT91_PMC_PCK3,
225 .type = CLK_TYPE_PROGRAMMABLE,
226 .id = 3,
227};
228
Andrew Victor62c16602006-11-30 12:27:38 +0100229static void __init at91sam9261_register_clocks(void)
230{
231 int i;
232
233 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
234 clk_register(periph_clocks[i]);
235
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100236 clkdev_add_table(periph_clocks_lookups,
237 ARRAY_SIZE(periph_clocks_lookups));
238 clkdev_add_table(usart_clocks_lookups,
239 ARRAY_SIZE(usart_clocks_lookups));
240
Andrew Victor62c16602006-11-30 12:27:38 +0100241 clk_register(&pck0);
242 clk_register(&pck1);
243 clk_register(&pck2);
244 clk_register(&pck3);
245
246 clk_register(&hck0);
247 clk_register(&hck1);
248}
249
250/* --------------------------------------------------------------------
251 * GPIO
252 * -------------------------------------------------------------------- */
253
Jean-Christophe PLAGNIOL-VILLARD1a2d9152011-10-17 14:28:38 +0800254static struct at91_gpio_bank at91sam9261_gpio[] __initdata = {
Andrew Victor62c16602006-11-30 12:27:38 +0100255 {
256 .id = AT91SAM9261_ID_PIOA,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800257 .regbase = AT91SAM9261_BASE_PIOA,
Andrew Victor62c16602006-11-30 12:27:38 +0100258 }, {
259 .id = AT91SAM9261_ID_PIOB,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800260 .regbase = AT91SAM9261_BASE_PIOB,
Andrew Victor62c16602006-11-30 12:27:38 +0100261 }, {
262 .id = AT91SAM9261_ID_PIOC,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800263 .regbase = AT91SAM9261_BASE_PIOC,
Andrew Victor62c16602006-11-30 12:27:38 +0100264 }
265};
266
Andrew Victor62c16602006-11-30 12:27:38 +0100267/* --------------------------------------------------------------------
268 * AT91SAM9261 processor initialization
269 * -------------------------------------------------------------------- */
270
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800271static void __init at91sam9261_map_io(void)
Andrew Victor62c16602006-11-30 12:27:38 +0100272{
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100273 if (cpu_is_at91sam9g10())
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800274 at91_init_sram(0, AT91SAM9G10_SRAM_BASE, AT91SAM9G10_SRAM_SIZE);
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100275 else
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800276 at91_init_sram(0, AT91SAM9261_SRAM_BASE, AT91SAM9261_SRAM_SIZE);
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800277}
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100278
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800279static void __init at91sam9261_ioremap_registers(void)
280{
Jean-Christophe PLAGNIOL-VILLARDf22deee2011-11-01 01:23:20 +0800281 at91_ioremap_shdwc(AT91SAM9261_BASE_SHDWC);
Jean-Christophe PLAGNIOL-VILLARDe9f68b52011-11-18 01:25:52 +0800282 at91_ioremap_rstc(AT91SAM9261_BASE_RSTC);
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800283 at91_ioremap_ramc(0, AT91SAM9261_BASE_SDRAMC, 512);
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800284 at91sam926x_ioremap_pit(AT91SAM9261_BASE_PIT);
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800285 at91sam9_ioremap_smc(0, AT91SAM9261_BASE_SMC);
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800286 at91_ioremap_matrix(AT91SAM9261_BASE_MATRIX);
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800287}
288
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800289static void __init at91sam9261_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800290{
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800291 arm_pm_idle = at91sam9_idle;
Russell King1b2073e2011-11-03 09:53:29 +0000292 arm_pm_restart = at91sam9_alt_restart;
Andrew Victor62c16602006-11-30 12:27:38 +0100293
Johan Hovold94c4c792013-10-16 11:56:15 +0200294 at91_sysirq_mask_rtt(AT91SAM9261_BASE_RTT);
295
Andrew Victor62c16602006-11-30 12:27:38 +0100296 /* Register GPIO subsystem */
297 at91_gpio_init(at91sam9261_gpio, 3);
298}
299
300/* --------------------------------------------------------------------
301 * Interrupt initialization
302 * -------------------------------------------------------------------- */
303
304/*
305 * The default interrupt priority levels (0 = lowest, 7 = highest).
306 */
307static unsigned int at91sam9261_default_irq_priority[NR_AIC_IRQS] __initdata = {
308 7, /* Advanced Interrupt Controller */
309 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100310 1, /* Parallel IO Controller A */
311 1, /* Parallel IO Controller B */
312 1, /* Parallel IO Controller C */
Andrew Victor62c16602006-11-30 12:27:38 +0100313 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100314 5, /* USART 0 */
315 5, /* USART 1 */
316 5, /* USART 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100317 0, /* Multimedia Card Interface */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100318 2, /* USB Device Port */
319 6, /* Two-Wire Interface */
320 5, /* Serial Peripheral Interface 0 */
321 5, /* Serial Peripheral Interface 1 */
322 4, /* Serial Synchronous Controller 0 */
323 4, /* Serial Synchronous Controller 1 */
324 4, /* Serial Synchronous Controller 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100325 0, /* Timer Counter 0 */
326 0, /* Timer Counter 1 */
327 0, /* Timer Counter 2 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100328 2, /* USB Host port */
Andrew Victor62c16602006-11-30 12:27:38 +0100329 3, /* LCD Controller */
330 0,
331 0,
332 0,
333 0,
334 0,
335 0,
336 0,
337 0, /* Advanced Interrupt Controller */
338 0, /* Advanced Interrupt Controller */
339 0, /* Advanced Interrupt Controller */
340};
341
Ludovic Desroches84ddb082013-03-22 13:24:09 +0000342AT91_SOC_START(at91sam9261)
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800343 .map_io = at91sam9261_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800344 .default_irq_priority = at91sam9261_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARD546c8302013-06-01 16:40:11 +0200345 .extern_irq = (1 << AT91SAM9261_ID_IRQ0) | (1 << AT91SAM9261_ID_IRQ1)
346 | (1 << AT91SAM9261_ID_IRQ2),
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800347 .ioremap_registers = at91sam9261_ioremap_registers,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800348 .register_clocks = at91sam9261_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800349 .init = at91sam9261_initialize,
Jean-Christophe PLAGNIOL-VILLARD8d39e0fd02012-08-16 17:36:55 +0800350AT91_SOC_END