mach-smdk2410.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /***********************************************************************
  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. * $Id: mach-smdk2410.c,v 1.1 2004/05/11 14:15:38 mpietrek Exp $
  9. * @Author: Jonas Dietsche
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. *
  26. * @History:
  27. * derived from linux/arch/arm/mach-s3c2410/mach-bast.c, written by
  28. * Ben Dooks <ben@simtec.co.uk>
  29. *
  30. * 10-Mar-2005 LCVR Changed S3C2410_VA to S3C24XX_VA
  31. * 20-Sep-2005 BJD Added static to non-exported items
  32. * 01-Apr-2006 BJD Moved init code to common smdk
  33. *
  34. ***********************************************************************/
  35. #include <linux/kernel.h>
  36. #include <linux/types.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/list.h>
  39. #include <linux/timer.h>
  40. #include <linux/init.h>
  41. #include <linux/platform_device.h>
  42. #include <asm/mach/arch.h>
  43. #include <asm/mach/map.h>
  44. #include <asm/mach/irq.h>
  45. #include <asm/hardware.h>
  46. #include <asm/io.h>
  47. #include <asm/irq.h>
  48. #include <asm/mach-types.h>
  49. #include <asm/arch/regs-serial.h>
  50. #include "devs.h"
  51. #include "cpu.h"
  52. #include "common-smdk.h"
  53. static struct map_desc smdk2410_iodesc[] __initdata = {
  54. /* nothing here yet */
  55. };
  56. #define UCON S3C2410_UCON_DEFAULT
  57. #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
  58. #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
  59. static struct s3c2410_uartcfg smdk2410_uartcfgs[] = {
  60. [0] = {
  61. .hwport = 0,
  62. .flags = 0,
  63. .ucon = UCON,
  64. .ulcon = ULCON,
  65. .ufcon = UFCON,
  66. },
  67. [1] = {
  68. .hwport = 1,
  69. .flags = 0,
  70. .ucon = UCON,
  71. .ulcon = ULCON,
  72. .ufcon = UFCON,
  73. },
  74. [2] = {
  75. .hwport = 2,
  76. .flags = 0,
  77. .ucon = UCON,
  78. .ulcon = ULCON,
  79. .ufcon = UFCON,
  80. }
  81. };
  82. static struct platform_device *smdk2410_devices[] __initdata = {
  83. &s3c_device_usb,
  84. &s3c_device_lcd,
  85. &s3c_device_wdt,
  86. &s3c_device_i2c,
  87. &s3c_device_iis,
  88. };
  89. static struct s3c24xx_board smdk2410_board __initdata = {
  90. .devices = smdk2410_devices,
  91. .devices_count = ARRAY_SIZE(smdk2410_devices)
  92. };
  93. static void __init smdk2410_map_io(void)
  94. {
  95. s3c24xx_init_io(smdk2410_iodesc, ARRAY_SIZE(smdk2410_iodesc));
  96. s3c24xx_init_clocks(0);
  97. s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
  98. s3c24xx_set_board(&smdk2410_board);
  99. }
  100. MACHINE_START(SMDK2410, "SMDK2410") /* @TODO: request a new identifier and switch
  101. * to SMDK2410 */
  102. /* Maintainer: Jonas Dietsche */
  103. .phys_io = S3C2410_PA_UART,
  104. .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
  105. .boot_params = S3C2410_SDRAM_PA + 0x100,
  106. .map_io = smdk2410_map_io,
  107. .init_irq = s3c24xx_init_irq,
  108. .init_machine = smdk_machine_init,
  109. .timer = &s3c24xx_timer,
  110. MACHINE_END