blob: 3477ba94c4c5b8a8e80c99967a352c1c6ab3e477 [file] [log] [blame]
Andrew Victor62c16602006-11-30 12:27:38 +01001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * arch/arm/mach-at91/at91sam9260.c
Andrew Victor62c16602006-11-30 12:27:38 +01003 *
4 * Copyright (C) 2006 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>
Boris BREZILLON2edb90a2013-10-11 09:37:45 +020014#include <linux/clk/at91_pmc.h>
Andrew Victor62c16602006-11-30 12:27:38 +010015
Nicolas Pitrec9dfafb2011-08-02 10:21:36 -040016#include <asm/proc-fns.h>
Russell King80b02c12009-01-08 10:01:47 +000017#include <asm/irq.h>
Andrew Victor62c16602006-11-30 12:27:38 +010018#include <asm/mach/arch.h>
19#include <asm/mach/map.h>
David Howells9f97da72012-03-28 18:30:01 +010020#include <asm/system_misc.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/cpu.h>
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +080022#include <mach/at91_dbgu.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/at91sam9260.h>
Uwe Kleine-Königac11a1d2013-11-14 10:49:19 +010024#include <mach/hardware.h>
Andrew Victor62c16602006-11-30 12:27:38 +010025
Jean-Christophe PLAGNIOL-VILLARDa510b9b2012-10-30 06:41:28 +080026#include "at91_aic.h"
Jean-Christophe PLAGNIOL-VILLARDf0995d02012-10-30 08:11:24 +080027#include "at91_rstc.h"
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080028#include "soc.h"
Andrew Victor62c16602006-11-30 12:27:38 +010029#include "generic.h"
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +080030#include "sam9_smc.h"
Daniel Lezcano5ad945e2013-09-22 22:29:57 +020031#include "pm.h"
Andrew Victor62c16602006-11-30 12:27:38 +010032
Alexandre Belloni57b37ed2014-04-10 20:18:47 +020033#if defined(CONFIG_OLD_CLK_AT91)
34#include "clock.h"
Andrew Victor62c16602006-11-30 12:27:38 +010035/* --------------------------------------------------------------------
36 * Clocks
37 * -------------------------------------------------------------------- */
38
39/*
40 * The peripheral clocks.
41 */
42static struct clk pioA_clk = {
43 .name = "pioA_clk",
44 .pmc_mask = 1 << AT91SAM9260_ID_PIOA,
45 .type = CLK_TYPE_PERIPHERAL,
46};
47static struct clk pioB_clk = {
48 .name = "pioB_clk",
49 .pmc_mask = 1 << AT91SAM9260_ID_PIOB,
50 .type = CLK_TYPE_PERIPHERAL,
51};
52static struct clk pioC_clk = {
53 .name = "pioC_clk",
54 .pmc_mask = 1 << AT91SAM9260_ID_PIOC,
55 .type = CLK_TYPE_PERIPHERAL,
56};
57static struct clk adc_clk = {
58 .name = "adc_clk",
59 .pmc_mask = 1 << AT91SAM9260_ID_ADC,
60 .type = CLK_TYPE_PERIPHERAL,
61};
Maxime Ripard67b5d7b2012-05-11 15:35:34 +020062
63static struct clk adc_op_clk = {
64 .name = "adc_op_clk",
65 .type = CLK_TYPE_PERIPHERAL,
66 .rate_hz = 5000000,
67};
68
Andrew Victor62c16602006-11-30 12:27:38 +010069static struct clk usart0_clk = {
70 .name = "usart0_clk",
71 .pmc_mask = 1 << AT91SAM9260_ID_US0,
72 .type = CLK_TYPE_PERIPHERAL,
73};
74static struct clk usart1_clk = {
75 .name = "usart1_clk",
76 .pmc_mask = 1 << AT91SAM9260_ID_US1,
77 .type = CLK_TYPE_PERIPHERAL,
78};
79static struct clk usart2_clk = {
80 .name = "usart2_clk",
81 .pmc_mask = 1 << AT91SAM9260_ID_US2,
82 .type = CLK_TYPE_PERIPHERAL,
83};
84static struct clk mmc_clk = {
85 .name = "mci_clk",
86 .pmc_mask = 1 << AT91SAM9260_ID_MCI,
87 .type = CLK_TYPE_PERIPHERAL,
88};
89static struct clk udc_clk = {
90 .name = "udc_clk",
91 .pmc_mask = 1 << AT91SAM9260_ID_UDP,
92 .type = CLK_TYPE_PERIPHERAL,
93};
94static struct clk twi_clk = {
95 .name = "twi_clk",
96 .pmc_mask = 1 << AT91SAM9260_ID_TWI,
97 .type = CLK_TYPE_PERIPHERAL,
98};
99static struct clk spi0_clk = {
100 .name = "spi0_clk",
101 .pmc_mask = 1 << AT91SAM9260_ID_SPI0,
102 .type = CLK_TYPE_PERIPHERAL,
103};
104static struct clk spi1_clk = {
105 .name = "spi1_clk",
106 .pmc_mask = 1 << AT91SAM9260_ID_SPI1,
107 .type = CLK_TYPE_PERIPHERAL,
108};
Andrew Victore8788ba2007-05-02 17:14:57 +0100109static struct clk ssc_clk = {
110 .name = "ssc_clk",
111 .pmc_mask = 1 << AT91SAM9260_ID_SSC,
112 .type = CLK_TYPE_PERIPHERAL,
113};
Andrew Victorc177a1e2007-02-08 10:25:38 +0100114static struct clk tc0_clk = {
115 .name = "tc0_clk",
116 .pmc_mask = 1 << AT91SAM9260_ID_TC0,
117 .type = CLK_TYPE_PERIPHERAL,
118};
119static struct clk tc1_clk = {
120 .name = "tc1_clk",
121 .pmc_mask = 1 << AT91SAM9260_ID_TC1,
122 .type = CLK_TYPE_PERIPHERAL,
123};
124static struct clk tc2_clk = {
125 .name = "tc2_clk",
126 .pmc_mask = 1 << AT91SAM9260_ID_TC2,
127 .type = CLK_TYPE_PERIPHERAL,
128};
Andrew Victor62c16602006-11-30 12:27:38 +0100129static struct clk ohci_clk = {
130 .name = "ohci_clk",
131 .pmc_mask = 1 << AT91SAM9260_ID_UHP,
132 .type = CLK_TYPE_PERIPHERAL,
133};
Andrew Victor69b2e992007-02-14 08:44:43 +0100134static struct clk macb_clk = {
Jamie Iles865d6052011-08-09 16:51:11 +0200135 .name = "pclk",
Andrew Victor62c16602006-11-30 12:27:38 +0100136 .pmc_mask = 1 << AT91SAM9260_ID_EMAC,
137 .type = CLK_TYPE_PERIPHERAL,
138};
139static struct clk isi_clk = {
140 .name = "isi_clk",
141 .pmc_mask = 1 << AT91SAM9260_ID_ISI,
142 .type = CLK_TYPE_PERIPHERAL,
143};
144static struct clk usart3_clk = {
145 .name = "usart3_clk",
146 .pmc_mask = 1 << AT91SAM9260_ID_US3,
147 .type = CLK_TYPE_PERIPHERAL,
148};
149static struct clk usart4_clk = {
150 .name = "usart4_clk",
151 .pmc_mask = 1 << AT91SAM9260_ID_US4,
152 .type = CLK_TYPE_PERIPHERAL,
153};
154static struct clk usart5_clk = {
155 .name = "usart5_clk",
156 .pmc_mask = 1 << AT91SAM9260_ID_US5,
157 .type = CLK_TYPE_PERIPHERAL,
158};
Andrew Victorc177a1e2007-02-08 10:25:38 +0100159static struct clk tc3_clk = {
160 .name = "tc3_clk",
161 .pmc_mask = 1 << AT91SAM9260_ID_TC3,
162 .type = CLK_TYPE_PERIPHERAL,
163};
164static struct clk tc4_clk = {
165 .name = "tc4_clk",
166 .pmc_mask = 1 << AT91SAM9260_ID_TC4,
167 .type = CLK_TYPE_PERIPHERAL,
168};
169static struct clk tc5_clk = {
170 .name = "tc5_clk",
171 .pmc_mask = 1 << AT91SAM9260_ID_TC5,
172 .type = CLK_TYPE_PERIPHERAL,
173};
Andrew Victor62c16602006-11-30 12:27:38 +0100174
175static struct clk *periph_clocks[] __initdata = {
176 &pioA_clk,
177 &pioB_clk,
178 &pioC_clk,
179 &adc_clk,
Maxime Ripard67b5d7b2012-05-11 15:35:34 +0200180 &adc_op_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100181 &usart0_clk,
182 &usart1_clk,
183 &usart2_clk,
184 &mmc_clk,
185 &udc_clk,
186 &twi_clk,
187 &spi0_clk,
188 &spi1_clk,
Andrew Victore8788ba2007-05-02 17:14:57 +0100189 &ssc_clk,
Andrew Victorc177a1e2007-02-08 10:25:38 +0100190 &tc0_clk,
191 &tc1_clk,
192 &tc2_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100193 &ohci_clk,
Andrew Victor69b2e992007-02-14 08:44:43 +0100194 &macb_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100195 &isi_clk,
196 &usart3_clk,
197 &usart4_clk,
198 &usart5_clk,
Andrew Victorc177a1e2007-02-08 10:25:38 +0100199 &tc3_clk,
200 &tc4_clk,
201 &tc5_clk,
Andrew Victor62c16602006-11-30 12:27:38 +0100202 // irq0 .. irq2
203};
204
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100205static struct clk_lookup periph_clocks_lookups[] = {
Jamie Iles865d6052011-08-09 16:51:11 +0200206 /* One additional fake clock for macb_hclk */
207 CLKDEV_CON_ID("hclk", &macb_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100208 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
209 CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
210 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
211 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
212 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
Jean-Christophe PLAGNIOL-VILLARD18089582011-11-28 12:53:08 +0100213 CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.1", &tc3_clk),
214 CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.1", &tc4_clk),
215 CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.1", &tc5_clk),
Bo Shen636036d22012-11-06 13:57:51 +0800216 CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.0", &ssc_clk),
Bo Shen099343c2012-11-07 11:41:41 +0800217 CLKDEV_CON_DEV_ID("pclk", "fffbc000.ssc", &ssc_clk),
Bo Shen302090a2012-10-15 17:30:28 +0800218 CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9260.0", &twi_clk),
219 CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g20.0", &twi_clk),
Jean-Christophe PLAGNIOL-VILLARDfea31582011-10-14 09:40:52 +0800220 /* more usart lookup table for DT entries */
221 CLKDEV_CON_DEV_ID("usart", "fffff200.serial", &mck),
222 CLKDEV_CON_DEV_ID("usart", "fffb0000.serial", &usart0_clk),
223 CLKDEV_CON_DEV_ID("usart", "fffb4000.serial", &usart1_clk),
224 CLKDEV_CON_DEV_ID("usart", "fffb8000.serial", &usart2_clk),
225 CLKDEV_CON_DEV_ID("usart", "fffd0000.serial", &usart3_clk),
226 CLKDEV_CON_DEV_ID("usart", "fffd4000.serial", &usart4_clk),
227 CLKDEV_CON_DEV_ID("usart", "fffd8000.serial", &usart5_clk),
Ludovic Desrochesf7d19b92012-09-12 08:42:15 +0200228 CLKDEV_CON_DEV_ID(NULL, "fffac000.i2c", &twi_clk),
Nicolas Ferre3a61a5d2012-01-19 10:13:40 +0100229 /* more tc lookup table for DT entries */
230 CLKDEV_CON_DEV_ID("t0_clk", "fffa0000.timer", &tc0_clk),
231 CLKDEV_CON_DEV_ID("t1_clk", "fffa0000.timer", &tc1_clk),
232 CLKDEV_CON_DEV_ID("t2_clk", "fffa0000.timer", &tc2_clk),
233 CLKDEV_CON_DEV_ID("t0_clk", "fffdc000.timer", &tc3_clk),
234 CLKDEV_CON_DEV_ID("t1_clk", "fffdc000.timer", &tc4_clk),
235 CLKDEV_CON_DEV_ID("t2_clk", "fffdc000.timer", &tc5_clk),
Jean-Christophe PLAGNIOL-VILLARD6a062452011-11-21 06:55:18 +0800236 CLKDEV_CON_DEV_ID("hclk", "500000.ohci", &ohci_clk),
Ludovic Desroches23e3b242012-11-19 12:19:53 +0100237 CLKDEV_CON_DEV_ID("mci_clk", "fffa8000.mmc", &mmc_clk),
Richard Genoudf0db66a2013-04-03 14:01:22 +0800238 CLKDEV_CON_DEV_ID("spi_clk", "fffc8000.spi", &spi0_clk),
239 CLKDEV_CON_DEV_ID("spi_clk", "fffcc000.spi", &spi1_clk),
Jean-Christophe PLAGNIOL-VILLARD0af43162011-08-30 03:29:28 +0200240 /* fake hclk clock */
241 CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &ohci_clk),
Jean-Christophe PLAGNIOL-VILLARD619d4a42011-11-13 13:00:58 +0800242 CLKDEV_CON_ID("pioA", &pioA_clk),
243 CLKDEV_CON_ID("pioB", &pioB_clk),
244 CLKDEV_CON_ID("pioC", &pioC_clk),
Jean-Christophe PLAGNIOL-VILLARD5314ec82012-07-05 16:56:09 +0800245 CLKDEV_CON_DEV_ID(NULL, "fffff400.gpio", &pioA_clk),
246 CLKDEV_CON_DEV_ID(NULL, "fffff600.gpio", &pioB_clk),
247 CLKDEV_CON_DEV_ID(NULL, "fffff800.gpio", &pioC_clk),
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100248};
249
250static struct clk_lookup usart_clocks_lookups[] = {
251 CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
252 CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
253 CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
254 CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
255 CLKDEV_CON_DEV_ID("usart", "atmel_usart.4", &usart3_clk),
256 CLKDEV_CON_DEV_ID("usart", "atmel_usart.5", &usart4_clk),
257 CLKDEV_CON_DEV_ID("usart", "atmel_usart.6", &usart5_clk),
258};
259
Andrew Victor62c16602006-11-30 12:27:38 +0100260/*
261 * The two programmable clocks.
262 * You must configure pin multiplexing to bring these signals out.
263 */
264static struct clk pck0 = {
265 .name = "pck0",
266 .pmc_mask = AT91_PMC_PCK0,
267 .type = CLK_TYPE_PROGRAMMABLE,
268 .id = 0,
269};
270static struct clk pck1 = {
271 .name = "pck1",
272 .pmc_mask = AT91_PMC_PCK1,
273 .type = CLK_TYPE_PROGRAMMABLE,
274 .id = 1,
275};
276
277static void __init at91sam9260_register_clocks(void)
278{
279 int i;
280
281 for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
282 clk_register(periph_clocks[i]);
283
Jean-Christophe PLAGNIOL-VILLARDbd602992011-02-02 07:27:07 +0100284 clkdev_add_table(periph_clocks_lookups,
285 ARRAY_SIZE(periph_clocks_lookups));
286 clkdev_add_table(usart_clocks_lookups,
287 ARRAY_SIZE(usart_clocks_lookups));
288
Andrew Victor62c16602006-11-30 12:27:38 +0100289 clk_register(&pck0);
290 clk_register(&pck1);
291}
Alexandre Belloni57b37ed2014-04-10 20:18:47 +0200292#else
293#define at91sam9260_register_clocks NULL
294#endif
Andrew Victor62c16602006-11-30 12:27:38 +0100295
296/* --------------------------------------------------------------------
297 * GPIO
298 * -------------------------------------------------------------------- */
299
Jean-Christophe PLAGNIOL-VILLARD1a2d9152011-10-17 14:28:38 +0800300static struct at91_gpio_bank at91sam9260_gpio[] __initdata = {
Andrew Victor62c16602006-11-30 12:27:38 +0100301 {
302 .id = AT91SAM9260_ID_PIOA,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800303 .regbase = AT91SAM9260_BASE_PIOA,
Andrew Victor62c16602006-11-30 12:27:38 +0100304 }, {
305 .id = AT91SAM9260_ID_PIOB,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800306 .regbase = AT91SAM9260_BASE_PIOB,
Andrew Victor62c16602006-11-30 12:27:38 +0100307 }, {
308 .id = AT91SAM9260_ID_PIOC,
Jean-Christophe PLAGNIOL-VILLARD80e91cb2011-09-16 23:37:50 +0800309 .regbase = AT91SAM9260_BASE_PIOC,
Andrew Victor62c16602006-11-30 12:27:38 +0100310 }
311};
312
Andrew Victor62c16602006-11-30 12:27:38 +0100313/* --------------------------------------------------------------------
314 * AT91SAM9260 processor initialization
315 * -------------------------------------------------------------------- */
316
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800317static void __init at91sam9xe_map_io(void)
Andrew Victorf7eee892007-02-15 08:17:38 +0100318{
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800319 unsigned long sram_size;
Andrew Victorf7eee892007-02-15 08:17:38 +0100320
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +0800321 switch (at91_soc_initdata.cidr & AT91_CIDR_SRAMSIZ) {
Andrew Victorf7eee892007-02-15 08:17:38 +0100322 case AT91_CIDR_SRAMSIZ_32K:
323 sram_size = 2 * SZ_16K;
324 break;
325 case AT91_CIDR_SRAMSIZ_16K:
326 default:
327 sram_size = SZ_16K;
328 }
329
Jean-Christophe PLAGNIOL-VILLARDf0051d82011-05-10 03:20:09 +0800330 at91_init_sram(0, AT91SAM9XE_SRAM_BASE, sram_size);
Andrew Victorf7eee892007-02-15 08:17:38 +0100331}
332
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800333static void __init at91sam9260_map_io(void)
Andrew Victor62c16602006-11-30 12:27:38 +0100334{
Jean-Christophe PLAGNIOL-VILLARDc9b1e3f2011-12-07 18:34:47 +0800335 if (cpu_is_at91sam9xe())
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800336 at91sam9xe_map_io();
Jean-Christophe PLAGNIOL-VILLARDc9b1e3f2011-12-07 18:34:47 +0800337 else if (cpu_is_at91sam9g20())
338 at91_init_sram(0, AT91SAM9G20_SRAM_BASE, AT91SAM9G20_SRAM_SIZE);
339 else
340 at91_init_sram(0, AT91SAM9260_SRAM_BASE, AT91SAM9260_SRAM_SIZE);
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800341}
Andrew Victorf7eee892007-02-15 08:17:38 +0100342
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800343static void __init at91sam9260_ioremap_registers(void)
344{
Jean-Christophe PLAGNIOL-VILLARDf22deee2011-11-01 01:23:20 +0800345 at91_ioremap_shdwc(AT91SAM9260_BASE_SHDWC);
Jean-Christophe PLAGNIOL-VILLARDe9f68b52011-11-18 01:25:52 +0800346 at91_ioremap_rstc(AT91SAM9260_BASE_RSTC);
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800347 at91_ioremap_ramc(0, AT91SAM9260_BASE_SDRAMC, 512);
Jean-Christophe PLAGNIOL-VILLARD4ab0c5992011-09-18 22:29:50 +0800348 at91sam926x_ioremap_pit(AT91SAM9260_BASE_PIT);
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800349 at91sam9_ioremap_smc(0, AT91SAM9260_BASE_SMC);
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800350 at91_ioremap_matrix(AT91SAM9260_BASE_MATRIX);
Jean-Christophe PLAGNIOL-VILLARD6b625892013-10-16 16:24:57 +0200351 at91_pm_set_standby(at91sam9_sdram_standby);
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800352}
353
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +0800354static void __init at91sam9260_initialize(void)
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800355{
Jean-Christophe PLAGNIOL-VILLARD0d781712012-02-05 20:25:32 +0800356 arm_pm_idle = at91sam9_idle;
Russell King1b2073e2011-11-03 09:53:29 +0000357 arm_pm_restart = at91sam9_alt_restart;
Andrew Victor62c16602006-11-30 12:27:38 +0100358
Johan Hovold94c4c792013-10-16 11:56:15 +0200359 at91_sysirq_mask_rtt(AT91SAM9260_BASE_RTT);
360
Andrew Victor62c16602006-11-30 12:27:38 +0100361 /* Register GPIO subsystem */
362 at91_gpio_init(at91sam9260_gpio, 3);
363}
364
365/* --------------------------------------------------------------------
366 * Interrupt initialization
367 * -------------------------------------------------------------------- */
368
369/*
370 * The default interrupt priority levels (0 = lowest, 7 = highest).
371 */
372static unsigned int at91sam9260_default_irq_priority[NR_AIC_IRQS] __initdata = {
373 7, /* Advanced Interrupt Controller */
374 7, /* System Peripherals */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100375 1, /* Parallel IO Controller A */
376 1, /* Parallel IO Controller B */
377 1, /* Parallel IO Controller C */
Andrew Victor62c16602006-11-30 12:27:38 +0100378 0, /* Analog-to-Digital Converter */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100379 5, /* USART 0 */
380 5, /* USART 1 */
381 5, /* USART 2 */
Andrew Victor62c16602006-11-30 12:27:38 +0100382 0, /* Multimedia Card Interface */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100383 2, /* USB Device Port */
384 6, /* Two-Wire Interface */
385 5, /* Serial Peripheral Interface 0 */
386 5, /* Serial Peripheral Interface 1 */
Andrew Victor62c16602006-11-30 12:27:38 +0100387 5, /* Serial Synchronous Controller */
388 0,
389 0,
390 0, /* Timer Counter 0 */
391 0, /* Timer Counter 1 */
392 0, /* Timer Counter 2 */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100393 2, /* USB Host port */
Andrew Victor62c16602006-11-30 12:27:38 +0100394 3, /* Ethernet */
395 0, /* Image Sensor Interface */
Andrew Victor7cbed2b2007-11-20 08:46:53 +0100396 5, /* USART 3 */
397 5, /* USART 4 */
398 5, /* USART 5 */
Andrew Victor62c16602006-11-30 12:27:38 +0100399 0, /* Timer Counter 3 */
400 0, /* Timer Counter 4 */
401 0, /* Timer Counter 5 */
402 0, /* Advanced Interrupt Controller */
403 0, /* Advanced Interrupt Controller */
404 0, /* Advanced Interrupt Controller */
405};
406
Ludovic Desroches84ddb082013-03-22 13:24:09 +0000407AT91_SOC_START(at91sam9260)
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800408 .map_io = at91sam9260_map_io,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800409 .default_irq_priority = at91sam9260_default_irq_priority,
Jean-Christophe PLAGNIOL-VILLARD546c8302013-06-01 16:40:11 +0200410 .extern_irq = (1 << AT91SAM9260_ID_IRQ0) | (1 << AT91SAM9260_ID_IRQ1)
411 | (1 << AT91SAM9260_ID_IRQ2),
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +0800412 .ioremap_registers = at91sam9260_ioremap_registers,
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +0800413 .register_clocks = at91sam9260_register_clocks,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800414 .init = at91sam9260_initialize,
Jean-Christophe PLAGNIOL-VILLARD8d39e0fd02012-08-16 17:36:55 +0800415AT91_SOC_END