* [PATCH V2 2/2] ARM: imx: set CKO1 parent clock source in imx6q sabresd
@ 2013-02-05 1:37 Gary Zhang
2013-02-05 9:32 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Gary Zhang @ 2013-02-05 1:37 UTC (permalink / raw)
To: linux-arm-kernel
in imx6q sabresd board, set ahb as CKO1 parent clock sourrce
Signed-off-by: Gary Zhang <b13634@freescale.com>
---
arch/arm/mach-imx/mach-imx6q.c | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c
index 4eb1b3a..82c67de 100644
--- a/arch/arm/mach-imx/mach-imx6q.c
+++ b/arch/arm/mach-imx/mach-imx6q.c
@@ -119,7 +119,7 @@ static int ksz9021rn_phy_fixup(struct phy_device *phydev)
return 0;
}
-static void __init imx6q_sabrelite_cko1_setup(void)
+static void __init cko1_setup(unsigned long freq)
{
struct clk *cko1_sel, *ahb, *cko1;
unsigned long rate;
@@ -132,8 +132,9 @@ static void __init imx6q_sabrelite_cko1_setup(void)
goto put_clk;
}
clk_set_parent(cko1_sel, ahb);
- rate = clk_round_rate(cko1, 16000000);
+ rate = clk_round_rate(cko1, freq);
clk_set_rate(cko1, rate);
+
put_clk:
if (!IS_ERR(cko1_sel))
clk_put(cko1_sel);
@@ -148,7 +149,12 @@ static void __init imx6q_sabrelite_init(void)
if (IS_BUILTIN(CONFIG_PHYLIB))
phy_register_fixup_for_uid(PHY_ID_KSZ9021, MICREL_PHY_ID_MASK,
ksz9021rn_phy_fixup);
- imx6q_sabrelite_cko1_setup();
+ cko1_setup(16000000);
+}
+
+static void __init imx6q_sabresd_init(void)
+{
+ cko1_setup(24000000);
}
static void __init imx6q_1588_init(void)
@@ -193,6 +199,8 @@ static void __init imx6q_init_machine(void)
{
if (of_machine_is_compatible("fsl,imx6q-sabrelite"))
imx6q_sabrelite_init();
+ else if (of_machine_is_compatible("fsl,imx6q-sabresd"))
+ imx6q_sabresd_init();
of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH V2 2/2] ARM: imx: set CKO1 parent clock source in imx6q sabresd
2013-02-05 1:37 [PATCH V2 2/2] ARM: imx: set CKO1 parent clock source in imx6q sabresd Gary Zhang
@ 2013-02-05 9:32 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2013-02-05 9:32 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Feb 05, 2013 at 09:37:58AM +0800, Gary Zhang wrote:
> in imx6q sabresd board, set ahb as CKO1 parent clock sourrce
Can we have a comment in the code for what the CKO is used?
I don't like this board specific clock tree hacking at all, but having
no clue why this is done makes it harder to clean this up properly in
the future.
Sascha
>
> Signed-off-by: Gary Zhang <b13634@freescale.com>
> ---
> arch/arm/mach-imx/mach-imx6q.c | 14 +++++++++++---
> 1 files changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c
> index 4eb1b3a..82c67de 100644
> --- a/arch/arm/mach-imx/mach-imx6q.c
> +++ b/arch/arm/mach-imx/mach-imx6q.c
> @@ -119,7 +119,7 @@ static int ksz9021rn_phy_fixup(struct phy_device *phydev)
> return 0;
> }
>
> -static void __init imx6q_sabrelite_cko1_setup(void)
> +static void __init cko1_setup(unsigned long freq)
> {
> struct clk *cko1_sel, *ahb, *cko1;
> unsigned long rate;
> @@ -132,8 +132,9 @@ static void __init imx6q_sabrelite_cko1_setup(void)
> goto put_clk;
> }
> clk_set_parent(cko1_sel, ahb);
> - rate = clk_round_rate(cko1, 16000000);
> + rate = clk_round_rate(cko1, freq);
> clk_set_rate(cko1, rate);
> +
> put_clk:
> if (!IS_ERR(cko1_sel))
> clk_put(cko1_sel);
> @@ -148,7 +149,12 @@ static void __init imx6q_sabrelite_init(void)
> if (IS_BUILTIN(CONFIG_PHYLIB))
> phy_register_fixup_for_uid(PHY_ID_KSZ9021, MICREL_PHY_ID_MASK,
> ksz9021rn_phy_fixup);
> - imx6q_sabrelite_cko1_setup();
> + cko1_setup(16000000);
> +}
> +
> +static void __init imx6q_sabresd_init(void)
> +{
> + cko1_setup(24000000);
> }
>
> static void __init imx6q_1588_init(void)
> @@ -193,6 +199,8 @@ static void __init imx6q_init_machine(void)
> {
> if (of_machine_is_compatible("fsl,imx6q-sabrelite"))
> imx6q_sabrelite_init();
> + else if (of_machine_is_compatible("fsl,imx6q-sabresd"))
> + imx6q_sabresd_init();
>
> of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
>
> --
> 1.7.0.4
>
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-02-05 9:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-05 1:37 [PATCH V2 2/2] ARM: imx: set CKO1 parent clock source in imx6q sabresd Gary Zhang
2013-02-05 9:32 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).