mach-universal_c210.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* linux/arch/arm/mach-s5pv310/mach-universal_c210.c
  2. *
  3. * Copyright (c) 2010 Samsung Electronics Co., Ltd.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <linux/serial_core.h>
  10. #include <asm/mach/arch.h>
  11. #include <asm/mach-types.h>
  12. #include <asm/hardware/cache-l2x0.h>
  13. #include <plat/regs-serial.h>
  14. #include <plat/s5pv310.h>
  15. #include <plat/cpu.h>
  16. #include <mach/map.h>
  17. /* Following are default values for UCON, ULCON and UFCON UART registers */
  18. #define UNIVERSAL_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
  19. S3C2410_UCON_RXILEVEL | \
  20. S3C2410_UCON_TXIRQMODE | \
  21. S3C2410_UCON_RXIRQMODE | \
  22. S3C2410_UCON_RXFIFO_TOI | \
  23. S3C2443_UCON_RXERR_IRQEN)
  24. #define UNIVERSAL_ULCON_DEFAULT S3C2410_LCON_CS8
  25. #define UNIVERSAL_UFCON_DEFAULT (S3C2410_UFCON_FIFOMODE | \
  26. S5PV210_UFCON_TXTRIG256 | \
  27. S5PV210_UFCON_RXTRIG256)
  28. static struct s3c2410_uartcfg universal_uartcfgs[] __initdata = {
  29. [0] = {
  30. .hwport = 0,
  31. .ucon = UNIVERSAL_UCON_DEFAULT,
  32. .ulcon = UNIVERSAL_ULCON_DEFAULT,
  33. .ufcon = UNIVERSAL_UFCON_DEFAULT,
  34. },
  35. [1] = {
  36. .hwport = 1,
  37. .ucon = UNIVERSAL_UCON_DEFAULT,
  38. .ulcon = UNIVERSAL_ULCON_DEFAULT,
  39. .ufcon = UNIVERSAL_UFCON_DEFAULT,
  40. },
  41. [2] = {
  42. .hwport = 2,
  43. .ucon = UNIVERSAL_UCON_DEFAULT,
  44. .ulcon = UNIVERSAL_ULCON_DEFAULT,
  45. .ufcon = UNIVERSAL_UFCON_DEFAULT,
  46. },
  47. [3] = {
  48. .hwport = 3,
  49. .ucon = UNIVERSAL_UCON_DEFAULT,
  50. .ulcon = UNIVERSAL_ULCON_DEFAULT,
  51. .ufcon = UNIVERSAL_UFCON_DEFAULT,
  52. },
  53. };
  54. static void __init universal_map_io(void)
  55. {
  56. s5p_init_io(NULL, 0, S5P_VA_CHIPID);
  57. s3c24xx_init_clocks(24000000);
  58. s3c24xx_init_uarts(universal_uartcfgs, ARRAY_SIZE(universal_uartcfgs));
  59. }
  60. static void __init universal_machine_init(void)
  61. {
  62. #ifdef CONFIG_CACHE_L2X0
  63. l2x0_init(S5P_VA_L2CC, 1 << 28, 0xffffffff);
  64. #endif
  65. }
  66. MACHINE_START(UNIVERSAL_C210, "UNIVERSAL_C210")
  67. /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */
  68. .phys_io = S3C_PA_UART & 0xfff00000,
  69. .io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc,
  70. .boot_params = S5P_PA_SDRAM + 0x100,
  71. .init_irq = s5pv310_init_irq,
  72. .map_io = universal_map_io,
  73. .init_machine = universal_machine_init,
  74. .timer = &s5pv310_timer,
  75. MACHINE_END