diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-12-12 00:24:38 +0000 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-03-10 16:26:52 +0000 |
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 fbde183a456..91f49a3a665 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 = { .pfn = __phys_to_pfn(S3C64XX_PA_GPIO), .length = SZ_4K, .type = MT_DEVICE, + }, { + .virtual = (unsigned long)S3C64XX_VA_MODEM, + .pfn = __phys_to_pfn(S3C64XX_PA_MODEM), + .length = SZ_4K, + .type = MT_DEVICE, }, }; |