| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 1 | /* | 
| Andrew Victor | 9d04126 | 2007-02-05 11:42:07 +0100 | [diff] [blame] | 2 |  * arch/arm/mach-at91/at91sam9261.c | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 3 |  * | 
 | 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 |  | 
| Nicolas Pitre | c9dfafb | 2011-08-02 10:21:36 -0400 | [diff] [blame] | 15 | #include <asm/proc-fns.h> | 
| Russell King | 80b02c1 | 2009-01-08 10:01:47 +0000 | [diff] [blame] | 16 | #include <asm/irq.h> | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 17 | #include <asm/mach/arch.h> | 
 | 18 | #include <asm/mach/map.h> | 
| David Howells | 9f97da7 | 2012-03-28 18:30:01 +0100 | [diff] [blame] | 19 | #include <asm/system_misc.h> | 
| Nicolas Ferre | b319ff8 | 2009-06-26 15:37:01 +0100 | [diff] [blame] | 20 | #include <mach/cpu.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 21 | #include <mach/at91sam9261.h> | 
 | 22 | #include <mach/at91_pmc.h> | 
 | 23 | #include <mach/at91_rstc.h> | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 24 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | 21d08b9 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 25 | #include "soc.h" | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 26 | #include "generic.h" | 
 | 27 | #include "clock.h" | 
| Jean-Christophe PLAGNIOL-VILLARD | faee0cc | 2011-10-14 01:37:09 +0800 | [diff] [blame] | 28 | #include "sam9_smc.h" | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 29 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 30 | /* -------------------------------------------------------------------- | 
 | 31 |  *  Clocks | 
 | 32 |  * -------------------------------------------------------------------- */ | 
 | 33 |  | 
 | 34 | /* | 
 | 35 |  * The peripheral clocks. | 
 | 36 |  */ | 
 | 37 | static struct clk pioA_clk = { | 
 | 38 | 	.name		= "pioA_clk", | 
 | 39 | 	.pmc_mask	= 1 << AT91SAM9261_ID_PIOA, | 
 | 40 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 41 | }; | 
 | 42 | static struct clk pioB_clk = { | 
 | 43 | 	.name		= "pioB_clk", | 
 | 44 | 	.pmc_mask	= 1 << AT91SAM9261_ID_PIOB, | 
 | 45 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 46 | }; | 
 | 47 | static struct clk pioC_clk = { | 
 | 48 | 	.name		= "pioC_clk", | 
 | 49 | 	.pmc_mask	= 1 << AT91SAM9261_ID_PIOC, | 
 | 50 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 51 | }; | 
 | 52 | static struct clk usart0_clk = { | 
 | 53 | 	.name		= "usart0_clk", | 
 | 54 | 	.pmc_mask	= 1 << AT91SAM9261_ID_US0, | 
 | 55 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 56 | }; | 
 | 57 | static struct clk usart1_clk = { | 
 | 58 | 	.name		= "usart1_clk", | 
 | 59 | 	.pmc_mask	= 1 << AT91SAM9261_ID_US1, | 
 | 60 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 61 | }; | 
 | 62 | static struct clk usart2_clk = { | 
 | 63 | 	.name		= "usart2_clk", | 
 | 64 | 	.pmc_mask	= 1 << AT91SAM9261_ID_US2, | 
 | 65 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 66 | }; | 
 | 67 | static struct clk mmc_clk = { | 
 | 68 | 	.name		= "mci_clk", | 
 | 69 | 	.pmc_mask	= 1 << AT91SAM9261_ID_MCI, | 
 | 70 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 71 | }; | 
 | 72 | static struct clk udc_clk = { | 
 | 73 | 	.name		= "udc_clk", | 
 | 74 | 	.pmc_mask	= 1 << AT91SAM9261_ID_UDP, | 
 | 75 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 76 | }; | 
 | 77 | static struct clk twi_clk = { | 
 | 78 | 	.name		= "twi_clk", | 
 | 79 | 	.pmc_mask	= 1 << AT91SAM9261_ID_TWI, | 
 | 80 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 81 | }; | 
 | 82 | static struct clk spi0_clk = { | 
 | 83 | 	.name		= "spi0_clk", | 
 | 84 | 	.pmc_mask	= 1 << AT91SAM9261_ID_SPI0, | 
 | 85 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 86 | }; | 
 | 87 | static struct clk spi1_clk = { | 
 | 88 | 	.name		= "spi1_clk", | 
 | 89 | 	.pmc_mask	= 1 << AT91SAM9261_ID_SPI1, | 
 | 90 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 91 | }; | 
