diff options
author | Frank Li <Frank.Li@freescale.com> | 2012-10-30 14:25:22 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-01 12:28:05 -0400 |
commit | d6e0d9fcbb01edc7a342b15f077a217d46f3b608 (patch) | |
tree | 73329a4f13aa8ca1790e5d6272286d6577e15087 | |
parent | 7629838ca33adf8d576d9e4a9d31df4f3b3bc258 (diff) |
ARM: imx6q: Set enet tx reference clk from anatop to support 1588
Set GRP1 BIT21 ENET_CLK_SEL:
Enet tx reference clk from internal clock from anatop
(loopback through pad), this clock also sent out to external PHY
Signed-off-by: Frank Li <Frank.Li@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | arch/arm/mach-imx/mach-imx6q.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c index 47c91f7185d2..38d69100398d 100644 --- a/arch/arm/mach-imx/mach-imx6q.c +++ b/arch/arm/mach-imx/mach-imx6q.c | |||
@@ -117,6 +117,17 @@ static void __init imx6q_sabrelite_init(void) | |||
117 | imx6q_sabrelite_cko1_setup(); | 117 | imx6q_sabrelite_cko1_setup(); |
118 | } | 118 | } |
119 | 119 | ||
120 | static void __init imx6q_1588_init(void) | ||
121 | { | ||
122 | struct regmap *gpr; | ||
123 | |||
124 | gpr = syscon_regmap_lookup_by_compatible("fsl,imx6q-iomuxc-gpr"); | ||
125 | if (!IS_ERR(gpr)) | ||
126 | regmap_update_bits(gpr, 0x4, 1 << 21, 1 << 21); | ||
127 | else | ||
128 | pr_err("failed to find fsl,imx6q-iomux-gpr regmap\n"); | ||
129 | |||
130 | } | ||
120 | static void __init imx6q_usb_init(void) | 131 | static void __init imx6q_usb_init(void) |
121 | { | 132 | { |
122 | struct regmap *anatop; | 133 | struct regmap *anatop; |
@@ -153,6 +164,7 @@ static void __init imx6q_init_machine(void) | |||
153 | 164 | ||
154 | imx6q_pm_init(); | 165 | imx6q_pm_init(); |
155 | imx6q_usb_init(); | 166 | imx6q_usb_init(); |
167 | imx6q_1588_init(); | ||
156 | } | 168 | } |
157 | 169 | ||
158 | static struct cpuidle_driver imx6q_cpuidle_driver = { | 170 | static struct cpuidle_driver imx6q_cpuidle_driver = { |