mach-qt2410.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. /* linux/arch/arm/mach-s3c2410/mach-qt2410.c
  2. *
  3. * Copyright (C) 2006 by OpenMoko, Inc.
  4. * Author: Harald Welte <laforge@openmoko.org>
  5. * All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. *
  22. */
  23. #include <linux/kernel.h>
  24. #include <linux/types.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/list.h>
  27. #include <linux/timer.h>
  28. #include <linux/init.h>
  29. #include <linux/platform_device.h>
  30. #include <linux/serial_core.h>
  31. #include <linux/spi/spi.h>
  32. #include <linux/spi/spi_bitbang.h>
  33. #include <linux/mtd/mtd.h>
  34. #include <linux/mtd/nand.h>
  35. #include <linux/mtd/nand_ecc.h>
  36. #include <linux/mtd/partitions.h>
  37. #include <asm/mach/arch.h>
  38. #include <asm/mach/map.h>
  39. #include <asm/mach/irq.h>
  40. #include <asm/hardware.h>
  41. #include <asm/io.h>
  42. #include <asm/irq.h>
  43. #include <asm/mach-types.h>
  44. #include <asm/arch/regs-gpio.h>
  45. #include <asm/arch/leds-gpio.h>
  46. #include <asm/arch/regs-serial.h>
  47. #include <asm/arch/fb.h>
  48. #include <asm/arch/nand.h>
  49. #include <asm/arch/udc.h>
  50. #include <asm/arch/spi.h>
  51. #include <asm/arch/spi-gpio.h>
  52. #include <asm/plat-s3c24xx/common-smdk.h>
  53. #include <asm/plat-s3c24xx/devs.h>
  54. #include <asm/plat-s3c24xx/cpu.h>
  55. #include <asm/plat-s3c24xx/pm.h>
  56. static struct map_desc qt2410_iodesc[] __initdata = {
  57. { 0xe0000000, __phys_to_pfn(S3C2410_CS3+0x01000000), SZ_1M, MT_DEVICE }
  58. };
  59. #define UCON S3C2410_UCON_DEFAULT
  60. #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
  61. #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
  62. static struct s3c2410_uartcfg smdk2410_uartcfgs[] = {
  63. [0] = {
  64. .hwport = 0,
  65. .flags = 0,
  66. .ucon = UCON,
  67. .ulcon = ULCON,
  68. .ufcon = UFCON,
  69. },
  70. [1] = {
  71. .hwport = 1,
  72. .flags = 0,
  73. .ucon = UCON,
  74. .ulcon = ULCON,
  75. .ufcon = UFCON,
  76. },
  77. [2] = {
  78. .hwport = 2,
  79. .flags = 0,
  80. .ucon = UCON,
  81. .ulcon = ULCON,
  82. .ufcon = UFCON,
  83. }
  84. };
  85. /* LCD driver info */
  86. /* Configuration for 640x480 SHARP LQ080V3DG01 */
  87. static struct s3c2410fb_mach_info qt2410_biglcd_cfg __initdata = {
  88. .regs = {
  89. .lcdcon1 = S3C2410_LCDCON1_TFT16BPP |
  90. S3C2410_LCDCON1_TFT |
  91. S3C2410_LCDCON1_CLKVAL(0x01), /* HCLK/4 */
  92. .lcdcon2 = S3C2410_LCDCON2_VBPD(18) | /* 19 */
  93. S3C2410_LCDCON2_LINEVAL(479) |
  94. S3C2410_LCDCON2_VFPD(10) | /* 11 */
  95. S3C2410_LCDCON2_VSPW(14), /* 15 */
  96. .lcdcon3 = S3C2410_LCDCON3_HBPD(43) | /* 44 */
  97. S3C2410_LCDCON3_HOZVAL(639) | /* 640 */
  98. S3C2410_LCDCON3_HFPD(115), /* 116 */
  99. .lcdcon4 = S3C2410_LCDCON4_MVAL(0) |
  100. S3C2410_LCDCON4_HSPW(95), /* 96 */
  101. .lcdcon5 = S3C2410_LCDCON5_FRM565 |
  102. S3C2410_LCDCON5_INVVLINE |
  103. S3C2410_LCDCON5_INVVFRAME |
  104. S3C2410_LCDCON5_PWREN |
  105. S3C2410_LCDCON5_HWSWP,
  106. },
  107. .lpcsel = ((0xCE6) & ~7) | 1<<4,
  108. .width = 640,
  109. .height = 480,
  110. .xres = {
  111. .min = 640,
  112. .max = 640,
  113. .defval = 640,
  114. },
  115. .yres = {
  116. .min = 480,
  117. .max = 480,
  118. .defval = 480,
  119. },
  120. .bpp = {
  121. .min = 16,
  122. .max = 16,
  123. .defval = 16,
  124. },
  125. };
  126. /* Configuration for 480x640 toppoly TD028TTEC1 */
  127. static struct s3c2410fb_mach_info qt2410_prodlcd_cfg __initdata = {
  128. .regs = {
  129. .lcdcon1 = S3C2410_LCDCON1_TFT16BPP |
  130. S3C2410_LCDCON1_TFT |
  131. S3C2410_LCDCON1_CLKVAL(0x01), /* HCLK/4 */
  132. .lcdcon2 = S3C2410_LCDCON2_VBPD(1) | /* 2 */
  133. S3C2410_LCDCON2_LINEVAL(639) |/* 640 */
  134. S3C2410_LCDCON2_VFPD(3) | /* 4 */
  135. S3C2410_LCDCON2_VSPW(1), /* 2 */
  136. .lcdcon3 = S3C2410_LCDCON3_HBPD(7) | /* 8 */
  137. S3C2410_LCDCON3_HOZVAL(479) | /* 479 */
  138. S3C2410_LCDCON3_HFPD(23), /* 24 */
  139. .lcdcon4 = S3C2410_LCDCON4_MVAL(0) |
  140. S3C2410_LCDCON4_HSPW(7), /* 8 */
  141. .lcdcon5 = S3C2410_LCDCON5_FRM565 |
  142. S3C2410_LCDCON5_INVVLINE |
  143. S3C2410_LCDCON5_INVVFRAME |
  144. S3C2410_LCDCON5_PWREN |
  145. S3C2410_LCDCON5_HWSWP,
  146. },
  147. .lpcsel = ((0xCE6) & ~7) | 1<<4,
  148. .width = 480,
  149. .height = 640,
  150. .xres = {
  151. .min = 480,
  152. .max = 480,
  153. .defval = 480,
  154. },
  155. .yres = {
  156. .min = 640,
  157. .max = 640,
  158. .defval = 640,
  159. },
  160. .bpp = {
  161. .min = 16,
  162. .max = 16,
  163. .defval = 16,
  164. },
  165. };
  166. /* Config for 240x320 LCD */
  167. static struct s3c2410fb_mach_info qt2410_lcd_cfg __initdata = {
  168. .regs = {
  169. .lcdcon1 = S3C2410_LCDCON1_TFT16BPP |
  170. S3C2410_LCDCON1_TFT |
  171. S3C2410_LCDCON1_CLKVAL(0x04),
  172. .lcdcon2 = S3C2410_LCDCON2_VBPD(1) |
  173. S3C2410_LCDCON2_LINEVAL(319) |
  174. S3C2410_LCDCON2_VFPD(6) |
  175. S3C2410_LCDCON2_VSPW(3),
  176. .lcdcon3 = S3C2410_LCDCON3_HBPD(12) |
  177. S3C2410_LCDCON3_HOZVAL(239) |
  178. S3C2410_LCDCON3_HFPD(7),
  179. .lcdcon4 = S3C2410_LCDCON4_MVAL(0) |
  180. S3C2410_LCDCON4_HSPW(3),
  181. .lcdcon5 = S3C2410_LCDCON5_FRM565 |
  182. S3C2410_LCDCON5_INVVLINE |
  183. S3C2410_LCDCON5_INVVFRAME |
  184. S3C2410_LCDCON5_PWREN |
  185. S3C2410_LCDCON5_HWSWP,
  186. },
  187. .lpcsel = ((0xCE6) & ~7) | 1<<4,
  188. .width = 240,
  189. .height = 320,
  190. .xres = {
  191. .min = 240,
  192. .max = 240,
  193. .defval = 240,
  194. },
  195. .yres = {
  196. .min = 320,
  197. .max = 320,
  198. .defval = 320,
  199. },
  200. .bpp = {
  201. .min = 16,
  202. .max = 16,
  203. .defval = 16,
  204. },
  205. };
  206. /* CS8900 */
  207. static struct resource qt2410_cs89x0_resources[] = {
  208. [0] = {
  209. .start = 0x19000000,
  210. .end = 0x19000000 + 16,
  211. .flags = IORESOURCE_MEM,
  212. },
  213. [1] = {
  214. .start = IRQ_EINT9,
  215. .end = IRQ_EINT9,
  216. .flags = IORESOURCE_IRQ,
  217. },
  218. };
  219. static struct platform_device qt2410_cs89x0 = {
  220. .name = "cirrus-cs89x0",
  221. .num_resources = ARRAY_SIZE(qt2410_cs89x0_resources),
  222. .resource = qt2410_cs89x0_resources,
  223. };
  224. /* LED */
  225. static struct s3c24xx_led_platdata qt2410_pdata_led = {
  226. .gpio = S3C2410_GPB0,
  227. .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE,
  228. .name = "led",
  229. .def_trigger = "timer",
  230. };
  231. static struct platform_device qt2410_led = {
  232. .name = "s3c24xx_led",
  233. .id = 0,
  234. .dev = {
  235. .platform_data = &qt2410_pdata_led,
  236. },
  237. };
  238. /* SPI */
  239. static void spi_gpio_cs(struct s3c2410_spigpio_info *spi, int cs)
  240. {
  241. switch (cs) {
  242. case BITBANG_CS_ACTIVE:
  243. s3c2410_gpio_setpin(S3C2410_GPB5, 0);
  244. break;
  245. case BITBANG_CS_INACTIVE:
  246. s3c2410_gpio_setpin(S3C2410_GPB5, 1);
  247. break;
  248. }
  249. }
  250. static struct s3c2410_spigpio_info spi_gpio_cfg = {
  251. .pin_clk = S3C2410_GPG7,
  252. .pin_mosi = S3C2410_GPG6,
  253. .pin_miso = S3C2410_GPG5,
  254. .chip_select = &spi_gpio_cs,
  255. };
  256. static struct platform_device qt2410_spi = {
  257. .name = "s3c24xx-spi-gpio",
  258. .id = 1,
  259. .dev = {
  260. .platform_data = &spi_gpio_cfg,
  261. },
  262. };
  263. /* Board devices */
  264. static struct platform_device *qt2410_devices[] __initdata = {
  265. &s3c_device_usb,
  266. &s3c_device_lcd,
  267. &s3c_device_wdt,
  268. &s3c_device_i2c,
  269. &s3c_device_iis,
  270. &s3c_device_sdi,
  271. &s3c_device_usbgadget,
  272. &qt2410_spi,
  273. &qt2410_cs89x0,
  274. &qt2410_led,
  275. };
  276. static struct mtd_partition qt2410_nand_part[] = {
  277. [0] = {
  278. .name = "U-Boot",
  279. .size = 0x30000,
  280. .offset = 0,
  281. },
  282. [1] = {
  283. .name = "U-Boot environment",
  284. .offset = 0x30000,
  285. .size = 0x4000,
  286. },
  287. [2] = {
  288. .name = "kernel",
  289. .offset = 0x34000,
  290. .size = SZ_2M,
  291. },
  292. [3] = {
  293. .name = "initrd",
  294. .offset = 0x234000,
  295. .size = SZ_4M,
  296. },
  297. [4] = {
  298. .name = "jffs2",
  299. .offset = 0x634000,
  300. .size = 0x39cc000,
  301. },
  302. };
  303. static struct s3c2410_nand_set qt2410_nand_sets[] = {
  304. [0] = {
  305. .name = "NAND",
  306. .nr_chips = 1,
  307. .nr_partitions = ARRAY_SIZE(qt2410_nand_part),
  308. .partitions = qt2410_nand_part,
  309. },
  310. };
  311. /* choose a set of timings which should suit most 512Mbit
  312. * chips and beyond.
  313. */
  314. static struct s3c2410_platform_nand qt2410_nand_info = {
  315. .tacls = 20,
  316. .twrph0 = 60,
  317. .twrph1 = 20,
  318. .nr_sets = ARRAY_SIZE(qt2410_nand_sets),
  319. .sets = qt2410_nand_sets,
  320. };
  321. /* UDC */
  322. static struct s3c2410_udc_mach_info qt2410_udc_cfg = {
  323. };
  324. static char tft_type = 's';
  325. static int __init qt2410_tft_setup(char *str)
  326. {
  327. tft_type = str[0];
  328. return 1;
  329. }
  330. __setup("tft=", qt2410_tft_setup);
  331. static void __init qt2410_map_io(void)
  332. {
  333. s3c24xx_init_io(qt2410_iodesc, ARRAY_SIZE(qt2410_iodesc));
  334. s3c24xx_init_clocks(12*1000*1000);
  335. s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
  336. }
  337. static void __init qt2410_machine_init(void)
  338. {
  339. s3c_device_nand.dev.platform_data = &qt2410_nand_info;
  340. switch (tft_type) {
  341. case 'p': /* production */
  342. s3c24xx_fb_set_platdata(&qt2410_prodlcd_cfg);
  343. break;
  344. case 'b': /* big */
  345. s3c24xx_fb_set_platdata(&qt2410_biglcd_cfg);
  346. break;
  347. case 's': /* small */
  348. default:
  349. s3c24xx_fb_set_platdata(&qt2410_lcd_cfg);
  350. break;
  351. }
  352. s3c2410_gpio_cfgpin(S3C2410_GPB0, S3C2410_GPIO_OUTPUT);
  353. s3c2410_gpio_setpin(S3C2410_GPB0, 1);
  354. s3c24xx_udc_set_platdata(&qt2410_udc_cfg);
  355. s3c2410_gpio_cfgpin(S3C2410_GPB5, S3C2410_GPIO_OUTPUT);
  356. platform_add_devices(qt2410_devices, ARRAY_SIZE(qt2410_devices));
  357. s3c2410_pm_init();
  358. }
  359. MACHINE_START(QT2410, "QT2410")
  360. .phys_io = S3C2410_PA_UART,
  361. .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
  362. .boot_params = S3C2410_SDRAM_PA + 0x100,
  363. .map_io = qt2410_map_io,
  364. .init_irq = s3c24xx_init_irq,
  365. .init_machine = qt2410_machine_init,
  366. .timer = &s3c24xx_timer,
  367. MACHINE_END