OSDN Git Service

ARM: imx27: Retrieve the CCM base address from devicetree
authorFabio Estevam <festevam@gmail.com>
Thu, 17 Sep 2020 00:41:16 +0000 (21:41 -0300)
committerShawn Guo <shawnguo@kernel.org>
Tue, 22 Sep 2020 06:08:00 +0000 (14:08 +0800)
Now that imx27 has been converted to a devicetree-only platform,
retrieve the CCM base address from devicetree.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/mach-imx/pm-imx27.c

index d943535..020e6de 100644 (file)
@@ -7,6 +7,7 @@
  * modify it under the terms of the GNU General Public License.
  */
 
+#include <linux/of_address.h>
 #include <linux/kernel.h>
 #include <linux/suspend.h>
 #include <linux/io.h>
 
 static int mx27_suspend_enter(suspend_state_t state)
 {
+       void __iomem *ccm_base;
+       struct device_node *np;
        u32 cscr;
+
+       np = of_find_compatible_node(NULL, NULL, "fsl,imx27-ccm");
+       ccm_base = of_iomap(np, 0);
+       BUG_ON(!ccm_base);
+
        switch (state) {
        case PM_SUSPEND_MEM:
                /* Clear MPEN and SPEN to disable MPLL/SPLL */
-               cscr = imx_readl(MX27_IO_ADDRESS(MX27_CCM_BASE_ADDR));
+               cscr = imx_readl(ccm_base);
                cscr &= 0xFFFFFFFC;
-               imx_writel(cscr, MX27_IO_ADDRESS(MX27_CCM_BASE_ADDR));
+               imx_writel(cscr, ccm_base);
                /* Executes WFI */
                cpu_do_idle();
                break;