| Andrew Victor | e8788ba | 2007-05-02 17:14:57 +0100 | [diff] [blame] | 92 | static struct clk ssc0_clk = { | 
 | 93 | 	.name		= "ssc0_clk", | 
 | 94 | 	.pmc_mask	= 1 << AT91SAM9261_ID_SSC0, | 
 | 95 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 96 | }; | 
 | 97 | static struct clk ssc1_clk = { | 
 | 98 | 	.name		= "ssc1_clk", | 
 | 99 | 	.pmc_mask	= 1 << AT91SAM9261_ID_SSC1, | 
 | 100 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 101 | }; | 
 | 102 | static struct clk ssc2_clk = { | 
 | 103 | 	.name		= "ssc2_clk", | 
 | 104 | 	.pmc_mask	= 1 << AT91SAM9261_ID_SSC2, | 
 | 105 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 106 | }; | 
| Andrew Victor | c177a1e | 2007-02-08 10:25:38 +0100 | [diff] [blame] | 107 | static struct clk tc0_clk = { | 
 | 108 | 	.name		= "tc0_clk", | 
 | 109 | 	.pmc_mask	= 1 << AT91SAM9261_ID_TC0, | 
 | 110 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 111 | }; | 
 | 112 | static struct clk tc1_clk = { | 
 | 113 | 	.name		= "tc1_clk", | 
 | 114 | 	.pmc_mask	= 1 << AT91SAM9261_ID_TC1, | 
 | 115 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 116 | }; | 
 | 117 | static struct clk tc2_clk = { | 
 | 118 | 	.name		= "tc2_clk", | 
 | 119 | 	.pmc_mask	= 1 << AT91SAM9261_ID_TC2, | 
 | 120 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 121 | }; | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 122 | static struct clk ohci_clk = { | 
 | 123 | 	.name		= "ohci_clk", | 
 | 124 | 	.pmc_mask	= 1 << AT91SAM9261_ID_UHP, | 
 | 125 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 126 | }; | 
 | 127 | static struct clk lcdc_clk = { | 
 | 128 | 	.name		= "lcdc_clk", | 
 | 129 | 	.pmc_mask	= 1 << AT91SAM9261_ID_LCDC, | 
 | 130 | 	.type		= CLK_TYPE_PERIPHERAL, | 
 | 131 | }; | 
 | 132 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | 0af4316 | 2011-08-30 03:29:28 +0200 | [diff] [blame] | 133 | /* HClocks */ | 
 | 134 | static struct clk hck0 = { | 
 | 135 | 	.name		= "hck0", | 
 | 136 | 	.pmc_mask	= AT91_PMC_HCK0, | 
 | 137 | 	.type		= CLK_TYPE_SYSTEM, | 
 | 138 | 	.id		= 0, | 
 | 139 | }; | 
 | 140 | static struct clk hck1 = { | 
 | 141 | 	.name		= "hck1", | 
 | 142 | 	.pmc_mask	= AT91_PMC_HCK1, | 
 | 143 | 	.type		= CLK_TYPE_SYSTEM, | 
 | 144 | 	.id		= 1, | 
 | 145 | }; | 
 | 146 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 147 | static struct clk *periph_clocks[] __initdata = { | 
 | 148 | 	&pioA_clk, | 
 | 149 | 	&pioB_clk, | 
 | 150 | 	&pioC_clk, | 
 | 151 | 	&usart0_clk, | 
 | 152 | 	&usart1_clk, | 
 | 153 | 	&usart2_clk, | 
 | 154 | 	&mmc_clk, | 
 | 155 | 	&udc_clk, | 
 | 156 | 	&twi_clk, | 
 | 157 | 	&spi0_clk, | 
 | 158 | 	&spi1_clk, | 
| Andrew Victor | e8788ba | 2007-05-02 17:14:57 +0100 | [diff] [blame] | 159 | 	&ssc0_clk, | 
 | 160 | 	&ssc1_clk, | 
 | 161 | 	&ssc2_clk, | 
| Andrew Victor | c177a1e | 2007-02-08 10:25:38 +0100 | [diff] [blame] | 162 | 	&tc0_clk, | 
 | 163 | 	&tc1_clk, | 
 | 164 | 	&tc2_clk, | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 165 | 	&ohci_clk, | 
 | 166 | 	&lcdc_clk, | 
 | 167 | 	// irq0 .. irq2 | 
 | 168 | }; | 
 | 169 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | bd60299 | 2011-02-02 07:27:07 +0100 | [diff] [blame] | 170 | static struct clk_lookup periph_clocks_lookups[] = { | 
 | 171 | 	CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk), | 
 | 172 | 	CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk), | 
 | 173 | 	CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk), | 
 | 174 | 	CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk), | 
