summaryrefslogtreecommitdiffstats
path: root/hw/palm.c
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-04-14 20:27:51 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-04-14 20:27:51 +0000
commitf93eb9ff66868df42f8433d16f2dc48a4af2490f (patch)
tree37838f60ac8b497ccb4a879dacbde19cde5ef5c4 /hw/palm.c
parente22f8f39f3b0856c199ef29ff75749bb201b17bc (diff)
downloadhqemu-f93eb9ff66868df42f8433d16f2dc48a4af2490f.zip
hqemu-f93eb9ff66868df42f8433d16f2dc48a4af2490f.tar.gz
Move the excess of arm_load_kernel() parameters into a struct.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4212 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/palm.c')
-rw-r--r--hw/palm.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/hw/palm.c b/hw/palm.c
index 9400ea7..6d4e6c6 100644
--- a/hw/palm.c
+++ b/hw/palm.c
@@ -183,6 +183,12 @@ static void palmte_gpio_setup(struct omap_mpu_state_s *cpu)
qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[11]);
}
+static struct arm_boot_info palmte_binfo = {
+ .loader_start = OMAP_EMIFF_BASE,
+ .ram_size = 0x02000000,
+ .board_id = 0x331,
+};
+
static void palmte_init(int ram_size, int vga_ram_size,
const char *boot_device, DisplayState *ds,
const char *kernel_filename, const char *kernel_cmdline,
@@ -190,7 +196,7 @@ static void palmte_init(int ram_size, int vga_ram_size,
{
struct omap_mpu_state_s *cpu;
int flash_size = 0x00800000;
- int sdram_size = 0x02000000;
+ int sdram_size = palmte_binfo.ram_size;
int io;
static uint32_t cs0val = 0xffffffff;
static uint32_t cs1val = 0x0000e1a0;
@@ -250,10 +256,12 @@ static void palmte_init(int ram_size, int vga_ram_size,
/* Load the kernel. */
if (kernel_filename) {
/* Start at bootloader. */
- cpu->env->regs[15] = OMAP_EMIFF_BASE;
+ cpu->env->regs[15] = palmte_binfo.loader_start;
- arm_load_kernel(cpu->env, sdram_size, kernel_filename, kernel_cmdline,
- initrd_filename, 0x331, OMAP_EMIFF_BASE);
+ palmte_binfo.kernel_filename = kernel_filename;
+ palmte_binfo.kernel_cmdline = kernel_cmdline;
+ palmte_binfo.initrd_filename = initrd_filename;
+ arm_load_kernel(cpu->env, &palmte_binfo);
}
dpy_resize(ds, 320, 320);
OpenPOWER on IntegriCloud