board-sam9g20ek.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. /*
  2. * Copyright (C) 2005 SAN People
  3. * Copyright (C) 2008 Atmel
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <linux/types.h>
  20. #include <linux/init.h>
  21. #include <linux/mm.h>
  22. #include <linux/module.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/spi/spi.h>
  25. #include <linux/spi/at73c213.h>
  26. #include <linux/gpio_keys.h>
  27. #include <linux/input.h>
  28. #include <linux/clk.h>
  29. #include <linux/regulator/machine.h>
  30. #include <linux/regulator/fixed.h>
  31. #include <linux/regulator/consumer.h>
  32. #include <mach/hardware.h>
  33. #include <asm/setup.h>
  34. #include <asm/mach-types.h>
  35. #include <asm/irq.h>
  36. #include <asm/mach/arch.h>
  37. #include <asm/mach/map.h>
  38. #include <asm/mach/irq.h>
  39. #include <mach/board.h>
  40. #include <mach/gpio.h>
  41. #include <mach/at91sam9_smc.h>
  42. #include "sam9_smc.h"
  43. #include "generic.h"
  44. /*
  45. * board revision encoding
  46. * bit 0:
  47. * 0 => 1 sd/mmc slot
  48. * 1 => 2 sd/mmc slots connectors (board from revision C)
  49. */
  50. #define HAVE_2MMC (1 << 0)
  51. static int inline ek_have_2mmc(void)
  52. {
  53. return machine_is_at91sam9g20ek_2mmc() || (system_rev & HAVE_2MMC);
  54. }
  55. static void __init ek_map_io(void)
  56. {
  57. /* Initialize processor: 18.432 MHz crystal */
  58. at91sam9260_initialize(18432000);
  59. /* DBGU on ttyS0. (Rx & Tx only) */
  60. at91_register_uart(0, 0, 0);
  61. /* USART0 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
  62. at91_register_uart(AT91SAM9260_ID_US0, 1, ATMEL_UART_CTS | ATMEL_UART_RTS
  63. | ATMEL_UART_DTR | ATMEL_UART_DSR | ATMEL_UART_DCD
  64. | ATMEL_UART_RI);
  65. /* USART1 on ttyS2. (Rx, Tx, RTS, CTS) */
  66. at91_register_uart(AT91SAM9260_ID_US1, 2, ATMEL_UART_CTS | ATMEL_UART_RTS);
  67. /* set serial console to ttyS0 (ie, DBGU) */
  68. at91_set_serial_console(0);
  69. }
  70. static void __init ek_init_irq(void)
  71. {
  72. at91sam9260_init_interrupts(NULL);
  73. }
  74. /*
  75. * USB Host port
  76. */
  77. static struct at91_usbh_data __initdata ek_usbh_data = {
  78. .ports = 2,
  79. };
  80. /*
  81. * USB Device port
  82. */
  83. static struct at91_udc_data __initdata ek_udc_data = {
  84. .vbus_pin = AT91_PIN_PC5,
  85. .pullup_pin = 0, /* pull-up driven by UDC */
  86. };
  87. /*
  88. * SPI devices.
  89. */
  90. static struct spi_board_info ek_spi_devices[] = {
  91. #if !(defined(CONFIG_MMC_ATMELMCI) || defined(CONFIG_MMC_AT91))
  92. { /* DataFlash chip */
  93. .modalias = "mtd_dataflash",
  94. .chip_select = 1,
  95. .max_speed_hz = 15 * 1000 * 1000,
  96. .bus_num = 0,
  97. },
  98. #if defined(CONFIG_MTD_AT91_DATAFLASH_CARD)
  99. { /* DataFlash card */
  100. .modalias = "mtd_dataflash",
  101. .chip_select = 0,
  102. .max_speed_hz = 15 * 1000 * 1000,
  103. .bus_num = 0,
  104. },
  105. #endif
  106. #endif
  107. };
  108. /*
  109. * MACB Ethernet device
  110. */
  111. static struct at91_eth_data __initdata ek_macb_data = {
  112. .phy_irq_pin = AT91_PIN_PA7,
  113. .is_rmii = 1,
  114. };
  115. static void __init ek_add_device_macb(void)
  116. {
  117. if (ek_have_2mmc())
  118. ek_macb_data.phy_irq_pin = AT91_PIN_PB0;
  119. at91_add_device_eth(&ek_macb_data);
  120. }
  121. /*
  122. * NAND flash
  123. */
  124. static struct mtd_partition __initdata ek_nand_partition[] = {
  125. {
  126. .name = "Bootstrap",
  127. .offset = 0,
  128. .size = 4 * SZ_1M,
  129. },
  130. {
  131. .name = "Partition 1",
  132. .offset = MTDPART_OFS_NXTBLK,
  133. .size = 60 * SZ_1M,
  134. },
  135. {
  136. .name = "Partition 2",
  137. .offset = MTDPART_OFS_NXTBLK,
  138. .size = MTDPART_SIZ_FULL,
  139. },
  140. };
  141. static struct mtd_partition * __init nand_partitions(int size, int *num_partitions)
  142. {
  143. *num_partitions = ARRAY_SIZE(ek_nand_partition);
  144. return ek_nand_partition;
  145. }
  146. /* det_pin is not connected */
  147. static struct atmel_nand_data __initdata ek_nand_data = {
  148. .ale = 21,
  149. .cle = 22,
  150. .rdy_pin = AT91_PIN_PC13,
  151. .enable_pin = AT91_PIN_PC14,
  152. .partition_info = nand_partitions,
  153. #if defined(CONFIG_MTD_NAND_ATMEL_BUSWIDTH_16)
  154. .bus_width_16 = 1,
  155. #else
  156. .bus_width_16 = 0,
  157. #endif
  158. };
  159. static struct sam9_smc_config __initdata ek_nand_smc_config = {
  160. .ncs_read_setup = 0,
  161. .nrd_setup = 2,
  162. .ncs_write_setup = 0,
  163. .nwe_setup = 2,
  164. .ncs_read_pulse = 4,
  165. .nrd_pulse = 4,
  166. .ncs_write_pulse = 4,
  167. .nwe_pulse = 4,
  168. .read_cycle = 7,
  169. .write_cycle = 7,
  170. .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
  171. .tdf_cycles = 3,
  172. };
  173. static void __init ek_add_device_nand(void)
  174. {
  175. /* setup bus-width (8 or 16) */
  176. if (ek_nand_data.bus_width_16)
  177. ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
  178. else
  179. ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
  180. /* configure chip-select 3 (NAND) */
  181. sam9_smc_configure(3, &ek_nand_smc_config);
  182. at91_add_device_nand(&ek_nand_data);
  183. }
  184. /*
  185. * MCI (SD/MMC)
  186. * wp_pin and vcc_pin are not connected
  187. */
  188. #if defined(CONFIG_MMC_ATMELMCI) || defined(CONFIG_MMC_ATMELMCI_MODULE)
  189. static struct mci_platform_data __initdata ek_mmc_data = {
  190. .slot[1] = {
  191. .bus_width = 4,
  192. .detect_pin = AT91_PIN_PC9,
  193. },
  194. };
  195. #else
  196. static struct at91_mmc_data __initdata ek_mmc_data = {
  197. .slot_b = 1, /* Only one slot so use slot B */
  198. .wire4 = 1,
  199. .det_pin = AT91_PIN_PC9,
  200. };
  201. #endif
  202. static void __init ek_add_device_mmc(void)
  203. {
  204. #if defined(CONFIG_MMC_ATMELMCI) || defined(CONFIG_MMC_ATMELMCI_MODULE)
  205. if (ek_have_2mmc()) {
  206. ek_mmc_data.slot[0].bus_width = 4;
  207. ek_mmc_data.slot[0].detect_pin = AT91_PIN_PC2;
  208. }
  209. at91_add_device_mci(0, &ek_mmc_data);
  210. #else
  211. at91_add_device_mmc(0, &ek_mmc_data);
  212. #endif
  213. }
  214. /*
  215. * LEDs
  216. */
  217. static struct gpio_led ek_leds[] = {
  218. { /* "bottom" led, green, userled1 to be defined */
  219. .name = "ds5",
  220. .gpio = AT91_PIN_PA6,
  221. .active_low = 1,
  222. .default_trigger = "none",
  223. },
  224. { /* "power" led, yellow */
  225. .name = "ds1",
  226. .gpio = AT91_PIN_PA9,
  227. .default_trigger = "heartbeat",
  228. }
  229. };
  230. static void __init ek_add_device_gpio_leds(void)
  231. {
  232. if (ek_have_2mmc()) {
  233. ek_leds[0].gpio = AT91_PIN_PB8;
  234. ek_leds[1].gpio = AT91_PIN_PB9;
  235. }
  236. at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
  237. }
  238. /*
  239. * GPIO Buttons
  240. */
  241. #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
  242. static struct gpio_keys_button ek_buttons[] = {
  243. {
  244. .gpio = AT91_PIN_PA30,
  245. .code = BTN_3,
  246. .desc = "Button 3",
  247. .active_low = 1,
  248. .wakeup = 1,
  249. },
  250. {
  251. .gpio = AT91_PIN_PA31,
  252. .code = BTN_4,
  253. .desc = "Button 4",
  254. .active_low = 1,
  255. .wakeup = 1,
  256. }
  257. };
  258. static struct gpio_keys_platform_data ek_button_data = {
  259. .buttons = ek_buttons,
  260. .nbuttons = ARRAY_SIZE(ek_buttons),
  261. };
  262. static struct platform_device ek_button_device = {
  263. .name = "gpio-keys",
  264. .id = -1,
  265. .num_resources = 0,
  266. .dev = {
  267. .platform_data = &ek_button_data,
  268. }
  269. };
  270. static void __init ek_add_device_buttons(void)
  271. {
  272. at91_set_gpio_input(AT91_PIN_PA30, 1); /* btn3 */
  273. at91_set_deglitch(AT91_PIN_PA30, 1);
  274. at91_set_gpio_input(AT91_PIN_PA31, 1); /* btn4 */
  275. at91_set_deglitch(AT91_PIN_PA31, 1);
  276. platform_device_register(&ek_button_device);
  277. }
  278. #else
  279. static void __init ek_add_device_buttons(void) {}
  280. #endif
  281. #if defined(CONFIG_REGULATOR_FIXED_VOLTAGE) || defined(CONFIG_REGULATOR_FIXED_VOLTAGE_MODULE)
  282. static struct regulator_consumer_supply ek_audio_consumer_supplies[] = {
  283. REGULATOR_SUPPLY("AVDD", "0-001b"),
  284. REGULATOR_SUPPLY("HPVDD", "0-001b"),
  285. REGULATOR_SUPPLY("DBVDD", "0-001b"),
  286. REGULATOR_SUPPLY("DCVDD", "0-001b"),
  287. };
  288. static struct regulator_init_data ek_avdd_reg_init_data = {
  289. .constraints = {
  290. .name = "3V3",
  291. .valid_ops_mask = REGULATOR_CHANGE_STATUS,
  292. },
  293. .consumer_supplies = ek_audio_consumer_supplies,
  294. .num_consumer_supplies = ARRAY_SIZE(ek_audio_consumer_supplies),
  295. };
  296. static struct fixed_voltage_config ek_vdd_pdata = {
  297. .supply_name = "board-3V3",
  298. .microvolts = 3300000,
  299. .gpio = -EINVAL,
  300. .enabled_at_boot = 0,
  301. .init_data = &ek_avdd_reg_init_data,
  302. };
  303. static struct platform_device ek_voltage_regulator = {
  304. .name = "reg-fixed-voltage",
  305. .id = -1,
  306. .num_resources = 0,
  307. .dev = {
  308. .platform_data = &ek_vdd_pdata,
  309. },
  310. };
  311. static void __init ek_add_regulators(void)
  312. {
  313. platform_device_register(&ek_voltage_regulator);
  314. }
  315. #else
  316. static void __init ek_add_regulators(void) {}
  317. #endif
  318. static struct i2c_board_info __initdata ek_i2c_devices[] = {
  319. {
  320. I2C_BOARD_INFO("24c512", 0x50)
  321. },
  322. {
  323. I2C_BOARD_INFO("wm8731", 0x1b)
  324. },
  325. };
  326. static void __init ek_board_init(void)
  327. {
  328. /* Serial */
  329. at91_add_device_serial();
  330. /* USB Host */
  331. at91_add_device_usbh(&ek_usbh_data);
  332. /* USB Device */
  333. at91_add_device_udc(&ek_udc_data);
  334. /* SPI */
  335. at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
  336. /* NAND */
  337. ek_add_device_nand();
  338. /* Ethernet */
  339. ek_add_device_macb();
  340. /* Regulators */
  341. ek_add_regulators();
  342. /* MMC */
  343. ek_add_device_mmc();
  344. /* I2C */
  345. at91_add_device_i2c(ek_i2c_devices, ARRAY_SIZE(ek_i2c_devices));
  346. /* LEDs */
  347. ek_add_device_gpio_leds();
  348. /* Push Buttons */
  349. ek_add_device_buttons();
  350. /* PCK0 provides MCLK to the WM8731 */
  351. at91_set_B_periph(AT91_PIN_PC1, 0);
  352. /* SSC (for WM8731) */
  353. at91_add_device_ssc(AT91SAM9260_ID_SSC, ATMEL_SSC_TX);
  354. }
  355. MACHINE_START(AT91SAM9G20EK, "Atmel AT91SAM9G20-EK")
  356. /* Maintainer: Atmel */
  357. .boot_params = AT91_SDRAM_BASE + 0x100,
  358. .timer = &at91sam926x_timer,
  359. .map_io = ek_map_io,
  360. .init_irq = ek_init_irq,
  361. .init_machine = ek_board_init,
  362. MACHINE_END
  363. MACHINE_START(AT91SAM9G20EK_2MMC, "Atmel AT91SAM9G20-EK 2 MMC Slot Mod")
  364. /* Maintainer: Atmel */
  365. .boot_params = AT91_SDRAM_BASE + 0x100,
  366. .timer = &at91sam926x_timer,
  367. .map_io = ek_map_io,
  368. .init_irq = ek_init_irq,
  369. .init_machine = ek_board_init,
  370. MACHINE_END