mach-exynos5-dt.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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/of_fdt.h>
  13. #include <linux/memblock.h>
  14. #include <linux/io.h>
  15. #include <linux/clocksource.h>
  16. #include <asm/mach/arch.h>
  17. #include <mach/regs-pmu.h>
  18. #include <plat/cpu.h>
  19. #include <plat/mfc.h>
  20. #include "common.h"
  21. static void __init exynos5_dt_machine_init(void)
  22. {
  23. struct device_node *i2c_np;
  24. const char *i2c_compat = "samsung,s3c2440-i2c";
  25. unsigned int tmp;
  26. /*
  27. * Exynos5's legacy i2c controller and new high speed i2c
  28. * controller have muxed interrupt sources. By default the
  29. * interrupts for 4-channel HS-I2C controller are enabled.
  30. * If node for first four channels of legacy i2c controller
  31. * are available then re-configure the interrupts via the
  32. * system register.
  33. */
  34. for_each_compatible_node(i2c_np, NULL, i2c_compat) {
  35. if (of_device_is_available(i2c_np)) {
  36. if (of_alias_get_id(i2c_np, "i2c") < 4) {
  37. tmp = readl(EXYNOS5_SYS_I2C_CFG);
  38. writel(tmp & ~(0x1 << of_alias_get_id(i2c_np, "i2c")),
  39. EXYNOS5_SYS_I2C_CFG);
  40. }
  41. }
  42. }
  43. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  44. }
  45. static char const *exynos5_dt_compat[] __initdata = {
  46. "samsung,exynos5250",
  47. "samsung,exynos5420",
  48. "samsung,exynos5440",
  49. NULL
  50. };
  51. static void __init exynos5_reserve(void)
  52. {
  53. #ifdef CONFIG_S5P_DEV_MFC
  54. struct s5p_mfc_dt_meminfo mfc_mem;
  55. /* Reserve memory for MFC only if it's available */
  56. mfc_mem.compatible = "samsung,mfc-v6";
  57. if (of_scan_flat_dt(s5p_fdt_find_mfc_mem, &mfc_mem))
  58. s5p_mfc_reserve_mem(mfc_mem.roff, mfc_mem.rsize, mfc_mem.loff,
  59. mfc_mem.lsize);
  60. #endif
  61. }
  62. DT_MACHINE_START(EXYNOS5_DT, "SAMSUNG EXYNOS5 (Flattened Device Tree)")
  63. /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
  64. .smp = smp_ops(exynos_smp_ops),
  65. .map_io = exynos_init_io,
  66. .init_machine = exynos5_dt_machine_init,
  67. .init_late = exynos_init_late,
  68. .init_time = exynos_init_time,
  69. .dt_compat = exynos5_dt_compat,
  70. .restart = exynos5_restart,
  71. .reserve = exynos5_reserve,
  72. MACHINE_END