|
@@ -58,7 +58,6 @@ static const char name_exynos5440[] = "EXYNOS5440";
|
|
|
|
|
|
static void exynos4_map_io(void);
|
|
|
static void exynos5_map_io(void);
|
|
|
-static void exynos5440_map_io(void);
|
|
|
static int exynos_init(void);
|
|
|
|
|
|
static struct cpu_table cpu_ids[] __initdata = {
|
|
@@ -95,7 +94,6 @@ static struct cpu_table cpu_ids[] __initdata = {
|
|
|
}, {
|
|
|
.idcode = EXYNOS5440_SOC_ID,
|
|
|
.idmask = EXYNOS5_SOC_MASK,
|
|
|
- .map_io = exynos5440_map_io,
|
|
|
.init = exynos_init,
|
|
|
.name = name_exynos5440,
|
|
|
},
|
|
@@ -149,11 +147,6 @@ static struct map_desc exynos4_iodesc[] __initdata = {
|
|
|
.pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
|
|
|
.length = SZ_64K,
|
|
|
.type = MT_DEVICE,
|
|
|
- }, {
|
|
|
- .virtual = (unsigned long)S3C_VA_UART,
|
|
|
- .pfn = __phys_to_pfn(EXYNOS4_PA_UART),
|
|
|
- .length = SZ_512K,
|
|
|
- .type = MT_DEVICE,
|
|
|
}, {
|
|
|
.virtual = (unsigned long)S5P_VA_CMU,
|
|
|
.pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
|
|
@@ -268,20 +261,6 @@ static struct map_desc exynos5_iodesc[] __initdata = {
|
|
|
.pfn = __phys_to_pfn(EXYNOS5_PA_PMU),
|
|
|
.length = SZ_64K,
|
|
|
.type = MT_DEVICE,
|
|
|
- }, {
|
|
|
- .virtual = (unsigned long)S3C_VA_UART,
|
|
|
- .pfn = __phys_to_pfn(EXYNOS5_PA_UART),
|
|
|
- .length = SZ_512K,
|
|
|
- .type = MT_DEVICE,
|
|
|
- },
|
|
|
-};
|
|
|
-
|
|
|
-static struct map_desc exynos5440_iodesc0[] __initdata = {
|
|
|
- {
|
|
|
- .virtual = (unsigned long)S3C_VA_UART,
|
|
|
- .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0),
|
|
|
- .length = SZ_512K,
|
|
|
- .type = MT_DEVICE,
|
|
|
},
|
|
|
};
|
|
|
|
|
@@ -388,11 +367,6 @@ static void __init exynos5_map_io(void)
|
|
|
iotable_init(exynos5250_iodesc, ARRAY_SIZE(exynos5250_iodesc));
|
|
|
}
|
|
|
|
|
|
-static void __init exynos5440_map_io(void)
|
|
|
-{
|
|
|
- iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0));
|
|
|
-}
|
|
|
-
|
|
|
void __init exynos_init_time(void)
|
|
|
{
|
|
|
of_clk_init(NULL);
|