| Jean-Christophe PLAGNIOL-VILLARD | c0764b2 | 2011-08-23 16:35:31 +0200 | [diff] [blame] | 175 | 	CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk), | 
| Jean-Christophe PLAGNIOL-VILLARD | bd60299 | 2011-02-02 07:27:07 +0100 | [diff] [blame] | 176 | 	CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk), | 
 | 177 | 	CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk), | 
 | 178 | 	CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk), | 
| Jean-Christophe PLAGNIOL-VILLARD | 0af4316 | 2011-08-30 03:29:28 +0200 | [diff] [blame] | 179 | 	CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &hck0), | 
| Jean-Christophe PLAGNIOL-VILLARD | 619d4a4 | 2011-11-13 13:00:58 +0800 | [diff] [blame] | 180 | 	CLKDEV_CON_ID("pioA", &pioA_clk), | 
 | 181 | 	CLKDEV_CON_ID("pioB", &pioB_clk), | 
 | 182 | 	CLKDEV_CON_ID("pioC", &pioC_clk), | 
| Jean-Christophe PLAGNIOL-VILLARD | bd60299 | 2011-02-02 07:27:07 +0100 | [diff] [blame] | 183 | }; | 
 | 184 |  | 
 | 185 | static struct clk_lookup usart_clocks_lookups[] = { | 
 | 186 | 	CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck), | 
 | 187 | 	CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk), | 
 | 188 | 	CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk), | 
 | 189 | 	CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk), | 
 | 190 | }; | 
 | 191 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 192 | /* | 
 | 193 |  * The four programmable clocks. | 
 | 194 |  * You must configure pin multiplexing to bring these signals out. | 
 | 195 |  */ | 
 | 196 | static struct clk pck0 = { | 
 | 197 | 	.name		= "pck0", | 
 | 198 | 	.pmc_mask	= AT91_PMC_PCK0, | 
 | 199 | 	.type		= CLK_TYPE_PROGRAMMABLE, | 
 | 200 | 	.id		= 0, | 
 | 201 | }; | 
 | 202 | static struct clk pck1 = { | 
 | 203 | 	.name		= "pck1", | 
 | 204 | 	.pmc_mask	= AT91_PMC_PCK1, | 
 | 205 | 	.type		= CLK_TYPE_PROGRAMMABLE, | 
 | 206 | 	.id		= 1, | 
 | 207 | }; | 
 | 208 | static struct clk pck2 = { | 
 | 209 | 	.name		= "pck2", | 
 | 210 | 	.pmc_mask	= AT91_PMC_PCK2, | 
 | 211 | 	.type		= CLK_TYPE_PROGRAMMABLE, | 
 | 212 | 	.id		= 2, | 
 | 213 | }; | 
 | 214 | static struct clk pck3 = { | 
 | 215 | 	.name		= "pck3", | 
 | 216 | 	.pmc_mask	= AT91_PMC_PCK3, | 
 | 217 | 	.type		= CLK_TYPE_PROGRAMMABLE, | 
 | 218 | 	.id		= 3, | 
 | 219 | }; | 
 | 220 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 221 | static void __init at91sam9261_register_clocks(void) | 
 | 222 | { | 
 | 223 | 	int i; | 
 | 224 |  | 
 | 225 | 	for (i = 0; i < ARRAY_SIZE(periph_clocks); i++) | 
 | 226 | 		clk_register(periph_clocks[i]); | 
 | 227 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | bd60299 | 2011-02-02 07:27:07 +0100 | [diff] [blame] | 228 | 	clkdev_add_table(periph_clocks_lookups, | 
 | 229 | 			 ARRAY_SIZE(periph_clocks_lookups)); | 
 | 230 | 	clkdev_add_table(usart_clocks_lookups, | 
 | 231 | 			 ARRAY_SIZE(usart_clocks_lookups)); | 
 | 232 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 233 | 	clk_register(&pck0); | 
 | 234 | 	clk_register(&pck1); | 
 | 235 | 	clk_register(&pck2); | 
 | 236 | 	clk_register(&pck3); | 
 | 237 |  | 
 | 238 | 	clk_register(&hck0); | 
 | 239 | 	clk_register(&hck1); | 
 | 240 | } | 
 | 241 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | bd60299 | 2011-02-02 07:27:07 +0100 | [diff] [blame] | 242 | static struct clk_lookup console_clock_lookup; | 
 | 243 |  | 
 | 244 | void __init at91sam9261_set_console_clock(int id) | 
 | 245 | { | 
 | 246 | 	if (id >= ARRAY_SIZE(usart_clocks_lookups)) | 
 | 247 | 		return; | 
 | 248 |  | 
 | 249 | 	console_clock_lookup.con_id = "usart"; | 
 | 250 | 	console_clock_lookup.clk = usart_clocks_lookups[id].clk; | 
 | 251 | 	clkdev_add(&console_clock_lookup); | 
 | 252 | } | 
 | 253 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 254 | /* -------------------------------------------------------------------- | 
 | 255 |  *  GPIO | 
 | 256 |  * -------------------------------------------------------------------- */ | 
 | 257 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | 1a2d915 | 2011-10-17 14:28:38 +0800 | [diff] [blame] | 258 | static struct at91_gpio_bank at91sam9261_gpio[] __initdata = { | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 259 | 	{ | 
 | 260 | 		.id		= AT91SAM9261_ID_PIOA, | 
| Jean-Christophe PLAGNIOL-VILLARD | 80e91cb | 2011-09-16 23:37:50 +0800 | [diff] [blame] | 261 | 		.regbase	= AT91SAM9261_BASE_PIOA, | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 262 | 	}, { | 
 | 263 | 		.id		= AT91SAM9261_ID_PIOB, | 
| Jean-Christophe PLAGNIOL-VILLARD | 80e91cb | 2011-09-16 23:37:50 +0800 | [diff] [blame] | 264 | 		.regbase	= AT91SAM9261_BASE_PIOB, | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 265 | 	}, { | 
 | 266 | 		.id		= AT91SAM9261_ID_PIOC, | 
| Jean-Christophe PLAGNIOL-VILLARD | 80e91cb | 2011-09-16 23:37:50 +0800 | [diff] [blame] | 267 | 		.regbase	= AT91SAM9261_BASE_PIOC, | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 268 | 	} | 
 | 269 | }; | 
 | 270 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 271 | /* -------------------------------------------------------------------- | 
 | 272 |  *  AT91SAM9261 processor initialization | 
 | 273 |  * -------------------------------------------------------------------- */ | 
 | 274 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | 21d08b9 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 275 | static void __init at91sam9261_map_io(void) | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 276 | { | 
| Nicolas Ferre | b319ff8 | 2009-06-26 15:37:01 +0100 | [diff] [blame] | 277 | 	if (cpu_is_at91sam9g10()) | 
| Jean-Christophe PLAGNIOL-VILLARD | f0051d8 | 2011-05-10 03:20:09 +0800 | [diff] [blame] | 278 | 		at91_init_sram(0, AT91SAM9G10_SRAM_BASE, AT91SAM9G10_SRAM_SIZE); | 
| Nicolas Ferre | b319ff8 | 2009-06-26 15:37:01 +0100 | [diff] [blame] | 279 | 	else | 
| Jean-Christophe PLAGNIOL-VILLARD | f0051d8 | 2011-05-10 03:20:09 +0800 | [diff] [blame] | 280 | 		at91_init_sram(0, AT91SAM9261_SRAM_BASE, AT91SAM9261_SRAM_SIZE); | 
| Jean-Christophe PLAGNIOL-VILLARD | 1b021a3 | 2011-04-28 20:19:32 +0800 | [diff] [blame] | 281 | } | 
| Nicolas Ferre | b319ff8 | 2009-06-26 15:37:01 +0100 | [diff] [blame] | 282 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | cfa5a1f | 2011-10-14 01:17:18 +0800 | [diff] [blame] | 283 | static void __init at91sam9261_ioremap_registers(void) | 
 | 284 | { | 
| Jean-Christophe PLAGNIOL-VILLARD | f22deee | 2011-11-01 01:23:20 +0800 | [diff] [blame] | 285 | 	at91_ioremap_shdwc(AT91SAM9261_BASE_SHDWC); | 
| Jean-Christophe PLAGNIOL-VILLARD | e9f68b5 | 2011-11-18 01:25:52 +0800 | [diff] [blame] | 286 | 	at91_ioremap_rstc(AT91SAM9261_BASE_RSTC); | 
| Jean-Christophe PLAGNIOL-VILLARD | f363c40 | 2012-02-13 12:58:53 +0800 | [diff] [blame] | 287 | 	at91_ioremap_ramc(0, AT91SAM9261_BASE_SDRAMC, 512); | 
| Jean-Christophe PLAGNIOL-VILLARD | 4ab0c59 | 2011-09-18 22:29:50 +0800 | [diff] [blame] | 288 | 	at91sam926x_ioremap_pit(AT91SAM9261_BASE_PIT); | 
| Jean-Christophe PLAGNIOL-VILLARD | faee0cc | 2011-10-14 01:37:09 +0800 | [diff] [blame] | 289 | 	at91sam9_ioremap_smc(0, AT91SAM9261_BASE_SMC); | 
| Jean-Christophe PLAGNIOL-VILLARD | 4342d64 | 2011-11-27 23:15:50 +0800 | [diff] [blame] | 290 | 	at91_ioremap_matrix(AT91SAM9261_BASE_MATRIX); | 
| Jean-Christophe PLAGNIOL-VILLARD | cfa5a1f | 2011-10-14 01:17:18 +0800 | [diff] [blame] | 291 | } | 
 | 292 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | 4653937 | 2011-04-24 18:20:28 +0800 | [diff] [blame] | 293 | static void __init at91sam9261_initialize(void) | 
