]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ata: ahci_brcmstb: enable support for ALPM
authorDanesh Petigara <dpetigara@broadcom.com>
Fri, 8 Jan 2016 00:03:30 +0000 (16:03 -0800)
committerTejun Heo <tj@kernel.org>
Fri, 8 Jan 2016 16:28:08 +0000 (11:28 -0500)
Enable support for ALPM in the host controller's capabilities
register. Also adjust the PLL  timeout to give it enough time
to lock when the port exits slumber mode.

tj: minor style updates

Signed-off-by: Danesh Petigara <dpetigara@broadcom.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/ahci_brcmstb.c

index a4a0940307bc0400b0b26e1dc4619ecc36518f9b..719bed53cdeab6ed118db2efa45a43400e78aaa0 100644 (file)
  #define SATA_TOP_CTRL_PHY_OFFS                                0x8
  #define SATA_TOP_MAX_PHYS                             2
 
+#define SATA_FIRST_PORT_CTRL                           0x700
+#define SATA_NEXT_PORT_CTRL_OFFSET                     0x80
+#define SATA_PORT_PCTRL6(reg_base)                     (reg_base + 0x18)
+
 /* On big-endian MIPS, buses are reversed to big endian, so switch them back */
 #if defined(CONFIG_MIPS) && defined(__BIG_ENDIAN)
 #define DATA_ENDIAN                     2 /* AHCI->DDR inbound accesses */
@@ -111,6 +115,34 @@ static inline void brcm_sata_writereg(u32 val, void __iomem *addr)
                writel_relaxed(val, addr);
 }
 
+static void brcm_sata_alpm_init(struct ahci_host_priv *hpriv)
+{
+       struct brcm_ahci_priv *priv = hpriv->plat_data;
+       u32 bus_ctrl, port_ctrl, host_caps;
+       int i;
+
+       /* Enable support for ALPM */
+       bus_ctrl = brcm_sata_readreg(priv->top_ctrl +
+                                    SATA_TOP_CTRL_BUS_CTRL);
+       brcm_sata_writereg(bus_ctrl | OVERRIDE_HWINIT,
+                          priv->top_ctrl + SATA_TOP_CTRL_BUS_CTRL);
+       host_caps = readl(hpriv->mmio + HOST_CAP);
+       writel(host_caps | HOST_CAP_ALPM, hpriv->mmio);
+       brcm_sata_writereg(bus_ctrl, priv->top_ctrl + SATA_TOP_CTRL_BUS_CTRL);
+
+       /*
+        * Adjust timeout to allow PLL sufficient time to lock while waking
+        * up from slumber mode.
+        */
+       for (i = 0, port_ctrl = SATA_FIRST_PORT_CTRL;
+            i < SATA_TOP_MAX_PHYS;
+            i++, port_ctrl += SATA_NEXT_PORT_CTRL_OFFSET) {
+               if (priv->port_mask & BIT(i))
+                       writel(0xff1003fc,
+                              hpriv->mmio + SATA_PORT_PCTRL6(port_ctrl));
+       }
+}
+
 static void brcm_sata_phy_enable(struct brcm_ahci_priv *priv, int port)
 {
        void __iomem *phyctrl = priv->top_ctrl + SATA_TOP_CTRL_PHY_CTRL +
@@ -240,6 +272,7 @@ static int brcm_ahci_resume(struct device *dev)
 
        brcm_sata_init(priv);
        brcm_sata_phys_enable(priv);
+       brcm_sata_alpm_init(hpriv);
        return ahci_platform_resume(dev);
 }
 #endif
@@ -284,6 +317,8 @@ static int brcm_ahci_probe(struct platform_device *pdev)
                return PTR_ERR(hpriv);
        hpriv->plat_data = priv;
 
+       brcm_sata_alpm_init(hpriv);
+
        ret = ahci_platform_enable_resources(hpriv);
        if (ret)
                return ret;