mach-smdk2416.c 3.4 KB

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