mach-imx6sl.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright 2013 Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. */
  9. #include <linux/irqchip.h>
  10. #include <linux/of.h>
  11. #include <linux/of_platform.h>
  12. #include <linux/mfd/syscon.h>
  13. #include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
  14. #include <linux/regmap.h>
  15. #include <asm/mach/arch.h>
  16. #include <asm/mach/map.h>
  17. #include "common.h"
  18. #include "cpuidle.h"
  19. #include "hardware.h"
  20. static void __init imx6sl_fec_init(void)
  21. {
  22. struct regmap *gpr;
  23. /* set FEC clock from internal PLL clock source */
  24. gpr = syscon_regmap_lookup_by_compatible("fsl,imx6sl-iomuxc-gpr");
  25. if (!IS_ERR(gpr)) {
  26. regmap_update_bits(gpr, IOMUXC_GPR1,
  27. IMX6SL_GPR1_FEC_CLOCK_MUX2_SEL_MASK, 0);
  28. regmap_update_bits(gpr, IOMUXC_GPR1,
  29. IMX6SL_GPR1_FEC_CLOCK_MUX1_SEL_MASK, 0);
  30. } else {
  31. pr_err("failed to find fsl,imx6sl-iomux-gpr regmap\n");
  32. }
  33. }
  34. static void __init imx6sl_init_late(void)
  35. {
  36. /* imx6sl reuses imx6q cpufreq driver */
  37. if (IS_ENABLED(CONFIG_ARM_IMX6Q_CPUFREQ))
  38. platform_device_register_simple("imx6q-cpufreq", -1, NULL, 0);
  39. if (IS_ENABLED(CONFIG_SOC_IMX6SL) && cpu_is_imx6sl())
  40. imx6sl_cpuidle_init();
  41. else if (IS_ENABLED(CONFIG_SOC_IMX6SLL))
  42. imx6sx_cpuidle_init();
  43. }
  44. static void __init imx6sl_init_machine(void)
  45. {
  46. struct device *parent;
  47. parent = imx_soc_device_init();
  48. if (parent == NULL)
  49. pr_warn("failed to initialize soc device\n");
  50. of_platform_default_populate(NULL, NULL, parent);
  51. if (cpu_is_imx6sl())
  52. imx6sl_fec_init();
  53. imx_anatop_init();
  54. imx6sl_pm_init();
  55. }
  56. static void __init imx6sl_init_irq(void)
  57. {
  58. imx_gpc_check_dt();
  59. imx_init_revision_from_anatop();
  60. imx_init_l2cache();
  61. imx_src_init();
  62. irqchip_init();
  63. if (cpu_is_imx6sl())
  64. imx6_pm_ccm_init("fsl,imx6sl-ccm");
  65. else
  66. imx6_pm_ccm_init("fsl,imx6sll-ccm");
  67. }
  68. static const char * const imx6sl_dt_compat[] __initconst = {
  69. "fsl,imx6sl",
  70. "fsl,imx6sll",
  71. NULL,
  72. };
  73. DT_MACHINE_START(IMX6SL, "Freescale i.MX6 SoloLite (Device Tree)")
  74. .l2c_aux_val = 0,
  75. .l2c_aux_mask = ~0,
  76. .init_irq = imx6sl_init_irq,
  77. .init_machine = imx6sl_init_machine,
  78. .init_late = imx6sl_init_late,
  79. .dt_compat = imx6sl_dt_compat,
  80. MACHINE_END