Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2013 Freescale Semiconductor, Inc. |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/irqchip.h> |
| 7 | #include <linux/of.h> |
| 8 | #include <linux/of_platform.h> |
Fugang Duan | a9aec30 | 2013-09-04 10:58:17 +0800 | [diff] [blame] | 9 | #include <linux/mfd/syscon.h> |
| 10 | #include <linux/mfd/syscon/imx6q-iomuxc-gpr.h> |
| 11 | #include <linux/regmap.h> |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 12 | #include <asm/mach/arch.h> |
| 13 | #include <asm/mach/map.h> |
| 14 | |
| 15 | #include "common.h" |
Anson Huang | 751f7e9 | 2014-01-09 16:03:16 +0800 | [diff] [blame] | 16 | #include "cpuidle.h" |
Bai Ping | dee5dee | 2018-03-08 17:34:55 +0800 | [diff] [blame] | 17 | #include "hardware.h" |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 18 | |
Fugang Duan | a9aec30 | 2013-09-04 10:58:17 +0800 | [diff] [blame] | 19 | static void __init imx6sl_fec_init(void) |
| 20 | { |
| 21 | struct regmap *gpr; |
| 22 | |
| 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 | |
John Tobias | 1ed4aae | 2013-12-19 12:35:37 -0800 | [diff] [blame] | 35 | static void __init imx6sl_init_late(void) |
| 36 | { |
| 37 | /* imx6sl reuses imx6q cpufreq driver */ |
| 38 | if (IS_ENABLED(CONFIG_ARM_IMX6Q_CPUFREQ)) |
| 39 | platform_device_register_simple("imx6q-cpufreq", -1, NULL, 0); |
Anson Huang | 751f7e9 | 2014-01-09 16:03:16 +0800 | [diff] [blame] | 40 | |
Arnd Bergmann | bc0ebbd | 2018-07-09 17:51:17 +0200 | [diff] [blame] | 41 | if (IS_ENABLED(CONFIG_SOC_IMX6SL) && cpu_is_imx6sl()) |
Anson Huang | e7fa1fb | 2018-06-03 10:33:45 +0800 | [diff] [blame] | 42 | imx6sl_cpuidle_init(); |
Arnd Bergmann | bc0ebbd | 2018-07-09 17:51:17 +0200 | [diff] [blame] | 43 | else if (IS_ENABLED(CONFIG_SOC_IMX6SLL)) |
Anson Huang | e7fa1fb | 2018-06-03 10:33:45 +0800 | [diff] [blame] | 44 | imx6sx_cpuidle_init(); |
John Tobias | 1ed4aae | 2013-12-19 12:35:37 -0800 | [diff] [blame] | 45 | } |
| 46 | |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 47 | static void __init imx6sl_init_machine(void) |
| 48 | { |
Shawn Guo | a288754 | 2013-08-13 16:59:28 +0800 | [diff] [blame] | 49 | struct device *parent; |
| 50 | |
Shawn Guo | a288754 | 2013-08-13 16:59:28 +0800 | [diff] [blame] | 51 | parent = imx_soc_device_init(); |
| 52 | if (parent == NULL) |
| 53 | pr_warn("failed to initialize soc device\n"); |
| 54 | |
Kefeng Wang | 435ebcb | 2016-06-01 14:53:05 +0800 | [diff] [blame] | 55 | of_platform_default_populate(NULL, NULL, parent); |
Fugang Duan | a9aec30 | 2013-09-04 10:58:17 +0800 | [diff] [blame] | 56 | |
Bai Ping | dee5dee | 2018-03-08 17:34:55 +0800 | [diff] [blame] | 57 | if (cpu_is_imx6sl()) |
| 58 | imx6sl_fec_init(); |
Shawn Guo | 9ba64fe | 2013-10-17 10:07:09 +0800 | [diff] [blame] | 59 | imx_anatop_init(); |
Anson Huang | df59574 | 2014-01-17 11:39:05 +0800 | [diff] [blame] | 60 | imx6sl_pm_init(); |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static void __init imx6sl_init_irq(void) |
| 64 | { |
Marc Zyngier | 1451756 | 2015-03-13 16:05:37 +0000 | [diff] [blame] | 65 | imx_gpc_check_dt(); |
Shawn Guo | d8ce823 | 2013-08-13 16:54:05 +0800 | [diff] [blame] | 66 | imx_init_revision_from_anatop(); |
Shawn Guo | 73dada7 | 2013-07-08 21:52:33 +0800 | [diff] [blame] | 67 | imx_init_l2cache(); |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 68 | imx_src_init(); |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 69 | irqchip_init(); |
Bai Ping | dee5dee | 2018-03-08 17:34:55 +0800 | [diff] [blame] | 70 | if (cpu_is_imx6sl()) |
| 71 | imx6_pm_ccm_init("fsl,imx6sl-ccm"); |
| 72 | else |
| 73 | imx6_pm_ccm_init("fsl,imx6sll-ccm"); |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 74 | } |
| 75 | |
Shawn Guo | 8756dd9 | 2014-07-01 16:03:00 +0800 | [diff] [blame] | 76 | static const char * const imx6sl_dt_compat[] __initconst = { |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 77 | "fsl,imx6sl", |
Bai Ping | dee5dee | 2018-03-08 17:34:55 +0800 | [diff] [blame] | 78 | "fsl,imx6sll", |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 79 | NULL, |
| 80 | }; |
| 81 | |
| 82 | DT_MACHINE_START(IMX6SL, "Freescale i.MX6 SoloLite (Device Tree)") |
Andrey Smirnov | 510aca6 | 2016-06-18 18:09:31 -0700 | [diff] [blame] | 83 | .l2c_aux_val = 0, |
| 84 | .l2c_aux_mask = ~0, |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 85 | .init_irq = imx6sl_init_irq, |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 86 | .init_machine = imx6sl_init_machine, |
John Tobias | 1ed4aae | 2013-12-19 12:35:37 -0800 | [diff] [blame] | 87 | .init_late = imx6sl_init_late, |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 88 | .dt_compat = imx6sl_dt_compat, |
Shawn Guo | 31a2fbf | 2013-05-03 11:24:47 +0800 | [diff] [blame] | 89 | MACHINE_END |