zylonite.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. /*
  2. * linux/arch/arm/mach-pxa/zylonite.c
  3. *
  4. * Support for the PXA3xx Development Platform (aka Zylonite)
  5. *
  6. * Copyright (C) 2006 Marvell International Ltd.
  7. *
  8. * 2007-09-04: eric miao <eric.miao@marvell.com>
  9. * rewrite to align with latest kernel
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. */
  15. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/leds.h>
  19. #include <linux/init.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/gpio.h>
  22. #include <linux/pwm.h>
  23. #include <linux/pwm_backlight.h>
  24. #include <linux/smc91x.h>
  25. #include <asm/mach-types.h>
  26. #include <asm/mach/arch.h>
  27. #include "pxa3xx.h"
  28. #include <mach/audio.h>
  29. #include <linux/platform_data/video-pxafb.h>
  30. #include "zylonite.h"
  31. #include <linux/platform_data/mmc-pxamci.h>
  32. #include <linux/platform_data/usb-ohci-pxa27x.h>
  33. #include <linux/platform_data/keypad-pxa27x.h>
  34. #include <linux/platform_data/mtd-nand-pxa3xx.h>
  35. #include "devices.h"
  36. #include "generic.h"
  37. int gpio_eth_irq;
  38. int gpio_debug_led1;
  39. int gpio_debug_led2;
  40. int wm9713_irq;
  41. int lcd_id;
  42. int lcd_orientation;
  43. struct platform_device pxa_device_wm9713_audio = {
  44. .name = "wm9713-codec",
  45. .id = -1,
  46. };
  47. static void __init zylonite_init_wm9713_audio(void)
  48. {
  49. platform_device_register(&pxa_device_wm9713_audio);
  50. }
  51. static struct resource smc91x_resources[] = {
  52. [0] = {
  53. .start = ZYLONITE_ETH_PHYS + 0x300,
  54. .end = ZYLONITE_ETH_PHYS + 0xfffff,
  55. .flags = IORESOURCE_MEM,
  56. },
  57. [1] = {
  58. .start = -1, /* for run-time assignment */
  59. .end = -1,
  60. .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
  61. }
  62. };
  63. static struct smc91x_platdata zylonite_smc91x_info = {
  64. .flags = SMC91X_USE_8BIT | SMC91X_USE_16BIT |
  65. SMC91X_NOWAIT | SMC91X_USE_DMA,
  66. };
  67. static struct platform_device smc91x_device = {
  68. .name = "smc91x",
  69. .id = 0,
  70. .num_resources = ARRAY_SIZE(smc91x_resources),
  71. .resource = smc91x_resources,
  72. .dev = {
  73. .platform_data = &zylonite_smc91x_info,
  74. },
  75. };
  76. #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
  77. static struct gpio_led zylonite_debug_leds[] = {
  78. [0] = {
  79. .name = "zylonite:yellow:1",
  80. .default_trigger = "heartbeat",
  81. },
  82. [1] = {
  83. .name = "zylonite:yellow:2",
  84. .default_trigger = "default-on",
  85. },
  86. };
  87. static struct gpio_led_platform_data zylonite_debug_leds_info = {
  88. .leds = zylonite_debug_leds,
  89. .num_leds = ARRAY_SIZE(zylonite_debug_leds),
  90. };
  91. static struct platform_device zylonite_device_leds = {
  92. .name = "leds-gpio",
  93. .id = -1,
  94. .dev = {
  95. .platform_data = &zylonite_debug_leds_info,
  96. }
  97. };
  98. static void __init zylonite_init_leds(void)
  99. {
  100. zylonite_debug_leds[0].gpio = gpio_debug_led1;
  101. zylonite_debug_leds[1].gpio = gpio_debug_led2;
  102. platform_device_register(&zylonite_device_leds);
  103. }
  104. #else
  105. static inline void zylonite_init_leds(void) {}
  106. #endif
  107. #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
  108. static struct pwm_lookup zylonite_pwm_lookup[] = {
  109. PWM_LOOKUP("pxa27x-pwm.1", 1, "pwm-backlight.0", NULL, 10000,
  110. PWM_POLARITY_NORMAL),
  111. };
  112. static struct platform_pwm_backlight_data zylonite_backlight_data = {
  113. .max_brightness = 100,
  114. .dft_brightness = 100,
  115. .enable_gpio = -1,
  116. };
  117. static struct platform_device zylonite_backlight_device = {
  118. .name = "pwm-backlight",
  119. .dev = {
  120. .parent = &pxa27x_device_pwm1.dev,
  121. .platform_data = &zylonite_backlight_data,
  122. },
  123. };
  124. static struct pxafb_mode_info toshiba_ltm035a776c_mode = {
  125. .pixclock = 110000,
  126. .xres = 240,
  127. .yres = 320,
  128. .bpp = 16,
  129. .hsync_len = 4,
  130. .left_margin = 6,
  131. .right_margin = 4,
  132. .vsync_len = 2,
  133. .upper_margin = 2,
  134. .lower_margin = 3,
  135. .sync = FB_SYNC_VERT_HIGH_ACT,
  136. };
  137. static struct pxafb_mode_info toshiba_ltm04c380k_mode = {
  138. .pixclock = 50000,
  139. .xres = 640,
  140. .yres = 480,
  141. .bpp = 16,
  142. .hsync_len = 1,
  143. .left_margin = 0x9f,
  144. .right_margin = 1,
  145. .vsync_len = 44,
  146. .upper_margin = 0,
  147. .lower_margin = 0,
  148. .sync = FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
  149. };
  150. static struct pxafb_mach_info zylonite_toshiba_lcd_info = {
  151. .num_modes = 1,
  152. .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
  153. };
  154. static struct pxafb_mode_info sharp_ls037_modes[] = {
  155. [0] = {
  156. .pixclock = 158000,
  157. .xres = 240,
  158. .yres = 320,
  159. .bpp = 16,
  160. .hsync_len = 4,
  161. .left_margin = 39,
  162. .right_margin = 39,
  163. .vsync_len = 1,
  164. .upper_margin = 2,
  165. .lower_margin = 3,
  166. .sync = 0,
  167. },
  168. [1] = {
  169. .pixclock = 39700,
  170. .xres = 480,
  171. .yres = 640,
  172. .bpp = 16,
  173. .hsync_len = 8,
  174. .left_margin = 81,
  175. .right_margin = 81,
  176. .vsync_len = 1,
  177. .upper_margin = 2,
  178. .lower_margin = 7,
  179. .sync = 0,
  180. },
  181. };
  182. static struct pxafb_mach_info zylonite_sharp_lcd_info = {
  183. .modes = sharp_ls037_modes,
  184. .num_modes = 2,
  185. .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
  186. };
  187. static void __init zylonite_init_lcd(void)
  188. {
  189. pwm_add_table(zylonite_pwm_lookup, ARRAY_SIZE(zylonite_pwm_lookup));
  190. platform_device_register(&zylonite_backlight_device);
  191. if (lcd_id & 0x20) {
  192. pxa_set_fb_info(NULL, &zylonite_sharp_lcd_info);
  193. return;
  194. }
  195. /* legacy LCD panels, it would be handy here if LCD panel type can
  196. * be decided at run-time
  197. */
  198. if (1)
  199. zylonite_toshiba_lcd_info.modes = &toshiba_ltm035a776c_mode;
  200. else
  201. zylonite_toshiba_lcd_info.modes = &toshiba_ltm04c380k_mode;
  202. pxa_set_fb_info(NULL, &zylonite_toshiba_lcd_info);
  203. }
  204. #else
  205. static inline void zylonite_init_lcd(void) {}
  206. #endif
  207. #if defined(CONFIG_MMC)
  208. static struct pxamci_platform_data zylonite_mci_platform_data = {
  209. .detect_delay_ms= 200,
  210. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  211. .gpio_card_detect = EXT_GPIO(0),
  212. .gpio_card_ro = EXT_GPIO(2),
  213. .gpio_power = -1,
  214. };
  215. static struct pxamci_platform_data zylonite_mci2_platform_data = {
  216. .detect_delay_ms= 200,
  217. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  218. .gpio_card_detect = EXT_GPIO(1),
  219. .gpio_card_ro = EXT_GPIO(3),
  220. .gpio_power = -1,
  221. };
  222. static struct pxamci_platform_data zylonite_mci3_platform_data = {
  223. .detect_delay_ms= 200,
  224. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  225. .gpio_card_detect = EXT_GPIO(30),
  226. .gpio_card_ro = EXT_GPIO(31),
  227. .gpio_power = -1,
  228. };
  229. static void __init zylonite_init_mmc(void)
  230. {
  231. pxa_set_mci_info(&zylonite_mci_platform_data);
  232. pxa3xx_set_mci2_info(&zylonite_mci2_platform_data);
  233. if (cpu_is_pxa310())
  234. pxa3xx_set_mci3_info(&zylonite_mci3_platform_data);
  235. }
  236. #else
  237. static inline void zylonite_init_mmc(void) {}
  238. #endif
  239. #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
  240. static const unsigned int zylonite_matrix_key_map[] = {
  241. /* KEY(row, col, key_code) */
  242. KEY(0, 0, KEY_A), KEY(0, 1, KEY_B), KEY(0, 2, KEY_C), KEY(0, 5, KEY_D),
  243. KEY(1, 0, KEY_E), KEY(1, 1, KEY_F), KEY(1, 2, KEY_G), KEY(1, 5, KEY_H),
  244. KEY(2, 0, KEY_I), KEY(2, 1, KEY_J), KEY(2, 2, KEY_K), KEY(2, 5, KEY_L),
  245. KEY(3, 0, KEY_M), KEY(3, 1, KEY_N), KEY(3, 2, KEY_O), KEY(3, 5, KEY_P),
  246. KEY(5, 0, KEY_Q), KEY(5, 1, KEY_R), KEY(5, 2, KEY_S), KEY(5, 5, KEY_T),
  247. KEY(6, 0, KEY_U), KEY(6, 1, KEY_V), KEY(6, 2, KEY_W), KEY(6, 5, KEY_X),
  248. KEY(7, 1, KEY_Y), KEY(7, 2, KEY_Z),
  249. KEY(4, 4, KEY_0), KEY(1, 3, KEY_1), KEY(4, 1, KEY_2), KEY(1, 4, KEY_3),
  250. KEY(2, 3, KEY_4), KEY(4, 2, KEY_5), KEY(2, 4, KEY_6), KEY(3, 3, KEY_7),
  251. KEY(4, 3, KEY_8), KEY(3, 4, KEY_9),
  252. KEY(4, 5, KEY_SPACE),
  253. KEY(5, 3, KEY_KPASTERISK), /* * */
  254. KEY(5, 4, KEY_KPDOT), /* #" */
  255. KEY(0, 7, KEY_UP),
  256. KEY(1, 7, KEY_DOWN),
  257. KEY(2, 7, KEY_LEFT),
  258. KEY(3, 7, KEY_RIGHT),
  259. KEY(2, 6, KEY_HOME),
  260. KEY(3, 6, KEY_END),
  261. KEY(6, 4, KEY_DELETE),
  262. KEY(6, 6, KEY_BACK),
  263. KEY(6, 3, KEY_CAPSLOCK), /* KEY_LEFTSHIFT), */
  264. KEY(4, 6, KEY_ENTER), /* scroll push */
  265. KEY(5, 7, KEY_ENTER), /* keypad action */
  266. KEY(0, 4, KEY_EMAIL),
  267. KEY(5, 6, KEY_SEND),
  268. KEY(4, 0, KEY_CALENDAR),
  269. KEY(7, 6, KEY_RECORD),
  270. KEY(6, 7, KEY_VOLUMEUP),
  271. KEY(7, 7, KEY_VOLUMEDOWN),
  272. KEY(0, 6, KEY_F22), /* soft1 */
  273. KEY(1, 6, KEY_F23), /* soft2 */
  274. KEY(0, 3, KEY_AUX), /* contact */
  275. };
  276. static struct matrix_keymap_data zylonite_matrix_keymap_data = {
  277. .keymap = zylonite_matrix_key_map,
  278. .keymap_size = ARRAY_SIZE(zylonite_matrix_key_map),
  279. };
  280. static struct pxa27x_keypad_platform_data zylonite_keypad_info = {
  281. .matrix_key_rows = 8,
  282. .matrix_key_cols = 8,
  283. .matrix_keymap_data = &zylonite_matrix_keymap_data,
  284. .enable_rotary0 = 1,
  285. .rotary0_up_key = KEY_UP,
  286. .rotary0_down_key = KEY_DOWN,
  287. .debounce_interval = 30,
  288. };
  289. static void __init zylonite_init_keypad(void)
  290. {
  291. pxa_set_keypad_info(&zylonite_keypad_info);
  292. }
  293. #else
  294. static inline void zylonite_init_keypad(void) {}
  295. #endif
  296. #if IS_ENABLED(CONFIG_MTD_NAND_MARVELL)
  297. static struct mtd_partition zylonite_nand_partitions[] = {
  298. [0] = {
  299. .name = "Bootloader",
  300. .offset = 0,
  301. .size = 0x060000,
  302. .mask_flags = MTD_WRITEABLE, /* force read-only */
  303. },
  304. [1] = {
  305. .name = "Kernel",
  306. .offset = 0x060000,
  307. .size = 0x200000,
  308. .mask_flags = MTD_WRITEABLE, /* force read-only */
  309. },
  310. [2] = {
  311. .name = "Filesystem",
  312. .offset = 0x0260000,
  313. .size = 0x3000000, /* 48M - rootfs */
  314. },
  315. [3] = {
  316. .name = "MassStorage",
  317. .offset = 0x3260000,
  318. .size = 0x3d40000,
  319. },
  320. [4] = {
  321. .name = "BBT",
  322. .offset = 0x6FA0000,
  323. .size = 0x80000,
  324. .mask_flags = MTD_WRITEABLE, /* force read-only */
  325. },
  326. /* NOTE: we reserve some blocks at the end of the NAND flash for
  327. * bad block management, and the max number of relocation blocks
  328. * differs on different platforms. Please take care with it when
  329. * defining the partition table.
  330. */
  331. };
  332. static struct pxa3xx_nand_platform_data zylonite_nand_info = {
  333. .parts = zylonite_nand_partitions,
  334. .nr_parts = ARRAY_SIZE(zylonite_nand_partitions),
  335. };
  336. static void __init zylonite_init_nand(void)
  337. {
  338. pxa3xx_set_nand_info(&zylonite_nand_info);
  339. }
  340. #else
  341. static inline void zylonite_init_nand(void) {}
  342. #endif /* IS_ENABLED(CONFIG_MTD_NAND_MARVELL) */
  343. #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
  344. static struct pxaohci_platform_data zylonite_ohci_info = {
  345. .port_mode = PMM_PERPORT_MODE,
  346. .flags = ENABLE_PORT1 | ENABLE_PORT2 |
  347. POWER_CONTROL_LOW | POWER_SENSE_LOW,
  348. };
  349. static void __init zylonite_init_ohci(void)
  350. {
  351. pxa_set_ohci_info(&zylonite_ohci_info);
  352. }
  353. #else
  354. static inline void zylonite_init_ohci(void) {}
  355. #endif /* CONFIG_USB_OHCI_HCD || CONFIG_USB_OHCI_HCD_MODULE */
  356. static void __init zylonite_init(void)
  357. {
  358. pxa_set_ffuart_info(NULL);
  359. pxa_set_btuart_info(NULL);
  360. pxa_set_stuart_info(NULL);
  361. /* board-processor specific initialization */
  362. zylonite_pxa300_init();
  363. zylonite_pxa320_init();
  364. /*
  365. * Note: We depend that the bootloader set
  366. * the correct value to MSC register for SMC91x.
  367. */
  368. smc91x_resources[1].start = PXA_GPIO_TO_IRQ(gpio_eth_irq);
  369. smc91x_resources[1].end = PXA_GPIO_TO_IRQ(gpio_eth_irq);
  370. platform_device_register(&smc91x_device);
  371. pxa_set_ac97_info(NULL);
  372. zylonite_init_lcd();
  373. zylonite_init_mmc();
  374. zylonite_init_keypad();
  375. zylonite_init_nand();
  376. zylonite_init_leds();
  377. zylonite_init_ohci();
  378. zylonite_init_wm9713_audio();
  379. }
  380. MACHINE_START(ZYLONITE, "PXA3xx Platform Development Kit (aka Zylonite)")
  381. .atag_offset = 0x100,
  382. .map_io = pxa3xx_map_io,
  383. .nr_irqs = ZYLONITE_NR_IRQS,
  384. .init_irq = pxa3xx_init_irq,
  385. .handle_irq = pxa3xx_handle_irq,
  386. .init_time = pxa_timer_init,
  387. .init_machine = zylonite_init,
  388. .restart = pxa_restart,
  389. MACHINE_END