mach-smdk2410.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* linux/arch/arm/mach-s3c2410/mach-smdk2410.c
  2. *
  3. * linux/arch/arm/mach-s3c2410/mach-smdk2410.c
  4. *
  5. * Copyright (C) 2004 by FS Forth-Systeme GmbH
  6. * All rights reserved.
  7. *
  8. * @Author: Jonas Dietsche
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. *
  25. * @History:
  26. * derived from linux/arch/arm/mach-s3c2410/mach-bast.c, written by
  27. * Ben Dooks <ben@simtec.co.uk>
  28. *
  29. ***********************************************************************/
  30. #include <linux/kernel.h>
  31. #include <linux/types.h>
  32. #include <linux/interrupt.h>
  33. #include <linux/list.h>
  34. #include <linux/timer.h>
  35. #include <linux/init.h>
  36. #include <linux/serial_core.h>
  37. #include <linux/serial_s3c.h>
  38. #include <linux/platform_device.h>
  39. #include <linux/io.h>
  40. #include <asm/mach/arch.h>
  41. #include <asm/mach/map.h>
  42. #include <asm/mach/irq.h>
  43. #include <mach/hardware.h>
  44. #include <asm/irq.h>
  45. #include <asm/mach-types.h>
  46. #include <linux/platform_data/i2c-s3c2410.h>
  47. #include <plat/devs.h>
  48. #include <plat/cpu.h>
  49. #include <plat/samsung-time.h>
  50. #include "common.h"
  51. #include "common-smdk.h"
  52. static struct map_desc smdk2410_iodesc[] __initdata = {
  53. /* nothing here yet */
  54. };
  55. #define UCON S3C2410_UCON_DEFAULT
  56. #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
  57. #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
  58. static struct s3c2410_uartcfg smdk2410_uartcfgs[] __initdata = {
  59. [0] = {
  60. .hwport = 0,
  61. .flags = 0,
  62. .ucon = UCON,
  63. .ulcon = ULCON,
  64. .ufcon = UFCON,
  65. },
  66. [1] = {
  67. .hwport = 1,
  68. .flags = 0,
  69. .ucon = UCON,
  70. .ulcon = ULCON,
  71. .ufcon = UFCON,
  72. },
  73. [2] = {
  74. .hwport = 2,
  75. .flags = 0,
  76. .ucon = UCON,
  77. .ulcon = ULCON,
  78. .ufcon = UFCON,
  79. }
  80. };
  81. static struct platform_device *smdk2410_devices[] __initdata = {
  82. &s3c_device_ohci,
  83. &s3c_device_lcd,
  84. &s3c_device_wdt,
  85. &s3c_device_i2c0,
  86. &s3c_device_iis,
  87. };
  88. static void __init smdk2410_map_io(void)
  89. {
  90. s3c24xx_init_io(smdk2410_iodesc, ARRAY_SIZE(smdk2410_iodesc));
  91. s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
  92. samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4);
  93. }
  94. static void __init smdk2410_init_time(void)
  95. {
  96. s3c2410_init_clocks(12000000);
  97. samsung_timer_init();
  98. }
  99. static void __init smdk2410_init(void)
  100. {
  101. s3c_i2c0_set_platdata(NULL);
  102. platform_add_devices(smdk2410_devices, ARRAY_SIZE(smdk2410_devices));
  103. smdk_machine_init();
  104. }
  105. MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch
  106. * to SMDK2410 */
  107. /* Maintainer: Jonas Dietsche */
  108. .atag_offset = 0x100,
  109. .map_io = smdk2410_map_io,
  110. .init_irq = s3c2410_init_irq,
  111. .init_machine = smdk2410_init,
  112. .init_time = smdk2410_init_time,
  113. MACHINE_END