mach-smdk2416.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 <asm/mach/arch.h>
  25. #include <asm/mach/map.h>
  26. #include <asm/mach/irq.h>
  27. #include <mach/hardware.h>
  28. #include <asm/irq.h>
  29. #include <asm/mach-types.h>
  30. #include <plat/regs-serial.h>
  31. #include <mach/regs-gpio.h>
  32. #include <mach/regs-lcd.h>
  33. #include <mach/idle.h>
  34. #include <mach/fb.h>
  35. #include <mach/leds-gpio.h>
  36. #include <plat/iic.h>
  37. #include <plat/s3c2416.h>
  38. #include <plat/clock.h>
  39. #include <plat/devs.h>
  40. #include <plat/cpu.h>
  41. #include <plat/nand.h>
  42. #include <plat/common-smdk.h>
  43. static struct map_desc smdk2416_iodesc[] __initdata = {
  44. /* ISA IO Space map (memory space selected by A24) */
  45. {
  46. .virtual = (u32)S3C24XX_VA_ISA_WORD,
  47. .pfn = __phys_to_pfn(S3C2410_CS2),
  48. .length = 0x10000,
  49. .type = MT_DEVICE,
  50. }, {
  51. .virtual = (u32)S3C24XX_VA_ISA_WORD + 0x10000,
  52. .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)),
  53. .length = SZ_4M,
  54. .type = MT_DEVICE,
  55. }, {
  56. .virtual = (u32)S3C24XX_VA_ISA_BYTE,
  57. .pfn = __phys_to_pfn(S3C2410_CS2),
  58. .length = 0x10000,
  59. .type = MT_DEVICE,
  60. }, {
  61. .virtual = (u32)S3C24XX_VA_ISA_BYTE + 0x10000,
  62. .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)),
  63. .length = SZ_4M,
  64. .type = MT_DEVICE,
  65. }
  66. };
  67. #define UCON (S3C2410_UCON_DEFAULT | \
  68. S3C2440_UCON_PCLK | \
  69. S3C2443_UCON_RXERR_IRQEN)
  70. #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE)
  71. #define UFCON (S3C2410_UFCON_RXTRIG8 | \
  72. S3C2410_UFCON_FIFOMODE | \
  73. S3C2440_UFCON_TXTRIG16)
  74. static struct s3c2410_uartcfg smdk2416_uartcfgs[] __initdata = {
  75. [0] = {
  76. .hwport = 0,
  77. .flags = 0,
  78. .ucon = UCON,
  79. .ulcon = ULCON,
  80. .ufcon = UFCON,
  81. },
  82. [1] = {
  83. .hwport = 1,
  84. .flags = 0,
  85. .ucon = UCON,
  86. .ulcon = ULCON,
  87. .ufcon = UFCON,
  88. },
  89. /* IR port */
  90. [2] = {
  91. .hwport = 2,
  92. .flags = 0,
  93. .ucon = UCON,
  94. .ulcon = ULCON | 0x50,
  95. .ufcon = UFCON,
  96. }
  97. };
  98. static struct platform_device *smdk2416_devices[] __initdata = {
  99. &s3c_device_wdt,
  100. &s3c_device_ohci,
  101. &s3c_device_i2c0,
  102. &s3c_device_hsmmc0,
  103. &s3c_device_hsmmc1,
  104. };
  105. static void __init smdk2416_map_io(void)
  106. {
  107. s3c24xx_init_io(smdk2416_iodesc, ARRAY_SIZE(smdk2416_iodesc));
  108. s3c24xx_init_clocks(12000000);
  109. s3c24xx_init_uarts(smdk2416_uartcfgs, ARRAY_SIZE(smdk2416_uartcfgs));
  110. }
  111. static void __init smdk2416_machine_init(void)
  112. {
  113. s3c_i2c0_set_platdata(NULL);
  114. gpio_request(S3C2410_GPB(4), "USBHost Power");
  115. gpio_direction_output(S3C2410_GPB(4), 1);
  116. platform_add_devices(smdk2416_devices, ARRAY_SIZE(smdk2416_devices));
  117. smdk_machine_init();
  118. }
  119. MACHINE_START(SMDK2416, "SMDK2416")
  120. /* Maintainer: Yauhen Kharuzhy <jekhor@gmail.com> */
  121. .phys_io = S3C2410_PA_UART,
  122. .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
  123. .boot_params = S3C2410_SDRAM_PA + 0x100,
  124. .init_irq = s3c24xx_init_irq,
  125. .map_io = smdk2416_map_io,
  126. .init_machine = smdk2416_machine_init,
  127. .timer = &s3c24xx_timer,
  128. MACHINE_END