mach-smdk2416.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /* linux/arch/arm/mach-s3c2416/mach-hanlin_v3c.c
  2. *
  3. * Copyright (c) 2009 Yauhen Kharuzhy <jekhor@gmail.com>,
  4. * as part of OpenInkpot project
  5. * Copyright (c) 2009 Promwad Innovation Company
  6. * Yauhen Kharuzhy <yauhen.kharuzhy@promwad.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/list.h>
  17. #include <linux/timer.h>
  18. #include <linux/init.h>
  19. #include <linux/serial_core.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/io.h>
  22. #include <linux/mtd/partitions.h>
  23. #include <linux/gpio.h>
  24. #include <linux/fb.h>
  25. #include <asm/mach/arch.h>
  26. #include <asm/mach/map.h>
  27. #include <asm/mach/irq.h>
  28. #include <mach/hardware.h>
  29. #include <asm/irq.h>
  30. #include <asm/mach-types.h>
  31. #include <plat/regs-serial.h>
  32. #include <mach/regs-gpio.h>
  33. #include <mach/regs-lcd.h>
  34. #include <mach/idle.h>
  35. #include <mach/leds-gpio.h>
  36. #include <plat/iic.h>
  37. #include <plat/s3c2416.h>
  38. #include <plat/gpio-cfg.h>
  39. #include <plat/clock.h>
  40. #include <plat/devs.h>
  41. #include <plat/cpu.h>
  42. #include <plat/nand.h>
  43. #include <plat/regs-fb-v4.h>
  44. #include <plat/fb.h>
  45. #include <plat/common-smdk.h>
  46. static struct map_desc smdk2416_iodesc[] __initdata = {
  47. /* ISA IO Space map (memory space selected by A24) */
  48. {
  49. .virtual = (u32)S3C24XX_VA_ISA_WORD,
  50. .pfn = __phys_to_pfn(S3C2410_CS2),
  51. .length = 0x10000,
  52. .type = MT_DEVICE,
  53. }, {
  54. .virtual = (u32)S3C24XX_VA_ISA_WORD + 0x10000,
  55. .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)),
  56. .length = SZ_4M,
  57. .type = MT_DEVICE,
  58. }, {
  59. .virtual = (u32)S3C24XX_VA_ISA_BYTE,
  60. .pfn = __phys_to_pfn(S3C2410_CS2),
  61. .length = 0x10000,
  62. .type = MT_DEVICE,
  63. }, {
  64. .virtual = (u32)S3C24XX_VA_ISA_BYTE + 0x10000,
  65. .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)),
  66. .length = SZ_4M,
  67. .type = MT_DEVICE,
  68. }
  69. };
  70. #define UCON (S3C2410_UCON_DEFAULT | \
  71. S3C2440_UCON_PCLK | \
  72. S3C2443_UCON_RXERR_IRQEN)
  73. #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE)
  74. #define UFCON (S3C2410_UFCON_RXTRIG8 | \
  75. S3C2410_UFCON_FIFOMODE | \
  76. S3C2440_UFCON_TXTRIG16)
  77. static struct s3c2410_uartcfg smdk2416_uartcfgs[] __initdata = {
  78. [0] = {
  79. .hwport = 0,
  80. .flags = 0,
  81. .ucon = UCON,
  82. .ulcon = ULCON,
  83. .ufcon = UFCON,
  84. },
  85. [1] = {
  86. .hwport = 1,
  87. .flags = 0,
  88. .ucon = UCON,
  89. .ulcon = ULCON,
  90. .ufcon = UFCON,
  91. },
  92. /* IR port */
  93. [2] = {
  94. .hwport = 2,
  95. .flags = 0,
  96. .ucon = UCON,
  97. .ulcon = ULCON | 0x50,
  98. .ufcon = UFCON,
  99. }
  100. };
  101. struct s3c_fb_pd_win smdk2416_fb_win[] = {
  102. [0] = {
  103. /* think this is the same as the smdk6410 */
  104. .win_mode = {
  105. .pixclock = 41094,
  106. .left_margin = 8,
  107. .right_margin = 13,
  108. .upper_margin = 7,
  109. .lower_margin = 5,
  110. .hsync_len = 3,
  111. .vsync_len = 1,
  112. .xres = 800,
  113. .yres = 480,
  114. },
  115. .default_bpp = 16,
  116. .max_bpp = 32,
  117. },
  118. };
  119. static void s3c2416_fb_gpio_setup_24bpp(void)
  120. {
  121. unsigned int gpio;
  122. for (gpio = S3C2410_GPC(1); gpio <= S3C2410_GPC(4); gpio++) {
  123. s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2));
  124. s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE);
  125. }
  126. for (gpio = S3C2410_GPC(8); gpio <= S3C2410_GPC(15); gpio++) {
  127. s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2));
  128. s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE);
  129. }
  130. for (gpio = S3C2410_GPD(0); gpio <= S3C2410_GPD(15); gpio++) {
  131. s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2));
  132. s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE);
  133. }
  134. }
  135. static struct s3c_fb_platdata smdk2416_fb_platdata = {
  136. .win[0] = &smdk2416_fb_win[0],
  137. .setup_gpio = s3c2416_fb_gpio_setup_24bpp,
  138. .vidcon0 = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,
  139. .vidcon1 = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC,
  140. };
  141. static struct platform_device *smdk2416_devices[] __initdata = {
  142. &s3c_device_fb,
  143. &s3c_device_wdt,
  144. &s3c_device_ohci,
  145. &s3c_device_i2c0,
  146. &s3c_device_hsmmc0,
  147. &s3c_device_hsmmc1,
  148. };
  149. static void __init smdk2416_map_io(void)
  150. {
  151. s3c24xx_init_io(smdk2416_iodesc, ARRAY_SIZE(smdk2416_iodesc));
  152. s3c24xx_init_clocks(12000000);
  153. s3c24xx_init_uarts(smdk2416_uartcfgs, ARRAY_SIZE(smdk2416_uartcfgs));
  154. }
  155. static void __init smdk2416_machine_init(void)
  156. {
  157. s3c_i2c0_set_platdata(NULL);
  158. s3c_fb_set_platdata(&smdk2416_fb_platdata);
  159. gpio_request(S3C2410_GPB(4), "USBHost Power");
  160. gpio_direction_output(S3C2410_GPB(4), 1);
  161. gpio_request(S3C2410_GPB(3), "Display Power");
  162. gpio_direction_output(S3C2410_GPB(3), 1);
  163. gpio_request(S3C2410_GPB(1), "Display Reset");
  164. gpio_direction_output(S3C2410_GPB(1), 1);
  165. platform_add_devices(smdk2416_devices, ARRAY_SIZE(smdk2416_devices));
  166. smdk_machine_init();
  167. }
  168. MACHINE_START(SMDK2416, "SMDK2416")
  169. /* Maintainer: Yauhen Kharuzhy <jekhor@gmail.com> */
  170. .phys_io = S3C2410_PA_UART,
  171. .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
  172. .boot_params = S3C2410_SDRAM_PA + 0x100,
  173. .init_irq = s3c24xx_init_irq,
  174. .map_io = smdk2416_map_io,
  175. .init_machine = smdk2416_machine_init,
  176. .timer = &s3c24xx_timer,
  177. MACHINE_END