mach-qt2410.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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/sysdev.h>
  30. #include <linux/platform_device.h>
  31. #include <linux/serial_core.h>
  32. #include <linux/spi/spi.h>
  33. #include <linux/spi/spi_bitbang.h>
  34. #include <linux/io.h>
  35. #include <linux/mtd/mtd.h>
  36. #include <linux/mtd/nand.h>
  37. #include <linux/mtd/nand_ecc.h>
  38. #include <linux/mtd/partitions.h>
  39. #include <asm/mach/arch.h>
  40. #include <asm/mach/map.h>
  41. #include <asm/mach/irq.h>
  42. #include <mach/hardware.h>
  43. #include <asm/irq.h>
  44. #include <asm/mach-types.h>
  45. #include <mach/regs-gpio.h>
  46. #include <mach/leds-gpio.h>
  47. #include <plat/regs-serial.h>
  48. #include <mach/fb.h>
  49. #include <plat/nand.h>
  50. #include <plat/udc.h>
  51. #include <mach/spi.h>
  52. #include <mach/spi-gpio.h>
  53. #include <plat/iic.h>
  54. #include <plat/common-smdk.h>
  55. #include <plat/devs.h>
  56. #include <plat/cpu.h>
  57. #include <plat/pm.h>
  58. static struct map_desc qt2410_iodesc[] __initdata = {
  59. { 0xe0000000, __phys_to_pfn(S3C2410_CS3+0x01000000), SZ_1M, MT_DEVICE }
  60. };
  61. #define UCON S3C2410_UCON_DEFAULT
  62. #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
  63. #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
  64. static struct s3c2410_uartcfg smdk2410_uartcfgs[] = {
  65. [0] = {
  66. .hwport = 0,
  67. .flags = 0,
  68. .ucon = UCON,
  69. .ulcon = ULCON,
  70. .ufcon = UFCON,
  71. },
  72. [1] = {
  73. .hwport = 1,
  74. .flags = 0,
  75. .ucon = UCON,
  76. .ulcon = ULCON,
  77. .ufcon = UFCON,
  78. },
  79. [2] = {
  80. .hwport = 2,
  81. .flags = 0,
  82. .ucon = UCON,
  83. .ulcon = ULCON,
  84. .ufcon = UFCON,
  85. }
  86. };
  87. /* LCD driver info */
  88. static struct s3c2410fb_display qt2410_lcd_cfg[] __initdata = {
  89. {
  90. /* Configuration for 640x480 SHARP LQ080V3DG01 */
  91. .lcdcon5 = S3C2410_LCDCON5_FRM565 |
  92. S3C2410_LCDCON5_INVVLINE |
  93. S3C2410_LCDCON5_INVVFRAME |
  94. S3C2410_LCDCON5_PWREN |
  95. S3C2410_LCDCON5_HWSWP,
  96. .type = S3C2410_LCDCON1_TFT,
  97. .width = 640,
  98. .height = 480,
  99. .pixclock = 40000, /* HCLK/4 */
  100. .xres = 640,
  101. .yres = 480,
  102. .bpp = 16,
  103. .left_margin = 44,
  104. .right_margin = 116,
  105. .hsync_len = 96,
  106. .upper_margin = 19,
  107. .lower_margin = 11,
  108. .vsync_len = 15,
  109. },
  110. {
  111. /* Configuration for 480x640 toppoly TD028TTEC1 */
  112. .lcdcon5 = S3C2410_LCDCON5_FRM565 |
  113. S3C2410_LCDCON5_INVVLINE |
  114. S3C2410_LCDCON5_INVVFRAME |
  115. S3C2410_LCDCON5_PWREN |
  116. S3C2410_LCDCON5_HWSWP,
  117. .type = S3C2410_LCDCON1_TFT,
  118. .width = 480,
  119. .height = 640,
  120. .pixclock = 40000, /* HCLK/4 */
  121. .xres = 480,
  122. .yres = 640,
  123. .bpp = 16,
  124. .left_margin = 8,
  125. .right_margin = 24,
  126. .hsync_len = 8,
  127. .upper_margin = 2,
  128. .lower_margin = 4,
  129. .vsync_len = 2,
  130. },
  131. {
  132. /* Config for 240x320 LCD */
  133. .lcdcon5 = S3C2410_LCDCON5_FRM565 |
  134. S3C2410_LCDCON5_INVVLINE |
  135. S3C2410_LCDCON5_INVVFRAME |
  136. S3C2410_LCDCON5_PWREN |
  137. S3C2410_LCDCON5_HWSWP,
  138. .type = S3C2410_LCDCON1_TFT,
  139. .width = 240,
  140. .height = 320,
  141. .pixclock = 100000, /* HCLK/10 */
  142. .xres = 240,
  143. .yres = 320,
  144. .bpp = 16,
  145. .left_margin = 13,
  146. .right_margin = 8,
  147. .hsync_len = 4,
  148. .upper_margin = 2,
  149. .lower_margin = 7,
  150. .vsync_len = 4,
  151. },
  152. };
  153. static struct s3c2410fb_mach_info qt2410_fb_info __initdata = {
  154. .displays = qt2410_lcd_cfg,
  155. .num_displays = ARRAY_SIZE(qt2410_lcd_cfg),
  156. .default_display = 0,
  157. .lpcsel = ((0xCE6) & ~7) | 1<<4,
  158. };
  159. /* CS8900 */
  160. static struct resource qt2410_cs89x0_resources[] = {
  161. [0] = {
  162. .start = 0x19000000,
  163. .end = 0x19000000 + 16,
  164. .flags = IORESOURCE_MEM,
  165. },
  166. [1] = {
  167. .start = IRQ_EINT9,
  168. .end = IRQ_EINT9,
  169. .flags = IORESOURCE_IRQ,
  170. },
  171. };
  172. static struct platform_device qt2410_cs89x0 = {
  173. .name = "cirrus-cs89x0",
  174. .num_resources = ARRAY_SIZE(qt2410_cs89x0_resources),
  175. .resource = qt2410_cs89x0_resources,
  176. };
  177. /* LED */
  178. static struct s3c24xx_led_platdata qt2410_pdata_led = {
  179. .gpio = S3C2410_GPB0,
  180. .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE,
  181. .name = "led",
  182. .def_trigger = "timer",
  183. };
  184. static struct platform_device qt2410_led = {
  185. .name = "s3c24xx_led",
  186. .id = 0,
  187. .dev = {
  188. .platform_data = &qt2410_pdata_led,
  189. },
  190. };
  191. /* SPI */
  192. static void spi_gpio_cs(struct s3c2410_spigpio_info *spi, int cs)
  193. {
  194. switch (cs) {
  195. case BITBANG_CS_ACTIVE:
  196. s3c2410_gpio_setpin(S3C2410_GPB5, 0);
  197. break;
  198. case BITBANG_CS_INACTIVE:
  199. s3c2410_gpio_setpin(S3C2410_GPB5, 1);
  200. break;
  201. }
  202. }
  203. static struct s3c2410_spigpio_info spi_gpio_cfg = {
  204. .pin_clk = S3C2410_GPG7,
  205. .pin_mosi = S3C2410_GPG6,
  206. .pin_miso = S3C2410_GPG5,
  207. .chip_select = &spi_gpio_cs,
  208. };
  209. static struct platform_device qt2410_spi = {
  210. .name = "s3c24xx-spi-gpio",
  211. .id = 1,
  212. .dev = {
  213. .platform_data = &spi_gpio_cfg,
  214. },
  215. };
  216. /* Board devices */
  217. static struct platform_device *qt2410_devices[] __initdata = {
  218. &s3c_device_usb,
  219. &s3c_device_lcd,
  220. &s3c_device_wdt,
  221. &s3c_device_i2c0,
  222. &s3c_device_iis,
  223. &s3c_device_sdi,
  224. &s3c_device_usbgadget,
  225. &qt2410_spi,
  226. &qt2410_cs89x0,
  227. &qt2410_led,
  228. };
  229. static struct mtd_partition qt2410_nand_part[] = {
  230. [0] = {
  231. .name = "U-Boot",
  232. .size = 0x30000,
  233. .offset = 0,
  234. },
  235. [1] = {
  236. .name = "U-Boot environment",
  237. .offset = 0x30000,
  238. .size = 0x4000,
  239. },
  240. [2] = {
  241. .name = "kernel",
  242. .offset = 0x34000,
  243. .size = SZ_2M,
  244. },
  245. [3] = {
  246. .name = "initrd",
  247. .offset = 0x234000,
  248. .size = SZ_4M,
  249. },
  250. [4] = {
  251. .name = "jffs2",
  252. .offset = 0x634000,
  253. .size = 0x39cc000,
  254. },
  255. };
  256. static struct s3c2410_nand_set qt2410_nand_sets[] = {
  257. [0] = {
  258. .name = "NAND",
  259. .nr_chips = 1,
  260. .nr_partitions = ARRAY_SIZE(qt2410_nand_part),
  261. .partitions = qt2410_nand_part,
  262. },
  263. };
  264. /* choose a set of timings which should suit most 512Mbit
  265. * chips and beyond.
  266. */
  267. static struct s3c2410_platform_nand qt2410_nand_info = {
  268. .tacls = 20,
  269. .twrph0 = 60,
  270. .twrph1 = 20,
  271. .nr_sets = ARRAY_SIZE(qt2410_nand_sets),
  272. .sets = qt2410_nand_sets,
  273. };
  274. /* UDC */
  275. static struct s3c2410_udc_mach_info qt2410_udc_cfg = {
  276. };
  277. static char tft_type = 's';
  278. static int __init qt2410_tft_setup(char *str)
  279. {
  280. tft_type = str[0];
  281. return 1;
  282. }
  283. __setup("tft=", qt2410_tft_setup);
  284. static void __init qt2410_map_io(void)
  285. {
  286. s3c24xx_init_io(qt2410_iodesc, ARRAY_SIZE(qt2410_iodesc));
  287. s3c24xx_init_clocks(12*1000*1000);
  288. s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
  289. }
  290. static void __init qt2410_machine_init(void)
  291. {
  292. s3c_device_nand.dev.platform_data = &qt2410_nand_info;
  293. switch (tft_type) {
  294. case 'p': /* production */
  295. qt2410_fb_info.default_display = 1;
  296. break;
  297. case 'b': /* big */
  298. qt2410_fb_info.default_display = 0;
  299. break;
  300. case 's': /* small */
  301. default:
  302. qt2410_fb_info.default_display = 2;
  303. break;
  304. }
  305. s3c24xx_fb_set_platdata(&qt2410_fb_info);
  306. s3c2410_gpio_cfgpin(S3C2410_GPB0, S3C2410_GPIO_OUTPUT);
  307. s3c2410_gpio_setpin(S3C2410_GPB0, 1);
  308. s3c24xx_udc_set_platdata(&qt2410_udc_cfg);
  309. s3c_i2c0_set_platdata(NULL);
  310. s3c2410_gpio_cfgpin(S3C2410_GPB5, S3C2410_GPIO_OUTPUT);
  311. platform_add_devices(qt2410_devices, ARRAY_SIZE(qt2410_devices));
  312. s3c_pm_init();
  313. }
  314. MACHINE_START(QT2410, "QT2410")
  315. .phys_io = S3C2410_PA_UART,
  316. .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
  317. .boot_params = S3C2410_SDRAM_PA + 0x100,
  318. .map_io = qt2410_map_io,
  319. .init_irq = s3c24xx_init_irq,
  320. .init_machine = qt2410_machine_init,
  321. .timer = &s3c24xx_timer,
  322. MACHINE_END