blob: fb164a5d04a906b09cb44872f7be7edf1784737a [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>
Boris BREZILLON2edb90a2013-10-11 09:37:45 +020014#include <linux/clk/at91_pmc.h>
Andrew Victor62c16602006-11-30 12:27:38 +010015
Nicolas Pitrec9dfafb2011-08-02 10:21:36 -040016#include <asm/proc-fns.h>
Russell King80b02c12009-01-08 10:01:47 +000017#include <asm/irq.h>
Andrew Victor62c16602006-11-30 12:27:38 +010018#include <asm/mach/arch.h>
19#include <asm/mach/map.h>
David Howells9f97da72012-03-28 18:30:01 +010020#include <asm/system_misc.h>
Nicolas Ferreb319ff82009-06-26 15:37:01 +010021#include <mach/cpu.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/at91sam9261.h>
Uwe Kleine-Königac11a1d2013-11-14 10:49:19 +010023#include <mach/hardware.h>
Andrew Victor62c16602006-11-30 12:27:38 +010024
Jean-Christophe PLAGNIOL-VILLARDa510b9b2012-10-30 06:41:28 +080025#include "at91_aic.h"
Jean-Christophe PLAGNIOL-VILLARDf0995d02012-10-30 08:11:24 +080026#include "at91_rstc.h"
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080027#include "soc.h"
Andrew Victor62c16602006-11-30 12:27:38 +010028#include "generic.h"
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080029#include "sam9_smc.h"
Daniel Lezcano5ad945e2013-09-22 22:29:57 +020030#include "pm.h"
Andrew Victor62c16602006-11-30 12:27:38 +010031
Jean-Jacques Hiblot02c57772014-03-03 11:06:01 +010032#if defined(CONFIG_OLD_CLK_AT91)
33#include "clock.h"
34
Andrew Victor62c16602006-11-30 12:27:38 +010035/* --------------------------------------------------------------------
36 * Clocks
37 * -------------------------------------------------------------------- */
38
39/*
40 * The peripheral clocks.
41 */
42static struct clk pioA_clk = {
43 .name = "pioA_clk",
44 .pmc_mask = 1 << AT91SAM9261_ID_PIOA,
45 .type = CLK_TYPE_PERIPHERAL,
46};
47static struct clk pioB_clk = {
48 .name = "pioB_clk",
49 .pmc_mask = 1 << AT91SAM9261_ID_PIOB,
50 .type = CLK_TYPE_PERIPHERAL,
51};
52static struct clk pioC_clk = {
53 .name = "pioC_clk",
54 .pmc_mask = 1 << AT91SAM9261_ID_PIOC,
55 .type = CLK_TYPE_PERIPHERAL,
56};
57static struct clk usart0_clk = {
58 .name = "usart0_clk",
59 .pmc_mask = 1 << AT91SAM9261_ID_US0,
60 .type = CLK_TYPE_PERIPHERAL,
61};
62static struct clk usart1_clk = {
63 .name = "usart1_clk",
64 .pmc_mask = 1 << AT91SAM9261_ID_US1,
65 .type = CLK_TYPE_PERIPHERAL,
66};
67static struct clk usart2_clk = {
68 .name = "usart2_clk",
69 .pmc_mask = 1 << AT91SAM9261_ID_US2,
70 .type = CLK_TYPE_PERIPHERAL,
71};
72static struct clk mmc_clk = {
73 .name = "mci_clk",
74 .pmc_mask = 1 << AT91SAM9261_ID_MCI,
75 .type = CLK_TYPE_PERIPHERAL,
76};
77static struct clk udc_clk = {
78 .name = "udc_clk",
79 .pmc_mask = 1 << AT91SAM9261_ID_UDP,
80 .type = CLK_TYPE_PERIPHERAL,
81};
82static struct clk twi_clk = {
83 .name = "twi_clk",
84 .pmc_mask = 1 << AT91SAM9261_ID_TWI,
85 .type = CLK_TYPE_PERIPHERAL,
86};
87static struct clk spi0_clk = {
88 .name = "spi0_clk",
89 .pmc_mask = 1 << AT91SAM9261_ID_SPI0,
90 .type = CLK_TYPE_PERIPHERAL,
91};
92static struct clk spi1_clk = {
93 .name = "spi1_clk",
94 .pmc_mask = 1 << AT91SAM9261_ID_SPI1,
95 .type = CLK_TYPE_PERIPHERAL,
96};
Andrew Victore8788ba2007-05-02 17:14:57 +010097static struct clk ssc0_clk = {
98 .name = "ssc0_clk",
99 .pmc_mask = 1 << AT91SAM9261_ID_SSC0,
100 .type = CLK_TYPE_PERIPHERAL,
101};
102static struct clk ssc1_clk = {
103 .name = "ssc1_clk",
104 .pmc_mask = 1 << AT91SAM9261_ID_SSC1,
105 .type = CLK_TYPE_PERIPHERAL,
106};
107static struct clk ssc2_clk = {
108 .name = "ssc2_clk",
109 .pmc_mask = 1 << AT91SAM9261_ID_SSC2,
110 .type = CLK_TYPE_PERIPHERAL,
111};
Andrew Victorc177a1e2007-02-08 10:25:38 +0100112static struct clk tc0_clk = {
113 .name = "tc0_clk",
114 .pmc_mask = 1 << AT91SAM9261_ID_TC0,
115 .type = CLK_TYPE_PERIPHERAL,
116};
117static struct clk tc1_clk = {
118 .name = "tc1_clk",
119 .pmc_mask = 1 << AT91SAM9261_ID_TC1,
120 .type = CLK_TYPE_PERIPHERAL,
121};
122static struct clk tc2_clk = {
123 .name = "tc2_clk",
124 .pmc_mask = 1 << AT91SAM9261_ID_TC2,
125 .type = CLK_TYPE_PERIPHERAL,
126};
Andrew Victor62c16602006-11-30 12:27:38 +0100127static struct clk ohci_clk = {
128 .name = "ohci_clk",
129 .pmc_mask = 1 << AT91SAM9261_ID_UHP,
130 .type = CLK_TYPE_PERIPHERAL,
131};
132static struct clk lcdc_clk = {
133 .name = "lcdc_clk",
134 .pmc_mask = 1 << AT91SAM9261_ID_LCDC,
135 .type = CLK_TYPE_PERIPHERAL,
136};
137
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200138/* HClocks */
139static struct clk hck0 = {
140 .name = "hck0",
141 .pmc_mask = AT91_PMC_HCK0,
142 .type = CLK_TYPE_SYSTEM,
143 .id = 0,
144};
145static struct clk hck1 = {
146 .name = "hck1",
147 .pmc_mask = AT91_PMC_HCK1,
148 .type = CLK_TYPE_SYSTEM,
149 .id = 1,
150};
151
Andrew Victor62c16602006-11-30 12:27:38 +0100152static struct clk *periph_clocks[] __initdata = {
153 &pioA_clk,
154 &pioB_clk,
155 &pioC_clk,
156 &usart0_clk,
157 &usart1_clk,
158 &usart2_clk,
159 &mmc_clk,
160 &udc_clk,
161 &twi_clk,
162 &spi0_clk,
163 &spi1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100164 &ssc0_clk,
165 &ssc1_clk,
166 &ssc2_clk,
Andrew Victorc177a1e2007-02-08 10:25:38 +0100167 &tc0_clk,
168 &tc1_clk,
169 &tc2_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100170 &ohci_clk,
171 &lcdc_clk,
172 // irq0 .. irq2
173};
174
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100175static struct clk_lookup periph_clocks_lookups[] = {
Johan Hovoldbbd44f6b2013-02-07 16:31:58 +0100176 CLKDEV_CON_DEV_ID("hclk", "at91sam9261-lcdfb.0", &hck1),
177 CLKDEV_CON_DEV_ID("hclk", "at91sam9g10-lcdfb.0", &hck1),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100178 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
179 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
180 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
181 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
Jean-Christophe PLAGNIOL-VILLARDc0764b22011-08-23 16:35:31 +0200182 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
Bo Shen636036d22012-11-06 13:57:51 +0800183 CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.0", &ssc0_clk),
184 CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.1", &ssc1_clk),
185 CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.2", &ssc2_clk),
Bo Shen099343c2012-11-07 11:41:41 +0800186 CLKDEV_CON_DEV_ID("pclk", "fffbc000.ssc", &ssc0_clk),
187 CLKDEV_CON_DEV_ID("pclk", "fffc0000.ssc", &ssc1_clk),
188 CLKDEV_CON_DEV_ID("pclk", "fffc4000.ssc", &ssc2_clk),
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200189 CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &hck0),
Bo Shen302090a2012-10-15 17:30:28 +0800190 CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9261.0", &twi_clk),
191 CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g10.0", &twi_clk),
Jean-Christophe PLAGNIOL-VILLARD619d4a42011-11-13 13:00:58 +0800192 CLKDEV_CON_ID("pioA", &pioA_clk),
193 CLKDEV_CON_ID("pioB", &pioB_clk),
194 CLKDEV_CON_ID("pioC", &pioC_clk),
Jean-Jacques Hiblot360ccb32014-03-03 11:05:57 +0100195 /* more lookup table for DT entries */
196 CLKDEV_CON_DEV_ID("usart", "fffff200.serial", &mck),
197 CLKDEV_CON_DEV_ID("usart", "fffb0000.serial", &usart0_clk),
198 CLKDEV_CON_DEV_ID("usart", "ffffb400.serial", &usart1_clk),
199 CLKDEV_CON_DEV_ID("usart", "fff94000.serial", &usart2_clk),
200 CLKDEV_CON_DEV_ID("t0_clk", "fffa0000.timer", &tc0_clk),
201 CLKDEV_CON_DEV_ID("t1_clk", "fffa0000.timer", &tc1_clk),
202 CLKDEV_CON_DEV_ID("t2_clk", "fffa0000.timer", &tc2_clk),
203 CLKDEV_CON_DEV_ID("hclk", "500000.ohci", &hck0),
204 CLKDEV_CON_DEV_ID("hclk", "600000.fb", &hck1),
205 CLKDEV_CON_DEV_ID("spi_clk", "fffc8000.spi", &spi0_clk),
206 CLKDEV_CON_DEV_ID("spi_clk", "fffcc000.spi", &spi1_clk),
207 CLKDEV_CON_DEV_ID("mci_clk", "fffa8000.mmc", &mmc_clk),
208 CLKDEV_CON_DEV_ID(NULL, "fffac000.i2c", &twi_clk),
209 CLKDEV_CON_DEV_ID(NULL, "fffff400.gpio", &pioA_clk),
210 CLKDEV_CON_DEV_ID(NULL, "fffff600.gpio", &pioB_clk),
211 CLKDEV_CON_DEV_ID(NULL, "fffff800.gpio", &pioC_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100212};
213
214static struct clk_lookup usart_clocks_lookups[] = {
215 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
216 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
217 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
218 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
219};
220
Andrew Victor62c16602006-11-30 12:27:38 +0100221/*
222 * The four programmable clocks.
223 * You must configure pin multiplexing to bring these signals out.
224 */
225static struct clk pck0 = {
226 .name = "pck0",
227 .pmc_mask = AT91_PMC_PCK0,
228 .type = CLK_TYPE_PROGRAMMABLE,
229 .id = 0,
230};
231static struct clk pck1 = {
232 .name = "pck1",
233 .pmc_mask = AT91_PMC_PCK1,
234 .type = CLK_TYPE_PROGRAMMABLE,
235 .id = 1,
236};
237static struct clk pck2 = {
238 .name = "pck2",
239 .pmc_mask = AT91_PMC_PCK2,
240 .type = CLK_TYPE_PROGRAMMABLE,
241 .id = 2,
242};
243static struct clk pck3 = {
244 .name = "pck3",
245 .pmc_mask = AT91_PMC_PCK3,
246 .type = CLK_TYPE_PROGRAMMABLE,
247 .id = 3,
248};
249
Andrew Victor62c16602006-11-30 12:27:38 +0100250static void __init at91sam9261_register_clocks(void)
251{
252 int i;
253
254 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
255 clk_register(periph_clocks[i]);
256
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100257 clkdev_add_table(periph_clocks_lookups,
258 ARRAY_SIZE(periph_clocks_lookups));
259 clkdev_add_table(usart_clocks_lookups,
260 ARRAY_SIZE(usart_clocks_lookups));
261
Andrew Victor62c16602006-11-30 12:27:38 +0100262 clk_register(&pck0);
263 clk_register(&pck1);
264 clk_register(&pck2);
265 clk_register(&pck3);
266
267 clk_register(&hck0);
268 clk_register(&hck1);
269}
Jean-Jacques Hiblot02c57772014-03-03 11:06:01 +0100270#else
271#define at91sam9261_register_clocks NULL
272#endif
Andrew Victor62c16602006-11-30 12:27:38 +0100273/* --------------------------------------------------------------------
274 * GPIO
275 * -------------------------------------------------------------------- */
276
Jean-Christophe PLAGNIOL-VILLARD1a2d9152011-10-17 14:28:38 +0800277static struct at91_gpio_bank at91sam9261_gpio[] __initdata = {
Andrew Victor62c16602006-11-30 12:27:38 +0100278 {
279 .id = AT91SAM9261_ID_PIOA,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800280 .regbase = AT91SAM9261_BASE_PIOA,
Andrew Victor62c16602006-11-30 12:27:38 +0100281 }, {
282 .id = AT91SAM9261_ID_PIOB,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800283 .regbase = AT91SAM9261_BASE_PIOB,
Andrew Victor62c16602006-11-30 12:27:38 +0100284 }, {
285 .id = AT91SAM9261_ID_PIOC,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800286 .regbase = AT91SAM9261_BASE_PIOC,
Andrew Victor62c16602006-11-30 12:27:38 +0100287 }
288};
289
Andrew Victor62c16602006-11-30 12:27:38 +0100290/* --------------------------------------------------------------------
291 * AT91SAM9261 processor initialization
292 * -------------------------------------------------------------------- */
293
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800294static void __init at91sam9261_map_io(void)
Andrew Victor62c16602006-11-30 12:27:38 +0100295{
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100296 if (cpu_is_at91sam9g10())
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800297 at91_init_sram(0, AT91SAM9G10_SRAM_BASE, AT91SAM9G10_SRAM_SIZE);
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100298 else
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800299 at91_init_sram(0, AT91SAM9261_SRAM_BASE, AT91SAM9261_SRAM_SIZE);
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800300}
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100301
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800302static void __init at91sam9261_ioremap_registers(void)
303{
Jean-Christophe PLAGNIOL-VILLARDf22deee2011-11-01 01:23:20 +0800304 at91_ioremap_shdwc(AT91SAM9261_BASE_SHDWC);
Jean-Christophe PLAGNIOL-VILLARDe9f68b52011-11-18 01:25:52 +0800305 at91_ioremap_rstc(AT91SAM9261_BASE_RSTC);
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800306 at91_ioremap_ramc(0, AT91SAM9261_BASE_SDRAMC, 512);
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800307 at91sam926x_ioremap_pit(AT91SAM9261_BASE_PIT);
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800308 at91sam9_ioremap_smc(0, AT91SAM9261_BASE_SMC);
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800309 at91_ioremap_matrix(AT91SAM9261_BASE_MATRIX);
Jean-Christophe PLAGNIOL-VILLARD6b625892013-10-16 16:24:57 +0200310 at91_pm_set_standby(at91sam9_sdram_standby);
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800311}
312
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800313static void __init at91sam9261_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800314{
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800315 arm_pm_idle = at91sam9_idle;
Russell King1b2073e2011-11-03 09:53:29 +0000316 arm_pm_restart = at91sam9_alt_restart;
Andrew Victor62c16602006-11-30 12:27:38 +0100317
Johan Hovold94c4c792013-10-16 11:56:15 +0200318 at91_sysirq_mask_rtt(AT91SAM9261_BASE_RTT);
319
Andrew Victor62c16602006-11-30 12:27:38 +0100320 /* Register GPIO subsystem */
321 at91_gpio_init(at91sam9261_gpio, 3);
322}
323
324/* --------------------------------------------------------------------
325 * Interrupt initialization
326 * -------------------------------------------------------------------- */
327
328/*
329 * The default interrupt priority levels (0 = lowest, 7 = highest).
330 */
331static unsigned int at91sam9261_default_irq_priority[NR_AIC_IRQS] __initdata = {
332 7, /* Advanced Interrupt Controller */
333 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100334 1, /* Parallel IO Controller A */
335 1, /* Parallel IO Controller B */
336 1, /* Parallel IO Controller C */
Andrew Victor62c16602006-11-30 12:27:38 +0100337 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100338 5, /* USART 0 */
339 5, /* USART 1 */
340 5, /* USART 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100341 0, /* Multimedia Card Interface */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100342 2, /* USB Device Port */
343 6, /* Two-Wire Interface */
344 5, /* Serial Peripheral Interface 0 */
345 5, /* Serial Peripheral Interface 1 */
346 4, /* Serial Synchronous Controller 0 */
347 4, /* Serial Synchronous Controller 1 */
348 4, /* Serial Synchronous Controller 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100349 0, /* Timer Counter 0 */
350 0, /* Timer Counter 1 */
351 0, /* Timer Counter 2 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100352 2, /* USB Host port */
Andrew Victor62c16602006-11-30 12:27:38 +0100353 3, /* LCD Controller */
354 0,
355 0,
356 0,
357 0,
358 0,
359 0,
360 0,
361 0, /* Advanced Interrupt Controller */
362 0, /* Advanced Interrupt Controller */
363 0, /* Advanced Interrupt Controller */
364};
365
Ludovic Desroches84ddb082013-03-22 13:24:09 +0000366AT91_SOC_START(at91sam9261)
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800367 .map_io = at91sam9261_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800368 .default_irq_priority = at91sam9261_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARD546c8302013-06-01 16:40:11 +0200369 .extern_irq = (1 << AT91SAM9261_ID_IRQ0) | (1 << AT91SAM9261_ID_IRQ1)
370 | (1 << AT91SAM9261_ID_IRQ2),
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800371 .ioremap_registers = at91sam9261_ioremap_registers,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800372 .register_clocks = at91sam9261_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800373 .init = at91sam9261_initialize,
Jean-Christophe PLAGNIOL-VILLARD8d39e0fd02012-08-16 17:36:55 +0800374AT91_SOC_END