MIPS: BCM63XX: add and use a clock for PCIe
authorJonas Gorski <jonas.gorski@gmail.com>
Sun, 28 Oct 2012 11:49:53 +0000 (11:49 +0000)
committerJohn Crispin <blogic@openwrt.org>
Fri, 9 Nov 2012 10:37:17 +0000 (11:37 +0100)
Add a PCIe clock and use that instead of directly touching the clock
control register. While at it, fail if there is no such clock.

Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Acked-by: Florian Fainelli <florian@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/4452
Signed-off-by: John Crispin <blogic@openwrt.org>
arch/mips/bcm63xx/clk.c
arch/mips/pci/pci-bcm63xx.c

index dff79ab6005e725930e530134b769b0545473209..89a5fb077862dcb6394f06d3b592271ce123ccc2 100644 (file)
@@ -252,6 +252,19 @@ static struct clk clk_ipsec = {
        .set    = ipsec_set,
 };
 
+/*
+ * PCIe clock
+ */
+
+static void pcie_set(struct clk *clk, int enable)
+{
+       bcm_hwclock_set(CKCTL_6328_PCIE_EN, enable);
+}
+
+static struct clk clk_pcie = {
+       .set    = pcie_set,
+};
+
 /*
  * Internal peripheral clock
  */
@@ -313,6 +326,8 @@ struct clk *clk_get(struct device *dev, const char *id)
                return &clk_pcm;
        if (BCMCPU_IS_6368() && !strcmp(id, "ipsec"))
                return &clk_ipsec;
+       if (BCMCPU_IS_6328() && !strcmp(id, "pcie"))
+               return &clk_pcie;
        return ERR_PTR(-ENOENT);
 }
 
index 8a48139d219cc2c8918f3f5597333683c3e0ea65..fa8c320936feec452fc46b51a5c78f8441def1e9 100644 (file)
@@ -11,6 +11,7 @@
 #include <linux/kernel.h>
 #include <linux/init.h>
 #include <linux/delay.h>
+#include <linux/clk.h>
 #include <asm/bootinfo.h>
 
 #include "pci-bcm63xx.h"
@@ -119,11 +120,6 @@ static void __init bcm63xx_reset_pcie(void)
 {
        u32 val;
 
-       /* enable clock */
-       val = bcm_perf_readl(PERF_CKCTL_REG);
-       val |= CKCTL_6328_PCIE_EN;
-       bcm_perf_writel(val, PERF_CKCTL_REG);
-
        /* enable SERDES */
        val = bcm_misc_readl(MISC_SERDES_CTRL_REG);
        val |= SERDES_PCIE_EN | SERDES_PCIE_EXD_EN;
@@ -150,10 +146,19 @@ static void __init bcm63xx_reset_pcie(void)
        mdelay(200);
 }
 
+static struct clk *pcie_clk;
+
 static int __init bcm63xx_register_pcie(void)
 {
        u32 val;
 
+       /* enable clock */
+       pcie_clk = clk_get(NULL, "pcie");
+       if (IS_ERR_OR_NULL(pcie_clk))
+               return -ENODEV;
+
+       clk_prepare_enable(pcie_clk);
+
        bcm63xx_reset_pcie();
 
        /* configure the PCIe bridge */