| Jean-Christophe PLAGNIOL-VILLARD | 1b021a3 | 2011-04-28 20:19:32 +0800 | [diff] [blame] | 294 | { | 
| Jean-Christophe PLAGNIOL-VILLARD | 0d78171 | 2012-02-05 20:25:32 +0800 | [diff] [blame] | 295 | 	arm_pm_idle = at91sam9_idle; | 
| Russell King | 1b2073e | 2011-11-03 09:53:29 +0000 | [diff] [blame] | 296 | 	arm_pm_restart = at91sam9_alt_restart; | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 297 | 	at91_extern_irq = (1 << AT91SAM9261_ID_IRQ0) | (1 << AT91SAM9261_ID_IRQ1) | 
 | 298 | 			| (1 << AT91SAM9261_ID_IRQ2); | 
 | 299 |  | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 300 | 	/* Register GPIO subsystem */ | 
 | 301 | 	at91_gpio_init(at91sam9261_gpio, 3); | 
 | 302 | } | 
 | 303 |  | 
 | 304 | /* -------------------------------------------------------------------- | 
 | 305 |  *  Interrupt initialization | 
 | 306 |  * -------------------------------------------------------------------- */ | 
 | 307 |  | 
 | 308 | /* | 
 | 309 |  * The default interrupt priority levels (0 = lowest, 7 = highest). | 
 | 310 |  */ | 
 | 311 | static unsigned int at91sam9261_default_irq_priority[NR_AIC_IRQS] __initdata = { | 
 | 312 | 	7,	/* Advanced Interrupt Controller */ | 
 | 313 | 	7,	/* System Peripherals */ | 
| Andrew Victor | 7cbed2b | 2007-11-20 08:46:53 +0100 | [diff] [blame] | 314 | 	1,	/* Parallel IO Controller A */ | 
 | 315 | 	1,	/* Parallel IO Controller B */ | 
 | 316 | 	1,	/* Parallel IO Controller C */ | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 317 | 	0, | 
| Andrew Victor | 7cbed2b | 2007-11-20 08:46:53 +0100 | [diff] [blame] | 318 | 	5,	/* USART 0 */ | 
 | 319 | 	5,	/* USART 1 */ | 
 | 320 | 	5,	/* USART 2 */ | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 321 | 	0,	/* Multimedia Card Interface */ | 
| Andrew Victor | 7cbed2b | 2007-11-20 08:46:53 +0100 | [diff] [blame] | 322 | 	2,	/* USB Device Port */ | 
 | 323 | 	6,	/* Two-Wire Interface */ | 
 | 324 | 	5,	/* Serial Peripheral Interface 0 */ | 
 | 325 | 	5,	/* Serial Peripheral Interface 1 */ | 
 | 326 | 	4,	/* Serial Synchronous Controller 0 */ | 
 | 327 | 	4,	/* Serial Synchronous Controller 1 */ | 
 | 328 | 	4,	/* Serial Synchronous Controller 2 */ | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 329 | 	0,	/* Timer Counter 0 */ | 
 | 330 | 	0,	/* Timer Counter 1 */ | 
 | 331 | 	0,	/* Timer Counter 2 */ | 
| Andrew Victor | 7cbed2b | 2007-11-20 08:46:53 +0100 | [diff] [blame] | 332 | 	2,	/* USB Host port */ | 
| Andrew Victor | 62c1660 | 2006-11-30 12:27:38 +0100 | [diff] [blame] | 333 | 	3,	/* LCD Controller */ | 
 | 334 | 	0, | 
 | 335 | 	0, | 
 | 336 | 	0, | 
 | 337 | 	0, | 
 | 338 | 	0, | 
 | 339 | 	0, | 
 | 340 | 	0, | 
 | 341 | 	0,	/* Advanced Interrupt Controller */ | 
 | 342 | 	0,	/* Advanced Interrupt Controller */ | 
 | 343 | 	0,	/* Advanced Interrupt Controller */ | 
 | 344 | }; | 
 | 345 |  | 
| Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 346 | struct at91_init_soc __initdata at91sam9261_soc = { | 
| Jean-Christophe PLAGNIOL-VILLARD | 21d08b9 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 347 | 	.map_io = at91sam9261_map_io, | 
| Jean-Christophe PLAGNIOL-VILLARD | 92100c1 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 348 | 	.default_irq_priority = at91sam9261_default_irq_priority, | 
| Jean-Christophe PLAGNIOL-VILLARD | cfa5a1f | 2011-10-14 01:17:18 +0800 | [diff] [blame] | 349 | 	.ioremap_registers = at91sam9261_ioremap_registers, | 
| Jean-Christophe PLAGNIOL-VILLARD | 51ddec7 | 2011-04-24 18:15:34 +0800 | [diff] [blame] | 350 | 	.register_clocks = at91sam9261_register_clocks, | 
| Jean-Christophe PLAGNIOL-VILLARD | 21d08b9 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 351 | 	.init = at91sam9261_initialize, | 
 | 352 | }; |