diff options
author | Andy Green <andy@openmoko.com> | 2009-02-25 11:05:19 +0000 |
---|---|---|
committer | Andy Green <agreen@octopus.localdomain> | 2009-02-25 11:05:19 +0000 |
commit | 7b9a8d65a597efaba8c54ac3eaa4f8d3f3c482e1 (patch) | |
tree | 2443a58da904ac18fa634686e245219f66ff7808 /arch/arm/plat-s3c64xx | |
parent | b9aa5bf345a0b802af0d10b6cf1079738fe4fd12 (diff) |
add-s3c64xx-tzic.patch
This adds in the TZIC support consts and also the VM mapping
for the TZIC units, and adds TZIC init into mach-om-gta03.c
Signed-off-by: Andy Green <andy@openmoko.com>
Diffstat (limited to 'arch/arm/plat-s3c64xx')
-rw-r--r-- | arch/arm/plat-s3c64xx/cpu.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c64xx/cpu.c b/arch/arm/plat-s3c64xx/cpu.c index f9fdaab32ab..5cda43bc833 100644 --- a/arch/arm/plat-s3c64xx/cpu.c +++ b/arch/arm/plat-s3c64xx/cpu.c @@ -102,7 +102,17 @@ static struct map_desc s3c_iodesc[] __initdata = { .pfn = __phys_to_pfn(S3C64XX_PA_MODEM), .length = SZ_4K, .type = MT_DEVICE, - }, + }, { + .virtual = (unsigned long)S3C_VA_TZIC0, + .pfn = __phys_to_pfn(S3C64XX_PA_TZIC0), + .length = SZ_4K, + .type = MT_DEVICE, + }, { + .virtual = (unsigned long)S3C_VA_TZIC1, + .pfn = __phys_to_pfn(S3C64XX_PA_TZIC1), + .length = SZ_4K, + .type = MT_DEVICE, + } }; |