blob: 8bdba2a04b16d68066b487ee10ba52efce56cf8e [file] [log] [blame]
Andrew Victorb2c65612007-02-08 09:42:40 +01001/*
2 * arch/arm/mach-at91/at91sam9263.c
3 *
4 * Copyright (C) 2007 Atmel Corporation.
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 Victorb2c65612007-02-08 09:42:40 +010017#include <asm/mach/arch.h>
18#include <asm/mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/at91sam9263.h>
20#include <mach/at91_pmc.h>
21#include <mach/at91_rstc.h>
Andrew Victorb2c65612007-02-08 09:42:40 +010022
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080023#include "soc.h"
Andrew Victorb2c65612007-02-08 09:42:40 +010024#include "generic.h"
25#include "clock.h"
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080026#include "sam9_smc.h"
Andrew Victorb2c65612007-02-08 09:42:40 +010027
Andrew Victorb2c65612007-02-08 09:42:40 +010028/* --------------------------------------------------------------------
29 * Clocks
30 * -------------------------------------------------------------------- */
31
32/*
33 * The peripheral clocks.
34 */
35static struct clk pioA_clk = {
36 .name = "pioA_clk",
37 .pmc_mask = 1 << AT91SAM9263_ID_PIOA,
38 .type = CLK_TYPE_PERIPHERAL,
39};
40static struct clk pioB_clk = {
41 .name = "pioB_clk",
42 .pmc_mask = 1 << AT91SAM9263_ID_PIOB,
43 .type = CLK_TYPE_PERIPHERAL,
44};
45static struct clk pioCDE_clk = {
46 .name = "pioCDE_clk",
47 .pmc_mask = 1 << AT91SAM9263_ID_PIOCDE,
48 .type = CLK_TYPE_PERIPHERAL,
49};
50static struct clk usart0_clk = {
51 .name = "usart0_clk",
52 .pmc_mask = 1 << AT91SAM9263_ID_US0,
53 .type = CLK_TYPE_PERIPHERAL,
54};
55static struct clk usart1_clk = {
56 .name = "usart1_clk",
57 .pmc_mask = 1 << AT91SAM9263_ID_US1,
58 .type = CLK_TYPE_PERIPHERAL,
59};
60static struct clk usart2_clk = {
61 .name = "usart2_clk",
62 .pmc_mask = 1 << AT91SAM9263_ID_US2,
63 .type = CLK_TYPE_PERIPHERAL,
64};
65static struct clk mmc0_clk = {
66 .name = "mci0_clk",
67 .pmc_mask = 1 << AT91SAM9263_ID_MCI0,
68 .type = CLK_TYPE_PERIPHERAL,
69};
70static struct clk mmc1_clk = {
71 .name = "mci1_clk",
72 .pmc_mask = 1 << AT91SAM9263_ID_MCI1,
73 .type = CLK_TYPE_PERIPHERAL,
74};
Andrew Victore8788ba2007-05-02 17:14:57 +010075static struct clk can_clk = {
76 .name = "can_clk",
77 .pmc_mask = 1 << AT91SAM9263_ID_CAN,
78 .type = CLK_TYPE_PERIPHERAL,
79};
Andrew Victorb2c65612007-02-08 09:42:40 +010080static struct clk twi_clk = {
81 .name = "twi_clk",
82 .pmc_mask = 1 << AT91SAM9263_ID_TWI,
83 .type = CLK_TYPE_PERIPHERAL,
84};
85static struct clk spi0_clk = {
86 .name = "spi0_clk",
87 .pmc_mask = 1 << AT91SAM9263_ID_SPI0,
88 .type = CLK_TYPE_PERIPHERAL,
89};
90static struct clk spi1_clk = {
91 .name = "spi1_clk",
92 .pmc_mask = 1 << AT91SAM9263_ID_SPI1,
93 .type = CLK_TYPE_PERIPHERAL,
94};
Andrew Victore8788ba2007-05-02 17:14:57 +010095static struct clk ssc0_clk = {
96 .name = "ssc0_clk",
97 .pmc_mask = 1 << AT91SAM9263_ID_SSC0,
98 .type = CLK_TYPE_PERIPHERAL,
99};
100static struct clk ssc1_clk = {
101 .name = "ssc1_clk",
102 .pmc_mask = 1 << AT91SAM9263_ID_SSC1,
103 .type = CLK_TYPE_PERIPHERAL,
104};
105static struct clk ac97_clk = {
106 .name = "ac97_clk",
107 .pmc_mask = 1 << AT91SAM9263_ID_AC97C,
108 .type = CLK_TYPE_PERIPHERAL,
109};
Andrew Victorb2c65612007-02-08 09:42:40 +0100110static struct clk tcb_clk = {
111 .name = "tcb_clk",
112 .pmc_mask = 1 << AT91SAM9263_ID_TCB,
113 .type = CLK_TYPE_PERIPHERAL,
114};
Andrew Victorbb1ad682008-09-18 19:42:37 +0100115static struct clk pwm_clk = {
116 .name = "pwm_clk",
Andrew Victore8788ba2007-05-02 17:14:57 +0100117 .pmc_mask = 1 << AT91SAM9263_ID_PWMC,
118 .type = CLK_TYPE_PERIPHERAL,
119};
Andrew Victor69b2e992007-02-14 08:44:43 +0100120static struct clk macb_clk = {
Jamie Iles865d6052011-08-09 16:51:11 +0200121 .name = "pclk",
Andrew Victorb2c65612007-02-08 09:42:40 +0100122 .pmc_mask = 1 << AT91SAM9263_ID_EMAC,
123 .type = CLK_TYPE_PERIPHERAL,
124};
Andrew Victore8788ba2007-05-02 17:14:57 +0100125static struct clk dma_clk = {
126 .name = "dma_clk",
127 .pmc_mask = 1 << AT91SAM9263_ID_DMA,
128 .type = CLK_TYPE_PERIPHERAL,
129};
130static struct clk twodge_clk = {
131 .name = "2dge_clk",
132 .pmc_mask = 1 << AT91SAM9263_ID_2DGE,
133 .type = CLK_TYPE_PERIPHERAL,
134};
Andrew Victorb2c65612007-02-08 09:42:40 +0100135static struct clk udc_clk = {
136 .name = "udc_clk",
137 .pmc_mask = 1 << AT91SAM9263_ID_UDP,
138 .type = CLK_TYPE_PERIPHERAL,
139};
140static struct clk isi_clk = {
141 .name = "isi_clk",
142 .pmc_mask = 1 << AT91SAM9263_ID_ISI,
143 .type = CLK_TYPE_PERIPHERAL,
144};
145static struct clk lcdc_clk = {
146 .name = "lcdc_clk",
Andrew Victor7f6e2d92007-02-22 07:34:56 +0100147 .pmc_mask = 1 << AT91SAM9263_ID_LCDC,
Andrew Victorb2c65612007-02-08 09:42:40 +0100148 .type = CLK_TYPE_PERIPHERAL,
149};
150static struct clk ohci_clk = {
151 .name = "ohci_clk",
152 .pmc_mask = 1 << AT91SAM9263_ID_UHP,
153 .type = CLK_TYPE_PERIPHERAL,
154};
155
156static struct clk *periph_clocks[] __initdata = {
157 &pioA_clk,
158 &pioB_clk,
159 &pioCDE_clk,
160 &usart0_clk,
161 &usart1_clk,
162 &usart2_clk,
163 &mmc0_clk,
164 &mmc1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100165 &can_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100166 &twi_clk,
167 &spi0_clk,
168 &spi1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100169 &ssc0_clk,
170 &ssc1_clk,
171 &ac97_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100172 &tcb_clk,
Andrew Victorbb1ad682008-09-18 19:42:37 +0100173 &pwm_clk,
Andrew Victor69b2e992007-02-14 08:44:43 +0100174 &macb_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100175 &twodge_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100176 &udc_clk,
177 &isi_clk,
178 &lcdc_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100179 &dma_clk,
Andrew Victorb2c65612007-02-08 09:42:40 +0100180 &ohci_clk,
181 // irq0 .. irq1
182};
183
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100184static struct clk_lookup periph_clocks_lookups[] = {
Jamie Iles865d6052011-08-09 16:51:11 +0200185 /* One additional fake clock for macb_hclk */
186 CLKDEV_CON_ID("hclk", &macb_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100187 CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
188 CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
189 CLKDEV_CON_DEV_ID("mci_clk", "at91_mci.0", &mmc0_clk),
190 CLKDEV_CON_DEV_ID("mci_clk", "at91_mci.1", &mmc1_clk),
191 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
192 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
193 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tcb_clk),
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200194 /* fake hclk clock */
195 CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &ohci_clk),
Jean-Christophe PLAGNIOL-VILLARD619d4a42011-11-13 13:00:58 +0800196 CLKDEV_CON_ID("pioA", &pioA_clk),
197 CLKDEV_CON_ID("pioB", &pioB_clk),
198 CLKDEV_CON_ID("pioC", &pioCDE_clk),
199 CLKDEV_CON_ID("pioD", &pioCDE_clk),
200 CLKDEV_CON_ID("pioE", &pioCDE_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100201};
202
203static struct clk_lookup usart_clocks_lookups[] = {
204 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
205 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
206 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
207 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
208};
209
Andrew Victorb2c65612007-02-08 09:42:40 +0100210/*
211 * The four programmable clocks.
212 * You must configure pin multiplexing to bring these signals out.
213 */
214static struct clk pck0 = {
215 .name = "pck0",
216 .pmc_mask = AT91_PMC_PCK0,
217 .type = CLK_TYPE_PROGRAMMABLE,
218 .id = 0,
219};
220static struct clk pck1 = {
221 .name = "pck1",
222 .pmc_mask = AT91_PMC_PCK1,
223 .type = CLK_TYPE_PROGRAMMABLE,
224 .id = 1,
225};
226static struct clk pck2 = {
227 .name = "pck2",
228 .pmc_mask = AT91_PMC_PCK2,
229 .type = CLK_TYPE_PROGRAMMABLE,
230 .id = 2,
231};
232static struct clk pck3 = {
233 .name = "pck3",
234 .pmc_mask = AT91_PMC_PCK3,
235 .type = CLK_TYPE_PROGRAMMABLE,
236 .id = 3,
237};
238
239static void __init at91sam9263_register_clocks(void)
240{
241 int i;
242
243 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
244 clk_register(periph_clocks[i]);
245
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100246 clkdev_add_table(periph_clocks_lookups,
247 ARRAY_SIZE(periph_clocks_lookups));
248 clkdev_add_table(usart_clocks_lookups,
249 ARRAY_SIZE(usart_clocks_lookups));
250
Andrew Victorb2c65612007-02-08 09:42:40 +0100251 clk_register(&pck0);
252 clk_register(&pck1);
253 clk_register(&pck2);
254 clk_register(&pck3);
255}
256
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100257static struct clk_lookup console_clock_lookup;
258
259void __init at91sam9263_set_console_clock(int id)
260{
261 if (id >= ARRAY_SIZE(usart_clocks_lookups))
262 return;
263
264 console_clock_lookup.con_id = "usart";
265 console_clock_lookup.clk = usart_clocks_lookups[id].clk;
266 clkdev_add(&console_clock_lookup);
267}
268
Andrew Victorb2c65612007-02-08 09:42:40 +0100269/* --------------------------------------------------------------------
270 * GPIO
271 * -------------------------------------------------------------------- */
272
Jean-Christophe PLAGNIOL-VILLARD1a2d9152011-10-17 14:28:38 +0800273static struct at91_gpio_bank at91sam9263_gpio[] __initdata = {
Andrew Victorb2c65612007-02-08 09:42:40 +0100274 {
275 .id = AT91SAM9263_ID_PIOA,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800276 .regbase = AT91SAM9263_BASE_PIOA,
Andrew Victorb2c65612007-02-08 09:42:40 +0100277 }, {
278 .id = AT91SAM9263_ID_PIOB,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800279 .regbase = AT91SAM9263_BASE_PIOB,
Andrew Victorb2c65612007-02-08 09:42:40 +0100280 }, {
281 .id = AT91SAM9263_ID_PIOCDE,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800282 .regbase = AT91SAM9263_BASE_PIOC,
Andrew Victorb2c65612007-02-08 09:42:40 +0100283 }, {
284 .id = AT91SAM9263_ID_PIOCDE,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800285 .regbase = AT91SAM9263_BASE_PIOD,
Andrew Victorb2c65612007-02-08 09:42:40 +0100286 }, {
287 .id = AT91SAM9263_ID_PIOCDE,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800288 .regbase = AT91SAM9263_BASE_PIOE,
Andrew Victorb2c65612007-02-08 09:42:40 +0100289 }
290};
291
Andrew Victorb2c65612007-02-08 09:42:40 +0100292/* --------------------------------------------------------------------
293 * AT91SAM9263 processor initialization
294 * -------------------------------------------------------------------- */
295
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800296static void __init at91sam9263_map_io(void)
Andrew Victorb2c65612007-02-08 09:42:40 +0100297{
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800298 at91_init_sram(0, AT91SAM9263_SRAM0_BASE, AT91SAM9263_SRAM0_SIZE);
299 at91_init_sram(1, AT91SAM9263_SRAM1_BASE, AT91SAM9263_SRAM1_SIZE);
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800300}
Andrew Victorb2c65612007-02-08 09:42:40 +0100301
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800302static void __init at91sam9263_ioremap_registers(void)
303{
Jean-Christophe PLAGNIOL-VILLARDf22deee2011-11-01 01:23:20 +0800304 at91_ioremap_shdwc(AT91SAM9263_BASE_SHDWC);
Jean-Christophe PLAGNIOL-VILLARDe9f68b52011-11-18 01:25:52 +0800305 at91_ioremap_rstc(AT91SAM9263_BASE_RSTC);
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800306 at91sam926x_ioremap_pit(AT91SAM9263_BASE_PIT);
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800307 at91sam9_ioremap_smc(0, AT91SAM9263_BASE_SMC0);
308 at91sam9_ioremap_smc(1, AT91SAM9263_BASE_SMC1);
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800309}
310
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800311static void __init at91sam9263_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800312{
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800313 arm_pm_idle = at91sam9_idle;
Russell King1b2073e2011-11-03 09:53:29 +0000314 arm_pm_restart = at91sam9_alt_restart;
Andrew Victorb2c65612007-02-08 09:42:40 +0100315 at91_extern_irq = (1 << AT91SAM9263_ID_IRQ0) | (1 << AT91SAM9263_ID_IRQ1);
316
Andrew Victorb2c65612007-02-08 09:42:40 +0100317 /* Register GPIO subsystem */
318 at91_gpio_init(at91sam9263_gpio, 5);
319}
320
321/* --------------------------------------------------------------------
322 * Interrupt initialization
323 * -------------------------------------------------------------------- */
324
325/*
326 * The default interrupt priority levels (0 = lowest, 7 = highest).
327 */
328static unsigned int at91sam9263_default_irq_priority[NR_AIC_IRQS] __initdata = {
329 7, /* Advanced Interrupt Controller (FIQ) */
330 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100331 1, /* Parallel IO Controller A */
332 1, /* Parallel IO Controller B */
333 1, /* Parallel IO Controller C, D and E */
Andrew Victorb2c65612007-02-08 09:42:40 +0100334 0,
335 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100336 5, /* USART 0 */
337 5, /* USART 1 */
338 5, /* USART 2 */
Andrew Victorb2c65612007-02-08 09:42:40 +0100339 0, /* Multimedia Card Interface 0 */
340 0, /* Multimedia Card Interface 1 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100341 3, /* CAN */
342 6, /* Two-Wire Interface */
343 5, /* Serial Peripheral Interface 0 */
344 5, /* Serial Peripheral Interface 1 */
345 4, /* Serial Synchronous Controller 0 */
346 4, /* Serial Synchronous Controller 1 */
347 5, /* AC97 Controller */
Andrew Victorb2c65612007-02-08 09:42:40 +0100348 0, /* Timer Counter 0, 1 and 2 */
349 0, /* Pulse Width Modulation Controller */
350 3, /* Ethernet */
351 0,
352 0, /* 2D Graphic Engine */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100353 2, /* USB Device Port */
Andrew Victorb2c65612007-02-08 09:42:40 +0100354 0, /* Image Sensor Interface */
355 3, /* LDC Controller */
356 0, /* DMA Controller */
357 0,
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100358 2, /* USB Host port */
Andrew Victorb2c65612007-02-08 09:42:40 +0100359 0, /* Advanced Interrupt Controller (IRQ0) */
360 0, /* Advanced Interrupt Controller (IRQ1) */
361};
362
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800363struct at91_init_soc __initdata at91sam9263_soc = {
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800364 .map_io = at91sam9263_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800365 .default_irq_priority = at91sam9263_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800366 .ioremap_registers = at91sam9263_ioremap_registers,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800367 .register_clocks = at91sam9263_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800368 .init = at91sam9263_initialize,
369};