littleton.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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/pxa3xx_nand.h>
  38. #include <asm/arch/littleton.h>
  39. #include "generic.h"
  40. /* Littleton MFP configurations */
  41. static mfp_cfg_t littleton_mfp_cfg[] __initdata = {
  42. /* LCD */
  43. GPIO54_LCD_LDD_0,
  44. GPIO55_LCD_LDD_1,
  45. GPIO56_LCD_LDD_2,
  46. GPIO57_LCD_LDD_3,
  47. GPIO58_LCD_LDD_4,
  48. GPIO59_LCD_LDD_5,
  49. GPIO60_LCD_LDD_6,
  50. GPIO61_LCD_LDD_7,
  51. GPIO62_LCD_LDD_8,
  52. GPIO63_LCD_LDD_9,
  53. GPIO64_LCD_LDD_10,
  54. GPIO65_LCD_LDD_11,
  55. GPIO66_LCD_LDD_12,
  56. GPIO67_LCD_LDD_13,
  57. GPIO68_LCD_LDD_14,
  58. GPIO69_LCD_LDD_15,
  59. GPIO70_LCD_LDD_16,
  60. GPIO71_LCD_LDD_17,
  61. GPIO72_LCD_FCLK,
  62. GPIO73_LCD_LCLK,
  63. GPIO74_LCD_PCLK,
  64. GPIO75_LCD_BIAS,
  65. /* SSP2 */
  66. GPIO25_SSP2_SCLK,
  67. GPIO17_SSP2_FRM,
  68. GPIO27_SSP2_TXD,
  69. /* Debug Ethernet */
  70. GPIO90_GPIO,
  71. /* Keypad */
  72. GPIO107_KP_DKIN_0,
  73. GPIO108_KP_DKIN_1,
  74. GPIO115_KP_MKIN_0,
  75. GPIO116_KP_MKIN_1,
  76. GPIO117_KP_MKIN_2,
  77. GPIO118_KP_MKIN_3,
  78. GPIO119_KP_MKIN_4,
  79. GPIO120_KP_MKIN_5,
  80. GPIO121_KP_MKOUT_0,
  81. GPIO122_KP_MKOUT_1,
  82. GPIO123_KP_MKOUT_2,
  83. GPIO124_KP_MKOUT_3,
  84. GPIO125_KP_MKOUT_4,
  85. };
  86. static struct resource smc91x_resources[] = {
  87. [0] = {
  88. .start = (LITTLETON_ETH_PHYS + 0x300),
  89. .end = (LITTLETON_ETH_PHYS + 0xfffff),
  90. .flags = IORESOURCE_MEM,
  91. },
  92. [1] = {
  93. .start = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO90)),
  94. .end = IRQ_GPIO(mfp_to_gpio(MFP_PIN_GPIO90)),
  95. .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE,
  96. }
  97. };
  98. static struct platform_device smc91x_device = {
  99. .name = "smc91x",
  100. .id = 0,
  101. .num_resources = ARRAY_SIZE(smc91x_resources),
  102. .resource = smc91x_resources,
  103. };
  104. #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
  105. /* use bit 30, 31 as the indicator of command parameter number */
  106. #define CMD0(x) ((0x00000000) | ((x) << 9))
  107. #define CMD1(x, x1) ((0x40000000) | ((x) << 9) | 0x100 | (x1))
  108. #define CMD2(x, x1, x2) ((0x80000000) | ((x) << 18) | 0x20000 |\
  109. ((x1) << 9) | 0x100 | (x2))
  110. static uint32_t lcd_panel_reset[] = {
  111. CMD0(0x1), /* reset */
  112. CMD0(0x0), /* nop */
  113. CMD0(0x0), /* nop */
  114. CMD0(0x0), /* nop */
  115. };
  116. static uint32_t lcd_panel_on[] = {
  117. CMD0(0x29), /* Display ON */
  118. CMD2(0xB8, 0xFF, 0xF9), /* Output Control */
  119. CMD0(0x11), /* Sleep out */
  120. CMD1(0xB0, 0x16), /* Wake */
  121. };
  122. static uint32_t lcd_panel_off[] = {
  123. CMD0(0x28), /* Display OFF */
  124. CMD2(0xB8, 0x80, 0x02), /* Output Control */
  125. CMD0(0x10), /* Sleep in */
  126. CMD1(0xB0, 0x00), /* Deep stand by in */
  127. };
  128. static uint32_t lcd_vga_pass_through[] = {
  129. CMD1(0xB0, 0x16),
  130. CMD1(0xBC, 0x80),
  131. CMD1(0xE1, 0x00),
  132. CMD1(0x36, 0x50),
  133. CMD1(0x3B, 0x00),
  134. };
  135. static uint32_t lcd_qvga_pass_through[] = {
  136. CMD1(0xB0, 0x16),
  137. CMD1(0xBC, 0x81),
  138. CMD1(0xE1, 0x00),
  139. CMD1(0x36, 0x50),
  140. CMD1(0x3B, 0x22),
  141. };
  142. static uint32_t lcd_vga_transfer[] = {
  143. CMD1(0xcf, 0x02), /* Blanking period control (1) */
  144. CMD2(0xd0, 0x08, 0x04), /* Blanking period control (2) */
  145. CMD1(0xd1, 0x01), /* CKV timing control on/off */
  146. CMD2(0xd2, 0x14, 0x00), /* CKV 1,2 timing control */
  147. CMD2(0xd3, 0x1a, 0x0f), /* OEV timing control */
  148. CMD2(0xd4, 0x1f, 0xaf), /* ASW timing control (1) */
  149. CMD1(0xd5, 0x14), /* ASW timing control (2) */
  150. CMD0(0x21), /* Invert for normally black display */
  151. CMD0(0x29), /* Display on */
  152. };
  153. static uint32_t lcd_qvga_transfer[] = {
  154. CMD1(0xd6, 0x02), /* Blanking period control (1) */
  155. CMD2(0xd7, 0x08, 0x04), /* Blanking period control (2) */
  156. CMD1(0xd8, 0x01), /* CKV timing control on/off */
  157. CMD2(0xd9, 0x00, 0x08), /* CKV 1,2 timing control */
  158. CMD2(0xde, 0x05, 0x0a), /* OEV timing control */
  159. CMD2(0xdf, 0x0a, 0x19), /* ASW timing control (1) */
  160. CMD1(0xe0, 0x0a), /* ASW timing control (2) */
  161. CMD0(0x21), /* Invert for normally black display */
  162. CMD0(0x29), /* Display on */
  163. };
  164. static uint32_t lcd_panel_config[] = {
  165. CMD2(0xb8, 0xff, 0xf9), /* Output control */
  166. CMD0(0x11), /* sleep out */
  167. CMD1(0xba, 0x01), /* Display mode (1) */
  168. CMD1(0xbb, 0x00), /* Display mode (2) */
  169. CMD1(0x3a, 0x60), /* Display mode 18-bit RGB */
  170. CMD1(0xbf, 0x10), /* Drive system change control */
  171. CMD1(0xb1, 0x56), /* Booster operation setup */
  172. CMD1(0xb2, 0x33), /* Booster mode setup */
  173. CMD1(0xb3, 0x11), /* Booster frequency setup */
  174. CMD1(0xb4, 0x02), /* Op amp/system clock */
  175. CMD1(0xb5, 0x35), /* VCS voltage */
  176. CMD1(0xb6, 0x40), /* VCOM voltage */
  177. CMD1(0xb7, 0x03), /* External display signal */
  178. CMD1(0xbd, 0x00), /* ASW slew rate */
  179. CMD1(0xbe, 0x00), /* Dummy data for QuadData operation */
  180. CMD1(0xc0, 0x11), /* Sleep out FR count (A) */
  181. CMD1(0xc1, 0x11), /* Sleep out FR count (B) */
  182. CMD1(0xc2, 0x11), /* Sleep out FR count (C) */
  183. CMD2(0xc3, 0x20, 0x40), /* Sleep out FR count (D) */
  184. CMD2(0xc4, 0x60, 0xc0), /* Sleep out FR count (E) */
  185. CMD2(0xc5, 0x10, 0x20), /* Sleep out FR count (F) */
  186. CMD1(0xc6, 0xc0), /* Sleep out FR count (G) */
  187. CMD2(0xc7, 0x33, 0x43), /* Gamma 1 fine tuning (1) */
  188. CMD1(0xc8, 0x44), /* Gamma 1 fine tuning (2) */
  189. CMD1(0xc9, 0x33), /* Gamma 1 inclination adjustment */
  190. CMD1(0xca, 0x00), /* Gamma 1 blue offset adjustment */
  191. CMD2(0xec, 0x01, 0xf0), /* Horizontal clock cycles */
  192. };
  193. static void ssp_reconfig(struct ssp_dev *dev, int nparam)
  194. {
  195. static int last_nparam = -1;
  196. /* check if it is necessary to re-config SSP */
  197. if (nparam == last_nparam)
  198. return;
  199. ssp_disable(dev);
  200. ssp_config(dev, (nparam == 2) ? 0x0010058a : 0x00100581, 0x18, 0, 0);
  201. last_nparam = nparam;
  202. }
  203. static void ssp_send_cmd(uint32_t *cmd, int num)
  204. {
  205. static int ssp_initialized;
  206. static struct ssp_dev ssp2;
  207. int i;
  208. if (!ssp_initialized) {
  209. ssp_init(&ssp2, 2, SSP_NO_IRQ);
  210. ssp_initialized = 1;
  211. }
  212. clk_enable(ssp2.ssp->clk);
  213. for (i = 0; i < num; i++, cmd++) {
  214. ssp_reconfig(&ssp2, (*cmd >> 30) & 0x3);
  215. ssp_write_word(&ssp2, *cmd & 0x3fffffff);
  216. /* FIXME: ssp_flush() is mandatory here to work */
  217. ssp_flush(&ssp2);
  218. }
  219. clk_disable(ssp2.ssp->clk);
  220. }
  221. static void littleton_lcd_power(int on, struct fb_var_screeninfo *var)
  222. {
  223. if (on) {
  224. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_on));
  225. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_reset));
  226. if (var->xres > 240) {
  227. /* VGA */
  228. ssp_send_cmd(ARRAY_AND_SIZE(lcd_vga_pass_through));
  229. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_config));
  230. ssp_send_cmd(ARRAY_AND_SIZE(lcd_vga_transfer));
  231. } else {
  232. /* QVGA */
  233. ssp_send_cmd(ARRAY_AND_SIZE(lcd_qvga_pass_through));
  234. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_config));
  235. ssp_send_cmd(ARRAY_AND_SIZE(lcd_qvga_transfer));
  236. }
  237. } else
  238. ssp_send_cmd(ARRAY_AND_SIZE(lcd_panel_off));
  239. }
  240. static struct pxafb_mode_info tpo_tdo24mtea1_modes[] = {
  241. [0] = {
  242. /* VGA */
  243. .pixclock = 38250,
  244. .xres = 480,
  245. .yres = 640,
  246. .bpp = 16,
  247. .hsync_len = 8,
  248. .left_margin = 8,
  249. .right_margin = 24,
  250. .vsync_len = 2,
  251. .upper_margin = 2,
  252. .lower_margin = 4,
  253. .sync = 0,
  254. },
  255. [1] = {
  256. /* QVGA */
  257. .pixclock = 153000,
  258. .xres = 240,
  259. .yres = 320,
  260. .bpp = 16,
  261. .hsync_len = 8,
  262. .left_margin = 8,
  263. .right_margin = 88,
  264. .vsync_len = 2,
  265. .upper_margin = 2,
  266. .lower_margin = 2,
  267. .sync = 0,
  268. },
  269. };
  270. static struct pxafb_mach_info littleton_lcd_info = {
  271. .modes = tpo_tdo24mtea1_modes,
  272. .num_modes = 2,
  273. .lcd_conn = LCD_COLOR_TFT_16BPP,
  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_MODULE */
  283. #if defined(CONFIG_KEYBOARD_PXA27x) || defined(CONFIG_KEYBOARD_PXA27x_MODULE)
  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. #if defined(CONFIG_MTD_NAND_PXA3xx) || defined(CONFIG_MTD_NAND_PXA3xx_MODULE)
  323. static struct mtd_partition littleton_nand_partitions[] = {
  324. [0] = {
  325. .name = "Bootloader",
  326. .offset = 0,
  327. .size = 0x060000,
  328. .mask_flags = MTD_WRITEABLE, /* force read-only */
  329. },
  330. [1] = {
  331. .name = "Kernel",
  332. .offset = 0x060000,
  333. .size = 0x200000,
  334. .mask_flags = MTD_WRITEABLE, /* force read-only */
  335. },
  336. [2] = {
  337. .name = "Filesystem",
  338. .offset = 0x0260000,
  339. .size = 0x3000000, /* 48M - rootfs */
  340. },
  341. [3] = {
  342. .name = "MassStorage",
  343. .offset = 0x3260000,
  344. .size = 0x3d40000,
  345. },
  346. [4] = {
  347. .name = "BBT",
  348. .offset = 0x6FA0000,
  349. .size = 0x80000,
  350. .mask_flags = MTD_WRITEABLE, /* force read-only */
  351. },
  352. /* NOTE: we reserve some blocks at the end of the NAND flash for
  353. * bad block management, and the max number of relocation blocks
  354. * differs on different platforms. Please take care with it when
  355. * defining the partition table.
  356. */
  357. };
  358. static struct pxa3xx_nand_platform_data littleton_nand_info = {
  359. .enable_arbiter = 1,
  360. .parts = littleton_nand_partitions,
  361. .nr_parts = ARRAY_SIZE(littleton_nand_partitions),
  362. };
  363. static void __init littleton_init_nand(void)
  364. {
  365. pxa3xx_set_nand_info(&littleton_nand_info);
  366. }
  367. #else
  368. static inline void littleton_init_nand(void) {}
  369. #endif /* CONFIG_MTD_NAND_PXA3xx || CONFIG_MTD_NAND_PXA3xx_MODULE */
  370. static void __init littleton_init(void)
  371. {
  372. /* initialize MFP configurations */
  373. pxa3xx_mfp_config(ARRAY_AND_SIZE(littleton_mfp_cfg));
  374. /*
  375. * Note: we depend bootloader set the correct
  376. * value to MSC register for SMC91x.
  377. */
  378. platform_device_register(&smc91x_device);
  379. littleton_init_lcd();
  380. littleton_init_keypad();
  381. littleton_init_nand();
  382. }
  383. MACHINE_START(LITTLETON, "Marvell Form Factor Development Platform (aka Littleton)")
  384. .phys_io = 0x40000000,
  385. .boot_params = 0xa0000100,
  386. .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
  387. .map_io = pxa_map_io,
  388. .init_irq = pxa3xx_init_irq,
  389. .timer = &pxa_timer,
  390. .init_machine = littleton_init,
  391. MACHINE_END