diff options
author | eric miao <eric.miao@marvell.com> | 2008-01-28 18:00:02 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-02-04 08:17:33 -0500 |
commit | b1d907f9ccb3ffe1d7f5f04d2e9163de22ab01e6 (patch) | |
tree | 0b29cff47e1b9fc4b58b3e7b1eaadf416372c0f2 /arch/arm | |
parent | c4d1fb627ff307256d792280efcb09e1235affea (diff) |
[ARM] pxa: introduce sysdev for pxa3xx static memory controller
Introduce a sysdev for pxa3xx static memory controller, mainly
for register saving/restoring in PM
Signed-off-by: eric miao <eric.miao@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-pxa/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/smemc.c | 88 |
2 files changed, 89 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/Makefile b/arch/arm/mach-pxa/Makefile index b5c916c0747d..8604938bd948 100644 --- a/arch/arm/mach-pxa/Makefile +++ b/arch/arm/mach-pxa/Makefile | |||
@@ -6,7 +6,7 @@ | |||
6 | obj-y += clock.o devices.o generic.o irq.o dma.o time.o | 6 | obj-y += clock.o devices.o generic.o irq.o dma.o time.o |
7 | obj-$(CONFIG_PXA25x) += pxa25x.o | 7 | obj-$(CONFIG_PXA25x) += pxa25x.o |
8 | obj-$(CONFIG_PXA27x) += pxa27x.o | 8 | obj-$(CONFIG_PXA27x) += pxa27x.o |
9 | obj-$(CONFIG_PXA3xx) += pxa3xx.o mfp.o | 9 | obj-$(CONFIG_PXA3xx) += pxa3xx.o mfp.o smemc.o |
10 | obj-$(CONFIG_CPU_PXA300) += pxa300.o | 10 | obj-$(CONFIG_CPU_PXA300) += pxa300.o |
11 | obj-$(CONFIG_CPU_PXA320) += pxa320.o | 11 | obj-$(CONFIG_CPU_PXA320) += pxa320.o |
12 | 12 | ||
diff --git a/arch/arm/mach-pxa/smemc.c b/arch/arm/mach-pxa/smemc.c new file mode 100644 index 000000000000..ad346addc028 --- /dev/null +++ b/arch/arm/mach-pxa/smemc.c | |||
@@ -0,0 +1,88 @@ | |||
1 | /* | ||
2 | * Static Memory Controller | ||
3 | */ | ||
4 | |||
5 | #include <linux/module.h> | ||
6 | #include <linux/kernel.h> | ||
7 | #include <linux/init.h> | ||
8 | #include <linux/io.h> | ||
9 | #include <linux/sysdev.h> | ||
10 | |||
11 | #define SMEMC_PHYS_BASE (0x4A000000) | ||
12 | #define SMEMC_PHYS_SIZE (0x90) | ||
13 | |||
14 | #define MSC0 (0x08) /* Static Memory Controller Register 0 */ | ||
15 | #define MSC1 (0x0C) /* Static Memory Controller Register 1 */ | ||
16 | #define SXCNFG (0x1C) /* Synchronous Static Memory Control Register */ | ||
17 | #define MEMCLKCFG (0x68) /* Clock Configuration */ | ||
18 | #define CSADRCFG0 (0x80) /* Address Configuration Register for CS0 */ | ||
19 | #define CSADRCFG1 (0x84) /* Address Configuration Register for CS1 */ | ||
20 | #define CSADRCFG2 (0x88) /* Address Configuration Register for CS2 */ | ||
21 | #define CSADRCFG3 (0x8C) /* Address Configuration Register for CS3 */ | ||
22 | |||
23 | #ifdef CONFIG_PM | ||
24 | static void __iomem *smemc_mmio_base; | ||
25 | |||
26 | static unsigned long msc[2]; | ||
27 | static unsigned long sxcnfg, memclkcfg; | ||
28 | static unsigned long csadrcfg[4]; | ||
29 | |||
30 | static int pxa3xx_smemc_suspend(struct sys_device *dev, pm_message_t state) | ||
31 | { | ||
32 | msc[0] = __raw_readl(smemc_mmio_base + MSC0); | ||
33 | msc[1] = __raw_readl(smemc_mmio_base + MSC1); | ||
34 | sxcnfg = __raw_readl(smemc_mmio_base + SXCNFG); | ||
35 | memclkcfg = __raw_readl(smemc_mmio_base + MEMCLKCFG); | ||
36 | csadrcfg[0] = __raw_readl(smemc_mmio_base + CSADRCFG0); | ||
37 | csadrcfg[1] = __raw_readl(smemc_mmio_base + CSADRCFG1); | ||
38 | csadrcfg[2] = __raw_readl(smemc_mmio_base + CSADRCFG2); | ||
39 | csadrcfg[3] = __raw_readl(smemc_mmio_base + CSADRCFG3); | ||
40 | |||
41 | return 0; | ||
42 | } | ||
43 | |||
44 | static int pxa3xx_smemc_resume(struct sys_device *dev) | ||
45 | { | ||
46 | __raw_writel(msc[0], smemc_mmio_base + MSC0); | ||
47 | __raw_writel(msc[1], smemc_mmio_base + MSC1); | ||
48 | __raw_writel(sxcnfg, smemc_mmio_base + SXCNFG); | ||
49 | __raw_writel(memclkcfg, smemc_mmio_base + MEMCLKCFG); | ||
50 | __raw_writel(csadrcfg[0], smemc_mmio_base + CSADRCFG0); | ||
51 | __raw_writel(csadrcfg[1], smemc_mmio_base + CSADRCFG1); | ||
52 | __raw_writel(csadrcfg[2], smemc_mmio_base + CSADRCFG2); | ||
53 | __raw_writel(csadrcfg[3], smemc_mmio_base + CSADRCFG3); | ||
54 | |||
55 | return 0; | ||
56 | } | ||
57 | |||
58 | static struct sysdev_class smemc_sysclass = { | ||
59 | .name = "smemc", | ||
60 | .suspend = pxa3xx_smemc_suspend, | ||
61 | .resume = pxa3xx_smemc_resume, | ||
62 | }; | ||
63 | |||
64 | static struct sys_device smemc_sysdev = { | ||
65 | .id = 0, | ||
66 | .cls = &smemc_sysclass, | ||
67 | }; | ||
68 | |||
69 | static int __init smemc_init(void) | ||
70 | { | ||
71 | int ret = 0; | ||
72 | |||
73 | if (cpu_is_pxa3xx()) { | ||
74 | smemc_mmio_base = ioremap(SMEMC_PHYS_BASE, SMEMC_PHYS_SIZE); | ||
75 | if (smemc_mmio_base == NULL) | ||
76 | return -ENODEV; | ||
77 | |||
78 | ret = sysdev_class_register(&smemc_sysclass); | ||
79 | if (ret) | ||
80 | return ret; | ||
81 | |||
82 | ret = sysdev_register(&smemc_sysdev); | ||
83 | } | ||
84 | |||
85 | return ret; | ||
86 | } | ||
87 | subsys_initcall(smemc_init); | ||
88 | #endif | ||