|
@@ -58,8 +58,27 @@
|
|
|
static struct map_desc smdk2440_iodesc[] __initdata = {
|
|
|
/* ISA IO Space map (memory space selected by A24) */
|
|
|
|
|
|
- { (u32)S3C24XX_VA_ISA_WORD, S3C2410_CS2, SZ_16M, MT_DEVICE },
|
|
|
- { (u32)S3C24XX_VA_ISA_BYTE, S3C2410_CS2, SZ_16M, MT_DEVICE },
|
|
|
+ {
|
|
|
+ .virtual = (u32)S3C24XX_VA_ISA_WORD,
|
|
|
+ .pfn = __phys_to_pfn(S3C2410_CS2),
|
|
|
+ .length = 0x10000,
|
|
|
+ .type = MT_DEVICE,
|
|
|
+ }, {
|
|
|
+ .virtual = (u32)S3C24XX_VA_ISA_WORD + 0x10000,
|
|
|
+ .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)),
|
|
|
+ .length = SZ_4M,
|
|
|
+ .type = MT_DEVICE,
|
|
|
+ }, {
|
|
|
+ .virtual = (u32)S3C24XX_VA_ISA_BYTE,
|
|
|
+ .pfn = __phys_to_pfn(S3C2410_CS2),
|
|
|
+ .length = 0x10000,
|
|
|
+ .type = MT_DEVICE,
|
|
|
+ }, {
|
|
|
+ .virtual = (u32)S3C24XX_VA_ISA_BYTE + 0x10000,
|
|
|
+ .pfn = __phys_to_pfn(S3C2410_CS2 + (1<<24)),
|
|
|
+ .length = SZ_4M,
|
|
|
+ .type = MT_DEVICE,
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
#define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
|