blob: 413c027ab85d43197e28f8f7f21f3a8f6361da20 [file] [log] [blame]
SAN People73a59c12006-01-09 17:05:41 +00001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * arch/arm/mach-at91/at91rm9200.c
SAN People73a59c12006-01-09 17:05:41 +00003 *
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
SAN People73a59c12006-01-09 17:05:41 +000013#include <linux/module.h>
14
Russell King80b02c12009-01-08 10:01:47 +000015#include <asm/irq.h>
SAN People73a59c12006-01-09 17:05:41 +000016#include <asm/mach/arch.h>
17#include <asm/mach/map.h>
David Howells9f97da72012-03-28 18:30:01 +010018#include <asm/system_misc.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/at91rm9200.h>
20#include <mach/at91_pmc.h>
21#include <mach/at91_st.h>
Jean-Christophe PLAGNIOL-VILLARDe57556e32011-04-24 11:40:22 +080022#include <mach/cpu.h>
SAN People73a59c12006-01-09 17:05:41 +000023
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080024#include "soc.h"
Andrew Victor10e8e1f2006-06-19 15:26:51 +010025#include "generic.h"
Andrew Victor2eeaaa22006-09-27 10:50:59 +010026#include "clock.h"
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080027#include "sam9_smc.h"
SAN People73a59c12006-01-09 17:05:41 +000028
29static struct map_desc at91rm9200_io_desc[] __initdata = {
30 {
SAN People73a59c12006-01-09 17:05:41 +000031 .virtual = AT91_VA_BASE_EMAC,
Andrew Victor72729912006-09-27 09:44:11 +010032 .pfn = __phys_to_pfn(AT91RM9200_BASE_EMAC),
SAN People73a59c12006-01-09 17:05:41 +000033 .length = SZ_16K,
34 .type = MT_DEVICE,
SAN People73a59c12006-01-09 17:05:41 +000035 },
36};
37
Andrew Victor2eeaaa22006-09-27 10:50:59 +010038/* --------------------------------------------------------------------
39 * Clocks
40 * -------------------------------------------------------------------- */
41
42/*
43 * The peripheral clocks.
44 */
45static struct clk udc_clk = {
46 .name = "udc_clk",
47 .pmc_mask = 1 << AT91RM9200_ID_UDP,
48 .type = CLK_TYPE_PERIPHERAL,
49};
50static struct clk ohci_clk = {
51 .name = "ohci_clk",
52 .pmc_mask = 1 << AT91RM9200_ID_UHP,
53 .type = CLK_TYPE_PERIPHERAL,
54};
55static struct clk ether_clk = {
56 .name = "ether_clk",
57 .pmc_mask = 1 << AT91RM9200_ID_EMAC,
58 .type = CLK_TYPE_PERIPHERAL,
59};
60static struct clk mmc_clk = {
61 .name = "mci_clk",
62 .pmc_mask = 1 << AT91RM9200_ID_MCI,
63 .type = CLK_TYPE_PERIPHERAL,
64};
65static struct clk twi_clk = {
66 .name = "twi_clk",
67 .pmc_mask = 1 << AT91RM9200_ID_TWI,
68 .type = CLK_TYPE_PERIPHERAL,
69};
70static struct clk usart0_clk = {
71 .name = "usart0_clk",
72 .pmc_mask = 1 << AT91RM9200_ID_US0,
73 .type = CLK_TYPE_PERIPHERAL,
74};
75static struct clk usart1_clk = {
76 .name = "usart1_clk",
77 .pmc_mask = 1 << AT91RM9200_ID_US1,
78 .type = CLK_TYPE_PERIPHERAL,
79};
80static struct clk usart2_clk = {
81 .name = "usart2_clk",
82 .pmc_mask = 1 << AT91RM9200_ID_US2,
83 .type = CLK_TYPE_PERIPHERAL,
84};
85static struct clk usart3_clk = {
86 .name = "usart3_clk",
87 .pmc_mask = 1 << AT91RM9200_ID_US3,
88 .type = CLK_TYPE_PERIPHERAL,
89};
90static struct clk spi_clk = {
91 .name = "spi_clk",
92 .pmc_mask = 1 << AT91RM9200_ID_SPI,
93 .type = CLK_TYPE_PERIPHERAL,
94};
95static struct clk pioA_clk = {
96 .name = "pioA_clk",
97 .pmc_mask = 1 << AT91RM9200_ID_PIOA,
98 .type = CLK_TYPE_PERIPHERAL,
99};
100static struct clk pioB_clk = {
101 .name = "pioB_clk",
102 .pmc_mask = 1 << AT91RM9200_ID_PIOB,
103 .type = CLK_TYPE_PERIPHERAL,
104};
105static struct clk pioC_clk = {
106 .name = "pioC_clk",
107 .pmc_mask = 1 << AT91RM9200_ID_PIOC,
108 .type = CLK_TYPE_PERIPHERAL,
109};
110static struct clk pioD_clk = {
111 .name = "pioD_clk",
112 .pmc_mask = 1 << AT91RM9200_ID_PIOD,
113 .type = CLK_TYPE_PERIPHERAL,
114};
Andrew Victore8788ba2007-05-02 17:14:57 +0100115static struct clk ssc0_clk = {
116 .name = "ssc0_clk",
117 .pmc_mask = 1 << AT91RM9200_ID_SSC0,
118 .type = CLK_TYPE_PERIPHERAL,
119};
120static struct clk ssc1_clk = {
121 .name = "ssc1_clk",
122 .pmc_mask = 1 << AT91RM9200_ID_SSC1,
123 .type = CLK_TYPE_PERIPHERAL,
124};
125static struct clk ssc2_clk = {
126 .name = "ssc2_clk",
127 .pmc_mask = 1 << AT91RM9200_ID_SSC2,
128 .type = CLK_TYPE_PERIPHERAL,
129};
Andrew Victorc177a1e2007-02-08 10:25:38 +0100130static struct clk tc0_clk = {
131 .name = "tc0_clk",
132 .pmc_mask = 1 << AT91RM9200_ID_TC0,
133 .type = CLK_TYPE_PERIPHERAL,
134};
135static struct clk tc1_clk = {
136 .name = "tc1_clk",
137 .pmc_mask = 1 << AT91RM9200_ID_TC1,
138 .type = CLK_TYPE_PERIPHERAL,
139};
140static struct clk tc2_clk = {
141 .name = "tc2_clk",
142 .pmc_mask = 1 << AT91RM9200_ID_TC2,
143 .type = CLK_TYPE_PERIPHERAL,
144};
145static struct clk tc3_clk = {
146 .name = "tc3_clk",
147 .pmc_mask = 1 << AT91RM9200_ID_TC3,
148 .type = CLK_TYPE_PERIPHERAL,
149};
150static struct clk tc4_clk = {
151 .name = "tc4_clk",
152 .pmc_mask = 1 << AT91RM9200_ID_TC4,
153 .type = CLK_TYPE_PERIPHERAL,
154};
155static struct clk tc5_clk = {
156 .name = "tc5_clk",
157 .pmc_mask = 1 << AT91RM9200_ID_TC5,
158 .type = CLK_TYPE_PERIPHERAL,
159};
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100160
161static struct clk *periph_clocks[] __initdata = {
162 &pioA_clk,
163 &pioB_clk,
164 &pioC_clk,
165 &pioD_clk,
166 &usart0_clk,
167 &usart1_clk,
168 &usart2_clk,
169 &usart3_clk,
170 &mmc_clk,
171 &udc_clk,
172 &twi_clk,
173 &spi_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100174 &ssc0_clk,
175 &ssc1_clk,
176 &ssc2_clk,
Andrew Victorc177a1e2007-02-08 10:25:38 +0100177 &tc0_clk,
178 &tc1_clk,
179 &tc2_clk,
180 &tc3_clk,
181 &tc4_clk,
182 &tc5_clk,
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100183 &ohci_clk,
184 &ether_clk,
185 // irq0 .. irq6
186};
187
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100188static struct clk_lookup periph_clocks_lookups[] = {
189 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
190 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
191 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
192 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.1", &tc3_clk),
193 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.1", &tc4_clk),
194 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.1", &tc5_clk),
Joachim Eastwoodc5efefa2011-06-02 01:36:09 +0200195 CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
196 CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
197 CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk),
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200198 /* fake hclk clock */
199 CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &ohci_clk),
Jean-Christophe PLAGNIOL-VILLARD619d4a42011-11-13 13:00:58 +0800200 CLKDEV_CON_ID("pioA", &pioA_clk),
201 CLKDEV_CON_ID("pioB", &pioB_clk),
202 CLKDEV_CON_ID("pioC", &pioC_clk),
203 CLKDEV_CON_ID("pioD", &pioD_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100204};
205
206static struct clk_lookup usart_clocks_lookups[] = {
207 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
208 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
209 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
210 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
211 CLKDEV_CON_DEV_ID("usart", "atmel_usart.4", &usart3_clk),
212};
213
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100214/*
215 * The four programmable clocks.
216 * You must configure pin multiplexing to bring these signals out.
217 */
218static struct clk pck0 = {
219 .name = "pck0",
220 .pmc_mask = AT91_PMC_PCK0,
221 .type = CLK_TYPE_PROGRAMMABLE,
222 .id = 0,
223};
224static struct clk pck1 = {
225 .name = "pck1",
226 .pmc_mask = AT91_PMC_PCK1,
227 .type = CLK_TYPE_PROGRAMMABLE,
228 .id = 1,
229};
230static struct clk pck2 = {
231 .name = "pck2",
232 .pmc_mask = AT91_PMC_PCK2,
233 .type = CLK_TYPE_PROGRAMMABLE,
234 .id = 2,
235};
236static struct clk pck3 = {
237 .name = "pck3",
238 .pmc_mask = AT91_PMC_PCK3,
239 .type = CLK_TYPE_PROGRAMMABLE,
240 .id = 3,
241};
242
243static void __init at91rm9200_register_clocks(void)
SAN People73a59c12006-01-09 17:05:41 +0000244{
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100245 int i;
246
247 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
248 clk_register(periph_clocks[i]);
249
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100250 clkdev_add_table(periph_clocks_lookups,
251 ARRAY_SIZE(periph_clocks_lookups));
252 clkdev_add_table(usart_clocks_lookups,
253 ARRAY_SIZE(usart_clocks_lookups));
254
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100255 clk_register(&pck0);
256 clk_register(&pck1);
257 clk_register(&pck2);
258 clk_register(&pck3);
259}
260
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100261static struct clk_lookup console_clock_lookup;
262
263void __init at91rm9200_set_console_clock(int id)
264{
265 if (id >= ARRAY_SIZE(usart_clocks_lookups))
266 return;
267
268 console_clock_lookup.con_id = "usart";
269 console_clock_lookup.clk = usart_clocks_lookups[id].clk;
270 clkdev_add(&console_clock_lookup);
271}
272
Andrew Victorf2173832006-09-27 13:23:00 +0100273/* --------------------------------------------------------------------
274 * GPIO
275 * -------------------------------------------------------------------- */
276
Jean-Christophe PLAGNIOL-VILLARD1a2d9152011-10-17 14:28:38 +0800277static struct at91_gpio_bank at91rm9200_gpio[] __initdata = {
Andrew Victorf2173832006-09-27 13:23:00 +0100278 {
279 .id = AT91RM9200_ID_PIOA,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800280 .regbase = AT91RM9200_BASE_PIOA,
Andrew Victorf2173832006-09-27 13:23:00 +0100281 }, {
282 .id = AT91RM9200_ID_PIOB,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800283 .regbase = AT91RM9200_BASE_PIOB,
Andrew Victorf2173832006-09-27 13:23:00 +0100284 }, {
285 .id = AT91RM9200_ID_PIOC,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800286 .regbase = AT91RM9200_BASE_PIOC,
Andrew Victorf2173832006-09-27 13:23:00 +0100287 }, {
288 .id = AT91RM9200_ID_PIOD,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800289 .regbase = AT91RM9200_BASE_PIOD,
Andrew Victorf2173832006-09-27 13:23:00 +0100290 }
291};
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100292
Russell King1b2073e2011-11-03 09:53:29 +0000293static void at91rm9200_restart(char mode, const char *cmd)
Andrew Victor1f4fd0a2006-11-30 10:01:47 +0100294{
295 /*
296 * Perform a hardware reset with the use of the Watchdog timer.
297 */
298 at91_sys_write(AT91_ST_WDMR, AT91_ST_RSTEN | AT91_ST_EXTEN | 1);
299 at91_sys_write(AT91_ST_CR, AT91_ST_WDRST);
300}
301
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100302/* --------------------------------------------------------------------
303 * AT91RM9200 processor initialization
304 * -------------------------------------------------------------------- */
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800305static void __init at91rm9200_map_io(void)
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100306{
307 /* Map peripherals */
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800308 at91_init_sram(0, AT91RM9200_SRAM_BASE, AT91RM9200_SRAM_SIZE);
SAN People73a59c12006-01-09 17:05:41 +0000309 iotable_init(at91rm9200_io_desc, ARRAY_SIZE(at91rm9200_io_desc));
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800310}
Andrew Victor2eeaaa22006-09-27 10:50:59 +0100311
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800312static void __init at91rm9200_ioremap_registers(void)
313{
314}
315
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800316static void __init at91rm9200_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800317{
Russell King1b2073e2011-11-03 09:53:29 +0000318 arm_pm_restart = at91rm9200_restart;
Andrew Victor1f4fd0a2006-11-30 10:01:47 +0100319 at91_extern_irq = (1 << AT91RM9200_ID_IRQ0) | (1 << AT91RM9200_ID_IRQ1)
320 | (1 << AT91RM9200_ID_IRQ2) | (1 << AT91RM9200_ID_IRQ3)
321 | (1 << AT91RM9200_ID_IRQ4) | (1 << AT91RM9200_ID_IRQ5)
322 | (1 << AT91RM9200_ID_IRQ6);
323
Andrew Victorf2173832006-09-27 13:23:00 +0100324 /* Initialize GPIO subsystem */
Jean-Christophe PLAGNIOL-VILLARDe57556e32011-04-24 11:40:22 +0800325 at91_gpio_init(at91rm9200_gpio,
326 cpu_is_at91rm9200_bga() ? AT91RM9200_BGA : AT91RM9200_PQFP);
SAN People73a59c12006-01-09 17:05:41 +0000327}
328
Andrew Victorf2173832006-09-27 13:23:00 +0100329
330/* --------------------------------------------------------------------
331 * Interrupt initialization
332 * -------------------------------------------------------------------- */
333
Andrew Victorba854e12006-07-05 17:22:52 +0100334/*
335 * The default interrupt priority levels (0 = lowest, 7 = highest).
336 */
337static unsigned int at91rm9200_default_irq_priority[NR_AIC_IRQS] __initdata = {
338 7, /* Advanced Interrupt Controller (FIQ) */
339 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100340 1, /* Parallel IO Controller A */
341 1, /* Parallel IO Controller B */
342 1, /* Parallel IO Controller C */
343 1, /* Parallel IO Controller D */
344 5, /* USART 0 */
345 5, /* USART 1 */
346 5, /* USART 2 */
347 5, /* USART 3 */
Andrew Victorba854e12006-07-05 17:22:52 +0100348 0, /* Multimedia Card Interface */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100349 2, /* USB Device Port */
350 6, /* Two-Wire Interface */
351 5, /* Serial Peripheral Interface */
352 4, /* Serial Synchronous Controller 0 */
353 4, /* Serial Synchronous Controller 1 */
354 4, /* Serial Synchronous Controller 2 */
Andrew Victorba854e12006-07-05 17:22:52 +0100355 0, /* Timer Counter 0 */
356 0, /* Timer Counter 1 */
357 0, /* Timer Counter 2 */
358 0, /* Timer Counter 3 */
359 0, /* Timer Counter 4 */
360 0, /* Timer Counter 5 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100361 2, /* USB Host port */
Andrew Victorba854e12006-07-05 17:22:52 +0100362 3, /* Ethernet MAC */
363 0, /* Advanced Interrupt Controller (IRQ0) */
364 0, /* Advanced Interrupt Controller (IRQ1) */
365 0, /* Advanced Interrupt Controller (IRQ2) */
366 0, /* Advanced Interrupt Controller (IRQ3) */
367 0, /* Advanced Interrupt Controller (IRQ4) */
368 0, /* Advanced Interrupt Controller (IRQ5) */
369 0 /* Advanced Interrupt Controller (IRQ6) */
370};
371
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800372struct at91_init_soc __initdata at91rm9200_soc = {
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800373 .map_io = at91rm9200_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800374 .default_irq_priority = at91rm9200_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800375 .ioremap_registers = at91rm9200_ioremap_registers,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800376 .register_clocks = at91rm9200_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800377 .init = at91rm9200_initialize,
378};