mach-exynos5-dt.c 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * SAMSUNG EXYNOS5250 Flattened Device Tree enabled machine
  3. *
  4. * Copyright (c) 2012 Samsung Electronics Co., Ltd.
  5. * http://www.samsung.com
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/of_platform.h>
  12. #include <linux/serial_core.h>
  13. #include <asm/mach/arch.h>
  14. #include <asm/hardware/gic.h>
  15. #include <mach/map.h>
  16. #include <plat/cpu.h>
  17. #include <plat/regs-serial.h>
  18. #include "common.h"
  19. /*
  20. * The following lookup table is used to override device names when devices
  21. * are registered from device tree. This is temporarily added to enable
  22. * device tree support addition for the EXYNOS5 architecture.
  23. *
  24. * For drivers that require platform data to be provided from the machine
  25. * file, a platform data pointer can also be supplied along with the
  26. * devices names. Usually, the platform data elements that cannot be parsed
  27. * from the device tree by the drivers (example: function pointers) are
  28. * supplied. But it should be noted that this is a temporary mechanism and
  29. * at some point, the drivers should be capable of parsing all the platform
  30. * data from the device tree.
  31. */
  32. static const struct of_dev_auxdata exynos5250_auxdata_lookup[] __initconst = {
  33. OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART0,
  34. "exynos4210-uart.0", NULL),
  35. OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART1,
  36. "exynos4210-uart.1", NULL),
  37. OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART2,
  38. "exynos4210-uart.2", NULL),
  39. OF_DEV_AUXDATA("samsung,exynos4210-uart", EXYNOS5_PA_UART3,
  40. "exynos4210-uart.3", NULL),
  41. OF_DEV_AUXDATA("samsung,s3c2440-i2c", EXYNOS5_PA_IIC(0),
  42. "s3c2440-i2c.0", NULL),
  43. OF_DEV_AUXDATA("samsung,s3c2440-i2c", EXYNOS5_PA_IIC(1),
  44. "s3c2440-i2c.1", NULL),
  45. OF_DEV_AUXDATA("samsung,exynos4210-spi", EXYNOS5_PA_SPI0,
  46. "exynos4210-spi.0", NULL),
  47. OF_DEV_AUXDATA("samsung,exynos4210-spi", EXYNOS5_PA_SPI1,
  48. "exynos4210-spi.1", NULL),
  49. OF_DEV_AUXDATA("samsung,exynos4210-spi", EXYNOS5_PA_SPI2,
  50. "exynos4210-spi.2", NULL),
  51. OF_DEV_AUXDATA("arm,pl330", EXYNOS5_PA_PDMA0, "dma-pl330.0", NULL),
  52. OF_DEV_AUXDATA("arm,pl330", EXYNOS5_PA_PDMA1, "dma-pl330.1", NULL),
  53. OF_DEV_AUXDATA("arm,pl330", EXYNOS5_PA_MDMA1, "dma-pl330.2", NULL),
  54. {},
  55. };
  56. static void __init exynos5250_dt_map_io(void)
  57. {
  58. exynos_init_io(NULL, 0);
  59. s3c24xx_init_clocks(24000000);
  60. }
  61. static void __init exynos5250_dt_machine_init(void)
  62. {
  63. of_platform_populate(NULL, of_default_bus_match_table,
  64. exynos5250_auxdata_lookup, NULL);
  65. }
  66. static char const *exynos5250_dt_compat[] __initdata = {
  67. "samsung,exynos5250",
  68. NULL
  69. };
  70. DT_MACHINE_START(EXYNOS5_DT, "SAMSUNG EXYNOS5 (Flattened Device Tree)")
  71. /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
  72. .init_irq = exynos5_init_irq,
  73. .map_io = exynos5250_dt_map_io,
  74. .handle_irq = gic_handle_irq,
  75. .init_machine = exynos5250_dt_machine_init,
  76. .init_late = exynos_init_late,
  77. .timer = &exynos4_timer,
  78. .dt_compat = exynos5250_dt_compat,
  79. .restart = exynos5_restart,
  80. MACHINE_END