board-sam9m10g45ek.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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/gpio.h>
  17. #include <linux/init.h>
  18. #include <linux/mm.h>
  19. #include <linux/module.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/spi/spi.h>
  22. #include <linux/fb.h>
  23. #include <linux/gpio_keys.h>
  24. #include <linux/input.h>
  25. #include <linux/leds.h>
  26. #include <linux/atmel-mci.h>
  27. #include <linux/delay.h>
  28. #include <linux/pwm.h>
  29. #include <linux/leds_pwm.h>
  30. #include <linux/platform_data/at91_adc.h>
  31. #include <mach/hardware.h>
  32. #include <video/atmel_lcdc.h>
  33. #include <media/soc_camera.h>
  34. #include <media/atmel-isi.h>
  35. #include <asm/setup.h>
  36. #include <asm/mach-types.h>
  37. #include <asm/irq.h>
  38. #include <asm/mach/arch.h>
  39. #include <asm/mach/map.h>
  40. #include <asm/mach/irq.h>
  41. #include <mach/at91sam9_smc.h>
  42. #include <mach/system_rev.h>
  43. #include "at91_aic.h"
  44. #include "board.h"
  45. #include "sam9_smc.h"
  46. #include "generic.h"
  47. #include "gpio.h"
  48. static void __init ek_init_early(void)
  49. {
  50. /* Initialize processor: 12.000 MHz crystal */
  51. at91_initialize(12000000);
  52. }
  53. /*
  54. * USB HS Host port (common to OHCI & EHCI)
  55. */
  56. static struct at91_usbh_data __initdata ek_usbh_hs_data = {
  57. .ports = 2,
  58. .vbus_pin = {AT91_PIN_PD1, AT91_PIN_PD3},
  59. .vbus_pin_active_low = {1, 1},
  60. .overcurrent_pin= {-EINVAL, -EINVAL},
  61. };
  62. /*
  63. * USB HS Device port
  64. */
  65. static struct usba_platform_data __initdata ek_usba_udc_data = {
  66. .vbus_pin = AT91_PIN_PB19,
  67. };
  68. /*
  69. * SPI devices.
  70. */
  71. static struct spi_board_info ek_spi_devices[] = {
  72. { /* DataFlash chip */
  73. .modalias = "mtd_dataflash",
  74. .chip_select = 0,
  75. .max_speed_hz = 15 * 1000 * 1000,
  76. .bus_num = 0,
  77. },
  78. };
  79. /*
  80. * MCI (SD/MMC)
  81. */
  82. static struct mci_platform_data __initdata mci0_data = {
  83. .slot[0] = {
  84. .bus_width = 4,
  85. .detect_pin = AT91_PIN_PD10,
  86. .wp_pin = -EINVAL,
  87. },
  88. };
  89. static struct mci_platform_data __initdata mci1_data = {
  90. .slot[0] = {
  91. .bus_width = 4,
  92. .detect_pin = AT91_PIN_PD11,
  93. .wp_pin = AT91_PIN_PD29,
  94. },
  95. };
  96. /*
  97. * MACB Ethernet device
  98. */
  99. static struct macb_platform_data __initdata ek_macb_data = {
  100. .phy_irq_pin = AT91_PIN_PD5,
  101. .is_rmii = 1,
  102. };
  103. /*
  104. * NAND flash
  105. */
  106. static struct mtd_partition __initdata ek_nand_partition[] = {
  107. {
  108. .name = "Partition 1",
  109. .offset = 0,
  110. .size = SZ_64M,
  111. },
  112. {
  113. .name = "Partition 2",
  114. .offset = MTDPART_OFS_NXTBLK,
  115. .size = MTDPART_SIZ_FULL,
  116. },
  117. };
  118. /* det_pin is not connected */
  119. static struct atmel_nand_data __initdata ek_nand_data = {
  120. .ale = 21,
  121. .cle = 22,
  122. .rdy_pin = AT91_PIN_PC8,
  123. .enable_pin = AT91_PIN_PC14,
  124. .det_pin = -EINVAL,
  125. .ecc_mode = NAND_ECC_SOFT,
  126. .on_flash_bbt = 1,
  127. .parts = ek_nand_partition,
  128. .num_parts = ARRAY_SIZE(ek_nand_partition),
  129. };
  130. static struct sam9_smc_config __initdata ek_nand_smc_config = {
  131. .ncs_read_setup = 0,
  132. .nrd_setup = 2,
  133. .ncs_write_setup = 0,
  134. .nwe_setup = 2,
  135. .ncs_read_pulse = 4,
  136. .nrd_pulse = 4,
  137. .ncs_write_pulse = 4,
  138. .nwe_pulse = 4,
  139. .read_cycle = 7,
  140. .write_cycle = 7,
  141. .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
  142. .tdf_cycles = 3,
  143. };
  144. static void __init ek_add_device_nand(void)
  145. {
  146. ek_nand_data.bus_width_16 = board_have_nand_16bit();
  147. /* setup bus-width (8 or 16) */
  148. if (ek_nand_data.bus_width_16)
  149. ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
  150. else
  151. ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
  152. /* configure chip-select 3 (NAND) */
  153. sam9_smc_configure(0, 3, &ek_nand_smc_config);
  154. at91_add_device_nand(&ek_nand_data);
  155. }
  156. /*
  157. * ISI
  158. */
  159. static struct isi_platform_data __initdata isi_data = {
  160. .frate = ISI_CFG1_FRATE_CAPTURE_ALL,
  161. /* to use codec and preview path simultaneously */
  162. .full_mode = 1,
  163. .data_width_flags = ISI_DATAWIDTH_8 | ISI_DATAWIDTH_10,
  164. /* ISI_MCK is provided by programmable clock or external clock */
  165. .mck_hz = 25000000,
  166. };
  167. /*
  168. * soc-camera OV2640
  169. */
  170. #if defined(CONFIG_SOC_CAMERA_OV2640) || \
  171. defined(CONFIG_SOC_CAMERA_OV2640_MODULE)
  172. static unsigned long isi_camera_query_bus_param(struct soc_camera_link *link)
  173. {
  174. /* ISI board for ek using default 8-bits connection */
  175. return SOCAM_DATAWIDTH_8;
  176. }
  177. static int i2c_camera_power(struct device *dev, int on)
  178. {
  179. /* enable or disable the camera */
  180. pr_debug("%s: %s the camera\n", __func__, on ? "ENABLE" : "DISABLE");
  181. at91_set_gpio_output(AT91_PIN_PD13, !on);
  182. if (!on)
  183. goto out;
  184. /* If enabled, give a reset impulse */
  185. at91_set_gpio_output(AT91_PIN_PD12, 0);
  186. msleep(20);
  187. at91_set_gpio_output(AT91_PIN_PD12, 1);
  188. msleep(100);
  189. out:
  190. return 0;
  191. }
  192. static struct i2c_board_info i2c_camera = {
  193. I2C_BOARD_INFO("ov2640", 0x30),
  194. };
  195. static struct soc_camera_link iclink_ov2640 = {
  196. .bus_id = 0,
  197. .board_info = &i2c_camera,
  198. .i2c_adapter_id = 0,
  199. .power = i2c_camera_power,
  200. .query_bus_param = isi_camera_query_bus_param,
  201. };
  202. static struct platform_device isi_ov2640 = {
  203. .name = "soc-camera-pdrv",
  204. .id = 0,
  205. .dev = {
  206. .platform_data = &iclink_ov2640,
  207. },
  208. };
  209. #endif
  210. /*
  211. * LCD Controller
  212. */
  213. #if defined(CONFIG_FB_ATMEL) || defined(CONFIG_FB_ATMEL_MODULE)
  214. static struct fb_videomode at91_tft_vga_modes[] = {
  215. {
  216. .name = "LG",
  217. .refresh = 60,
  218. .xres = 480, .yres = 272,
  219. .pixclock = KHZ2PICOS(9000),
  220. .left_margin = 1, .right_margin = 1,
  221. .upper_margin = 40, .lower_margin = 1,
  222. .hsync_len = 45, .vsync_len = 1,
  223. .sync = 0,
  224. .vmode = FB_VMODE_NONINTERLACED,
  225. },
  226. };
  227. static struct fb_monspecs at91fb_default_monspecs = {
  228. .manufacturer = "LG",
  229. .monitor = "LB043WQ1",
  230. .modedb = at91_tft_vga_modes,
  231. .modedb_len = ARRAY_SIZE(at91_tft_vga_modes),
  232. .hfmin = 15000,
  233. .hfmax = 17640,
  234. .vfmin = 57,
  235. .vfmax = 67,
  236. };
  237. #define AT91SAM9G45_DEFAULT_LCDCON2 (ATMEL_LCDC_MEMOR_LITTLE \
  238. | ATMEL_LCDC_DISTYPE_TFT \
  239. | ATMEL_LCDC_CLKMOD_ALWAYSACTIVE)
  240. /* Driver datas */
  241. static struct atmel_lcdfb_pdata __initdata ek_lcdc_data = {
  242. .lcdcon_is_backlight = true,
  243. .default_bpp = 32,
  244. .default_dmacon = ATMEL_LCDC_DMAEN,
  245. .default_lcdcon2 = AT91SAM9G45_DEFAULT_LCDCON2,
  246. .default_monspecs = &at91fb_default_monspecs,
  247. .guard_time = 9,
  248. .lcd_wiring_mode = ATMEL_LCDC_WIRING_RGB,
  249. };
  250. #else
  251. static struct atmel_lcdfb_pdata __initdata ek_lcdc_data;
  252. #endif
  253. /*
  254. * ADCs and touchscreen
  255. */
  256. static struct at91_adc_data ek_adc_data = {
  257. .channels_used = BIT(0) | BIT(1) | BIT(2) | BIT(3) | BIT(4) | BIT(5) | BIT(6) | BIT(7),
  258. .use_external_triggers = true,
  259. .vref = 3300,
  260. .touchscreen_type = ATMEL_ADC_TOUCHSCREEN_4WIRE,
  261. };
  262. /*
  263. * GPIO Buttons
  264. */
  265. #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
  266. static struct gpio_keys_button ek_buttons[] = {
  267. { /* BP1, "leftclic" */
  268. .code = BTN_LEFT,
  269. .gpio = AT91_PIN_PB6,
  270. .active_low = 1,
  271. .desc = "left_click",
  272. .wakeup = 1,
  273. },
  274. { /* BP2, "rightclic" */
  275. .code = BTN_RIGHT,
  276. .gpio = AT91_PIN_PB7,
  277. .active_low = 1,
  278. .desc = "right_click",
  279. .wakeup = 1,
  280. },
  281. /* BP3, "joystick" */
  282. {
  283. .code = KEY_LEFT,
  284. .gpio = AT91_PIN_PB14,
  285. .active_low = 1,
  286. .desc = "Joystick Left",
  287. },
  288. {
  289. .code = KEY_RIGHT,
  290. .gpio = AT91_PIN_PB15,
  291. .active_low = 1,
  292. .desc = "Joystick Right",
  293. },
  294. {
  295. .code = KEY_UP,
  296. .gpio = AT91_PIN_PB16,
  297. .active_low = 1,
  298. .desc = "Joystick Up",
  299. },
  300. {
  301. .code = KEY_DOWN,
  302. .gpio = AT91_PIN_PB17,
  303. .active_low = 1,
  304. .desc = "Joystick Down",
  305. },
  306. {
  307. .code = KEY_ENTER,
  308. .gpio = AT91_PIN_PB18,
  309. .active_low = 1,
  310. .desc = "Joystick Press",
  311. },
  312. };
  313. static struct gpio_keys_platform_data ek_button_data = {
  314. .buttons = ek_buttons,
  315. .nbuttons = ARRAY_SIZE(ek_buttons),
  316. };
  317. static struct platform_device ek_button_device = {
  318. .name = "gpio-keys",
  319. .id = -1,
  320. .num_resources = 0,
  321. .dev = {
  322. .platform_data = &ek_button_data,
  323. }
  324. };
  325. static void __init ek_add_device_buttons(void)
  326. {
  327. int i;
  328. for (i = 0; i < ARRAY_SIZE(ek_buttons); i++) {
  329. at91_set_GPIO_periph(ek_buttons[i].gpio, 1);
  330. at91_set_deglitch(ek_buttons[i].gpio, 1);
  331. }
  332. platform_device_register(&ek_button_device);
  333. }
  334. #else
  335. static void __init ek_add_device_buttons(void) {}
  336. #endif
  337. /*
  338. * AC97
  339. * reset_pin is not connected: NRST
  340. */
  341. static struct ac97c_platform_data ek_ac97_data = {
  342. .reset_pin = -EINVAL,
  343. };
  344. /*
  345. * LEDs ... these could all be PWM-driven, for variable brightness
  346. */
  347. static struct gpio_led ek_leds[] = {
  348. { /* "top" led, red, powerled */
  349. .name = "d8",
  350. .gpio = AT91_PIN_PD30,
  351. .default_trigger = "heartbeat",
  352. },
  353. { /* "left" led, green, userled2, pwm3 */
  354. .name = "d6",
  355. .gpio = AT91_PIN_PD0,
  356. .active_low = 1,
  357. .default_trigger = "nand-disk",
  358. },
  359. #if !IS_ENABLED(CONFIG_LEDS_PWM)
  360. { /* "right" led, green, userled1, pwm1 */
  361. .name = "d7",
  362. .gpio = AT91_PIN_PD31,
  363. .active_low = 1,
  364. .default_trigger = "mmc0",
  365. },
  366. #endif
  367. };
  368. /*
  369. * PWM Leds
  370. */
  371. static struct pwm_lookup pwm_lookup[] = {
  372. PWM_LOOKUP("at91sam9rl-pwm", 1, "leds_pwm", "d7",
  373. 5000, PWM_POLARITY_INVERSED),
  374. };
  375. #if IS_ENABLED(CONFIG_LEDS_PWM)
  376. static struct led_pwm pwm_leds[] = {
  377. { /* "right" led, green, userled1, pwm1 */
  378. .name = "d7",
  379. .max_brightness = 255,
  380. },
  381. };
  382. static struct led_pwm_platform_data pwm_data = {
  383. .num_leds = ARRAY_SIZE(pwm_leds),
  384. .leds = pwm_leds,
  385. };
  386. static struct platform_device leds_pwm = {
  387. .name = "leds_pwm",
  388. .id = -1,
  389. .dev = {
  390. .platform_data = &pwm_data,
  391. },
  392. };
  393. #endif
  394. static struct platform_device *devices[] __initdata = {
  395. #if defined(CONFIG_SOC_CAMERA_OV2640) || \
  396. defined(CONFIG_SOC_CAMERA_OV2640_MODULE)
  397. &isi_ov2640,
  398. #endif
  399. #if IS_ENABLED(CONFIG_LEDS_PWM)
  400. &leds_pwm,
  401. #endif
  402. };
  403. static void __init ek_board_init(void)
  404. {
  405. at91_register_devices();
  406. /* Serial */
  407. /* DGBU on ttyS0. (Rx & Tx only) */
  408. at91_register_uart(0, 0, 0);
  409. /* USART0 not connected on the -EK board */
  410. /* USART1 on ttyS2. (Rx, Tx, RTS, CTS) */
  411. at91_register_uart(AT91SAM9G45_ID_US1, 2, ATMEL_UART_CTS | ATMEL_UART_RTS);
  412. at91_add_device_serial();
  413. /* USB HS Host */
  414. at91_add_device_usbh_ohci(&ek_usbh_hs_data);
  415. at91_add_device_usbh_ehci(&ek_usbh_hs_data);
  416. /* USB HS Device */
  417. at91_add_device_usba(&ek_usba_udc_data);
  418. /* SPI */
  419. at91_add_device_spi(ek_spi_devices, ARRAY_SIZE(ek_spi_devices));
  420. /* MMC */
  421. at91_add_device_mci(0, &mci0_data);
  422. at91_add_device_mci(1, &mci1_data);
  423. /* Ethernet */
  424. at91_add_device_eth(&ek_macb_data);
  425. /* NAND */
  426. ek_add_device_nand();
  427. /* I2C */
  428. at91_add_device_i2c(0, NULL, 0);
  429. /* ISI, using programmable clock as ISI_MCK */
  430. at91_add_device_isi(&isi_data, true);
  431. /* LCD Controller */
  432. at91_add_device_lcdc(&ek_lcdc_data);
  433. /* ADC and touchscreen */
  434. at91_add_device_adc(&ek_adc_data);
  435. /* Push Buttons */
  436. ek_add_device_buttons();
  437. /* AC97 */
  438. at91_add_device_ac97(&ek_ac97_data);
  439. /* LEDs */
  440. at91_gpio_leds(ek_leds, ARRAY_SIZE(ek_leds));
  441. pwm_add_table(pwm_lookup, ARRAY_SIZE(pwm_lookup));
  442. #if IS_ENABLED(CONFIG_LEDS_PWM)
  443. at91_add_device_pwm(1 << AT91_PWM1);
  444. #endif
  445. /* Other platform devices */
  446. platform_add_devices(devices, ARRAY_SIZE(devices));
  447. }
  448. MACHINE_START(AT91SAM9M10G45EK, "Atmel AT91SAM9M10G45-EK")
  449. /* Maintainer: Atmel */
  450. .init_time = at91_init_time,
  451. .map_io = at91_map_io,
  452. .handle_irq = at91_aic_handle_irq,
  453. .init_early = ek_init_early,
  454. .init_irq = at91_init_irq_default,
  455. .init_machine = ek_board_init,
  456. MACHINE_END