blob: a0538c5c252029f3c30392eeab9e9608740f767b [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
Russell King80b02c12009-01-08 10:01:47 +000015#include <asm/irq.h>
Andrew Victor62c16602006-11-30 12:27:38 +010016#include <asm/mach/arch.h>
17#include <asm/mach/map.h>
Nicolas Ferreb319ff82009-06-26 15:37:01 +010018#include <mach/cpu.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/at91sam9261.h>
20#include <mach/at91_pmc.h>
21#include <mach/at91_rstc.h>
Andrew Victor62c16602006-11-30 12:27:38 +010022
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080023#include "soc.h"
Andrew Victor62c16602006-11-30 12:27:38 +010024#include "generic.h"
25#include "clock.h"
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080026#include "sam9_smc.h"
Andrew Victor62c16602006-11-30 12:27:38 +010027
Andrew Victor62c16602006-11-30 12:27:38 +010028/* --------------------------------------------------------------------
29 * Clocks
30 * -------------------------------------------------------------------- */
31
32/*
33 * The peripheral clocks.
34 */
35static struct clk pioA_clk = {
36 .name = "pioA_clk",
37 .pmc_mask = 1 << AT91SAM9261_ID_PIOA,
38 .type = CLK_TYPE_PERIPHERAL,
39};
40static struct clk pioB_clk = {
41 .name = "pioB_clk",
42 .pmc_mask = 1 << AT91SAM9261_ID_PIOB,
43 .type = CLK_TYPE_PERIPHERAL,
44};
45static struct clk pioC_clk = {
46 .name = "pioC_clk",
47 .pmc_mask = 1 << AT91SAM9261_ID_PIOC,
48 .type = CLK_TYPE_PERIPHERAL,
49};
50static struct clk usart0_clk = {
51 .name = "usart0_clk",
52 .pmc_mask = 1 << AT91SAM9261_ID_US0,
53 .type = CLK_TYPE_PERIPHERAL,
54};
55static struct clk usart1_clk = {
56 .name = "usart1_clk",
57 .pmc_mask = 1 << AT91SAM9261_ID_US1,
58 .type = CLK_TYPE_PERIPHERAL,
59};
60static struct clk usart2_clk = {
61 .name = "usart2_clk",
62 .pmc_mask = 1 << AT91SAM9261_ID_US2,
63 .type = CLK_TYPE_PERIPHERAL,
64};
65static struct clk mmc_clk = {
66 .name = "mci_clk",
67 .pmc_mask = 1 << AT91SAM9261_ID_MCI,
68 .type = CLK_TYPE_PERIPHERAL,
69};
70static struct clk udc_clk = {
71 .name = "udc_clk",
72 .pmc_mask = 1 << AT91SAM9261_ID_UDP,
73 .type = CLK_TYPE_PERIPHERAL,
74};
75static struct clk twi_clk = {
76 .name = "twi_clk",
77 .pmc_mask = 1 << AT91SAM9261_ID_TWI,
78 .type = CLK_TYPE_PERIPHERAL,
79};
80static struct clk spi0_clk = {
81 .name = "spi0_clk",
82 .pmc_mask = 1 << AT91SAM9261_ID_SPI0,
83 .type = CLK_TYPE_PERIPHERAL,
84};
85static struct clk spi1_clk = {
86 .name = "spi1_clk",
87 .pmc_mask = 1 << AT91SAM9261_ID_SPI1,
88 .type = CLK_TYPE_PERIPHERAL,
89};
Andrew Victore8788ba2007-05-02 17:14:57 +010090static struct clk ssc0_clk = {
91 .name = "ssc0_clk",
92 .pmc_mask = 1 << AT91SAM9261_ID_SSC0,
93 .type = CLK_TYPE_PERIPHERAL,
94};
95static struct clk ssc1_clk = {
96 .name = "ssc1_clk",
97 .pmc_mask = 1 << AT91SAM9261_ID_SSC1,
98 .type = CLK_TYPE_PERIPHERAL,
99};
100static struct clk ssc2_clk = {
101 .name = "ssc2_clk",
102 .pmc_mask = 1 << AT91SAM9261_ID_SSC2,
103 .type = CLK_TYPE_PERIPHERAL,
104};
Andrew Victorc177a1e2007-02-08 10:25:38 +0100105static struct clk tc0_clk = {
106 .name = "tc0_clk",
107 .pmc_mask = 1 << AT91SAM9261_ID_TC0,
108 .type = CLK_TYPE_PERIPHERAL,
109};
110static struct clk tc1_clk = {
111 .name = "tc1_clk",
112 .pmc_mask = 1 << AT91SAM9261_ID_TC1,
113 .type = CLK_TYPE_PERIPHERAL,
114};
115static struct clk tc2_clk = {
116 .name = "tc2_clk",
117 .pmc_mask = 1 << AT91SAM9261_ID_TC2,
118 .type = CLK_TYPE_PERIPHERAL,
119};
Andrew Victor62c16602006-11-30 12:27:38 +0100120static struct clk ohci_clk = {
121 .name = "ohci_clk",
122 .pmc_mask = 1 << AT91SAM9261_ID_UHP,
123 .type = CLK_TYPE_PERIPHERAL,
124};
125static struct clk lcdc_clk = {
126 .name = "lcdc_clk",
127 .pmc_mask = 1 << AT91SAM9261_ID_LCDC,
128 .type = CLK_TYPE_PERIPHERAL,
129};
130
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200131/* HClocks */
132static struct clk hck0 = {
133 .name = "hck0",
134 .pmc_mask = AT91_PMC_HCK0,
135 .type = CLK_TYPE_SYSTEM,
136 .id = 0,
137};
138static struct clk hck1 = {
139 .name = "hck1",
140 .pmc_mask = AT91_PMC_HCK1,
141 .type = CLK_TYPE_SYSTEM,
142 .id = 1,
143};
144
Andrew Victor62c16602006-11-30 12:27:38 +0100145static struct clk *periph_clocks[] __initdata = {
146 &pioA_clk,
147 &pioB_clk,
148 &pioC_clk,
149 &usart0_clk,
150 &usart1_clk,
151 &usart2_clk,
152 &mmc_clk,
153 &udc_clk,
154 &twi_clk,
155 &spi0_clk,
156 &spi1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100157 &ssc0_clk,
158 &ssc1_clk,
159 &ssc2_clk,
Andrew Victorc177a1e2007-02-08 10:25:38 +0100160 &tc0_clk,
161 &tc1_clk,
162 &tc2_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100163 &ohci_clk,
164 &lcdc_clk,
165 // irq0 .. irq2
166};
167
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100168static struct clk_lookup periph_clocks_lookups[] = {
169 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
170 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
171 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
172 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
Jean-Christophe PLAGNIOL-VILLARDc0764b22011-08-23 16:35:31 +0200173 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100174 CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
175 CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
176 CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk),
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200177 CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &hck0),
Jean-Christophe PLAGNIOL-VILLARD619d4a42011-11-13 13:00:58 +0800178 CLKDEV_CON_ID("pioA", &pioA_clk),
179 CLKDEV_CON_ID("pioB", &pioB_clk),
180 CLKDEV_CON_ID("pioC", &pioC_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100181};
182
183static struct clk_lookup usart_clocks_lookups[] = {
184 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
185 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
186 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
187 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
188};
189
Andrew Victor62c16602006-11-30 12:27:38 +0100190/*
191 * The four programmable clocks.
192 * You must configure pin multiplexing to bring these signals out.
193 */
194static struct clk pck0 = {
195 .name = "pck0",
196 .pmc_mask = AT91_PMC_PCK0,
197 .type = CLK_TYPE_PROGRAMMABLE,
198 .id = 0,
199};
200static struct clk pck1 = {
201 .name = "pck1",
202 .pmc_mask = AT91_PMC_PCK1,
203 .type = CLK_TYPE_PROGRAMMABLE,
204 .id = 1,
205};
206static struct clk pck2 = {
207 .name = "pck2",
208 .pmc_mask = AT91_PMC_PCK2,
209 .type = CLK_TYPE_PROGRAMMABLE,
210 .id = 2,
211};
212static struct clk pck3 = {
213 .name = "pck3",
214 .pmc_mask = AT91_PMC_PCK3,
215 .type = CLK_TYPE_PROGRAMMABLE,
216 .id = 3,
217};
218
Andrew Victor62c16602006-11-30 12:27:38 +0100219static void __init at91sam9261_register_clocks(void)
220{
221 int i;
222
223 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
224 clk_register(periph_clocks[i]);
225
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100226 clkdev_add_table(periph_clocks_lookups,
227 ARRAY_SIZE(periph_clocks_lookups));
228 clkdev_add_table(usart_clocks_lookups,
229 ARRAY_SIZE(usart_clocks_lookups));
230
Andrew Victor62c16602006-11-30 12:27:38 +0100231 clk_register(&pck0);
232 clk_register(&pck1);
233 clk_register(&pck2);
234 clk_register(&pck3);
235
236 clk_register(&hck0);
237 clk_register(&hck1);
238}
239
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100240static struct clk_lookup console_clock_lookup;
241
242void __init at91sam9261_set_console_clock(int id)
243{
244 if (id >= ARRAY_SIZE(usart_clocks_lookups))
245 return;
246
247 console_clock_lookup.con_id = "usart";
248 console_clock_lookup.clk = usart_clocks_lookups[id].clk;
249 clkdev_add(&console_clock_lookup);
250}
251
Andrew Victor62c16602006-11-30 12:27:38 +0100252/* --------------------------------------------------------------------
253 * GPIO
254 * -------------------------------------------------------------------- */
255
Jean-Christophe PLAGNIOL-VILLARD1a2d9152011-10-17 14:28:38 +0800256static struct at91_gpio_bank at91sam9261_gpio[] __initdata = {
Andrew Victor62c16602006-11-30 12:27:38 +0100257 {
258 .id = AT91SAM9261_ID_PIOA,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800259 .regbase = AT91SAM9261_BASE_PIOA,
Andrew Victor62c16602006-11-30 12:27:38 +0100260 }, {
261 .id = AT91SAM9261_ID_PIOB,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800262 .regbase = AT91SAM9261_BASE_PIOB,
Andrew Victor62c16602006-11-30 12:27:38 +0100263 }, {
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 }
267};
268
Andrew Victor62c16602006-11-30 12:27:38 +0100269/* --------------------------------------------------------------------
270 * AT91SAM9261 processor initialization
271 * -------------------------------------------------------------------- */
272
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800273static void __init at91sam9261_map_io(void)
Andrew Victor62c16602006-11-30 12:27:38 +0100274{
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100275 if (cpu_is_at91sam9g10())
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800276 at91_init_sram(0, AT91SAM9G10_SRAM_BASE, AT91SAM9G10_SRAM_SIZE);
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100277 else
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800278 at91_init_sram(0, AT91SAM9261_SRAM_BASE, AT91SAM9261_SRAM_SIZE);
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800279}
Nicolas Ferreb319ff82009-06-26 15:37:01 +0100280
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800281static void __init at91sam9261_ioremap_registers(void)
282{
Jean-Christophe PLAGNIOL-VILLARDf22deee2011-11-01 01:23:20 +0800283 at91_ioremap_shdwc(AT91SAM9261_BASE_SHDWC);
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-VILLARDcfa5a1f2011-10-14 01:17:18 +0800286}
287
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800288static void __init at91sam9261_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800289{
Nicolas Ferrebb413db2010-10-14 19:14:00 +0200290 at91_arch_reset = at91sam9_alt_reset;
Andrew Victor62c16602006-11-30 12:27:38 +0100291 at91_extern_irq = (1 << AT91SAM9261_ID_IRQ0) | (1 << AT91SAM9261_ID_IRQ1)
292 | (1 << AT91SAM9261_ID_IRQ2);
293
Andrew Victor62c16602006-11-30 12:27:38 +0100294 /* Register GPIO subsystem */
295 at91_gpio_init(at91sam9261_gpio, 3);
296}
297
298/* --------------------------------------------------------------------
299 * Interrupt initialization
300 * -------------------------------------------------------------------- */
301
302/*
303 * The default interrupt priority levels (0 = lowest, 7 = highest).
304 */
305static unsigned int at91sam9261_default_irq_priority[NR_AIC_IRQS] __initdata = {
306 7, /* Advanced Interrupt Controller */
307 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100308 1, /* Parallel IO Controller A */
309 1, /* Parallel IO Controller B */
310 1, /* Parallel IO Controller C */
Andrew Victor62c16602006-11-30 12:27:38 +0100311 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100312 5, /* USART 0 */
313 5, /* USART 1 */
314 5, /* USART 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100315 0, /* Multimedia Card Interface */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100316 2, /* USB Device Port */
317 6, /* Two-Wire Interface */
318 5, /* Serial Peripheral Interface 0 */
319 5, /* Serial Peripheral Interface 1 */
320 4, /* Serial Synchronous Controller 0 */
321 4, /* Serial Synchronous Controller 1 */
322 4, /* Serial Synchronous Controller 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100323 0, /* Timer Counter 0 */
324 0, /* Timer Counter 1 */
325 0, /* Timer Counter 2 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100326 2, /* USB Host port */
Andrew Victor62c16602006-11-30 12:27:38 +0100327 3, /* LCD Controller */
328 0,
329 0,
330 0,
331 0,
332 0,
333 0,
334 0,
335 0, /* Advanced Interrupt Controller */
336 0, /* Advanced Interrupt Controller */
337 0, /* Advanced Interrupt Controller */
338};
339
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800340struct at91_init_soc __initdata at91sam9261_soc = {
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800341 .map_io = at91sam9261_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800342 .default_irq_priority = at91sam9261_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800343 .ioremap_registers = at91sam9261_ioremap_registers,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800344 .register_clocks = at91sam9261_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800345 .init = at91sam9261_initialize,
346};