blob: 348d5ae4dee263cce2064815b13586492bfb8dbd [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>
Andrew Victor3ef2fb42008-04-02 21:36:06 +010014#include <linux/pm.h>
Andrew Victor62c16602006-11-30 12:27:38 +010015
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>
Nicolas Ferreb319ff82009-06-26 15:37:01 +010019#include <mach/cpu.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010020#include <mach/at91sam9261.h>
21#include <mach/at91_pmc.h>
22#include <mach/at91_rstc.h>
23#include <mach/at91_shdwc.h>
Andrew Victor62c16602006-11-30 12:27:38 +010024
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080025#include "soc.h"
Andrew Victor62c16602006-11-30 12:27:38 +010026#include "generic.h"
27#include "clock.h"
28
Andrew Victor62c16602006-11-30 12:27:38 +010029/* --------------------------------------------------------------------
30 * Clocks
31 * -------------------------------------------------------------------- */
32
33/*
34 * The peripheral clocks.
35 */
36static struct clk pioA_clk = {
37 .name = "pioA_clk",
38 .pmc_mask = 1 << AT91SAM9261_ID_PIOA,
39 .type = CLK_TYPE_PERIPHERAL,
40};
41static struct clk pioB_clk = {
42 .name = "pioB_clk",
43 .pmc_mask = 1 << AT91SAM9261_ID_PIOB,
44 .type = CLK_TYPE_PERIPHERAL,
45};
46static struct clk pioC_clk = {
47 .name = "pioC_clk",
48 .pmc_mask = 1 << AT91SAM9261_ID_PIOC,
49 .type = CLK_TYPE_PERIPHERAL,
50};
51static struct clk usart0_clk = {
52 .name = "usart0_clk",
53 .pmc_mask = 1 << AT91SAM9261_ID_US0,
54 .type = CLK_TYPE_PERIPHERAL,
55};
56static struct clk usart1_clk = {
57 .name = "usart1_clk",
58 .pmc_mask = 1 << AT91SAM9261_ID_US1,
59 .type = CLK_TYPE_PERIPHERAL,
60};
61static struct clk usart2_clk = {
62 .name = "usart2_clk",
63 .pmc_mask = 1 << AT91SAM9261_ID_US2,
64 .type = CLK_TYPE_PERIPHERAL,
65};
66static struct clk mmc_clk = {
67 .name = "mci_clk",
68 .pmc_mask = 1 << AT91SAM9261_ID_MCI,
69 .type = CLK_TYPE_PERIPHERAL,
70};
71static struct clk udc_clk = {
72 .name = "udc_clk",
73 .pmc_mask = 1 << AT91SAM9261_ID_UDP,
74 .type = CLK_TYPE_PERIPHERAL,
75};
76static struct clk twi_clk = {
77 .name = "twi_clk",
78 .pmc_mask = 1 << AT91SAM9261_ID_TWI,
79 .type = CLK_TYPE_PERIPHERAL,
80};
81static struct clk spi0_clk = {
82 .name = "spi0_clk",
83 .pmc_mask = 1 << AT91SAM9261_ID_SPI0,
84 .type = CLK_TYPE_PERIPHERAL,
85};
86static struct clk spi1_clk = {
87 .name = "spi1_clk",
88 .pmc_mask = 1 << AT91SAM9261_ID_SPI1,
89 .type = CLK_TYPE_PERIPHERAL,
90};
Andrew Victore8788ba2007-05-02 17:14:57 +010091static struct clk ssc0_clk = {
92 .name = "ssc0_clk",
93 .pmc_mask = 1 << AT91SAM9261_ID_SSC0,
94 .type = CLK_TYPE_PERIPHERAL,
95};
96static struct clk ssc1_clk = {
97 .name = "ssc1_clk",
98 .pmc_mask = 1 << AT91SAM9261_ID_SSC1,
99 .type = CLK_TYPE_PERIPHERAL,
100};
101static struct clk ssc2_clk = {
102 .name = "ssc2_clk",
103 .pmc_mask = 1 << AT91SAM9261_ID_SSC2,
104 .type = CLK_TYPE_PERIPHERAL,
105};
Andrew Victorc177a1e2007-02-08 10:25:38 +0100106static struct clk tc0_clk = {
107 .name = "tc0_clk",
108 .pmc_mask = 1 << AT91SAM9261_ID_TC0,
109 .type = CLK_TYPE_PERIPHERAL,
110};
111static struct clk tc1_clk = {
112 .name = "tc1_clk",
113 .pmc_mask = 1 << AT91SAM9261_ID_TC1,
114 .type = CLK_TYPE_PERIPHERAL,
115};
116static struct clk tc2_clk = {
117 .name = "tc2_clk",
118 .pmc_mask = 1 << AT91SAM9261_ID_TC2,
119 .type = CLK_TYPE_PERIPHERAL,
120};
Andrew Victor62c16602006-11-30 12:27:38 +0100121static struct clk ohci_clk = {
122 .name = "ohci_clk",
123 .pmc_mask = 1 << AT91SAM9261_ID_UHP,
124 .type = CLK_TYPE_PERIPHERAL,
125};
126static struct clk lcdc_clk = {
127 .name = "lcdc_clk",
128 .pmc_mask = 1 << AT91SAM9261_ID_LCDC,
129 .type = CLK_TYPE_PERIPHERAL,
130};
131
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200132/* HClocks */
133static struct clk hck0 = {
134 .name = "hck0",
135 .pmc_mask = AT91_PMC_HCK0,
136 .type = CLK_TYPE_SYSTEM,
137 .id = 0,
138};
139static struct clk hck1 = {
140 .name = "hck1",
141 .pmc_mask = AT91_PMC_HCK1,
142 .type = CLK_TYPE_SYSTEM,
143 .id = 1,
144};
145
Andrew Victor62c16602006-11-30 12:27:38 +0100146static struct clk *periph_clocks[] __initdata = {
147 &pioA_clk,
148 &pioB_clk,
149 &pioC_clk,
150 &usart0_clk,
151 &usart1_clk,
152 &usart2_clk,
153 &mmc_clk,
154 &udc_clk,
155 &twi_clk,
156 &spi0_clk,
157 &spi1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100158 &ssc0_clk,
159 &ssc1_clk,
160 &ssc2_clk,
Andrew Victorc177a1e2007-02-08 10:25:38 +0100161 &tc0_clk,
162 &tc1_clk,
163 &tc2_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100164 &ohci_clk,
165 &lcdc_clk,
166 // irq0 .. irq2
167};
168
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100169static struct clk_lookup periph_clocks_lookups[] = {
170 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
171 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
172 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
173 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
Jean-Christophe PLAGNIOL-VILLARDc0764b22011-08-23 16:35:31 +0200174 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100175 CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
176 CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
177 CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk),
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200178 CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &hck0),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100179};
180
181static struct clk_lookup usart_clocks_lookups[] = {
182 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
183 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
184 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
185 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
186};
187
Andrew Victor62c16602006-11-30 12:27:38 +0100188/*
189 * The four programmable clocks.
190 * You must configure pin multiplexing to bring these signals out.
191 */
192static struct clk pck0 = {
193 .name = "pck0",
194 .pmc_mask = AT91_PMC_PCK0,
195 .type = CLK_TYPE_PROGRAMMABLE,
196 .id = 0,
197};
198static struct clk pck1 = {
199 .name = "pck1",
200 .pmc_mask = AT91_PMC_PCK1,
201 .type = CLK_TYPE_PROGRAMMABLE,
202 .id = 1,
203};
204static struct clk pck2 = {
205 .name = "pck2",
206 .pmc_mask = AT91_PMC_PCK2,
207 .type = CLK_TYPE_PROGRAMMABLE,
208 .id = 2,
209};
210static struct clk pck3 = {
211 .name = "pck3",
212 .pmc_mask = AT91_PMC_PCK3,
213 .type = CLK_TYPE_PROGRAMMABLE,
214 .id = 3,
215};
216
Andrew Victor62c16602006-11-30 12:27:38 +0100217static void __init at91sam9261_register_clocks(void)
218{
219 int i;
220
221 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
222 clk_register(periph_clocks[i]);
223
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100224 clkdev_add_table(periph_clocks_lookups,
225 ARRAY_SIZE(periph_clocks_lookups));
226 clkdev_add_table(usart_clocks_lookups,
227 ARRAY_SIZE(usart_clocks_lookups));
228
Andrew Victor62c16602006-11-30 12:27:38 +0100229 clk_register(&pck0);
230 clk_register(&pck1);
231 clk_register(&pck2);
232 clk_register(&pck3);
233
234 clk_register(&hck0);
235 clk_register(&hck1);
236}
237
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100238static struct clk_lookup console_clock_lookup;
239
240void __init at91sam9261_set_console_clock(int id)
241{
242 if (id >= ARRAY_SIZE(usart_clocks_lookups))
243 return;
244
245 console_clock_lookup.con_id = "usart";
246 console_clock_lookup.clk = usart_clocks_lookups[id].clk;
247 clkdev_add(&console_clock_lookup);
248}
249
Andrew Victor62c16602006-11-30 12:27:38 +0100250/* --------------------------------------------------------------------
251 * GPIO
252 * -------------------------------------------------------------------- */
253
254static struct at91_gpio_bank at91sam9261_gpio[] = {
255 {
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 .clock = &pioA_clk,
259 }, {
260 .id = AT91SAM9261_ID_PIOB,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800261 .regbase = AT91SAM9261_BASE_PIOB,
Andrew Victor62c16602006-11-30 12:27:38 +0100262 .clock = &pioB_clk,
263 }, {
264 .id = AT91SAM9261_ID_PIOC,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800265 .regbase = AT91SAM9261_BASE_PIOC,
Andrew Victor62c16602006-11-30 12:27:38 +0100266 .clock = &pioC_clk,
267 }
268};
269
Andrew Victor3ef2fb42008-04-02 21:36:06 +0100270static void at91sam9261_poweroff(void)
271{
272 at91_sys_write(AT91_SHDW_CR, AT91_SHDW_KEY | AT91_SHDW_SHDW);
273}
274
Andrew Victor62c16602006-11-30 12:27:38 +0100275
276/* --------------------------------------------------------------------
277 * AT91SAM9261 processor initialization
278 * -------------------------------------------------------------------- */
279
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800280static void __init at91sam9261_map_io(void)
Andrew Victor62c16602006-11-30 12:27:38 +0100281{
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100282 if (cpu_is_at91sam9g10())
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800283 at91_init_sram(0, AT91SAM9G10_SRAM_BASE, AT91SAM9G10_SRAM_SIZE);
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100284 else
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800285 at91_init_sram(0, AT91SAM9261_SRAM_BASE, AT91SAM9261_SRAM_SIZE);
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800286}
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100287
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800288static void __init at91sam9261_ioremap_registers(void)
289{
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800290 at91sam926x_ioremap_pit(AT91SAM9261_BASE_PIT);
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800291}
292
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800293static void __init at91sam9261_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800294{
Nicolas Ferrebb413db2010-10-14 19:14:00 +0200295 at91_arch_reset = at91sam9_alt_reset;
Andrew Victor3ef2fb42008-04-02 21:36:06 +0100296 pm_power_off = at91sam9261_poweroff;
Andrew Victor62c16602006-11-30 12:27:38 +0100297 at91_extern_irq = (1 << AT91SAM9261_ID_IRQ0) | (1 << AT91SAM9261_ID_IRQ1)
298 | (1 << AT91SAM9261_ID_IRQ2);
299
Andrew Victor62c16602006-11-30 12:27:38 +0100300 /* Register GPIO subsystem */
301 at91_gpio_init(at91sam9261_gpio, 3);
302}
303
304/* --------------------------------------------------------------------
305 * Interrupt initialization
306 * -------------------------------------------------------------------- */
307
308/*
309 * The default interrupt priority levels (0 = lowest, 7 = highest).
310 */
311static unsigned int at91sam9261_default_irq_priority[NR_AIC_IRQS] __initdata = {
312 7, /* Advanced Interrupt Controller */
313 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100314 1, /* Parallel IO Controller A */
315 1, /* Parallel IO Controller B */
316 1, /* Parallel IO Controller C */
Andrew Victor62c16602006-11-30 12:27:38 +0100317 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100318 5, /* USART 0 */
319 5, /* USART 1 */
320 5, /* USART 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100321 0, /* Multimedia Card Interface */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100322 2, /* USB Device Port */
323 6, /* Two-Wire Interface */
324 5, /* Serial Peripheral Interface 0 */
325 5, /* Serial Peripheral Interface 1 */
326 4, /* Serial Synchronous Controller 0 */
327 4, /* Serial Synchronous Controller 1 */
328 4, /* Serial Synchronous Controller 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100329 0, /* Timer Counter 0 */
330 0, /* Timer Counter 1 */
331 0, /* Timer Counter 2 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100332 2, /* USB Host port */
Andrew Victor62c16602006-11-30 12:27:38 +0100333 3, /* LCD Controller */
334 0,
335 0,
336 0,
337 0,
338 0,
339 0,
340 0,
341 0, /* Advanced Interrupt Controller */
342 0, /* Advanced Interrupt Controller */
343 0, /* Advanced Interrupt Controller */
344};
345
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800346struct at91_init_soc __initdata at91sam9261_soc = {
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800347 .map_io = at91sam9261_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800348 .default_irq_priority = at91sam9261_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800349 .ioremap_registers = at91sam9261_ioremap_registers,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800350 .register_clocks = at91sam9261_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800351 .init = at91sam9261_initialize,
352};