mach-exynos4-dt.c 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Samsung's Exynos4210 flattened device tree enabled machine
  3. *
  4. * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
  5. * http://www.samsung.com
  6. * Copyright (c) 2010-2011 Linaro Ltd.
  7. * www.linaro.org
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/of_platform.h>
  14. #include <linux/serial_core.h>
  15. #include <asm/mach/arch.h>
  16. #include <mach/map.h>
  17. #include <plat/cpu.h>
  18. #include <plat/regs-serial.h>
  19. #include <plat/exynos4.h>
  20. /*
  21. * The following lookup table is used to override device names when devices
  22. * are registered from device tree. This is temporarily added to enable
  23. * device tree support addition for the Exynos4 architecture.
  24. *
  25. * For drivers that require platform data to be provided from the machine
  26. * file, a platform data pointer can also be supplied along with the
  27. * devices names. Usually, the platform data elements that cannot be parsed
  28. * from the device tree by the drivers (example: function pointers) are
  29. * supplied. But it should be noted that this is a temporary mechanism and
  30. * at some point, the drivers should be capable of parsing all the platform
  31. * data from the device tree.
  32. */
  33. static const struct of_dev_auxdata exynos4210_auxdata_lookup[] __initconst = {
  34. OF_DEV_AUXDATA("samsung,exynos4210-uart", S5P_PA_UART0,
  35. "exynos4210-uart.0", NULL),
  36. OF_DEV_AUXDATA("samsung,exynos4210-uart", S5P_PA_UART1,
  37. "exynos4210-uart.1", NULL),
  38. OF_DEV_AUXDATA("samsung,exynos4210-uart", S5P_PA_UART2,
  39. "exynos4210-uart.2", NULL),
  40. OF_DEV_AUXDATA("samsung,exynos4210-uart", S5P_PA_UART3,
  41. "exynos4210-uart.3", NULL),
  42. OF_DEV_AUXDATA("samsung,exynos4210-sdhci", EXYNOS4_PA_HSMMC(0),
  43. "exynos4-sdhci.0", NULL),
  44. OF_DEV_AUXDATA("samsung,exynos4210-sdhci", EXYNOS4_PA_HSMMC(1),
  45. "exynos4-sdhci.1", NULL),
  46. OF_DEV_AUXDATA("samsung,exynos4210-sdhci", EXYNOS4_PA_HSMMC(2),
  47. "exynos4-sdhci.2", NULL),
  48. OF_DEV_AUXDATA("samsung,exynos4210-sdhci", EXYNOS4_PA_HSMMC(3),
  49. "exynos4-sdhci.3", NULL),
  50. OF_DEV_AUXDATA("samsung,s3c2440-i2c", EXYNOS4_PA_IIC(0),
  51. "s3c2440-i2c.0", NULL),
  52. OF_DEV_AUXDATA("arm,pl330", EXYNOS4_PA_PDMA0, "dma-pl330.0", NULL),
  53. OF_DEV_AUXDATA("arm,pl330", EXYNOS4_PA_PDMA1, "dma-pl330.1", NULL),
  54. {},
  55. };
  56. static void __init exynos4210_dt_map_io(void)
  57. {
  58. s5p_init_io(NULL, 0, S5P_VA_CHIPID);
  59. s3c24xx_init_clocks(24000000);
  60. }
  61. static void __init exynos4210_dt_machine_init(void)
  62. {
  63. of_platform_populate(NULL, of_default_bus_match_table,
  64. exynos4210_auxdata_lookup, NULL);
  65. }
  66. static char const *exynos4210_dt_compat[] __initdata = {
  67. "samsung,exynos4210",
  68. NULL
  69. };
  70. DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device Tree)")
  71. /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
  72. .init_irq = exynos4_init_irq,
  73. .map_io = exynos4210_dt_map_io,
  74. .init_machine = exynos4210_dt_machine_init,
  75. .timer = &exynos4_timer,
  76. .dt_compat = exynos4210_dt_compat,
  77. MACHINE_END