littleton.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. /*
  2. * linux/arch/arm/mach-pxa/littleton.c
  3. *
  4. * Support for the Marvell Littleton Development Platform.
  5. *
  6. * Author: Jason Chagas (largely modified code)
  7. * Created: Nov 20, 2006
  8. * Copyright: (C) Copyright 2006 Marvell International Ltd.
  9. *
  10. * 2007-11-22 modified to align with latest kernel
  11. * eric miao <eric.miao@marvell.com>
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License version 2 as
  15. * publishhed by the Free Software Foundation.
  16. */
  17. #include <linux/init.h>
  18. #include <linux/interrupt.h>
  19. #include <linux/delay.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/clk.h>
  22. #include <asm/types.h>
  23. #include <asm/setup.h>
  24. #include <asm/memory.h>
  25. #include <asm/mach-types.h>
  26. #include <asm/hardware.h>
  27. #include <asm/irq.h>
  28. #include <asm/mach/arch.h>
  29. #include <asm/mach/map.h>
  30. #include <asm/mach/irq.h>
  31. #include <asm/arch/pxa-regs.h>
  32. #include <asm/arch/mfp-pxa300.h>
  33. #include <asm/arch/gpio.h>
  34. #include <asm/arch/pxafb.h>
  35. #include <asm/arch/ssp.h>
  36. #include <asm/arch/pxa27x_keypad.h>
  37. #include <asm/arch/littleton.h>
  38. #include "generic.h"
  39. /* Littleton MFP configurations */
  40. static mfp_cfg_t littleton_mfp_cfg[] __initdata = {
  41. /* LCD */
  42. GPIO54_LCD_LDD_0,
  43. GPIO55_LCD_LDD_1,
  44. GPIO56_LCD_LDD_2,
  45. GPIO57_LCD_LDD_3,
  46. GPIO58_LCD_LDD_4,
  47. GPIO59_LCD_LDD_5,
  48. GPIO60_LCD_LDD_6,
  49. GPIO61_LCD_LDD_7,
  50. GPIO62_LCD_LDD_8,
  51. GPIO63_LCD_LDD_9,
  52. GPIO64_LCD_LDD_10,
  53. GPIO65_LCD_LDD_11,
  54. GPIO66_LCD_LDD_12,
  55. GPIO67_LCD_LDD_13,
  56. GPIO68_LCD_LDD_14,
  57. GPIO69_LCD_LDD_15,
  58. GPIO70_LCD_LDD_16,
  59. GPIO71_LCD_LDD_17,
  60. GPIO72_LCD_FCLK,
  61. GPIO73_LCD_LCLK,
  62. GPIO74_LCD_PCLK,
  63. GPIO75_LCD_BIAS,
  64. /* SSP2 */
  65. GPIO25_SSP2_SCLK,
  66. GPIO17_SSP2_FRM,
  67. GPIO27_SSP2_TXD,
  68. /* Debug Ethernet */
  69. GPIO90_GPIO,
  70. /* Keypad */
  71. GPIO107_KP_DKIN_0,
  72. GPIO108_KP_DKIN_1,
  73. GPIO115_KP_MKIN_0,
  74. GPIO116_KP_MKIN_1,
  75. GPIO117_KP_MKIN_2,
  76. GPIO118_KP_MKIN_3,
  77. GPIO119_KP_MKIN_4,
  78. GPIO120_KP_MKIN_5,
  79. GPIO121_KP_MKOUT_0,
  80. GPIO122_KP_MKOUT_1,
  81. GPIO123_KP_MKOUT_2,
  82. GPIO124_KP_MKOUT_3,
  83. GPIO125_KP_MKOUT_4,
  84. };
  85. static struct resource smc91x_resources[] = {
  86. [0] = {
  87. .start = (LITTLETON_ETH_PHYS + 0x300),
  88. .end = (LITTLETON_ETH_PHYS + 0xfffff),
  89. .flags = IORESOURCE_MEM,
  90. },
  91. [1] = {
  92. .start = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO90)),
  93. .end = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO90)),
  94. .flags = IORESOURCE_IRQ | IRQF_TRIGGER_FALLING,
  95. }
  96. };
  97. static struct platform_device smc91x_device = {
  98. .name = "smc91x",
  99. .id = 0,
  100. .num_resources = ARRAY_SIZE(smc91x_resources),
  101. .resource = smc91x_resources,
  102. };
  103. #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULES)
  104. /* use bit 30, 31 as the indicator of command parameter number */
  105. #define CMD0(x) ((0x00000000) | ((x) << 9))
  106. #define CMD1(x, x1) ((0x40000000) | ((x) << 9) | 0x100 | (x1))
  107. #define CMD2(x, x1, x2) ((0x80000000) | ((x) << 18) | 0x20000 |\
  108. ((x1) << 9) | 0x100 | (x2))
  109. static uint32_t lcd_panel_reset[] = {
  110. CMD0(0x1), /* reset */
  111. CMD0(0x0), /* nop */
  112. CMD0(0x0), /* nop */
  113. CMD0(0x0), /* nop */
  114. };
  115. static uint32_t lcd_panel_on[] = {
  116. CMD0(0x29), /* Display ON */
  117. CMD2(0xB8, 0xFF, 0xF9), /* Output Control */
  118. CMD0(0x11), /* Sleep out */
  119. CMD1(0xB0, 0x16), /* Wake */
  120. };
  121. static uint32_t lcd_panel_off[] = {
  122. CMD0(0x28), /* Display OFF */
  123. CMD2(0xB8, 0x80, 0x02), /* Output Control */
  124. CMD0(0x10), /* Sleep in */
  125. CMD1(0xB0, 0x00), /* Deep stand by in */
  126. };
  127. static uint32_t lcd_vga_pass_through[] = {
  128. CMD1(0xB0, 0x16),
  129. CMD1(0xBC, 0x80),
  130. CMD1(0xE1, 0x00),
  131. CMD1(0x36, 0x50),
  132. CMD1(0x3B, 0x00),
  133. };
  134. static uint32_t lcd_qvga_pass_through[] = {
  135. CMD1(0xB0, 0x16),
  136. CMD1(0xBC, 0x81),
  137. CMD1(0xE1, 0x00),
  138. CMD1(0x36, 0x50),
  139. CMD1(0x3B, 0x22),
  140. };
  141. static uint32_t lcd_vga_transfer[] = {
  142. CMD1(0xcf, 0x02), /* Blanking period control (1) */
  143. CMD2(0xd0, 0x08, 0x04), /* Blanking period control (2) */
  144. CMD1(0xd1, 0x01), /* CKV timing control on/off */
  145. CMD2(0xd2, 0x14, 0x00), /* CKV 1,2 timing control */
  146. CMD2(0xd3, 0x1a, 0x0f), /* OEV timing control */
  147. CMD2(0xd4, 0x1f, 0xaf), /* ASW timing control (1) */
  148. CMD1(0xd5, 0x14), /* ASW timing control (2) */
  149. CMD0(0x21), /* Invert for normally black display */
  150. CMD0(0x29), /* Display on */
  151. };
  152. static uint32_t lcd_qvga_transfer[] = {
  153. CMD1(0xd6, 0x02), /* Blanking period control (1) */
  154. CMD2(0xd7, 0x08, 0x04), /* Blanking period control (2) */
  155. CMD1(0xd8, 0x01), /* CKV timing control on/off */
  156. CMD2(0xd9, 0x00, 0x08), /* CKV 1,2 timing control */
  157. CMD2(0xde, 0x05, 0x0a), /* OEV timing control */
  158. CMD2(0xdf, 0x0a, 0x19), /* ASW timing control (1) */
  159. CMD1(0xe0, 0x0a), /* ASW timing control (2) */
  160. CMD0(0x21), /* Invert for normally black display */
  161. CMD0(0x29), /* Display on */
  162. };
  163. static uint32_t lcd_panel_config[] = {
  164. CMD2(0xb8, 0xff, 0xf9), /* Output control */
  165. CMD0(0x11), /* sleep out */
  166. CMD1(0xba, 0x01), /* Display mode (1) */
  167. CMD1(0xbb, 0x00), /* Display mode (2) */
  168. CMD1(0x3a, 0x60), /* Display mode 18-bit RGB */
  169. CMD1(0xbf, 0x10), /* Drive system change control */
  170. CMD1(0xb1, 0x56), /* Booster operation setup */
  171. CMD1(0xb2, 0x33), /* Booster mode setup */
  172. CMD1(0xb3, 0x11), /* Booster frequency setup */
  173. CMD1(0xb4, 0x02), /* Op amp/system clock */
  174. CMD1(0xb5, 0x35), /* VCS voltage */
  175. CMD1(0xb6, 0x40), /* VCOM voltage */
  176. CMD1(0xb7, 0x03), /* External display signal */
  177. CMD1(0xbd, 0x00), /* ASW slew rate */
  178. CMD1(0xbe, 0x00), /* Dummy data for QuadData operation */
  179. CMD1(0xc0, 0x11), /* Sleep out FR count (A) */
  180. CMD1(0xc1, 0x11), /* Sleep out FR count (B) */
  181. CMD1(0xc2, 0x11), /* Sleep out FR count (C) */
  182. CMD2(0xc3, 0x20, 0x40), /* Sleep out FR count (D) */
  183. CMD2(0xc4, 0x60, 0xc0), /* Sleep out FR count (E) */
  184. CMD2(0xc5, 0x10, 0x20), /* Sleep out FR count (F) */
  185. CMD1(0xc6, 0xc0), /* Sleep out FR count (G) */
  186. CMD2(0xc7, 0x33, 0x43), /* Gamma 1 fine tuning (1) */
  187. CMD1(0xc8, 0x44), /* Gamma 1 fine tuning (2) */
  188. CMD1(0xc9, 0x33), /* Gamma 1 inclination adjustment */
  189. CMD1(0xca, 0x00), /* Gamma 1 blue offset adjustment */
  190. CMD2(0xec, 0x01, 0xf0), /* Horizontal clock cycles */
  191. };
  192. static void ssp_reconfig(struct ssp_dev *dev, int nparam)
  193. {
  194. static int last_nparam = -1;
  195. /* check if it is necessary to re-config SSP */
  196. if (nparam == last_nparam)
  197. return;
  198. ssp_disable(dev);
  199. ssp_config(dev, (nparam == 2) ? 0x0010058a : 0x00100581, 0x18, 0, 0);
  200. last_nparam = nparam;
  201. }
  202. static void ssp_send_cmd(uint32_t *cmd, int num)
  203. {
  204. static int ssp_initialized;
  205. static struct ssp_dev ssp2;
  206. int i;
  207. if (!ssp_initialized) {
  208. ssp_init(&ssp2, 2, SSP_NO_IRQ);
  209. ssp_initialized = 1;
  210. }
  211. clk_enable(ssp2.ssp->clk);
  212. for (i = 0; i < num; i++, cmd++) {
  213. ssp_reconfig(&ssp2, (*cmd >> 30) & 0x3);
  214. ssp_write_word(&ssp2, *cmd & 0x3fffffff);
  215. /* FIXME: ssp_flush() is mandatory here to work */
  216. ssp_flush(&ssp2);
  217. }
  218. clk_disable(ssp2.ssp->clk);
  219. }
  220. static void littleton_lcd_power(int on, struct fb_var_screeninfo *var)
  221. {
  222. if (on) {
  223. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_on));
  224. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_reset));
  225. if (var->xres > 240) {
  226. /* VGA */
  227. ssp_send_cmd(ARRAY_AND_SIZE(lcd_vga_pass_through));
  228. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_config));
  229. ssp_send_cmd(ARRAY_AND_SIZE(lcd_vga_transfer));
  230. } else {
  231. /* QVGA */
  232. ssp_send_cmd(ARRAY_AND_SIZE(lcd_qvga_pass_through));
  233. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_config));
  234. ssp_send_cmd(ARRAY_AND_SIZE(lcd_qvga_transfer));
  235. }
  236. } else
  237. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_off));
  238. }
  239. static struct pxafb_mode_info tpo_tdo24mtea1_modes[] = {
  240. [0] = {
  241. /* VGA */
  242. .pixclock = 38250,
  243. .xres = 480,
  244. .yres = 640,
  245. .bpp = 16,
  246. .hsync_len = 8,
  247. .left_margin = 8,
  248. .right_margin = 24,
  249. .vsync_len = 2,
  250. .upper_margin = 2,
  251. .lower_margin = 4,
  252. .sync = 0,
  253. },
  254. [1] = {
  255. /* QVGA */
  256. .pixclock = 153000,
  257. .xres = 240,
  258. .yres = 320,
  259. .bpp = 16,
  260. .hsync_len = 8,
  261. .left_margin = 8,
  262. .right_margin = 88,
  263. .vsync_len = 2,
  264. .upper_margin = 2,
  265. .lower_margin = 2,
  266. .sync = 0,
  267. },
  268. };
  269. static struct pxafb_mach_info littleton_lcd_info = {
  270. .modes = tpo_tdo24mtea1_modes,
  271. .num_modes = 2,
  272. .lccr0 = LCCR0_Act,
  273. .lccr3 = LCCR3_HSP | LCCR3_VSP,
  274. .pxafb_lcd_power = littleton_lcd_power,
  275. };
  276. static void littleton_init_lcd(void)
  277. {
  278. set_pxa_fb_info(&littleton_lcd_info);
  279. }
  280. #else
  281. static inline void littleton_init_lcd(void) {};
  282. #endif /* CONFIG_FB_PXA || CONFIG_FB_PXA_MODULES */
  283. #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULES)
  284. static unsigned int littleton_matrix_key_map[] = {
  285. /* KEY(row, col, key_code) */
  286. KEY(1, 3, KEY_0), KEY(0, 0, KEY_1), KEY(1, 0, KEY_2), KEY(2, 0, KEY_3),
  287. KEY(0, 1, KEY_4), KEY(1, 1, KEY_5), KEY(2, 1, KEY_6), KEY(0, 2, KEY_7),
  288. KEY(1, 2, KEY_8), KEY(2, 2, KEY_9),
  289. KEY(0, 3, KEY_KPASTERISK), /* * */
  290. KEY(2, 3, KEY_KPDOT), /* # */
  291. KEY(5, 4, KEY_ENTER),
  292. KEY(5, 0, KEY_UP),
  293. KEY(5, 1, KEY_DOWN),
  294. KEY(5, 2, KEY_LEFT),
  295. KEY(5, 3, KEY_RIGHT),
  296. KEY(3, 2, KEY_HOME),
  297. KEY(4, 1, KEY_END),
  298. KEY(3, 3, KEY_BACK),
  299. KEY(4, 0, KEY_SEND),
  300. KEY(4, 2, KEY_VOLUMEUP),
  301. KEY(4, 3, KEY_VOLUMEDOWN),
  302. KEY(3, 0, KEY_F22), /* soft1 */
  303. KEY(3, 1, KEY_F23), /* soft2 */
  304. };
  305. static struct pxa27x_keypad_platform_data littleton_keypad_info = {
  306. .matrix_key_rows = 6,
  307. .matrix_key_cols = 5,
  308. .matrix_key_map = littleton_matrix_key_map,
  309. .matrix_key_map_size = ARRAY_SIZE(littleton_matrix_key_map),
  310. .enable_rotary0 = 1,
  311. .rotary0_up_key = KEY_UP,
  312. .rotary0_down_key = KEY_DOWN,
  313. .debounce_interval = 30,
  314. };
  315. static void __init littleton_init_keypad(void)
  316. {
  317. pxa_set_keypad_info(&littleton_keypad_info);
  318. }
  319. #else
  320. static inline void littleton_init_keypad(void) {}
  321. #endif
  322. static void __init littleton_init(void)
  323. {
  324. /* initialize MFP configurations */
  325. pxa3xx_mfp_config(ARRAY_AND_SIZE(littleton_mfp_cfg));
  326. /*
  327. * Note: we depend bootloader set the correct
  328. * value to MSC register for SMC91x.
  329. */
  330. platform_device_register(&smc91x_device);
  331. littleton_init_lcd();
  332. littleton_init_keypad();
  333. }
  334. MACHINE_START(LITTLETON, "Marvell Form Factor Development Platform (aka Littleton)")
  335. .phys_io = 0x40000000,
  336. .boot_params = 0xa0000100,
  337. .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
  338. .map_io = pxa_map_io,
  339. .init_irq = pxa3xx_init_irq,
  340. .timer = &pxa_timer,
  341. .init_machine = littleton_init,
  342. MACHINE_END