2007-11-17 12:50:55 +01:00
|
|
|
/*
|
|
|
|
* Gumstix Platforms
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 by Thorsten Zitterell <info@bitmux.org>
|
|
|
|
*
|
|
|
|
* Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org>
|
|
|
|
*
|
|
|
|
* This code is licensed under the GNU GPL v2.
|
|
|
|
*/
|
2007-11-25 00:47:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Example usage:
|
|
|
|
*
|
|
|
|
* connex:
|
|
|
|
* =======
|
|
|
|
* create image:
|
|
|
|
* # dd of=flash bs=1k count=16k if=/dev/zero
|
|
|
|
* # dd of=flash bs=1k conv=notrunc if=u-boot.bin
|
|
|
|
* # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2
|
|
|
|
* start it:
|
|
|
|
* # qemu-system-arm -M connex -pflash flash -monitor null -nographic
|
|
|
|
*
|
|
|
|
* verdex:
|
|
|
|
* =======
|
|
|
|
* create image:
|
|
|
|
* # dd of=flash bs=1k count=32k if=/dev/zero
|
|
|
|
* # dd of=flash bs=1k conv=notrunc if=u-boot.bin
|
|
|
|
* # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2
|
|
|
|
* # dd of=flash bs=1k conv=notrunc seek=31744 if=uImage
|
|
|
|
* start it:
|
|
|
|
* # qemu-system-arm -M verdex -pflash flash -monitor null -nographic -m 289
|
|
|
|
*/
|
2007-11-17 12:50:55 +01:00
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#include "hw.h"
|
|
|
|
#include "pxa.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "flash.h"
|
|
|
|
#include "sysemu.h"
|
|
|
|
#include "devices.h"
|
|
|
|
#include "boards.h"
|
2007-11-17 12:50:55 +01:00
|
|
|
|
2007-11-25 01:29:23 +01:00
|
|
|
static const int sector_len = 128 * 1024;
|
|
|
|
|
2009-05-13 18:56:25 +02:00
|
|
|
static void connex_init(ram_addr_t ram_size,
|
2009-01-16 20:04:14 +01:00
|
|
|
const char *boot_device,
|
2007-11-25 00:47:38 +01:00
|
|
|
const char *kernel_filename, const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename, const char *cpu_model)
|
2007-11-17 12:50:55 +01:00
|
|
|
{
|
2009-05-10 02:44:56 +02:00
|
|
|
PXA2xxState *cpu;
|
2007-12-02 05:51:10 +01:00
|
|
|
int index;
|
2007-11-17 12:50:55 +01:00
|
|
|
|
2007-11-25 00:47:38 +01:00
|
|
|
uint32_t connex_rom = 0x01000000;
|
|
|
|
uint32_t connex_ram = 0x04000000;
|
2007-11-17 12:50:55 +01:00
|
|
|
|
2009-01-16 20:04:14 +01:00
|
|
|
cpu = pxa255_init(connex_ram);
|
2007-11-17 12:50:55 +01:00
|
|
|
|
2007-12-02 05:51:10 +01:00
|
|
|
index = drive_get_index(IF_PFLASH, 0, 0);
|
|
|
|
if (index == -1) {
|
2007-11-17 12:50:55 +01:00
|
|
|
fprintf(stderr, "A flash image must be given with the "
|
|
|
|
"'pflash' parameter\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-12-10 01:28:27 +01:00
|
|
|
if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(connex_rom),
|
2007-12-02 05:51:10 +01:00
|
|
|
drives_table[index].bdrv, sector_len, connex_rom / sector_len,
|
2007-11-25 01:29:23 +01:00
|
|
|
2, 0, 0, 0, 0)) {
|
2007-11-25 00:47:38 +01:00
|
|
|
fprintf(stderr, "qemu: Error registering flash memory.\n");
|
2007-11-17 12:50:55 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu->env->regs[15] = 0x00000000;
|
|
|
|
|
2008-01-14 03:39:21 +01:00
|
|
|
/* Interrupt line of NIC is connected to GPIO line 36 */
|
2007-11-17 15:07:13 +01:00
|
|
|
smc91c111_init(&nd_table[0], 0x04000300,
|
|
|
|
pxa2xx_gpio_in_get(cpu->gpio)[36]);
|
2007-11-17 12:50:55 +01:00
|
|
|
}
|
|
|
|
|
2009-05-13 18:56:25 +02:00
|
|
|
static void verdex_init(ram_addr_t ram_size,
|
2009-01-16 20:04:14 +01:00
|
|
|
const char *boot_device,
|
2007-11-17 12:50:55 +01:00
|
|
|
const char *kernel_filename, const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename, const char *cpu_model)
|
|
|
|
{
|
2009-05-10 02:44:56 +02:00
|
|
|
PXA2xxState *cpu;
|
2007-12-02 05:51:10 +01:00
|
|
|
int index;
|
2007-11-25 00:47:38 +01:00
|
|
|
|
|
|
|
uint32_t verdex_rom = 0x02000000;
|
|
|
|
uint32_t verdex_ram = 0x10000000;
|
|
|
|
|
2009-01-16 20:04:14 +01:00
|
|
|
cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
|
2007-11-25 00:47:38 +01:00
|
|
|
|
2007-12-02 05:51:10 +01:00
|
|
|
index = drive_get_index(IF_PFLASH, 0, 0);
|
|
|
|
if (index == -1) {
|
2007-11-25 00:47:38 +01:00
|
|
|
fprintf(stderr, "A flash image must be given with the "
|
|
|
|
"'pflash' parameter\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-12-10 01:28:27 +01:00
|
|
|
if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(verdex_rom),
|
2007-12-02 05:51:10 +01:00
|
|
|
drives_table[index].bdrv, sector_len, verdex_rom / sector_len,
|
2007-11-25 01:29:23 +01:00
|
|
|
2, 0, 0, 0, 0)) {
|
2007-11-25 00:47:38 +01:00
|
|
|
fprintf(stderr, "qemu: Error registering flash memory.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu->env->regs[15] = 0x00000000;
|
|
|
|
|
|
|
|
/* Interrupt line of NIC is connected to GPIO line 99 */
|
|
|
|
smc91c111_init(&nd_table[0], 0x04000300,
|
|
|
|
pxa2xx_gpio_in_get(cpu->gpio)[99]);
|
2007-11-17 12:50:55 +01:00
|
|
|
}
|
|
|
|
|
2009-05-21 01:38:09 +02:00
|
|
|
static QEMUMachine connex_machine = {
|
2008-10-07 22:34:35 +02:00
|
|
|
.name = "connex",
|
|
|
|
.desc = "Gumstix Connex (PXA255)",
|
|
|
|
.init = connex_init,
|
2007-11-17 12:50:55 +01:00
|
|
|
};
|
2007-11-25 00:47:38 +01:00
|
|
|
|
2009-05-21 01:38:09 +02:00
|
|
|
static QEMUMachine verdex_machine = {
|
2008-10-07 22:34:35 +02:00
|
|
|
.name = "verdex",
|
|
|
|
.desc = "Gumstix Verdex (PXA270)",
|
|
|
|
.init = verdex_init,
|
2007-11-25 00:47:38 +01:00
|
|
|
};
|
2009-05-21 01:38:09 +02:00
|
|
|
|
|
|
|
static void gumstix_machine_init(void)
|
|
|
|
{
|
|
|
|
qemu_register_machine(&connex_machine);
|
|
|
|
qemu_register_machine(&verdex_machine);
|
|
|
|
}
|
|
|
|
|
|
|
|
machine_init(gumstix_machine_init);
|