board-ams-delta.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. /*
  2. * linux/arch/arm/mach-omap1/board-ams-delta.c
  3. *
  4. * Modified from board-generic.c
  5. *
  6. * Board specific inits for the Amstrad E3 (codename Delta) videophone
  7. *
  8. * Copyright (C) 2006 Jonathan McDowell <noodles@earth.li>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/basic_mmio_gpio.h>
  15. #include <linux/gpio.h>
  16. #include <linux/kernel.h>
  17. #include <linux/init.h>
  18. #include <linux/input.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/leds.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/serial_8250.h>
  23. #include <linux/export.h>
  24. #include <media/soc_camera.h>
  25. #include <asm/serial.h>
  26. #include <mach/hardware.h>
  27. #include <asm/mach-types.h>
  28. #include <asm/mach/arch.h>
  29. #include <asm/mach/map.h>
  30. #include <plat/io.h>
  31. #include <plat/board-ams-delta.h>
  32. #include <plat/keypad.h>
  33. #include <plat/mux.h>
  34. #include <plat/usb.h>
  35. #include <plat/board.h>
  36. #include "common.h"
  37. #include <mach/camera.h>
  38. #include <mach/ams-delta-fiq.h>
  39. static const unsigned int ams_delta_keymap[] = {
  40. KEY(0, 0, KEY_F1), /* Advert */
  41. KEY(0, 3, KEY_COFFEE), /* Games */
  42. KEY(0, 2, KEY_QUESTION), /* Directory */
  43. KEY(2, 3, KEY_CONNECT), /* Internet */
  44. KEY(1, 2, KEY_SHOP), /* Services */
  45. KEY(1, 1, KEY_PHONE), /* VoiceMail */
  46. KEY(0, 1, KEY_DELETE), /* Delete */
  47. KEY(2, 2, KEY_PLAY), /* Play */
  48. KEY(1, 0, KEY_PAGEUP), /* Up */
  49. KEY(1, 3, KEY_PAGEDOWN), /* Down */
  50. KEY(2, 0, KEY_EMAIL), /* ReadEmail */
  51. KEY(2, 1, KEY_STOP), /* Stop */
  52. /* Numeric keypad portion */
  53. KEY(0, 7, KEY_KP1),
  54. KEY(0, 6, KEY_KP2),
  55. KEY(0, 5, KEY_KP3),
  56. KEY(1, 7, KEY_KP4),
  57. KEY(1, 6, KEY_KP5),
  58. KEY(1, 5, KEY_KP6),
  59. KEY(2, 7, KEY_KP7),
  60. KEY(2, 6, KEY_KP8),
  61. KEY(2, 5, KEY_KP9),
  62. KEY(3, 6, KEY_KP0),
  63. KEY(3, 7, KEY_KPASTERISK),
  64. KEY(3, 5, KEY_KPDOT), /* # key */
  65. KEY(7, 2, KEY_NUMLOCK), /* Mute */
  66. KEY(7, 1, KEY_KPMINUS), /* Recall */
  67. KEY(6, 1, KEY_KPPLUS), /* Redial */
  68. KEY(7, 6, KEY_KPSLASH), /* Handsfree */
  69. KEY(6, 0, KEY_ENTER), /* Video */
  70. KEY(7, 4, KEY_CAMERA), /* Photo */
  71. KEY(0, 4, KEY_F2), /* Home */
  72. KEY(1, 4, KEY_F3), /* Office */
  73. KEY(2, 4, KEY_F4), /* Mobile */
  74. KEY(7, 7, KEY_F5), /* SMS */
  75. KEY(7, 5, KEY_F6), /* Email */
  76. /* QWERTY portion of keypad */
  77. KEY(3, 4, KEY_Q),
  78. KEY(3, 3, KEY_W),
  79. KEY(3, 2, KEY_E),
  80. KEY(3, 1, KEY_R),
  81. KEY(3, 0, KEY_T),
  82. KEY(4, 7, KEY_Y),
  83. KEY(4, 6, KEY_U),
  84. KEY(4, 5, KEY_I),
  85. KEY(4, 4, KEY_O),
  86. KEY(4, 3, KEY_P),
  87. KEY(4, 2, KEY_A),
  88. KEY(4, 1, KEY_S),
  89. KEY(4, 0, KEY_D),
  90. KEY(5, 7, KEY_F),
  91. KEY(5, 6, KEY_G),
  92. KEY(5, 5, KEY_H),
  93. KEY(5, 4, KEY_J),
  94. KEY(5, 3, KEY_K),
  95. KEY(5, 2, KEY_L),
  96. KEY(5, 1, KEY_Z),
  97. KEY(5, 0, KEY_X),
  98. KEY(6, 7, KEY_C),
  99. KEY(6, 6, KEY_V),
  100. KEY(6, 5, KEY_B),
  101. KEY(6, 4, KEY_N),
  102. KEY(6, 3, KEY_M),
  103. KEY(6, 2, KEY_SPACE),
  104. KEY(7, 0, KEY_LEFTSHIFT), /* Vol up */
  105. KEY(7, 3, KEY_LEFTCTRL), /* Vol down */
  106. };
  107. #define LATCH1_PHYS 0x01000000
  108. #define LATCH1_VIRT 0xEA000000
  109. #define MODEM_PHYS 0x04000000
  110. #define MODEM_VIRT 0xEB000000
  111. #define LATCH2_PHYS 0x08000000
  112. #define LATCH2_VIRT 0xEC000000
  113. static struct map_desc ams_delta_io_desc[] __initdata = {
  114. /* AMS_DELTA_LATCH1 */
  115. {
  116. .virtual = LATCH1_VIRT,
  117. .pfn = __phys_to_pfn(LATCH1_PHYS),
  118. .length = 0x01000000,
  119. .type = MT_DEVICE
  120. },
  121. /* AMS_DELTA_LATCH2 */
  122. {
  123. .virtual = LATCH2_VIRT,
  124. .pfn = __phys_to_pfn(LATCH2_PHYS),
  125. .length = 0x01000000,
  126. .type = MT_DEVICE
  127. },
  128. /* AMS_DELTA_MODEM */
  129. {
  130. .virtual = MODEM_VIRT,
  131. .pfn = __phys_to_pfn(MODEM_PHYS),
  132. .length = 0x01000000,
  133. .type = MT_DEVICE
  134. }
  135. };
  136. static struct omap_lcd_config ams_delta_lcd_config = {
  137. .ctrl_name = "internal",
  138. };
  139. static struct omap_usb_config ams_delta_usb_config = {
  140. .register_host = 1,
  141. .hmc_mode = 16,
  142. .pins[0] = 2,
  143. };
  144. static struct omap_board_config_kernel ams_delta_config[] __initdata = {
  145. { OMAP_TAG_LCD, &ams_delta_lcd_config },
  146. };
  147. #define LATCH1_GPIO_BASE 232
  148. #define LATCH1_NGPIO 8
  149. static struct resource latch1_resources[] __initconst = {
  150. [0] = {
  151. .name = "dat",
  152. .start = LATCH1_PHYS,
  153. .end = LATCH1_PHYS + (LATCH1_NGPIO - 1) / 8,
  154. .flags = IORESOURCE_MEM,
  155. },
  156. };
  157. static struct bgpio_pdata latch1_pdata __initconst = {
  158. .base = LATCH1_GPIO_BASE,
  159. .ngpio = LATCH1_NGPIO,
  160. };
  161. static struct platform_device latch1_gpio_device = {
  162. .name = "basic-mmio-gpio",
  163. .id = 0,
  164. .resource = latch1_resources,
  165. .num_resources = ARRAY_SIZE(latch1_resources),
  166. .dev = {
  167. .platform_data = &latch1_pdata,
  168. },
  169. };
  170. static struct resource latch2_resources[] __initconst = {
  171. [0] = {
  172. .name = "dat",
  173. .start = LATCH2_PHYS,
  174. .end = LATCH2_PHYS + (AMS_DELTA_LATCH2_NGPIO - 1) / 8,
  175. .flags = IORESOURCE_MEM,
  176. },
  177. };
  178. static struct bgpio_pdata latch2_pdata __initconst = {
  179. .base = AMS_DELTA_LATCH2_GPIO_BASE,
  180. .ngpio = AMS_DELTA_LATCH2_NGPIO,
  181. };
  182. static struct platform_device latch2_gpio_device = {
  183. .name = "basic-mmio-gpio",
  184. .id = 1,
  185. .resource = latch2_resources,
  186. .num_resources = ARRAY_SIZE(latch2_resources),
  187. .dev = {
  188. .platform_data = &latch2_pdata,
  189. },
  190. };
  191. static struct gpio latch_gpios[] __initconst = {
  192. {
  193. .gpio = LATCH1_GPIO_BASE + 6,
  194. .flags = GPIOF_OUT_INIT_LOW,
  195. .label = "dockit1",
  196. },
  197. {
  198. .gpio = LATCH1_GPIO_BASE + 7,
  199. .flags = GPIOF_OUT_INIT_LOW,
  200. .label = "dockit2",
  201. },
  202. {
  203. .gpio = AMS_DELTA_GPIO_PIN_SCARD_RSTIN,
  204. .flags = GPIOF_OUT_INIT_LOW,
  205. .label = "scard_rstin",
  206. },
  207. {
  208. .gpio = AMS_DELTA_GPIO_PIN_SCARD_CMDVCC,
  209. .flags = GPIOF_OUT_INIT_LOW,
  210. .label = "scard_cmdvcc",
  211. },
  212. {
  213. .gpio = AMS_DELTA_GPIO_PIN_MODEM_NRESET,
  214. .flags = GPIOF_OUT_INIT_LOW,
  215. .label = "modem_nreset",
  216. },
  217. {
  218. .gpio = AMS_DELTA_GPIO_PIN_MODEM_CODEC,
  219. .flags = GPIOF_OUT_INIT_LOW,
  220. .label = "modem_codec",
  221. },
  222. {
  223. .gpio = AMS_DELTA_LATCH2_GPIO_BASE + 14,
  224. .flags = GPIOF_OUT_INIT_LOW,
  225. .label = "hookflash1",
  226. },
  227. {
  228. .gpio = AMS_DELTA_LATCH2_GPIO_BASE + 15,
  229. .flags = GPIOF_OUT_INIT_LOW,
  230. .label = "hookflash2",
  231. },
  232. };
  233. void ams_delta_latch_write(int base, int ngpio, u16 mask, u16 value)
  234. {
  235. int bit = 0;
  236. u16 bitpos = 1 << bit;
  237. for (; bit < ngpio; bit++, bitpos = bitpos << 1) {
  238. if (!(mask & bitpos))
  239. continue;
  240. gpio_set_value(base + bit, (value & bitpos) != 0);
  241. }
  242. }
  243. EXPORT_SYMBOL(ams_delta_latch_write);
  244. static struct resource ams_delta_nand_resources[] = {
  245. [0] = {
  246. .start = OMAP1_MPUIO_BASE,
  247. .end = OMAP1_MPUIO_BASE +
  248. OMAP_MPUIO_IO_CNTL + sizeof(u32) - 1,
  249. .flags = IORESOURCE_MEM,
  250. },
  251. };
  252. static struct platform_device ams_delta_nand_device = {
  253. .name = "ams-delta-nand",
  254. .id = -1,
  255. .num_resources = ARRAY_SIZE(ams_delta_nand_resources),
  256. .resource = ams_delta_nand_resources,
  257. };
  258. static struct resource ams_delta_kp_resources[] = {
  259. [0] = {
  260. .start = INT_KEYBOARD,
  261. .end = INT_KEYBOARD,
  262. .flags = IORESOURCE_IRQ,
  263. },
  264. };
  265. static const struct matrix_keymap_data ams_delta_keymap_data = {
  266. .keymap = ams_delta_keymap,
  267. .keymap_size = ARRAY_SIZE(ams_delta_keymap),
  268. };
  269. static struct omap_kp_platform_data ams_delta_kp_data = {
  270. .rows = 8,
  271. .cols = 8,
  272. .keymap_data = &ams_delta_keymap_data,
  273. .delay = 9,
  274. };
  275. static struct platform_device ams_delta_kp_device = {
  276. .name = "omap-keypad",
  277. .id = -1,
  278. .dev = {
  279. .platform_data = &ams_delta_kp_data,
  280. },
  281. .num_resources = ARRAY_SIZE(ams_delta_kp_resources),
  282. .resource = ams_delta_kp_resources,
  283. };
  284. static struct platform_device ams_delta_lcd_device = {
  285. .name = "lcd_ams_delta",
  286. .id = -1,
  287. };
  288. static struct gpio_led gpio_leds[] __initconst = {
  289. {
  290. .name = "camera",
  291. .gpio = LATCH1_GPIO_BASE + 0,
  292. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  293. #ifdef CONFIG_LEDS_TRIGGERS
  294. .default_trigger = "ams_delta_camera",
  295. #endif
  296. },
  297. {
  298. .name = "advert",
  299. .gpio = LATCH1_GPIO_BASE + 1,
  300. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  301. },
  302. {
  303. .name = "email",
  304. .gpio = LATCH1_GPIO_BASE + 2,
  305. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  306. },
  307. {
  308. .name = "handsfree",
  309. .gpio = LATCH1_GPIO_BASE + 3,
  310. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  311. },
  312. {
  313. .name = "voicemail",
  314. .gpio = LATCH1_GPIO_BASE + 4,
  315. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  316. },
  317. {
  318. .name = "voice",
  319. .gpio = LATCH1_GPIO_BASE + 5,
  320. .default_state = LEDS_GPIO_DEFSTATE_OFF,
  321. },
  322. };
  323. static struct gpio_led_platform_data leds_pdata __initconst = {
  324. .leds = gpio_leds,
  325. .num_leds = ARRAY_SIZE(gpio_leds),
  326. };
  327. static struct i2c_board_info ams_delta_camera_board_info[] = {
  328. {
  329. I2C_BOARD_INFO("ov6650", 0x60),
  330. },
  331. };
  332. #ifdef CONFIG_LEDS_TRIGGERS
  333. DEFINE_LED_TRIGGER(ams_delta_camera_led_trigger);
  334. static int ams_delta_camera_power(struct device *dev, int power)
  335. {
  336. /*
  337. * turn on camera LED
  338. */
  339. if (power)
  340. led_trigger_event(ams_delta_camera_led_trigger, LED_FULL);
  341. else
  342. led_trigger_event(ams_delta_camera_led_trigger, LED_OFF);
  343. return 0;
  344. }
  345. #else
  346. #define ams_delta_camera_power NULL
  347. #endif
  348. static struct soc_camera_link ams_delta_iclink = {
  349. .bus_id = 0, /* OMAP1 SoC camera bus */
  350. .i2c_adapter_id = 1,
  351. .board_info = &ams_delta_camera_board_info[0],
  352. .module_name = "ov6650",
  353. .power = ams_delta_camera_power,
  354. };
  355. static struct platform_device ams_delta_camera_device = {
  356. .name = "soc-camera-pdrv",
  357. .id = 0,
  358. .dev = {
  359. .platform_data = &ams_delta_iclink,
  360. },
  361. };
  362. static struct omap1_cam_platform_data ams_delta_camera_platform_data = {
  363. .camexclk_khz = 12000, /* default 12MHz clock, no extra DPLL */
  364. .lclk_khz_max = 1334, /* results in 5fps CIF, 10fps QCIF */
  365. };
  366. static struct platform_device *ams_delta_devices[] __initdata = {
  367. &latch1_gpio_device,
  368. &latch2_gpio_device,
  369. &ams_delta_kp_device,
  370. &ams_delta_camera_device,
  371. };
  372. static struct platform_device *late_devices[] __initconst = {
  373. &ams_delta_nand_device,
  374. &ams_delta_lcd_device,
  375. };
  376. static void __init ams_delta_init(void)
  377. {
  378. /* mux pins for uarts */
  379. omap_cfg_reg(UART1_TX);
  380. omap_cfg_reg(UART1_RTS);
  381. /* parallel camera interface */
  382. omap_cfg_reg(H19_1610_CAM_EXCLK);
  383. omap_cfg_reg(J15_1610_CAM_LCLK);
  384. omap_cfg_reg(L18_1610_CAM_VS);
  385. omap_cfg_reg(L15_1610_CAM_HS);
  386. omap_cfg_reg(L19_1610_CAM_D0);
  387. omap_cfg_reg(K14_1610_CAM_D1);
  388. omap_cfg_reg(K15_1610_CAM_D2);
  389. omap_cfg_reg(K19_1610_CAM_D3);
  390. omap_cfg_reg(K18_1610_CAM_D4);
  391. omap_cfg_reg(J14_1610_CAM_D5);
  392. omap_cfg_reg(J19_1610_CAM_D6);
  393. omap_cfg_reg(J18_1610_CAM_D7);
  394. omap_board_config = ams_delta_config;
  395. omap_board_config_size = ARRAY_SIZE(ams_delta_config);
  396. omap_serial_init();
  397. omap_register_i2c_bus(1, 100, NULL, 0);
  398. omap1_usb_init(&ams_delta_usb_config);
  399. omap1_set_camera_info(&ams_delta_camera_platform_data);
  400. #ifdef CONFIG_LEDS_TRIGGERS
  401. led_trigger_register_simple("ams_delta_camera",
  402. &ams_delta_camera_led_trigger);
  403. #endif
  404. gpio_led_register_device(-1, &leds_pdata);
  405. platform_add_devices(ams_delta_devices, ARRAY_SIZE(ams_delta_devices));
  406. ams_delta_init_fiq();
  407. omap_writew(omap_readw(ARM_RSTCT1) | 0x0004, ARM_RSTCT1);
  408. }
  409. static struct plat_serial8250_port ams_delta_modem_ports[] = {
  410. {
  411. .membase = IOMEM(MODEM_VIRT),
  412. .mapbase = MODEM_PHYS,
  413. .irq = -EINVAL, /* changed later */
  414. .flags = UPF_BOOT_AUTOCONF,
  415. .irqflags = IRQF_TRIGGER_RISING,
  416. .iotype = UPIO_MEM,
  417. .regshift = 1,
  418. .uartclk = BASE_BAUD * 16,
  419. },
  420. { },
  421. };
  422. static struct platform_device ams_delta_modem_device = {
  423. .name = "serial8250",
  424. .id = PLAT8250_DEV_PLATFORM1,
  425. .dev = {
  426. .platform_data = ams_delta_modem_ports,
  427. },
  428. };
  429. static int __init late_init(void)
  430. {
  431. int err;
  432. if (!machine_is_ams_delta())
  433. return -ENODEV;
  434. err = gpio_request_array(latch_gpios, ARRAY_SIZE(latch_gpios));
  435. if (err) {
  436. pr_err("Couldn't take over latch1/latch2 GPIO pins\n");
  437. return err;
  438. }
  439. platform_add_devices(late_devices, ARRAY_SIZE(late_devices));
  440. omap_cfg_reg(M14_1510_GPIO2);
  441. ams_delta_modem_ports[0].irq =
  442. gpio_to_irq(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
  443. err = gpio_request(AMS_DELTA_GPIO_PIN_MODEM_IRQ, "modem");
  444. if (err) {
  445. pr_err("Couldn't request gpio pin for modem\n");
  446. return err;
  447. }
  448. gpio_direction_input(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
  449. ams_delta_latch2_write(
  450. AMS_DELTA_LATCH2_MODEM_NRESET | AMS_DELTA_LATCH2_MODEM_CODEC,
  451. AMS_DELTA_LATCH2_MODEM_NRESET | AMS_DELTA_LATCH2_MODEM_CODEC);
  452. err = platform_device_register(&ams_delta_modem_device);
  453. if (err)
  454. goto gpio_free;
  455. return 0;
  456. gpio_free:
  457. gpio_free(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
  458. return err;
  459. }
  460. late_initcall(late_init);
  461. static void __init ams_delta_map_io(void)
  462. {
  463. omap15xx_map_io();
  464. iotable_init(ams_delta_io_desc, ARRAY_SIZE(ams_delta_io_desc));
  465. }
  466. MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
  467. /* Maintainer: Jonathan McDowell <noodles@earth.li> */
  468. .atag_offset = 0x100,
  469. .map_io = ams_delta_map_io,
  470. .init_early = omap1_init_early,
  471. .reserve = omap_reserve,
  472. .init_irq = omap1_init_irq,
  473. .init_machine = ams_delta_init,
  474. .timer = &omap1_timer,
  475. .restart = omap1_restart,
  476. MACHINE_END