diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-12-11 19:24:38 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-03-10 12:26:52 -0400 |
commit | 5b3d515fcfe93d012107b9bd4895e2d913cbe8c3 (patch) | |
tree | 22405effe96391578059312debeb829099679685 /arch/arm/plat-s3c64xx/cpu.c | |
parent | 1264fa6f8c5bf561a86128b2d48ace53e3f1e66f (diff) |
[ARM] S3C64XX: Add modem registers and a virtual map
Add the modem registers and a virtual mapping for the
modem block. This is is required as there are registers
that control the LCD block that need to be saved over
suspend as well as interrupt controls.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c64xx/cpu.c')
-rw-r--r-- | arch/arm/plat-s3c64xx/cpu.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c64xx/cpu.c b/arch/arm/plat-s3c64xx/cpu.c index fbde183a4560..91f49a3a665d 100644 --- a/arch/arm/plat-s3c64xx/cpu.c +++ b/arch/arm/plat-s3c64xx/cpu.c | |||
@@ -96,6 +96,11 @@ static struct map_desc s3c_iodesc[] __initdata = { | |||
96 | .pfn = __phys_to_pfn(S3C64XX_PA_GPIO), | 96 | .pfn = __phys_to_pfn(S3C64XX_PA_GPIO), |
97 | .length = SZ_4K, | 97 | .length = SZ_4K, |
98 | .type = MT_DEVICE, | 98 | .type = MT_DEVICE, |
99 | }, { | ||
100 | .virtual = (unsigned long)S3C64XX_VA_MODEM, | ||
101 | .pfn = __phys_to_pfn(S3C64XX_PA_MODEM), | ||
102 | .length = SZ_4K, | ||
103 | .type = MT_DEVICE, | ||
99 | }, | 104 | }, |
100 | }; | 105 | }; |
101 | 106 | ||