Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-at91/at91sam9263_devices.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 | #include <asm/mach/arch.h> |
| 13 | #include <asm/mach/map.h> |
| 14 | |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 15 | #include <linux/dma-mapping.h> |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 16 | #include <linux/gpio.h> |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
Andrew Victor | f230d3f | 2007-11-19 13:47:20 +0100 | [diff] [blame] | 18 | #include <linux/i2c-gpio.h> |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 19 | |
Andrew Victor | f230d3f | 2007-11-19 13:47:20 +0100 | [diff] [blame] | 20 | #include <linux/fb.h> |
Jan Altenberg | b8b78609 | 2007-08-03 12:14:34 +0100 | [diff] [blame] | 21 | #include <video/atmel_lcdc.h> |
| 22 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 23 | #include <mach/board.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 24 | #include <mach/at91sam9263.h> |
| 25 | #include <mach/at91sam9263_matrix.h> |
Jean-Christophe PLAGNIOL-VILLARD | 4342d64 | 2011-11-27 23:15:50 +0800 | [diff] [blame] | 26 | #include <mach/at91_matrix.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 27 | #include <mach/at91sam9_smc.h> |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 28 | |
| 29 | #include "generic.h" |
| 30 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 31 | |
| 32 | /* -------------------------------------------------------------------- |
| 33 | * USB Host |
| 34 | * -------------------------------------------------------------------- */ |
| 35 | |
| 36 | #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 37 | static u64 ohci_dmamask = DMA_BIT_MASK(32); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 38 | static struct at91_usbh_data usbh_data; |
| 39 | |
| 40 | static struct resource usbh_resources[] = { |
| 41 | [0] = { |
| 42 | .start = AT91SAM9263_UHP_BASE, |
| 43 | .end = AT91SAM9263_UHP_BASE + SZ_1M - 1, |
| 44 | .flags = IORESOURCE_MEM, |
| 45 | }, |
| 46 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 47 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_UHP, |
| 48 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_UHP, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 49 | .flags = IORESOURCE_IRQ, |
| 50 | }, |
| 51 | }; |
| 52 | |
| 53 | static struct platform_device at91_usbh_device = { |
| 54 | .name = "at91_ohci", |
| 55 | .id = -1, |
| 56 | .dev = { |
| 57 | .dma_mask = &ohci_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 58 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 59 | .platform_data = &usbh_data, |
| 60 | }, |
| 61 | .resource = usbh_resources, |
| 62 | .num_resources = ARRAY_SIZE(usbh_resources), |
| 63 | }; |
| 64 | |
| 65 | void __init at91_add_device_usbh(struct at91_usbh_data *data) |
| 66 | { |
| 67 | int i; |
| 68 | |
| 69 | if (!data) |
| 70 | return; |
| 71 | |
| 72 | /* Enable VBus control for UHP ports */ |
| 73 | for (i = 0; i < data->ports; i++) { |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 74 | if (gpio_is_valid(data->vbus_pin[i])) |
Nicolas Ferre | cca0355 | 2012-03-28 11:56:28 +0200 | [diff] [blame] | 75 | at91_set_gpio_output(data->vbus_pin[i], |
| 76 | data->vbus_pin_active_low[i]); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 77 | } |
| 78 | |
Thomas Petazzoni | 1fcaea7 | 2011-07-13 11:29:18 +0200 | [diff] [blame] | 79 | /* Enable overcurrent notification */ |
| 80 | for (i = 0; i < data->ports; i++) { |
| 81 | if (data->overcurrent_pin[i]) |
| 82 | at91_set_gpio_input(data->overcurrent_pin[i], 1); |
| 83 | } |
| 84 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 85 | usbh_data = *data; |
| 86 | platform_device_register(&at91_usbh_device); |
| 87 | } |
| 88 | #else |
| 89 | void __init at91_add_device_usbh(struct at91_usbh_data *data) {} |
| 90 | #endif |
| 91 | |
| 92 | |
| 93 | /* -------------------------------------------------------------------- |
| 94 | * USB Device (Gadget) |
| 95 | * -------------------------------------------------------------------- */ |
| 96 | |
Nicolas Ferre | e8c9dc9 | 2012-01-27 11:14:44 +0100 | [diff] [blame] | 97 | #if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 98 | static struct at91_udc_data udc_data; |
| 99 | |
| 100 | static struct resource udc_resources[] = { |
| 101 | [0] = { |
| 102 | .start = AT91SAM9263_BASE_UDP, |
| 103 | .end = AT91SAM9263_BASE_UDP + SZ_16K - 1, |
| 104 | .flags = IORESOURCE_MEM, |
| 105 | }, |
| 106 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 107 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_UDP, |
| 108 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_UDP, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 109 | .flags = IORESOURCE_IRQ, |
| 110 | }, |
| 111 | }; |
| 112 | |
| 113 | static struct platform_device at91_udc_device = { |
| 114 | .name = "at91_udc", |
| 115 | .id = -1, |
| 116 | .dev = { |
| 117 | .platform_data = &udc_data, |
| 118 | }, |
| 119 | .resource = udc_resources, |
| 120 | .num_resources = ARRAY_SIZE(udc_resources), |
| 121 | }; |
| 122 | |
| 123 | void __init at91_add_device_udc(struct at91_udc_data *data) |
| 124 | { |
| 125 | if (!data) |
| 126 | return; |
| 127 | |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 128 | if (gpio_is_valid(data->vbus_pin)) { |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 129 | at91_set_gpio_input(data->vbus_pin, 0); |
| 130 | at91_set_deglitch(data->vbus_pin, 1); |
| 131 | } |
| 132 | |
| 133 | /* Pullup pin is handled internally by USB device peripheral */ |
| 134 | |
| 135 | udc_data = *data; |
| 136 | platform_device_register(&at91_udc_device); |
| 137 | } |
| 138 | #else |
| 139 | void __init at91_add_device_udc(struct at91_udc_data *data) {} |
| 140 | #endif |
| 141 | |
| 142 | |
| 143 | /* -------------------------------------------------------------------- |
| 144 | * Ethernet |
| 145 | * -------------------------------------------------------------------- */ |
| 146 | |
| 147 | #if defined(CONFIG_MACB) || defined(CONFIG_MACB_MODULE) |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 148 | static u64 eth_dmamask = DMA_BIT_MASK(32); |
Jamie Iles | 84e0cdb | 2011-03-08 20:17:06 +0000 | [diff] [blame] | 149 | static struct macb_platform_data eth_data; |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 150 | |
| 151 | static struct resource eth_resources[] = { |
| 152 | [0] = { |
| 153 | .start = AT91SAM9263_BASE_EMAC, |
| 154 | .end = AT91SAM9263_BASE_EMAC + SZ_16K - 1, |
| 155 | .flags = IORESOURCE_MEM, |
| 156 | }, |
| 157 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 158 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_EMAC, |
| 159 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_EMAC, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 160 | .flags = IORESOURCE_IRQ, |
| 161 | }, |
| 162 | }; |
| 163 | |
| 164 | static struct platform_device at91sam9263_eth_device = { |
| 165 | .name = "macb", |
| 166 | .id = -1, |
| 167 | .dev = { |
| 168 | .dma_mask = ð_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 169 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 170 | .platform_data = ð_data, |
| 171 | }, |
| 172 | .resource = eth_resources, |
| 173 | .num_resources = ARRAY_SIZE(eth_resources), |
| 174 | }; |
| 175 | |
Jamie Iles | 84e0cdb | 2011-03-08 20:17:06 +0000 | [diff] [blame] | 176 | void __init at91_add_device_eth(struct macb_platform_data *data) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 177 | { |
| 178 | if (!data) |
| 179 | return; |
| 180 | |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 181 | if (gpio_is_valid(data->phy_irq_pin)) { |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 182 | at91_set_gpio_input(data->phy_irq_pin, 0); |
| 183 | at91_set_deglitch(data->phy_irq_pin, 1); |
| 184 | } |
| 185 | |
| 186 | /* Pins used for MII and RMII */ |
| 187 | at91_set_A_periph(AT91_PIN_PE21, 0); /* ETXCK_EREFCK */ |
| 188 | at91_set_B_periph(AT91_PIN_PC25, 0); /* ERXDV */ |
| 189 | at91_set_A_periph(AT91_PIN_PE25, 0); /* ERX0 */ |
| 190 | at91_set_A_periph(AT91_PIN_PE26, 0); /* ERX1 */ |
| 191 | at91_set_A_periph(AT91_PIN_PE27, 0); /* ERXER */ |
| 192 | at91_set_A_periph(AT91_PIN_PE28, 0); /* ETXEN */ |
| 193 | at91_set_A_periph(AT91_PIN_PE23, 0); /* ETX0 */ |
| 194 | at91_set_A_periph(AT91_PIN_PE24, 0); /* ETX1 */ |
| 195 | at91_set_A_periph(AT91_PIN_PE30, 0); /* EMDIO */ |
| 196 | at91_set_A_periph(AT91_PIN_PE29, 0); /* EMDC */ |
| 197 | |
| 198 | if (!data->is_rmii) { |
| 199 | at91_set_A_periph(AT91_PIN_PE22, 0); /* ECRS */ |
| 200 | at91_set_B_periph(AT91_PIN_PC26, 0); /* ECOL */ |
| 201 | at91_set_B_periph(AT91_PIN_PC22, 0); /* ERX2 */ |
| 202 | at91_set_B_periph(AT91_PIN_PC23, 0); /* ERX3 */ |
| 203 | at91_set_B_periph(AT91_PIN_PC27, 0); /* ERXCK */ |
| 204 | at91_set_B_periph(AT91_PIN_PC20, 0); /* ETX2 */ |
| 205 | at91_set_B_periph(AT91_PIN_PC21, 0); /* ETX3 */ |
| 206 | at91_set_B_periph(AT91_PIN_PC24, 0); /* ETXER */ |
| 207 | } |
| 208 | |
| 209 | eth_data = *data; |
| 210 | platform_device_register(&at91sam9263_eth_device); |
| 211 | } |
| 212 | #else |
Jamie Iles | 84e0cdb | 2011-03-08 20:17:06 +0000 | [diff] [blame] | 213 | void __init at91_add_device_eth(struct macb_platform_data *data) {} |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 214 | #endif |
| 215 | |
| 216 | |
| 217 | /* -------------------------------------------------------------------- |
| 218 | * MMC / SD |
| 219 | * -------------------------------------------------------------------- */ |
| 220 | |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 221 | #if IS_ENABLED(CONFIG_MMC_ATMELMCI) |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 222 | static u64 mmc_dmamask = DMA_BIT_MASK(32); |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 223 | static struct mci_platform_data mmc0_data, mmc1_data; |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 224 | |
| 225 | static struct resource mmc0_resources[] = { |
| 226 | [0] = { |
| 227 | .start = AT91SAM9263_BASE_MCI0, |
| 228 | .end = AT91SAM9263_BASE_MCI0 + SZ_16K - 1, |
| 229 | .flags = IORESOURCE_MEM, |
| 230 | }, |
| 231 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 232 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_MCI0, |
| 233 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_MCI0, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 234 | .flags = IORESOURCE_IRQ, |
| 235 | }, |
| 236 | }; |
| 237 | |
| 238 | static struct platform_device at91sam9263_mmc0_device = { |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 239 | .name = "atmel_mci", |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 240 | .id = 0, |
| 241 | .dev = { |
| 242 | .dma_mask = &mmc_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 243 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 244 | .platform_data = &mmc0_data, |
| 245 | }, |
| 246 | .resource = mmc0_resources, |
| 247 | .num_resources = ARRAY_SIZE(mmc0_resources), |
| 248 | }; |
| 249 | |
| 250 | static struct resource mmc1_resources[] = { |
| 251 | [0] = { |
| 252 | .start = AT91SAM9263_BASE_MCI1, |
| 253 | .end = AT91SAM9263_BASE_MCI1 + SZ_16K - 1, |
| 254 | .flags = IORESOURCE_MEM, |
| 255 | }, |
| 256 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 257 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_MCI1, |
| 258 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_MCI1, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 259 | .flags = IORESOURCE_IRQ, |
| 260 | }, |
| 261 | }; |
| 262 | |
| 263 | static struct platform_device at91sam9263_mmc1_device = { |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 264 | .name = "atmel_mci", |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 265 | .id = 1, |
| 266 | .dev = { |
| 267 | .dma_mask = &mmc_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 268 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 269 | .platform_data = &mmc1_data, |
| 270 | }, |
| 271 | .resource = mmc1_resources, |
| 272 | .num_resources = ARRAY_SIZE(mmc1_resources), |
| 273 | }; |
| 274 | |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 275 | void __init at91_add_device_mci(short mmc_id, struct mci_platform_data *data) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 276 | { |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 277 | unsigned int i; |
| 278 | unsigned int slot_count = 0; |
| 279 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 280 | if (!data) |
| 281 | return; |
| 282 | |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 283 | for (i = 0; i < ATMCI_MAX_NR_SLOTS; i++) { |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 284 | |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 285 | if (!data->slot[i].bus_width) |
| 286 | continue; |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 287 | |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 288 | /* input/irq */ |
| 289 | if (gpio_is_valid(data->slot[i].detect_pin)) { |
| 290 | at91_set_gpio_input(data->slot[i].detect_pin, |
| 291 | 1); |
| 292 | at91_set_deglitch(data->slot[i].detect_pin, |
| 293 | 1); |
| 294 | } |
| 295 | if (gpio_is_valid(data->slot[i].wp_pin)) |
| 296 | at91_set_gpio_input(data->slot[i].wp_pin, 1); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 297 | |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 298 | if (mmc_id == 0) { /* MCI0 */ |
| 299 | switch (i) { |
| 300 | case 0: /* slot A */ |
| 301 | /* CMD */ |
| 302 | at91_set_A_periph(AT91_PIN_PA1, 1); |
| 303 | /* DAT0, maybe DAT1..DAT3 */ |
| 304 | at91_set_A_periph(AT91_PIN_PA0, 1); |
| 305 | if (data->slot[i].bus_width == 4) { |
| 306 | at91_set_A_periph(AT91_PIN_PA3, 1); |
| 307 | at91_set_A_periph(AT91_PIN_PA4, 1); |
| 308 | at91_set_A_periph(AT91_PIN_PA5, 1); |
| 309 | } |
| 310 | slot_count++; |
| 311 | break; |
| 312 | case 1: /* slot B */ |
| 313 | /* CMD */ |
| 314 | at91_set_A_periph(AT91_PIN_PA16, 1); |
| 315 | /* DAT0, maybe DAT1..DAT3 */ |
| 316 | at91_set_A_periph(AT91_PIN_PA17, 1); |
| 317 | if (data->slot[i].bus_width == 4) { |
| 318 | at91_set_A_periph(AT91_PIN_PA18, 1); |
| 319 | at91_set_A_periph(AT91_PIN_PA19, 1); |
| 320 | at91_set_A_periph(AT91_PIN_PA20, 1); |
| 321 | } |
| 322 | slot_count++; |
| 323 | break; |
| 324 | default: |
| 325 | printk(KERN_ERR |
| 326 | "AT91: SD/MMC slot %d not available\n", i); |
| 327 | break; |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 328 | } |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 329 | if (slot_count) { |
| 330 | /* CLK */ |
| 331 | at91_set_A_periph(AT91_PIN_PA12, 0); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 332 | |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 333 | mmc0_data = *data; |
| 334 | platform_device_register(&at91sam9263_mmc0_device); |
| 335 | } |
| 336 | } else if (mmc_id == 1) { /* MCI1 */ |
| 337 | switch (i) { |
| 338 | case 0: /* slot A */ |
| 339 | /* CMD */ |
| 340 | at91_set_A_periph(AT91_PIN_PA7, 1); |
| 341 | /* DAT0, maybe DAT1..DAT3 */ |
| 342 | at91_set_A_periph(AT91_PIN_PA8, 1); |
| 343 | if (data->slot[i].bus_width == 4) { |
| 344 | at91_set_A_periph(AT91_PIN_PA9, 1); |
| 345 | at91_set_A_periph(AT91_PIN_PA10, 1); |
| 346 | at91_set_A_periph(AT91_PIN_PA11, 1); |
| 347 | } |
| 348 | slot_count++; |
| 349 | break; |
| 350 | case 1: /* slot B */ |
| 351 | /* CMD */ |
| 352 | at91_set_A_periph(AT91_PIN_PA21, 1); |
| 353 | /* DAT0, maybe DAT1..DAT3 */ |
| 354 | at91_set_A_periph(AT91_PIN_PA22, 1); |
| 355 | if (data->slot[i].bus_width == 4) { |
| 356 | at91_set_A_periph(AT91_PIN_PA23, 1); |
| 357 | at91_set_A_periph(AT91_PIN_PA24, 1); |
| 358 | at91_set_A_periph(AT91_PIN_PA25, 1); |
| 359 | } |
| 360 | slot_count++; |
| 361 | break; |
| 362 | default: |
| 363 | printk(KERN_ERR |
| 364 | "AT91: SD/MMC slot %d not available\n", i); |
| 365 | break; |
| 366 | } |
| 367 | if (slot_count) { |
| 368 | /* CLK */ |
| 369 | at91_set_A_periph(AT91_PIN_PA6, 0); |
| 370 | |
| 371 | mmc1_data = *data; |
| 372 | platform_device_register(&at91sam9263_mmc1_device); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 373 | } |
| 374 | } |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | #else |
Ludovic Desroches | 4cf3326 | 2012-05-21 12:23:27 +0200 | [diff] [blame] | 378 | void __init at91_add_device_mci(short mmc_id, struct mci_platform_data *data) {} |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 379 | #endif |
| 380 | |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 381 | /* -------------------------------------------------------------------- |
| 382 | * Compact Flash (PCMCIA or IDE) |
| 383 | * -------------------------------------------------------------------- */ |
| 384 | |
Jean-Christophe PLAGNIOL-VILLARD | cf84475 | 2011-12-15 21:24:03 +0800 | [diff] [blame] | 385 | #if defined(CONFIG_PATA_AT91) || defined(CONFIG_PATA_AT91_MODULE) || \ |
| 386 | defined(CONFIG_AT91_CF) || defined(CONFIG_AT91_CF_MODULE) |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 387 | |
| 388 | static struct at91_cf_data cf0_data; |
| 389 | |
| 390 | static struct resource cf0_resources[] = { |
| 391 | [0] = { |
| 392 | .start = AT91_CHIPSELECT_4, |
| 393 | .end = AT91_CHIPSELECT_4 + SZ_256M - 1, |
| 394 | .flags = IORESOURCE_MEM | IORESOURCE_MEM_8AND16BIT, |
| 395 | } |
| 396 | }; |
| 397 | |
| 398 | static struct platform_device cf0_device = { |
| 399 | .id = 0, |
| 400 | .dev = { |
| 401 | .platform_data = &cf0_data, |
| 402 | }, |
| 403 | .resource = cf0_resources, |
| 404 | .num_resources = ARRAY_SIZE(cf0_resources), |
| 405 | }; |
| 406 | |
| 407 | static struct at91_cf_data cf1_data; |
| 408 | |
| 409 | static struct resource cf1_resources[] = { |
| 410 | [0] = { |
| 411 | .start = AT91_CHIPSELECT_5, |
| 412 | .end = AT91_CHIPSELECT_5 + SZ_256M - 1, |
| 413 | .flags = IORESOURCE_MEM | IORESOURCE_MEM_8AND16BIT, |
| 414 | } |
| 415 | }; |
| 416 | |
| 417 | static struct platform_device cf1_device = { |
| 418 | .id = 1, |
| 419 | .dev = { |
| 420 | .platform_data = &cf1_data, |
| 421 | }, |
| 422 | .resource = cf1_resources, |
| 423 | .num_resources = ARRAY_SIZE(cf1_resources), |
| 424 | }; |
| 425 | |
| 426 | void __init at91_add_device_cf(struct at91_cf_data *data) |
| 427 | { |
| 428 | unsigned long ebi0_csa; |
| 429 | struct platform_device *pdev; |
| 430 | |
| 431 | if (!data) |
| 432 | return; |
| 433 | |
| 434 | /* |
| 435 | * assign CS4 or CS5 to SMC with Compact Flash logic support, |
| 436 | * we assume SMC timings are configured by board code, |
| 437 | * except True IDE where timings are controlled by driver |
| 438 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 4342d64 | 2011-11-27 23:15:50 +0800 | [diff] [blame] | 439 | ebi0_csa = at91_matrix_read(AT91_MATRIX_EBI0CSA); |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 440 | switch (data->chipselect) { |
| 441 | case 4: |
| 442 | at91_set_A_periph(AT91_PIN_PD6, 0); /* EBI0_NCS4/CFCS0 */ |
| 443 | ebi0_csa |= AT91_MATRIX_EBI0_CS4A_SMC_CF1; |
| 444 | cf0_data = *data; |
| 445 | pdev = &cf0_device; |
| 446 | break; |
| 447 | case 5: |
| 448 | at91_set_A_periph(AT91_PIN_PD7, 0); /* EBI0_NCS5/CFCS1 */ |
| 449 | ebi0_csa |= AT91_MATRIX_EBI0_CS5A_SMC_CF2; |
| 450 | cf1_data = *data; |
| 451 | pdev = &cf1_device; |
| 452 | break; |
| 453 | default: |
| 454 | printk(KERN_ERR "AT91 CF: bad chip-select requested (%u)\n", |
| 455 | data->chipselect); |
| 456 | return; |
| 457 | } |
Jean-Christophe PLAGNIOL-VILLARD | 4342d64 | 2011-11-27 23:15:50 +0800 | [diff] [blame] | 458 | at91_matrix_write(AT91_MATRIX_EBI0CSA, ebi0_csa); |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 459 | |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 460 | if (gpio_is_valid(data->det_pin)) { |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 461 | at91_set_gpio_input(data->det_pin, 1); |
| 462 | at91_set_deglitch(data->det_pin, 1); |
| 463 | } |
| 464 | |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 465 | if (gpio_is_valid(data->irq_pin)) { |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 466 | at91_set_gpio_input(data->irq_pin, 1); |
| 467 | at91_set_deglitch(data->irq_pin, 1); |
| 468 | } |
| 469 | |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 470 | if (gpio_is_valid(data->vcc_pin)) |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 471 | /* initially off */ |
| 472 | at91_set_gpio_output(data->vcc_pin, 0); |
| 473 | |
| 474 | /* enable EBI controlled pins */ |
| 475 | at91_set_A_periph(AT91_PIN_PD5, 1); /* NWAIT */ |
| 476 | at91_set_A_periph(AT91_PIN_PD8, 0); /* CFCE1 */ |
| 477 | at91_set_A_periph(AT91_PIN_PD9, 0); /* CFCE2 */ |
| 478 | at91_set_A_periph(AT91_PIN_PD14, 0); /* CFNRW */ |
| 479 | |
Jean-Christophe PLAGNIOL-VILLARD | cf84475 | 2011-12-15 21:24:03 +0800 | [diff] [blame] | 480 | pdev->name = (data->flags & AT91_CF_TRUE_IDE) ? "pata_at91" : "at91_cf"; |
Stanislaw Gruszka | e565f20 | 2009-03-05 16:10:58 +0100 | [diff] [blame] | 481 | platform_device_register(pdev); |
| 482 | } |
| 483 | #else |
| 484 | void __init at91_add_device_cf(struct at91_cf_data *data) {} |
| 485 | #endif |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 486 | |
| 487 | /* -------------------------------------------------------------------- |
| 488 | * NAND / SmartMedia |
| 489 | * -------------------------------------------------------------------- */ |
| 490 | |
Pieter du Preez | f6ed6f7 | 2008-08-01 10:06:40 +0100 | [diff] [blame] | 491 | #if defined(CONFIG_MTD_NAND_ATMEL) || defined(CONFIG_MTD_NAND_ATMEL_MODULE) |
HÃ¥vard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 492 | static struct atmel_nand_data nand_data; |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 493 | |
| 494 | #define NAND_BASE AT91_CHIPSELECT_3 |
| 495 | |
| 496 | static struct resource nand_resources[] = { |
Andrew Victor | d7a2415 | 2008-04-02 21:44:44 +0100 | [diff] [blame] | 497 | [0] = { |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 498 | .start = NAND_BASE, |
| 499 | .end = NAND_BASE + SZ_256M - 1, |
| 500 | .flags = IORESOURCE_MEM, |
Andrew Victor | d7a2415 | 2008-04-02 21:44:44 +0100 | [diff] [blame] | 501 | }, |
| 502 | [1] = { |
Jean-Christophe PLAGNIOL-VILLARD | d28edd1 | 2011-09-18 09:31:56 +0800 | [diff] [blame] | 503 | .start = AT91SAM9263_BASE_ECC0, |
| 504 | .end = AT91SAM9263_BASE_ECC0 + SZ_512 - 1, |
Andrew Victor | d7a2415 | 2008-04-02 21:44:44 +0100 | [diff] [blame] | 505 | .flags = IORESOURCE_MEM, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 506 | } |
| 507 | }; |
| 508 | |
| 509 | static struct platform_device at91sam9263_nand_device = { |
HÃ¥vard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 510 | .name = "atmel_nand", |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 511 | .id = -1, |
| 512 | .dev = { |
| 513 | .platform_data = &nand_data, |
| 514 | }, |
| 515 | .resource = nand_resources, |
| 516 | .num_resources = ARRAY_SIZE(nand_resources), |
| 517 | }; |
| 518 | |
HÃ¥vard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 519 | void __init at91_add_device_nand(struct atmel_nand_data *data) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 520 | { |
Andrew Victor | 461d3b4 | 2008-10-06 20:01:00 +0100 | [diff] [blame] | 521 | unsigned long csa; |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 522 | |
| 523 | if (!data) |
| 524 | return; |
| 525 | |
Jean-Christophe PLAGNIOL-VILLARD | 4342d64 | 2011-11-27 23:15:50 +0800 | [diff] [blame] | 526 | csa = at91_matrix_read(AT91_MATRIX_EBI0CSA); |
| 527 | at91_matrix_write(AT91_MATRIX_EBI0CSA, csa | AT91_MATRIX_EBI0_CS3A_SMC_SMARTMEDIA); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 528 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 529 | /* enable pin */ |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 530 | if (gpio_is_valid(data->enable_pin)) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 531 | at91_set_gpio_output(data->enable_pin, 1); |
| 532 | |
| 533 | /* ready/busy pin */ |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 534 | if (gpio_is_valid(data->rdy_pin)) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 535 | at91_set_gpio_input(data->rdy_pin, 1); |
| 536 | |
| 537 | /* card detect pin */ |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 538 | if (gpio_is_valid(data->det_pin)) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 539 | at91_set_gpio_input(data->det_pin, 1); |
| 540 | |
| 541 | nand_data = *data; |
| 542 | platform_device_register(&at91sam9263_nand_device); |
| 543 | } |
| 544 | #else |
HÃ¥vard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 545 | void __init at91_add_device_nand(struct atmel_nand_data *data) {} |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 546 | #endif |
| 547 | |
| 548 | |
| 549 | /* -------------------------------------------------------------------- |
| 550 | * TWI (i2c) |
| 551 | * -------------------------------------------------------------------- */ |
| 552 | |
Andrew Victor | f230d3f | 2007-11-19 13:47:20 +0100 | [diff] [blame] | 553 | /* |
| 554 | * Prefer the GPIO code since the TWI controller isn't robust |
| 555 | * (gets overruns and underruns under load) and can only issue |
| 556 | * repeated STARTs in one scenario (the driver doesn't yet handle them). |
| 557 | */ |
| 558 | #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE) |
| 559 | |
| 560 | static struct i2c_gpio_platform_data pdata = { |
| 561 | .sda_pin = AT91_PIN_PB4, |
| 562 | .sda_is_open_drain = 1, |
| 563 | .scl_pin = AT91_PIN_PB5, |
| 564 | .scl_is_open_drain = 1, |
| 565 | .udelay = 2, /* ~100 kHz */ |
| 566 | }; |
| 567 | |
| 568 | static struct platform_device at91sam9263_twi_device = { |
| 569 | .name = "i2c-gpio", |
Bo Shen | 7840487 | 2012-10-15 17:30:27 +0800 | [diff] [blame^] | 570 | .id = 0, |
Andrew Victor | f230d3f | 2007-11-19 13:47:20 +0100 | [diff] [blame] | 571 | .dev.platform_data = &pdata, |
| 572 | }; |
| 573 | |
| 574 | void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) |
| 575 | { |
| 576 | at91_set_GPIO_periph(AT91_PIN_PB4, 1); /* TWD (SDA) */ |
| 577 | at91_set_multi_drive(AT91_PIN_PB4, 1); |
| 578 | |
| 579 | at91_set_GPIO_periph(AT91_PIN_PB5, 1); /* TWCK (SCL) */ |
| 580 | at91_set_multi_drive(AT91_PIN_PB5, 1); |
| 581 | |
| 582 | i2c_register_board_info(0, devices, nr_devices); |
| 583 | platform_device_register(&at91sam9263_twi_device); |
| 584 | } |
| 585 | |
| 586 | #elif defined(CONFIG_I2C_AT91) || defined(CONFIG_I2C_AT91_MODULE) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 587 | |
| 588 | static struct resource twi_resources[] = { |
| 589 | [0] = { |
| 590 | .start = AT91SAM9263_BASE_TWI, |
| 591 | .end = AT91SAM9263_BASE_TWI + SZ_16K - 1, |
| 592 | .flags = IORESOURCE_MEM, |
| 593 | }, |
| 594 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 595 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_TWI, |
| 596 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_TWI, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 597 | .flags = IORESOURCE_IRQ, |
| 598 | }, |
| 599 | }; |
| 600 | |
| 601 | static struct platform_device at91sam9263_twi_device = { |
Nikolaus Voss | fac368a | 2011-11-08 11:49:46 +0100 | [diff] [blame] | 602 | .name = "i2c-at91sam9260", |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 603 | .id = -1, |
| 604 | .resource = twi_resources, |
| 605 | .num_resources = ARRAY_SIZE(twi_resources), |
| 606 | }; |
| 607 | |
Andrew Victor | f230d3f | 2007-11-19 13:47:20 +0100 | [diff] [blame] | 608 | void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 609 | { |
| 610 | /* pins used for TWI interface */ |
| 611 | at91_set_A_periph(AT91_PIN_PB4, 0); /* TWD */ |
| 612 | at91_set_multi_drive(AT91_PIN_PB4, 1); |
| 613 | |
| 614 | at91_set_A_periph(AT91_PIN_PB5, 0); /* TWCK */ |
| 615 | at91_set_multi_drive(AT91_PIN_PB5, 1); |
| 616 | |
Andrew Victor | f230d3f | 2007-11-19 13:47:20 +0100 | [diff] [blame] | 617 | i2c_register_board_info(0, devices, nr_devices); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 618 | platform_device_register(&at91sam9263_twi_device); |
| 619 | } |
| 620 | #else |
Andrew Victor | f230d3f | 2007-11-19 13:47:20 +0100 | [diff] [blame] | 621 | void __init at91_add_device_i2c(struct i2c_board_info *devices, int nr_devices) {} |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 622 | #endif |
| 623 | |
| 624 | |
| 625 | /* -------------------------------------------------------------------- |
| 626 | * SPI |
| 627 | * -------------------------------------------------------------------- */ |
| 628 | |
| 629 | #if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE) |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 630 | static u64 spi_dmamask = DMA_BIT_MASK(32); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 631 | |
| 632 | static struct resource spi0_resources[] = { |
| 633 | [0] = { |
| 634 | .start = AT91SAM9263_BASE_SPI0, |
| 635 | .end = AT91SAM9263_BASE_SPI0 + SZ_16K - 1, |
| 636 | .flags = IORESOURCE_MEM, |
| 637 | }, |
| 638 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 639 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_SPI0, |
| 640 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_SPI0, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 641 | .flags = IORESOURCE_IRQ, |
| 642 | }, |
| 643 | }; |
| 644 | |
| 645 | static struct platform_device at91sam9263_spi0_device = { |
| 646 | .name = "atmel_spi", |
| 647 | .id = 0, |
| 648 | .dev = { |
| 649 | .dma_mask = &spi_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 650 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 651 | }, |
| 652 | .resource = spi0_resources, |
| 653 | .num_resources = ARRAY_SIZE(spi0_resources), |
| 654 | }; |
| 655 | |
| 656 | static const unsigned spi0_standard_cs[4] = { AT91_PIN_PA5, AT91_PIN_PA3, AT91_PIN_PA4, AT91_PIN_PB11 }; |
| 657 | |
| 658 | static struct resource spi1_resources[] = { |
| 659 | [0] = { |
| 660 | .start = AT91SAM9263_BASE_SPI1, |
| 661 | .end = AT91SAM9263_BASE_SPI1 + SZ_16K - 1, |
| 662 | .flags = IORESOURCE_MEM, |
| 663 | }, |
| 664 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 665 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_SPI1, |
| 666 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_SPI1, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 667 | .flags = IORESOURCE_IRQ, |
| 668 | }, |
| 669 | }; |
| 670 | |
| 671 | static struct platform_device at91sam9263_spi1_device = { |
| 672 | .name = "atmel_spi", |
| 673 | .id = 1, |
| 674 | .dev = { |
| 675 | .dma_mask = &spi_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 676 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 677 | }, |
| 678 | .resource = spi1_resources, |
| 679 | .num_resources = ARRAY_SIZE(spi1_resources), |
| 680 | }; |
| 681 | |
| 682 | static const unsigned spi1_standard_cs[4] = { AT91_PIN_PB15, AT91_PIN_PB16, AT91_PIN_PB17, AT91_PIN_PB18 }; |
| 683 | |
| 684 | void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) |
| 685 | { |
| 686 | int i; |
| 687 | unsigned long cs_pin; |
| 688 | short enable_spi0 = 0; |
| 689 | short enable_spi1 = 0; |
| 690 | |
| 691 | /* Choose SPI chip-selects */ |
| 692 | for (i = 0; i < nr_devices; i++) { |
| 693 | if (devices[i].controller_data) |
| 694 | cs_pin = (unsigned long) devices[i].controller_data; |
| 695 | else if (devices[i].bus_num == 0) |
| 696 | cs_pin = spi0_standard_cs[devices[i].chip_select]; |
| 697 | else |
| 698 | cs_pin = spi1_standard_cs[devices[i].chip_select]; |
| 699 | |
Nicolas Ferre | 0c2c1f6 | 2012-03-28 11:58:58 +0200 | [diff] [blame] | 700 | if (!gpio_is_valid(cs_pin)) |
| 701 | continue; |
| 702 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 703 | if (devices[i].bus_num == 0) |
| 704 | enable_spi0 = 1; |
| 705 | else |
| 706 | enable_spi1 = 1; |
| 707 | |
| 708 | /* enable chip-select pin */ |
| 709 | at91_set_gpio_output(cs_pin, 1); |
| 710 | |
| 711 | /* pass chip-select pin to driver */ |
| 712 | devices[i].controller_data = (void *) cs_pin; |
| 713 | } |
| 714 | |
| 715 | spi_register_board_info(devices, nr_devices); |
| 716 | |
| 717 | /* Configure SPI bus(es) */ |
| 718 | if (enable_spi0) { |
| 719 | at91_set_B_periph(AT91_PIN_PA0, 0); /* SPI0_MISO */ |
| 720 | at91_set_B_periph(AT91_PIN_PA1, 0); /* SPI0_MOSI */ |
Andrew Victor | 7f6e2d9 | 2007-02-22 07:34:56 +0100 | [diff] [blame] | 721 | at91_set_B_periph(AT91_PIN_PA2, 0); /* SPI0_SPCK */ |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 722 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 723 | platform_device_register(&at91sam9263_spi0_device); |
| 724 | } |
| 725 | if (enable_spi1) { |
| 726 | at91_set_A_periph(AT91_PIN_PB12, 0); /* SPI1_MISO */ |
| 727 | at91_set_A_periph(AT91_PIN_PB13, 0); /* SPI1_MOSI */ |
| 728 | at91_set_A_periph(AT91_PIN_PB14, 0); /* SPI1_SPCK */ |
| 729 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 730 | platform_device_register(&at91sam9263_spi1_device); |
| 731 | } |
| 732 | } |
| 733 | #else |
| 734 | void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices) {} |
| 735 | #endif |
| 736 | |
| 737 | |
| 738 | /* -------------------------------------------------------------------- |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 739 | * AC97 |
| 740 | * -------------------------------------------------------------------- */ |
| 741 | |
sedji gaouaou | d656f07 | 2009-08-06 15:20:22 +0100 | [diff] [blame] | 742 | #if defined(CONFIG_SND_ATMEL_AC97C) || defined(CONFIG_SND_ATMEL_AC97C_MODULE) |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 743 | static u64 ac97_dmamask = DMA_BIT_MASK(32); |
sedji gaouaou | d656f07 | 2009-08-06 15:20:22 +0100 | [diff] [blame] | 744 | static struct ac97c_platform_data ac97_data; |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 745 | |
| 746 | static struct resource ac97_resources[] = { |
| 747 | [0] = { |
| 748 | .start = AT91SAM9263_BASE_AC97C, |
| 749 | .end = AT91SAM9263_BASE_AC97C + SZ_16K - 1, |
| 750 | .flags = IORESOURCE_MEM, |
| 751 | }, |
| 752 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 753 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_AC97C, |
| 754 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_AC97C, |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 755 | .flags = IORESOURCE_IRQ, |
| 756 | }, |
| 757 | }; |
| 758 | |
| 759 | static struct platform_device at91sam9263_ac97_device = { |
sedji gaouaou | d656f07 | 2009-08-06 15:20:22 +0100 | [diff] [blame] | 760 | .name = "atmel_ac97c", |
| 761 | .id = 0, |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 762 | .dev = { |
| 763 | .dma_mask = &ac97_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 764 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 765 | .platform_data = &ac97_data, |
| 766 | }, |
| 767 | .resource = ac97_resources, |
| 768 | .num_resources = ARRAY_SIZE(ac97_resources), |
| 769 | }; |
| 770 | |
sedji gaouaou | d656f07 | 2009-08-06 15:20:22 +0100 | [diff] [blame] | 771 | void __init at91_add_device_ac97(struct ac97c_platform_data *data) |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 772 | { |
| 773 | if (!data) |
| 774 | return; |
| 775 | |
| 776 | at91_set_A_periph(AT91_PIN_PB0, 0); /* AC97FS */ |
| 777 | at91_set_A_periph(AT91_PIN_PB1, 0); /* AC97CK */ |
| 778 | at91_set_A_periph(AT91_PIN_PB2, 0); /* AC97TX */ |
| 779 | at91_set_A_periph(AT91_PIN_PB3, 0); /* AC97RX */ |
| 780 | |
| 781 | /* reset */ |
Jean-Christophe PLAGNIOL-VILLARD | cc9f9ae | 2011-09-19 15:28:25 +0800 | [diff] [blame] | 782 | if (gpio_is_valid(data->reset_pin)) |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 783 | at91_set_gpio_output(data->reset_pin, 0); |
| 784 | |
sedji gaouaou | d656f07 | 2009-08-06 15:20:22 +0100 | [diff] [blame] | 785 | ac97_data = *data; |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 786 | platform_device_register(&at91sam9263_ac97_device); |
| 787 | } |
| 788 | #else |
sedji gaouaou | d656f07 | 2009-08-06 15:20:22 +0100 | [diff] [blame] | 789 | void __init at91_add_device_ac97(struct ac97c_platform_data *data) {} |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 790 | #endif |
| 791 | |
Marc Kleine-Budde | 58a587d | 2009-09-16 23:37:32 +0000 | [diff] [blame] | 792 | /* -------------------------------------------------------------------- |
| 793 | * CAN Controller |
| 794 | * -------------------------------------------------------------------- */ |
| 795 | |
| 796 | #if defined(CONFIG_CAN_AT91) || defined(CONFIG_CAN_AT91_MODULE) |
| 797 | static struct resource can_resources[] = { |
| 798 | [0] = { |
| 799 | .start = AT91SAM9263_BASE_CAN, |
| 800 | .end = AT91SAM9263_BASE_CAN + SZ_16K - 1, |
| 801 | .flags = IORESOURCE_MEM, |
| 802 | }, |
| 803 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 804 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_CAN, |
| 805 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_CAN, |
Marc Kleine-Budde | 58a587d | 2009-09-16 23:37:32 +0000 | [diff] [blame] | 806 | .flags = IORESOURCE_IRQ, |
| 807 | }, |
| 808 | }; |
| 809 | |
| 810 | static struct platform_device at91sam9263_can_device = { |
| 811 | .name = "at91_can", |
| 812 | .id = -1, |
| 813 | .resource = can_resources, |
| 814 | .num_resources = ARRAY_SIZE(can_resources), |
| 815 | }; |
| 816 | |
| 817 | void __init at91_add_device_can(struct at91_can_data *data) |
| 818 | { |
| 819 | at91_set_A_periph(AT91_PIN_PA13, 0); /* CANTX */ |
| 820 | at91_set_A_periph(AT91_PIN_PA14, 0); /* CANRX */ |
| 821 | at91sam9263_can_device.dev.platform_data = data; |
| 822 | |
| 823 | platform_device_register(&at91sam9263_can_device); |
| 824 | } |
| 825 | #else |
| 826 | void __init at91_add_device_can(struct at91_can_data *data) {} |
| 827 | #endif |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 828 | |
| 829 | /* -------------------------------------------------------------------- |
| 830 | * LCD Controller |
| 831 | * -------------------------------------------------------------------- */ |
| 832 | |
| 833 | #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE) |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 834 | static u64 lcdc_dmamask = DMA_BIT_MASK(32); |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 835 | static struct atmel_lcdfb_info lcdc_data; |
| 836 | |
| 837 | static struct resource lcdc_resources[] = { |
| 838 | [0] = { |
| 839 | .start = AT91SAM9263_LCDC_BASE, |
| 840 | .end = AT91SAM9263_LCDC_BASE + SZ_4K - 1, |
| 841 | .flags = IORESOURCE_MEM, |
| 842 | }, |
| 843 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 844 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_LCDC, |
| 845 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_LCDC, |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 846 | .flags = IORESOURCE_IRQ, |
| 847 | }, |
| 848 | }; |
| 849 | |
| 850 | static struct platform_device at91_lcdc_device = { |
| 851 | .name = "atmel_lcdfb", |
| 852 | .id = 0, |
| 853 | .dev = { |
| 854 | .dma_mask = &lcdc_dmamask, |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 855 | .coherent_dma_mask = DMA_BIT_MASK(32), |
Andrew Victor | 7776a94 | 2007-05-02 17:46:49 +0100 | [diff] [blame] | 856 | .platform_data = &lcdc_data, |
| 857 | }, |
| 858 | .resource = lcdc_resources, |
| 859 | .num_resources = ARRAY_SIZE(lcdc_resources), |
| 860 | }; |
| 861 | |
| 862 | void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) |
| 863 | { |
| 864 | if (!data) |
| 865 | return; |
| 866 | |
| 867 | at91_set_A_periph(AT91_PIN_PC1, 0); /* LCDHSYNC */ |
| 868 | at91_set_A_periph(AT91_PIN_PC2, 0); /* LCDDOTCK */ |
| 869 | at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDDEN */ |
| 870 | at91_set_B_periph(AT91_PIN_PB9, 0); /* LCDCC */ |
| 871 | at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDD2 */ |
| 872 | at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDD3 */ |
| 873 | at91_set_A_periph(AT91_PIN_PC8, 0); /* LCDD4 */ |
| 874 | at91_set_A_periph(AT91_PIN_PC9, 0); /* LCDD5 */ |
| 875 | at91_set_A_periph(AT91_PIN_PC10, 0); /* LCDD6 */ |
| 876 | at91_set_A_periph(AT91_PIN_PC11, 0); /* LCDD7 */ |
| 877 | at91_set_A_periph(AT91_PIN_PC14, 0); /* LCDD10 */ |
| 878 | at91_set_A_periph(AT91_PIN_PC15, 0); /* LCDD11 */ |
| 879 | at91_set_A_periph(AT91_PIN_PC16, 0); /* LCDD12 */ |
| 880 | at91_set_B_periph(AT91_PIN_PC12, 0); /* LCDD13 */ |
| 881 | at91_set_A_periph(AT91_PIN_PC18, 0); /* LCDD14 */ |
| 882 | at91_set_A_periph(AT91_PIN_PC19, 0); /* LCDD15 */ |
| 883 | at91_set_A_periph(AT91_PIN_PC22, 0); /* LCDD18 */ |
| 884 | at91_set_A_periph(AT91_PIN_PC23, 0); /* LCDD19 */ |
| 885 | at91_set_A_periph(AT91_PIN_PC24, 0); /* LCDD20 */ |
| 886 | at91_set_B_periph(AT91_PIN_PC17, 0); /* LCDD21 */ |
| 887 | at91_set_A_periph(AT91_PIN_PC26, 0); /* LCDD22 */ |
| 888 | at91_set_A_periph(AT91_PIN_PC27, 0); /* LCDD23 */ |
| 889 | |
| 890 | lcdc_data = *data; |
| 891 | platform_device_register(&at91_lcdc_device); |
| 892 | } |
| 893 | #else |
| 894 | void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) {} |
| 895 | #endif |
| 896 | |
| 897 | |
| 898 | /* -------------------------------------------------------------------- |
Andrew Victor | e292080 | 2008-01-22 11:43:26 +0100 | [diff] [blame] | 899 | * Image Sensor Interface |
| 900 | * -------------------------------------------------------------------- */ |
| 901 | |
| 902 | #if defined(CONFIG_VIDEO_AT91_ISI) || defined(CONFIG_VIDEO_AT91_ISI_MODULE) |
| 903 | |
| 904 | struct resource isi_resources[] = { |
| 905 | [0] = { |
| 906 | .start = AT91SAM9263_BASE_ISI, |
| 907 | .end = AT91SAM9263_BASE_ISI + SZ_16K - 1, |
| 908 | .flags = IORESOURCE_MEM, |
| 909 | }, |
| 910 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 911 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_ISI, |
| 912 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_ISI, |
Andrew Victor | e292080 | 2008-01-22 11:43:26 +0100 | [diff] [blame] | 913 | .flags = IORESOURCE_IRQ, |
| 914 | }, |
| 915 | }; |
| 916 | |
| 917 | static struct platform_device at91sam9263_isi_device = { |
| 918 | .name = "at91_isi", |
| 919 | .id = -1, |
| 920 | .resource = isi_resources, |
| 921 | .num_resources = ARRAY_SIZE(isi_resources), |
| 922 | }; |
| 923 | |
Josh Wu | 45bb9e6 | 2011-10-22 15:17:39 +0800 | [diff] [blame] | 924 | void __init at91_add_device_isi(struct isi_platform_data *data, |
| 925 | bool use_pck_as_mck) |
Andrew Victor | e292080 | 2008-01-22 11:43:26 +0100 | [diff] [blame] | 926 | { |
| 927 | at91_set_A_periph(AT91_PIN_PE0, 0); /* ISI_D0 */ |
| 928 | at91_set_A_periph(AT91_PIN_PE1, 0); /* ISI_D1 */ |
| 929 | at91_set_A_periph(AT91_PIN_PE2, 0); /* ISI_D2 */ |
| 930 | at91_set_A_periph(AT91_PIN_PE3, 0); /* ISI_D3 */ |
| 931 | at91_set_A_periph(AT91_PIN_PE4, 0); /* ISI_D4 */ |
| 932 | at91_set_A_periph(AT91_PIN_PE5, 0); /* ISI_D5 */ |
| 933 | at91_set_A_periph(AT91_PIN_PE6, 0); /* ISI_D6 */ |
| 934 | at91_set_A_periph(AT91_PIN_PE7, 0); /* ISI_D7 */ |
| 935 | at91_set_A_periph(AT91_PIN_PE8, 0); /* ISI_PCK */ |
| 936 | at91_set_A_periph(AT91_PIN_PE9, 0); /* ISI_HSYNC */ |
| 937 | at91_set_A_periph(AT91_PIN_PE10, 0); /* ISI_VSYNC */ |
Andrew Victor | e292080 | 2008-01-22 11:43:26 +0100 | [diff] [blame] | 938 | at91_set_B_periph(AT91_PIN_PE12, 0); /* ISI_PD8 */ |
| 939 | at91_set_B_periph(AT91_PIN_PE13, 0); /* ISI_PD9 */ |
| 940 | at91_set_B_periph(AT91_PIN_PE14, 0); /* ISI_PD10 */ |
| 941 | at91_set_B_periph(AT91_PIN_PE15, 0); /* ISI_PD11 */ |
Josh Wu | 45bb9e6 | 2011-10-22 15:17:39 +0800 | [diff] [blame] | 942 | |
| 943 | if (use_pck_as_mck) { |
| 944 | at91_set_B_periph(AT91_PIN_PE11, 0); /* ISI_MCK (PCK3) */ |
| 945 | |
| 946 | /* TODO: register the PCK for ISI_MCK and set its parent */ |
| 947 | } |
Andrew Victor | e292080 | 2008-01-22 11:43:26 +0100 | [diff] [blame] | 948 | } |
| 949 | #else |
Josh Wu | 45bb9e6 | 2011-10-22 15:17:39 +0800 | [diff] [blame] | 950 | void __init at91_add_device_isi(struct isi_platform_data *data, |
| 951 | bool use_pck_as_mck) {} |
Andrew Victor | e292080 | 2008-01-22 11:43:26 +0100 | [diff] [blame] | 952 | #endif |
| 953 | |
| 954 | |
| 955 | /* -------------------------------------------------------------------- |
Andrew Victor | e5f40bf | 2008-04-02 21:58:00 +0100 | [diff] [blame] | 956 | * Timer/Counter block |
| 957 | * -------------------------------------------------------------------- */ |
| 958 | |
| 959 | #ifdef CONFIG_ATMEL_TCLIB |
| 960 | |
| 961 | static struct resource tcb_resources[] = { |
| 962 | [0] = { |
| 963 | .start = AT91SAM9263_BASE_TCB0, |
| 964 | .end = AT91SAM9263_BASE_TCB0 + SZ_16K - 1, |
| 965 | .flags = IORESOURCE_MEM, |
| 966 | }, |
| 967 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 968 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_TCB, |
| 969 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_TCB, |
Andrew Victor | e5f40bf | 2008-04-02 21:58:00 +0100 | [diff] [blame] | 970 | .flags = IORESOURCE_IRQ, |
| 971 | }, |
| 972 | }; |
| 973 | |
| 974 | static struct platform_device at91sam9263_tcb_device = { |
| 975 | .name = "atmel_tcb", |
| 976 | .id = 0, |
| 977 | .resource = tcb_resources, |
| 978 | .num_resources = ARRAY_SIZE(tcb_resources), |
| 979 | }; |
| 980 | |
Jean-Christophe PLAGNIOL-VILLARD | 4abb367 | 2012-02-26 19:12:43 +0800 | [diff] [blame] | 981 | #if defined(CONFIG_OF) |
| 982 | static struct of_device_id tcb_ids[] = { |
| 983 | { .compatible = "atmel,at91rm9200-tcb" }, |
| 984 | { /*sentinel*/ } |
| 985 | }; |
| 986 | #endif |
| 987 | |
Andrew Victor | e5f40bf | 2008-04-02 21:58:00 +0100 | [diff] [blame] | 988 | static void __init at91_add_device_tc(void) |
| 989 | { |
Jean-Christophe PLAGNIOL-VILLARD | 4abb367 | 2012-02-26 19:12:43 +0800 | [diff] [blame] | 990 | #if defined(CONFIG_OF) |
| 991 | struct device_node *np; |
| 992 | |
| 993 | np = of_find_matching_node(NULL, tcb_ids); |
| 994 | if (np) { |
| 995 | of_node_put(np); |
| 996 | return; |
| 997 | } |
| 998 | #endif |
| 999 | |
Andrew Victor | e5f40bf | 2008-04-02 21:58:00 +0100 | [diff] [blame] | 1000 | platform_device_register(&at91sam9263_tcb_device); |
| 1001 | } |
| 1002 | #else |
| 1003 | static void __init at91_add_device_tc(void) { } |
| 1004 | #endif |
| 1005 | |
| 1006 | |
| 1007 | /* -------------------------------------------------------------------- |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1008 | * RTT |
| 1009 | * -------------------------------------------------------------------- */ |
| 1010 | |
| 1011 | static struct resource rtt0_resources[] = { |
| 1012 | { |
Jean-Christophe PLAGNIOL-VILLARD | eab5fd6 | 2011-09-18 10:12:00 +0800 | [diff] [blame] | 1013 | .start = AT91SAM9263_BASE_RTT0, |
| 1014 | .end = AT91SAM9263_BASE_RTT0 + SZ_16 - 1, |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1015 | .flags = IORESOURCE_MEM, |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1016 | }, { |
| 1017 | .flags = IORESOURCE_MEM, |
Ludovic Desroches | e402af6 | 2012-08-14 11:19:22 +0200 | [diff] [blame] | 1018 | }, { |
| 1019 | .flags = IORESOURCE_IRQ, |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1020 | } |
| 1021 | }; |
| 1022 | |
| 1023 | static struct platform_device at91sam9263_rtt0_device = { |
| 1024 | .name = "at91_rtt", |
| 1025 | .id = 0, |
| 1026 | .resource = rtt0_resources, |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1027 | }; |
| 1028 | |
| 1029 | static struct resource rtt1_resources[] = { |
| 1030 | { |
Jean-Christophe PLAGNIOL-VILLARD | eab5fd6 | 2011-09-18 10:12:00 +0800 | [diff] [blame] | 1031 | .start = AT91SAM9263_BASE_RTT1, |
| 1032 | .end = AT91SAM9263_BASE_RTT1 + SZ_16 - 1, |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1033 | .flags = IORESOURCE_MEM, |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1034 | }, { |
| 1035 | .flags = IORESOURCE_MEM, |
Ludovic Desroches | e402af6 | 2012-08-14 11:19:22 +0200 | [diff] [blame] | 1036 | }, { |
| 1037 | .flags = IORESOURCE_IRQ, |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1038 | } |
| 1039 | }; |
| 1040 | |
| 1041 | static struct platform_device at91sam9263_rtt1_device = { |
| 1042 | .name = "at91_rtt", |
| 1043 | .id = 1, |
| 1044 | .resource = rtt1_resources, |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1045 | }; |
| 1046 | |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1047 | #if IS_ENABLED(CONFIG_RTC_DRV_AT91SAM9) |
| 1048 | static void __init at91_add_device_rtt_rtc(void) |
| 1049 | { |
| 1050 | struct platform_device *pdev; |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1051 | struct resource *r; |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1052 | |
| 1053 | switch (CONFIG_RTC_DRV_AT91SAM9_RTT) { |
| 1054 | case 0: |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1055 | /* |
| 1056 | * The second resource is needed only for the chosen RTT: |
| 1057 | * GPBR will serve as the storage for RTC time offset |
| 1058 | */ |
Ludovic Desroches | e402af6 | 2012-08-14 11:19:22 +0200 | [diff] [blame] | 1059 | at91sam9263_rtt0_device.num_resources = 3; |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1060 | at91sam9263_rtt1_device.num_resources = 1; |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1061 | pdev = &at91sam9263_rtt0_device; |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1062 | r = rtt0_resources; |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1063 | break; |
| 1064 | case 1: |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1065 | at91sam9263_rtt0_device.num_resources = 1; |
Ludovic Desroches | e402af6 | 2012-08-14 11:19:22 +0200 | [diff] [blame] | 1066 | at91sam9263_rtt1_device.num_resources = 3; |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1067 | pdev = &at91sam9263_rtt1_device; |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1068 | r = rtt1_resources; |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1069 | break; |
| 1070 | default: |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1071 | pr_err("at91sam9263: only supports 2 RTT (%d)\n", |
| 1072 | CONFIG_RTC_DRV_AT91SAM9_RTT); |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1073 | return; |
| 1074 | } |
| 1075 | |
| 1076 | pdev->name = "rtc-at91sam9"; |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1077 | r[1].start = AT91SAM9263_BASE_GPBR + 4 * CONFIG_RTC_DRV_AT91SAM9_GPBR; |
| 1078 | r[1].end = r[1].start + 3; |
Ludovic Desroches | e402af6 | 2012-08-14 11:19:22 +0200 | [diff] [blame] | 1079 | r[2].start = NR_IRQS_LEGACY + AT91_ID_SYS; |
| 1080 | r[2].end = NR_IRQS_LEGACY + AT91_ID_SYS; |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1081 | } |
| 1082 | #else |
Jean-Christophe PLAGNIOL-VILLARD | b3af8b4 | 2012-02-15 21:24:46 +0800 | [diff] [blame] | 1083 | static void __init at91_add_device_rtt_rtc(void) |
| 1084 | { |
| 1085 | /* Only one resource is needed: RTT not used as RTC */ |
| 1086 | at91sam9263_rtt0_device.num_resources = 1; |
| 1087 | at91sam9263_rtt1_device.num_resources = 1; |
| 1088 | } |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1089 | #endif |
| 1090 | |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1091 | static void __init at91_add_device_rtt(void) |
| 1092 | { |
Jean-Christophe PLAGNIOL-VILLARD | 205056a | 2012-02-15 20:51:37 +0800 | [diff] [blame] | 1093 | at91_add_device_rtt_rtc(); |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1094 | platform_device_register(&at91sam9263_rtt0_device); |
| 1095 | platform_device_register(&at91sam9263_rtt1_device); |
| 1096 | } |
| 1097 | |
| 1098 | |
| 1099 | /* -------------------------------------------------------------------- |
| 1100 | * Watchdog |
| 1101 | * -------------------------------------------------------------------- */ |
| 1102 | |
Andrew Victor | 2af29b7 | 2009-02-11 21:23:10 +0100 | [diff] [blame] | 1103 | #if defined(CONFIG_AT91SAM9X_WATCHDOG) || defined(CONFIG_AT91SAM9X_WATCHDOG_MODULE) |
Jean-Christophe PLAGNIOL-VILLARD | c1c30a2 | 2011-11-02 01:43:31 +0800 | [diff] [blame] | 1104 | static struct resource wdt_resources[] = { |
| 1105 | { |
| 1106 | .start = AT91SAM9263_BASE_WDT, |
| 1107 | .end = AT91SAM9263_BASE_WDT + SZ_16 - 1, |
| 1108 | .flags = IORESOURCE_MEM, |
| 1109 | } |
| 1110 | }; |
| 1111 | |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1112 | static struct platform_device at91sam9263_wdt_device = { |
| 1113 | .name = "at91_wdt", |
| 1114 | .id = -1, |
Jean-Christophe PLAGNIOL-VILLARD | c1c30a2 | 2011-11-02 01:43:31 +0800 | [diff] [blame] | 1115 | .resource = wdt_resources, |
| 1116 | .num_resources = ARRAY_SIZE(wdt_resources), |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1117 | }; |
| 1118 | |
| 1119 | static void __init at91_add_device_watchdog(void) |
| 1120 | { |
| 1121 | platform_device_register(&at91sam9263_wdt_device); |
| 1122 | } |
| 1123 | #else |
| 1124 | static void __init at91_add_device_watchdog(void) {} |
| 1125 | #endif |
| 1126 | |
| 1127 | |
| 1128 | /* -------------------------------------------------------------------- |
Andrew Victor | bb1ad68 | 2008-09-18 19:42:37 +0100 | [diff] [blame] | 1129 | * PWM |
| 1130 | * --------------------------------------------------------------------*/ |
| 1131 | |
| 1132 | #if defined(CONFIG_ATMEL_PWM) |
| 1133 | static u32 pwm_mask; |
| 1134 | |
| 1135 | static struct resource pwm_resources[] = { |
| 1136 | [0] = { |
| 1137 | .start = AT91SAM9263_BASE_PWMC, |
| 1138 | .end = AT91SAM9263_BASE_PWMC + SZ_16K - 1, |
| 1139 | .flags = IORESOURCE_MEM, |
| 1140 | }, |
| 1141 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 1142 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_PWMC, |
| 1143 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_PWMC, |
Andrew Victor | bb1ad68 | 2008-09-18 19:42:37 +0100 | [diff] [blame] | 1144 | .flags = IORESOURCE_IRQ, |
| 1145 | }, |
| 1146 | }; |
| 1147 | |
| 1148 | static struct platform_device at91sam9263_pwm0_device = { |
| 1149 | .name = "atmel_pwm", |
| 1150 | .id = -1, |
| 1151 | .dev = { |
| 1152 | .platform_data = &pwm_mask, |
| 1153 | }, |
| 1154 | .resource = pwm_resources, |
| 1155 | .num_resources = ARRAY_SIZE(pwm_resources), |
| 1156 | }; |
| 1157 | |
| 1158 | void __init at91_add_device_pwm(u32 mask) |
| 1159 | { |
| 1160 | if (mask & (1 << AT91_PWM0)) |
| 1161 | at91_set_B_periph(AT91_PIN_PB7, 1); /* enable PWM0 */ |
| 1162 | |
| 1163 | if (mask & (1 << AT91_PWM1)) |
| 1164 | at91_set_B_periph(AT91_PIN_PB8, 1); /* enable PWM1 */ |
| 1165 | |
| 1166 | if (mask & (1 << AT91_PWM2)) |
| 1167 | at91_set_B_periph(AT91_PIN_PC29, 1); /* enable PWM2 */ |
| 1168 | |
| 1169 | if (mask & (1 << AT91_PWM3)) |
| 1170 | at91_set_B_periph(AT91_PIN_PB29, 1); /* enable PWM3 */ |
| 1171 | |
| 1172 | pwm_mask = mask; |
| 1173 | |
| 1174 | platform_device_register(&at91sam9263_pwm0_device); |
| 1175 | } |
| 1176 | #else |
| 1177 | void __init at91_add_device_pwm(u32 mask) {} |
| 1178 | #endif |
| 1179 | |
| 1180 | |
| 1181 | /* -------------------------------------------------------------------- |
Andrew Victor | bfbc326 | 2008-01-23 09:18:06 +0100 | [diff] [blame] | 1182 | * SSC -- Synchronous Serial Controller |
| 1183 | * -------------------------------------------------------------------- */ |
| 1184 | |
| 1185 | #if defined(CONFIG_ATMEL_SSC) || defined(CONFIG_ATMEL_SSC_MODULE) |
| 1186 | static u64 ssc0_dmamask = DMA_BIT_MASK(32); |
| 1187 | |
| 1188 | static struct resource ssc0_resources[] = { |
| 1189 | [0] = { |
| 1190 | .start = AT91SAM9263_BASE_SSC0, |
| 1191 | .end = AT91SAM9263_BASE_SSC0 + SZ_16K - 1, |
| 1192 | .flags = IORESOURCE_MEM, |
| 1193 | }, |
| 1194 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 1195 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_SSC0, |
| 1196 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_SSC0, |
Andrew Victor | bfbc326 | 2008-01-23 09:18:06 +0100 | [diff] [blame] | 1197 | .flags = IORESOURCE_IRQ, |
| 1198 | }, |
| 1199 | }; |
| 1200 | |
| 1201 | static struct platform_device at91sam9263_ssc0_device = { |
| 1202 | .name = "ssc", |
| 1203 | .id = 0, |
| 1204 | .dev = { |
| 1205 | .dma_mask = &ssc0_dmamask, |
| 1206 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 1207 | }, |
| 1208 | .resource = ssc0_resources, |
| 1209 | .num_resources = ARRAY_SIZE(ssc0_resources), |
| 1210 | }; |
| 1211 | |
| 1212 | static inline void configure_ssc0_pins(unsigned pins) |
| 1213 | { |
| 1214 | if (pins & ATMEL_SSC_TF) |
| 1215 | at91_set_B_periph(AT91_PIN_PB0, 1); |
| 1216 | if (pins & ATMEL_SSC_TK) |
| 1217 | at91_set_B_periph(AT91_PIN_PB1, 1); |
| 1218 | if (pins & ATMEL_SSC_TD) |
| 1219 | at91_set_B_periph(AT91_PIN_PB2, 1); |
| 1220 | if (pins & ATMEL_SSC_RD) |
| 1221 | at91_set_B_periph(AT91_PIN_PB3, 1); |
| 1222 | if (pins & ATMEL_SSC_RK) |
| 1223 | at91_set_B_periph(AT91_PIN_PB4, 1); |
| 1224 | if (pins & ATMEL_SSC_RF) |
| 1225 | at91_set_B_periph(AT91_PIN_PB5, 1); |
| 1226 | } |
| 1227 | |
| 1228 | static u64 ssc1_dmamask = DMA_BIT_MASK(32); |
| 1229 | |
| 1230 | static struct resource ssc1_resources[] = { |
| 1231 | [0] = { |
| 1232 | .start = AT91SAM9263_BASE_SSC1, |
| 1233 | .end = AT91SAM9263_BASE_SSC1 + SZ_16K - 1, |
| 1234 | .flags = IORESOURCE_MEM, |
| 1235 | }, |
| 1236 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 1237 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_SSC1, |
| 1238 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_SSC1, |
Andrew Victor | bfbc326 | 2008-01-23 09:18:06 +0100 | [diff] [blame] | 1239 | .flags = IORESOURCE_IRQ, |
| 1240 | }, |
| 1241 | }; |
| 1242 | |
| 1243 | static struct platform_device at91sam9263_ssc1_device = { |
| 1244 | .name = "ssc", |
| 1245 | .id = 1, |
| 1246 | .dev = { |
| 1247 | .dma_mask = &ssc1_dmamask, |
| 1248 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 1249 | }, |
| 1250 | .resource = ssc1_resources, |
| 1251 | .num_resources = ARRAY_SIZE(ssc1_resources), |
| 1252 | }; |
| 1253 | |
| 1254 | static inline void configure_ssc1_pins(unsigned pins) |
| 1255 | { |
| 1256 | if (pins & ATMEL_SSC_TF) |
| 1257 | at91_set_A_periph(AT91_PIN_PB6, 1); |
| 1258 | if (pins & ATMEL_SSC_TK) |
| 1259 | at91_set_A_periph(AT91_PIN_PB7, 1); |
| 1260 | if (pins & ATMEL_SSC_TD) |
| 1261 | at91_set_A_periph(AT91_PIN_PB8, 1); |
| 1262 | if (pins & ATMEL_SSC_RD) |
| 1263 | at91_set_A_periph(AT91_PIN_PB9, 1); |
| 1264 | if (pins & ATMEL_SSC_RK) |
| 1265 | at91_set_A_periph(AT91_PIN_PB10, 1); |
| 1266 | if (pins & ATMEL_SSC_RF) |
| 1267 | at91_set_A_periph(AT91_PIN_PB11, 1); |
| 1268 | } |
| 1269 | |
| 1270 | /* |
Andrew Victor | bfbc326 | 2008-01-23 09:18:06 +0100 | [diff] [blame] | 1271 | * SSC controllers are accessed through library code, instead of any |
| 1272 | * kind of all-singing/all-dancing driver. For example one could be |
| 1273 | * used by a particular I2S audio codec's driver, while another one |
| 1274 | * on the same system might be used by a custom data capture driver. |
| 1275 | */ |
| 1276 | void __init at91_add_device_ssc(unsigned id, unsigned pins) |
| 1277 | { |
| 1278 | struct platform_device *pdev; |
| 1279 | |
| 1280 | /* |
| 1281 | * NOTE: caller is responsible for passing information matching |
| 1282 | * "pins" to whatever will be using each particular controller. |
| 1283 | */ |
| 1284 | switch (id) { |
| 1285 | case AT91SAM9263_ID_SSC0: |
| 1286 | pdev = &at91sam9263_ssc0_device; |
| 1287 | configure_ssc0_pins(pins); |
Andrew Victor | bfbc326 | 2008-01-23 09:18:06 +0100 | [diff] [blame] | 1288 | break; |
| 1289 | case AT91SAM9263_ID_SSC1: |
| 1290 | pdev = &at91sam9263_ssc1_device; |
| 1291 | configure_ssc1_pins(pins); |
Andrew Victor | bfbc326 | 2008-01-23 09:18:06 +0100 | [diff] [blame] | 1292 | break; |
| 1293 | default: |
| 1294 | return; |
| 1295 | } |
| 1296 | |
| 1297 | platform_device_register(pdev); |
| 1298 | } |
| 1299 | |
| 1300 | #else |
| 1301 | void __init at91_add_device_ssc(unsigned id, unsigned pins) {} |
| 1302 | #endif |
| 1303 | |
| 1304 | |
| 1305 | /* -------------------------------------------------------------------- |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1306 | * UART |
| 1307 | * -------------------------------------------------------------------- */ |
| 1308 | |
| 1309 | #if defined(CONFIG_SERIAL_ATMEL) |
| 1310 | |
| 1311 | static struct resource dbgu_resources[] = { |
| 1312 | [0] = { |
Jean-Christophe PLAGNIOL-VILLARD | 13079a7 | 2011-11-02 01:43:31 +0800 | [diff] [blame] | 1313 | .start = AT91SAM9263_BASE_DBGU, |
| 1314 | .end = AT91SAM9263_BASE_DBGU + SZ_512 - 1, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1315 | .flags = IORESOURCE_MEM, |
| 1316 | }, |
| 1317 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 1318 | .start = NR_IRQS_LEGACY + AT91_ID_SYS, |
| 1319 | .end = NR_IRQS_LEGACY + AT91_ID_SYS, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1320 | .flags = IORESOURCE_IRQ, |
| 1321 | }, |
| 1322 | }; |
| 1323 | |
| 1324 | static struct atmel_uart_data dbgu_data = { |
| 1325 | .use_dma_tx = 0, |
| 1326 | .use_dma_rx = 0, /* DBGU not capable of receive DMA */ |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1327 | }; |
| 1328 | |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1329 | static u64 dbgu_dmamask = DMA_BIT_MASK(32); |
| 1330 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1331 | static struct platform_device at91sam9263_dbgu_device = { |
| 1332 | .name = "atmel_usart", |
| 1333 | .id = 0, |
| 1334 | .dev = { |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1335 | .dma_mask = &dbgu_dmamask, |
| 1336 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 1337 | .platform_data = &dbgu_data, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1338 | }, |
| 1339 | .resource = dbgu_resources, |
| 1340 | .num_resources = ARRAY_SIZE(dbgu_resources), |
| 1341 | }; |
| 1342 | |
| 1343 | static inline void configure_dbgu_pins(void) |
| 1344 | { |
| 1345 | at91_set_A_periph(AT91_PIN_PC30, 0); /* DRXD */ |
| 1346 | at91_set_A_periph(AT91_PIN_PC31, 1); /* DTXD */ |
| 1347 | } |
| 1348 | |
| 1349 | static struct resource uart0_resources[] = { |
| 1350 | [0] = { |
| 1351 | .start = AT91SAM9263_BASE_US0, |
| 1352 | .end = AT91SAM9263_BASE_US0 + SZ_16K - 1, |
| 1353 | .flags = IORESOURCE_MEM, |
| 1354 | }, |
| 1355 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 1356 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_US0, |
| 1357 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_US0, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1358 | .flags = IORESOURCE_IRQ, |
| 1359 | }, |
| 1360 | }; |
| 1361 | |
| 1362 | static struct atmel_uart_data uart0_data = { |
| 1363 | .use_dma_tx = 1, |
| 1364 | .use_dma_rx = 1, |
| 1365 | }; |
| 1366 | |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1367 | static u64 uart0_dmamask = DMA_BIT_MASK(32); |
| 1368 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1369 | static struct platform_device at91sam9263_uart0_device = { |
| 1370 | .name = "atmel_usart", |
| 1371 | .id = 1, |
| 1372 | .dev = { |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1373 | .dma_mask = &uart0_dmamask, |
| 1374 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 1375 | .platform_data = &uart0_data, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1376 | }, |
| 1377 | .resource = uart0_resources, |
| 1378 | .num_resources = ARRAY_SIZE(uart0_resources), |
| 1379 | }; |
| 1380 | |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1381 | static inline void configure_usart0_pins(unsigned pins) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1382 | { |
| 1383 | at91_set_A_periph(AT91_PIN_PA26, 1); /* TXD0 */ |
| 1384 | at91_set_A_periph(AT91_PIN_PA27, 0); /* RXD0 */ |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1385 | |
| 1386 | if (pins & ATMEL_UART_RTS) |
| 1387 | at91_set_A_periph(AT91_PIN_PA28, 0); /* RTS0 */ |
| 1388 | if (pins & ATMEL_UART_CTS) |
| 1389 | at91_set_A_periph(AT91_PIN_PA29, 0); /* CTS0 */ |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1390 | } |
| 1391 | |
| 1392 | static struct resource uart1_resources[] = { |
| 1393 | [0] = { |
| 1394 | .start = AT91SAM9263_BASE_US1, |
| 1395 | .end = AT91SAM9263_BASE_US1 + SZ_16K - 1, |
| 1396 | .flags = IORESOURCE_MEM, |
| 1397 | }, |
| 1398 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 1399 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_US1, |
| 1400 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_US1, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1401 | .flags = IORESOURCE_IRQ, |
| 1402 | }, |
| 1403 | }; |
| 1404 | |
| 1405 | static struct atmel_uart_data uart1_data = { |
| 1406 | .use_dma_tx = 1, |
| 1407 | .use_dma_rx = 1, |
| 1408 | }; |
| 1409 | |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1410 | static u64 uart1_dmamask = DMA_BIT_MASK(32); |
| 1411 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1412 | static struct platform_device at91sam9263_uart1_device = { |
| 1413 | .name = "atmel_usart", |
| 1414 | .id = 2, |
| 1415 | .dev = { |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1416 | .dma_mask = &uart1_dmamask, |
| 1417 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 1418 | .platform_data = &uart1_data, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1419 | }, |
| 1420 | .resource = uart1_resources, |
| 1421 | .num_resources = ARRAY_SIZE(uart1_resources), |
| 1422 | }; |
| 1423 | |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1424 | static inline void configure_usart1_pins(unsigned pins) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1425 | { |
| 1426 | at91_set_A_periph(AT91_PIN_PD0, 1); /* TXD1 */ |
| 1427 | at91_set_A_periph(AT91_PIN_PD1, 0); /* RXD1 */ |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1428 | |
| 1429 | if (pins & ATMEL_UART_RTS) |
| 1430 | at91_set_B_periph(AT91_PIN_PD7, 0); /* RTS1 */ |
| 1431 | if (pins & ATMEL_UART_CTS) |
| 1432 | at91_set_B_periph(AT91_PIN_PD8, 0); /* CTS1 */ |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1433 | } |
| 1434 | |
| 1435 | static struct resource uart2_resources[] = { |
| 1436 | [0] = { |
| 1437 | .start = AT91SAM9263_BASE_US2, |
| 1438 | .end = AT91SAM9263_BASE_US2 + SZ_16K - 1, |
| 1439 | .flags = IORESOURCE_MEM, |
| 1440 | }, |
| 1441 | [1] = { |
Ludovic Desroches | 8fe82a5 | 2012-06-21 14:47:27 +0200 | [diff] [blame] | 1442 | .start = NR_IRQS_LEGACY + AT91SAM9263_ID_US2, |
| 1443 | .end = NR_IRQS_LEGACY + AT91SAM9263_ID_US2, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1444 | .flags = IORESOURCE_IRQ, |
| 1445 | }, |
| 1446 | }; |
| 1447 | |
| 1448 | static struct atmel_uart_data uart2_data = { |
| 1449 | .use_dma_tx = 1, |
| 1450 | .use_dma_rx = 1, |
| 1451 | }; |
| 1452 | |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1453 | static u64 uart2_dmamask = DMA_BIT_MASK(32); |
| 1454 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1455 | static struct platform_device at91sam9263_uart2_device = { |
| 1456 | .name = "atmel_usart", |
| 1457 | .id = 3, |
| 1458 | .dev = { |
Andrew Victor | c6686ff | 2008-01-23 09:13:53 +0100 | [diff] [blame] | 1459 | .dma_mask = &uart2_dmamask, |
| 1460 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 1461 | .platform_data = &uart2_data, |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1462 | }, |
| 1463 | .resource = uart2_resources, |
| 1464 | .num_resources = ARRAY_SIZE(uart2_resources), |
| 1465 | }; |
| 1466 | |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1467 | static inline void configure_usart2_pins(unsigned pins) |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1468 | { |
| 1469 | at91_set_A_periph(AT91_PIN_PD2, 1); /* TXD2 */ |
| 1470 | at91_set_A_periph(AT91_PIN_PD3, 0); /* RXD2 */ |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1471 | |
| 1472 | if (pins & ATMEL_UART_RTS) |
| 1473 | at91_set_B_periph(AT91_PIN_PD5, 0); /* RTS2 */ |
| 1474 | if (pins & ATMEL_UART_CTS) |
| 1475 | at91_set_B_periph(AT91_PIN_PD6, 0); /* CTS2 */ |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1476 | } |
| 1477 | |
Andrew Victor | 11aadac | 2008-04-15 21:16:38 +0100 | [diff] [blame] | 1478 | static struct platform_device *__initdata at91_uarts[ATMEL_MAX_UART]; /* the UARTs to use */ |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1479 | |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1480 | void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins) |
| 1481 | { |
| 1482 | struct platform_device *pdev; |
Jean-Christophe PLAGNIOL-VILLARD | 2b348e2 | 2011-04-10 14:10:05 +0800 | [diff] [blame] | 1483 | struct atmel_uart_data *pdata; |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1484 | |
| 1485 | switch (id) { |
| 1486 | case 0: /* DBGU */ |
| 1487 | pdev = &at91sam9263_dbgu_device; |
| 1488 | configure_dbgu_pins(); |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1489 | break; |
| 1490 | case AT91SAM9263_ID_US0: |
| 1491 | pdev = &at91sam9263_uart0_device; |
| 1492 | configure_usart0_pins(pins); |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1493 | break; |
| 1494 | case AT91SAM9263_ID_US1: |
| 1495 | pdev = &at91sam9263_uart1_device; |
| 1496 | configure_usart1_pins(pins); |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1497 | break; |
| 1498 | case AT91SAM9263_ID_US2: |
| 1499 | pdev = &at91sam9263_uart2_device; |
| 1500 | configure_usart2_pins(pins); |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1501 | break; |
| 1502 | default: |
| 1503 | return; |
| 1504 | } |
Jean-Christophe PLAGNIOL-VILLARD | 2b348e2 | 2011-04-10 14:10:05 +0800 | [diff] [blame] | 1505 | pdata = pdev->dev.platform_data; |
| 1506 | pdata->num = portnr; /* update to mapped ID */ |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1507 | |
| 1508 | if (portnr < ATMEL_MAX_UART) |
| 1509 | at91_uarts[portnr] = pdev; |
| 1510 | } |
| 1511 | |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1512 | void __init at91_add_device_serial(void) |
| 1513 | { |
| 1514 | int i; |
| 1515 | |
| 1516 | for (i = 0; i < ATMEL_MAX_UART; i++) { |
| 1517 | if (at91_uarts[i]) |
| 1518 | platform_device_register(at91_uarts[i]); |
| 1519 | } |
| 1520 | } |
| 1521 | #else |
Andrew Victor | c8f385a | 2008-01-23 09:25:15 +0100 | [diff] [blame] | 1522 | void __init at91_register_uart(unsigned id, unsigned portnr, unsigned pins) {} |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1523 | void __init at91_add_device_serial(void) {} |
| 1524 | #endif |
| 1525 | |
| 1526 | |
| 1527 | /* -------------------------------------------------------------------- */ |
| 1528 | /* |
| 1529 | * These devices are always present and don't need any board-specific |
| 1530 | * setup. |
| 1531 | */ |
| 1532 | static int __init at91_add_standard_devices(void) |
| 1533 | { |
Jean-Christophe PLAGNIOL-VILLARD | 4abb367 | 2012-02-26 19:12:43 +0800 | [diff] [blame] | 1534 | if (of_have_populated_dt()) |
| 1535 | return 0; |
| 1536 | |
Andrew Victor | 884f5a6 | 2008-01-23 09:11:13 +0100 | [diff] [blame] | 1537 | at91_add_device_rtt(); |
| 1538 | at91_add_device_watchdog(); |
Andrew Victor | e5f40bf | 2008-04-02 21:58:00 +0100 | [diff] [blame] | 1539 | at91_add_device_tc(); |
Andrew Victor | b2c6561 | 2007-02-08 09:42:40 +0100 | [diff] [blame] | 1540 | return 0; |
| 1541 | } |
| 1542 | |
| 1543 | arch_initcall(at91_add_standard_devices); |