blob: 80e3e0fac6b1a136c044db328af5b3761267c914 [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-VILLARDbd602992011-02-02 07:27:07 +0100178};
179
180static struct clk_lookup usart_clocks_lookups[] = {
181 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
182 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
183 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
184 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
185};
186
Andrew Victor62c16602006-11-30 12:27:38 +0100187/*
188 * The four programmable clocks.
189 * You must configure pin multiplexing to bring these signals out.
190 */
191static struct clk pck0 = {
192 .name = "pck0",
193 .pmc_mask = AT91_PMC_PCK0,
194 .type = CLK_TYPE_PROGRAMMABLE,
195 .id = 0,
196};
197static struct clk pck1 = {
198 .name = "pck1",
199 .pmc_mask = AT91_PMC_PCK1,
200 .type = CLK_TYPE_PROGRAMMABLE,
201 .id = 1,
202};
203static struct clk pck2 = {
204 .name = "pck2",
205 .pmc_mask = AT91_PMC_PCK2,
206 .type = CLK_TYPE_PROGRAMMABLE,
207 .id = 2,
208};
209static struct clk pck3 = {
210 .name = "pck3",
211 .pmc_mask = AT91_PMC_PCK3,
212 .type = CLK_TYPE_PROGRAMMABLE,
213 .id = 3,
214};
215
Andrew Victor62c16602006-11-30 12:27:38 +0100216static void __init at91sam9261_register_clocks(void)
217{
218 int i;
219
220 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
221 clk_register(periph_clocks[i]);
222
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100223 clkdev_add_table(periph_clocks_lookups,
224 ARRAY_SIZE(periph_clocks_lookups));
225 clkdev_add_table(usart_clocks_lookups,
226 ARRAY_SIZE(usart_clocks_lookups));
227
Andrew Victor62c16602006-11-30 12:27:38 +0100228 clk_register(&pck0);
229 clk_register(&pck1);
230 clk_register(&pck2);
231 clk_register(&pck3);
232
233 clk_register(&hck0);
234 clk_register(&hck1);
235}
236
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100237static struct clk_lookup console_clock_lookup;
238
239void __init at91sam9261_set_console_clock(int id)
240{
241 if (id >= ARRAY_SIZE(usart_clocks_lookups))
242 return;
243
244 console_clock_lookup.con_id = "usart";
245 console_clock_lookup.clk = usart_clocks_lookups[id].clk;
246 clkdev_add(&console_clock_lookup);
247}
248
Andrew Victor62c16602006-11-30 12:27:38 +0100249/* --------------------------------------------------------------------
250 * GPIO
251 * -------------------------------------------------------------------- */
252
253static struct at91_gpio_bank at91sam9261_gpio[] = {
254 {
255 .id = AT91SAM9261_ID_PIOA,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800256 .regbase = AT91SAM9261_BASE_PIOA,
Andrew Victor62c16602006-11-30 12:27:38 +0100257 .clock = &pioA_clk,
258 }, {
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 .clock = &pioB_clk,
262 }, {
263 .id = AT91SAM9261_ID_PIOC,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800264 .regbase = AT91SAM9261_BASE_PIOC,
Andrew Victor62c16602006-11-30 12:27:38 +0100265 .clock = &pioC_clk,
266 }
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};