board-sam9m10g45ek.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. /*
  2. * Board-specific setup code for the AT91SAM9M10G45 Evaluation Kit family
  3. *
  4. * Covers: * AT91SAM9G45-EKES board
  5. * * AT91SAM9M10G45-EK board
  6. *
  7. * Copyright (C) 2009 Atmel Corporation.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. */
  15. #include <linux/types.h>
  16. #include <linux/init.h>
  17. #include <linux/mm.h>
  18. #include <linux/module.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/spi/spi.h>
  21. #include <linux/fb.h>
  22. #include <linux/gpio_keys.h>
  23. #include <linux/input.h>
  24. #include <linux/leds.h>
  25. #include <linux/clk.h>
  26. #include <mach/hardware.h>
  27. #include <video/atmel_lcdc.h>
  28. #include <asm/setup.h>
  29. #include <asm/mach-types.h>
  30. #include <asm/irq.h>
  31. #include <asm/mach/arch.h>
  32. #include <asm/mach/map.h>
  33. #include <asm/mach/irq.h>
  34. #include <mach/hardware.h>
  35. #include <mach/board.h>
  36. #include <mach/gpio.h>
  37. #include <mach/at91sam9_smc.h>
  38. #include <mach/at91_shdwc.h>
  39. #include "sam9_smc.h"
  40. #include "generic.h"
  41. static void __init ek_map_io(void)
  42. {
  43. /* Initialize processor: 12.000 MHz crystal */
  44. at91sam9g45_initialize(12000000);
  45. /* DGBU on ttyS0. (Rx & Tx only) */
  46. at91_register_uart(0, 0, 0);
  47. /* USART0 not connected on the -EK board */
  48. /* USART1 on ttyS2. (Rx, Tx, RTS, CTS) */
  49. at91_register_uart(AT91SAM9G45_ID_US1, 2, ATMEL_UART_CTS | ATMEL_UART_RTS);
  50. /* set serial console to ttyS0 (ie, DBGU) */
  51. at91_set_serial_console(0);
  52. }
  53. static void __init ek_init_irq(void)
  54. {
  55. at91sam9g45_init_interrupts(NULL);
  56. }
  57. /*
  58. * USB HS Host port (common to OHCI & EHCI)
  59. */
  60. static struct at91_usbh_data __initdata ek_usbh_hs_data = {
  61. .ports = 2,
  62. .vbus_pin = {AT91_PIN_PD1, AT91_PIN_PD3},
  63. };
  64. /*
  65. * USB HS Device port
  66. */
  67. static struct usba_platform_data __initdata ek_usba_udc_data = {
  68. .vbus_pin = AT91_PIN_PB19,
  69. };
  70. /*
  71. * SPI devices.
  72. */
  73. static struct spi_board_info ek_spi_devices[] = {
  74. { /* DataFlash chip */
  75. .modalias = "mtd_dataflash",
  76. .chip_select = 0,
  77. .max_speed_hz = 15 * 1000 * 1000,
  78. .bus_num = 0,
  79. },
  80. };
  81. /*
  82. * MACB Ethernet device
  83. */
  84. static struct at91_eth_data __initdata ek_macb_data = {
  85. .phy_irq_pin = AT91_PIN_PD5,
  86. .is_rmii = 1,
  87. };
  88. /*
  89. * NAND flash
  90. */
  91. static struct mtd_partition __initdata ek_nand_partition[] = {
  92. {
  93. .name = "Partition 1",
  94. .offset = 0,
  95. .size = SZ_64M,
  96. },
  97. {
  98. .name = "Partition 2",
  99. .offset = MTDPART_OFS_NXTBLK,
  100. .size = MTDPART_SIZ_FULL,
  101. },
  102. };
  103. static struct mtd_partition * __init nand_partitions(int size, int *num_partitions)
  104. {
  105. *num_partitions = ARRAY_SIZE(ek_nand_partition);
  106. return ek_nand_partition;
  107. }
  108. /* det_pin is not connected */
  109. static struct atmel_nand_data __initdata ek_nand_data = {
  110. .ale = 21,
  111. .cle = 22,
  112. .rdy_pin = AT91_PIN_PC8,
  113. .enable_pin = AT91_PIN_PC14,
  114. .partition_info = nand_partitions,
  115. #if defined(CONFIG_MTD_NAND_AT91_BUSWIDTH_16)
  116. .bus_width_16 = 1,
  117. #else
  118. .bus_width_16 = 0,
  119. #endif
  120. };
  121. static struct sam9_smc_config __initdata ek_nand_smc_config = {
  122. .ncs_read_setup = 0,
  123. .nrd_setup = 2,
  124. .ncs_write_setup = 0,
  125. .nwe_setup = 2,
  126. .ncs_read_pulse = 4,
  127. .nrd_pulse = 4,
  128. .ncs_write_pulse = 4,
  129. .nwe_pulse = 4,
  130. .read_cycle = 7,
  131. .write_cycle = 7,
  132. .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
  133. .tdf_cycles = 3,
  134. };
  135. static void __init ek_add_device_nand(void)
  136. {
  137. /* setup bus-width (8 or 16) */
  138. if (ek_nand_data.bus_width_16)
  139. ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
  140. else
  141. ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
  142. /* configure chip-select 3 (NAND) */
  143. sam9_smc_configure(3, &ek_nand_smc_config);
  144. at91_add_device_nand(&ek_nand_data);
  145. }
  146. /*
  147. * LCD Controller
  148. */
  149. #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
  150. static struct fb_videomode at91_tft_vga_modes[] = {
  151. {
  152. .name = "LG",
  153. .refresh = 60,
  154. .xres = 480, .yres = 272,
  155. .pixclock = KHZ2PICOS(9000),
  156. .left_margin = 1, .right_margin = 1,
  157. .upper_margin = 40, .lower_margin = 1,
  158. .hsync_len = 45, .vsync_len = 1,
  159. .sync = 0,
  160. .vmode = FB_VMODE_NONINTERLACED,
  161. },
  162. };
  163. static struct fb_monspecs at91fb_default_monspecs = {
  164. .manufacturer = "LG",
  165. .monitor = "LB043WQ1",
  166. .modedb = at91_tft_vga_modes,
  167. .modedb_len = ARRAY_SIZE(at91_tft_vga_modes),
  168. .hfmin = 15000,
  169. .hfmax = 17640,
  170. .vfmin = 57,
  171. .vfmax = 67,
  172. };
  173. #define AT91SAM9G45_DEFAULT_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
  174. | ATMEL_LCDC_DISTYPE_TFT \
  175. | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
  176. /* Driver datas */
  177. static struct atmel_lcdfb_info __initdata ek_lcdc_data = {
  178. .lcdcon_is_backlight = true,
  179. .default_bpp = 32,
  180. .default_dmacon = ATMEL_LCDC_DMAEN,
  181. .default_lcdcon2 = AT91SAM9G45_DEFAULT_LCDCON2,
  182. .default_monspecs = &at91fb_default_monspecs,
  183. .guard_time = 9,
  184. .lcd_wiring_mode = ATMEL_LCDC_WIRING_RGB,
  185. };
  186. #else
  187. static struct atmel_lcdfb_info __initdata ek_lcdc_data;
  188. #endif
  189. /*
  190. * Touchscreen
  191. */
  192. static struct at91_tsadcc_data ek_tsadcc_data = {
  193. .adc_clock = 300000,
  194. .pendet_debounce = 0x0d,
  195. .ts_sample_hold_time = 0x0a,
  196. };
  197. /*
  198. * GPIO Buttons
  199. */
  200. #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
  201. static struct gpio_keys_button ek_buttons[] = {
  202. { /* BP1, "leftclic" */
  203. .code = BTN_LEFT,
  204. .gpio = AT91_PIN_PB6,
  205. .active_low = 1,
  206. .desc = "left_click",
  207. .wakeup = 1,
  208. },
  209. { /* BP2, "rightclic" */
  210. .code = BTN_RIGHT,
  211. .gpio = AT91_PIN_PB7,
  212. .active_low = 1,
  213. .desc = "right_click",
  214. .wakeup = 1,
  215. },
  216. /* BP3, "joystick" */
  217. {
  218. .code = KEY_LEFT,
  219. .gpio = AT91_PIN_PB14,
  220. .active_low = 1,
  221. .desc = "Joystick Left",
  222. },
  223. {
  224. .code = KEY_RIGHT,
  225. .gpio = AT91_PIN_PB15,
  226. .active_low = 1,
  227. .desc = "Joystick Right",
  228. },
  229. {
  230. .code = KEY_UP,
  231. .gpio = AT91_PIN_PB16,
  232. .active_low = 1,
  233. .desc = "Joystick Up",
  234. },
  235. {
  236. .code = KEY_DOWN,
  237. .gpio = AT91_PIN_PB17,
  238. .active_low = 1,
  239. .desc = "Joystick Down",
  240. },
  241. {
  242. .code = KEY_ENTER,
  243. .gpio = AT91_PIN_PB18,
  244. .active_low = 1,
  245. .desc = "Joystick Press",
  246. },
  247. };
  248. static struct gpio_keys_platform_data ek_button_data = {
  249. .buttons = ek_buttons,
  250. .nbuttons = ARRAY_SIZE(ek_buttons),
  251. };
  252. static struct platform_device ek_button_device = {
  253. .name = "gpio-keys",
  254. .id = -1,
  255. .num_resources = 0,
  256. .dev = {
  257. .platform_data = &ek_button_data,
  258. }
  259. };
  260. static void __init ek_add_device_buttons(void)
  261. {
  262. int i;
  263. for (i = 0; i < ARRAY_SIZE(ek_buttons); i++) {
  264. at91_set_GPIO_periph(ek_buttons[i].gpio, 1);
  265. at91_set_deglitch(ek_buttons[i].gpio, 1);
  266. }
  267. platform_device_register(&ek_button_device);
  268. }
  269. #else
  270. static void __init ek_add_device_buttons(void) {}
  271. #endif
  272. /*
  273. * AC97
  274. * reset_pin is not connected: NRST
  275. */
  276. static struct ac97c_platform_data ek_ac97_data = {
  277. };
  278. /*
  279. * LEDs ... these could all be PWM-driven, for variable brightness
  280. */
  281. static struct gpio_led ek_leds[] = {
  282. { /* "top" led, red, powerled */
  283. .name = "d8",
  284. .gpio = AT91_PIN_PD30,
  285. .default_trigger = "heartbeat",
  286. },
  287. { /* "left" led, green, userled2, pwm3 */
  288. .name = "d6",
  289. .gpio = AT91_PIN_PD0,
  290. .active_low = 1,
  291. .default_trigger = "nand-disk",
  292. },
  293. #if !(defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE))
  294. { /* "right" led, green, userled1, pwm1 */
  295. .name = "d7",
  296. .gpio = AT91_PIN_PD31,
  297. .active_low = 1,
  298. .default_trigger = "mmc0",
  299. },
  300. #endif
  301. };
  302. /*
  303. * PWM Leds
  304. */
  305. static struct gpio_led ek_pwm_led[] = {
  306. #if defined(CONFIG_LEDS_ATMEL_PWM) || defined(CONFIG_LEDS_ATMEL_PWM_MODULE)
  307. { /* "right" led, green, userled1, pwm1 */
  308. .name = "d7",
  309. .gpio = 1, /* is PWM channel number */
  310. .active_low = 1,
  311. .default_trigger = "none",
  312. },
  313. #endif
  314. };
  315. static void __init ek_board_init(void)
  316. {
  317. /* Serial */
  318. at91_add_device_serial();
  319. /* USB HS Host */
  320. at91_add_device_usbh_ohci(&ek_usbh_hs_data);
  321. at91_add_device_usbh_ehci(&ek_usbh_hs_data);
  322. /* USB HS Device */
  323. at91_add_device_usba(&ek_usba_udc_data);
  324. /* SPI */
  325. at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
  326. /* Ethernet */
  327. at91_add_device_eth(&ek_macb_data);
  328. /* NAND */
  329. ek_add_device_nand();
  330. /* I2C */
  331. at91_add_device_i2c(0, NULL, 0);
  332. /* LCD Controller */
  333. at91_add_device_lcdc(&ek_lcdc_data);
  334. /* Touch Screen */
  335. at91_add_device_tsadcc(&ek_tsadcc_data);
  336. /* Push Buttons */
  337. ek_add_device_buttons();
  338. /* AC97 */
  339. at91_add_device_ac97(&ek_ac97_data);
  340. /* LEDs */
  341. at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
  342. at91_pwm_leds(ek_pwm_led, ARRAY_SIZE(ek_pwm_led));
  343. }
  344. MACHINE_START(AT91SAM9G45EKES, "Atmel AT91SAM9G45-EKES")
  345. /* Maintainer: Atmel */
  346. .phys_io = AT91_BASE_SYS,
  347. .io_pg_offst = (AT91_VA_BASE_SYS >> 18) & 0xfffc,
  348. .boot_params = AT91_SDRAM_BASE + 0x100,
  349. .timer = &at91sam926x_timer,
  350. .map_io = ek_map_io,
  351. .init_irq = ek_init_irq,
  352. .init_machine = ek_board_init,
  353. MACHINE_END