|
@@ -20,14 +20,31 @@
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/io.h>
|
|
|
#include <linux/irq.h>
|
|
|
+#include <linux/memblock.h>
|
|
|
|
|
|
#include <asm/mach-types.h>
|
|
|
#include <asm/mach/arch.h>
|
|
|
#include <asm/hardware/gic.h>
|
|
|
+#include <asm/setup.h>
|
|
|
|
|
|
#include <mach/board.h>
|
|
|
#include <mach/msm_iomap.h>
|
|
|
|
|
|
+static void __init msm8x60_fixup(struct machine_desc *desc, struct tag *tag,
|
|
|
+ char **cmdline, struct meminfo *mi)
|
|
|
+{
|
|
|
+ for (; tag->hdr.size; tag = tag_next(tag))
|
|
|
+ if (tag->hdr.tag == ATAG_MEM &&
|
|
|
+ tag->u.mem.start == 0x40200000) {
|
|
|
+ tag->u.mem.start = 0x40000000;
|
|
|
+ tag->u.mem.size += SZ_2M;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void __init msm8x60_reserve(void)
|
|
|
+{
|
|
|
+ memblock_remove(0x40000000, SZ_2M);
|
|
|
+}
|
|
|
|
|
|
static void __init msm8x60_map_io(void)
|
|
|
{
|
|
@@ -65,6 +82,8 @@ static void __init msm8x60_init(void)
|
|
|
}
|
|
|
|
|
|
MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
|
|
|
+ .fixup = msm8x60_fixup,
|
|
|
+ .reserve = msm8x60_reserve,
|
|
|
.map_io = msm8x60_map_io,
|
|
|
.init_irq = msm8x60_init_irq,
|
|
|
.init_machine = msm8x60_init,
|
|
@@ -72,6 +91,8 @@ MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3")
|
|
|
MACHINE_END
|
|
|
|
|
|
MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
|
|
|
+ .fixup = msm8x60_fixup,
|
|
|
+ .reserve = msm8x60_reserve,
|
|
|
.map_io = msm8x60_map_io,
|
|
|
.init_irq = msm8x60_init_irq,
|
|
|
.init_machine = msm8x60_init,
|
|
@@ -79,6 +100,8 @@ MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF")
|
|
|
MACHINE_END
|
|
|
|
|
|
MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
|
|
|
+ .fixup = msm8x60_fixup,
|
|
|
+ .reserve = msm8x60_reserve,
|
|
|
.map_io = msm8x60_map_io,
|
|
|
.init_irq = msm8x60_init_irq,
|
|
|
.init_machine = msm8x60_init,
|
|
@@ -86,6 +109,8 @@ MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR")
|
|
|
MACHINE_END
|
|
|
|
|
|
MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA")
|
|
|
+ .fixup = msm8x60_fixup,
|
|
|
+ .reserve = msm8x60_reserve,
|
|
|
.map_io = msm8x60_map_io,
|
|
|
.init_irq = msm8x60_init_irq,
|
|
|
.init_machine = msm8x60_init,
|