2007-11-17 19:50:55 +08: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 07:47:38 +08: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 19:50:55 +08:00
|
|
|
|
2007-11-18 01:14:51 +08:00
|
|
|
#include "hw.h"
|
|
|
|
#include "pxa.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "flash.h"
|
|
|
|
#include "devices.h"
|
|
|
|
#include "boards.h"
|
2010-08-24 23:22:24 +08:00
|
|
|
#include "blockdev.h"
|
2007-11-17 19:50:55 +08:00
|
|
|
|
2007-11-25 08:29:23 +08:00
|
|
|
static const int sector_len = 128 * 1024;
|
|
|
|
|
2009-10-02 05:12:16 +08:00
|
|
|
static void connex_init(ram_addr_t ram_size,
|
2009-01-17 03:04:14 +08:00
|
|
|
const char *boot_device,
|
2007-11-25 07:47:38 +08:00
|
|
|
const char *kernel_filename, const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename, const char *cpu_model)
|
2007-11-17 19:50:55 +08:00
|
|
|
{
|
2009-05-10 08:44:56 +08:00
|
|
|
PXA2xxState *cpu;
|
2009-07-22 22:42:57 +08:00
|
|
|
DriveInfo *dinfo;
|
2011-08-04 20:55:30 +08:00
|
|
|
const MemoryRegionOps *flash_ops;
|
|
|
|
MemoryRegion *flash = g_new(MemoryRegion, 1);
|
2007-11-17 19:50:55 +08:00
|
|
|
|
2007-11-25 07:47:38 +08:00
|
|
|
uint32_t connex_rom = 0x01000000;
|
|
|
|
uint32_t connex_ram = 0x04000000;
|
2007-11-17 19:50:55 +08:00
|
|
|
|
2009-01-17 03:04:14 +08:00
|
|
|
cpu = pxa255_init(connex_ram);
|
2007-11-17 19:50:55 +08:00
|
|
|
|
2009-07-22 22:42:57 +08:00
|
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
|
|
|
if (!dinfo) {
|
2007-11-17 19:50:55 +08:00
|
|
|
fprintf(stderr, "A flash image must be given with the "
|
|
|
|
"'pflash' parameter\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-03-30 03:23:56 +08:00
|
|
|
#ifdef TARGET_WORDS_BIGENDIAN
|
2011-08-04 20:55:30 +08:00
|
|
|
flash_ops = &pflash_cfi01_ops_be;
|
2010-03-30 03:23:56 +08:00
|
|
|
#else
|
2011-08-04 20:55:30 +08:00
|
|
|
flash_ops = &pflash_cfi01_ops_le;
|
2010-03-30 03:23:56 +08:00
|
|
|
#endif
|
2011-08-04 20:55:30 +08:00
|
|
|
memory_region_init_rom_device(flash, flash_ops,
|
|
|
|
NULL, "connext.rom", connex_rom);
|
|
|
|
if (!pflash_cfi01_register(0x00000000, flash,
|
2010-03-30 03:23:56 +08:00
|
|
|
dinfo->bdrv, sector_len, connex_rom / sector_len,
|
2011-08-04 20:55:30 +08:00
|
|
|
2, 0, 0, 0, 0)) {
|
2007-11-25 07:47:38 +08:00
|
|
|
fprintf(stderr, "qemu: Error registering flash memory.\n");
|
2007-11-17 19:50:55 +08:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2008-01-14 10:39:21 +08:00
|
|
|
/* Interrupt line of NIC is connected to GPIO line 36 */
|
2007-11-17 22:07:13 +08:00
|
|
|
smc91c111_init(&nd_table[0], 0x04000300,
|
2011-01-22 00:57:50 +08:00
|
|
|
qdev_get_gpio_in(cpu->gpio, 36));
|
2007-11-17 19:50:55 +08:00
|
|
|
}
|
|
|
|
|
2009-10-02 05:12:16 +08:00
|
|
|
static void verdex_init(ram_addr_t ram_size,
|
2009-01-17 03:04:14 +08:00
|
|
|
const char *boot_device,
|
2007-11-17 19:50:55 +08:00
|
|
|
const char *kernel_filename, const char *kernel_cmdline,
|
|
|
|
const char *initrd_filename, const char *cpu_model)
|
|
|
|
{
|
2009-05-10 08:44:56 +08:00
|
|
|
PXA2xxState *cpu;
|
2009-07-22 22:42:57 +08:00
|
|
|
DriveInfo *dinfo;
|
2011-08-04 20:55:30 +08:00
|
|
|
MemoryRegion *flash = g_new(MemoryRegion, 1);
|
|
|
|
const MemoryRegionOps *flash_ops;
|
2007-11-25 07:47:38 +08:00
|
|
|
|
|
|
|
uint32_t verdex_rom = 0x02000000;
|
|
|
|
uint32_t verdex_ram = 0x10000000;
|
|
|
|
|
2009-01-17 03:04:14 +08:00
|
|
|
cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
|
2007-11-25 07:47:38 +08:00
|
|
|
|
2009-07-22 22:42:57 +08:00
|
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
|
|
|
if (!dinfo) {
|
2007-11-25 07:47:38 +08:00
|
|
|
fprintf(stderr, "A flash image must be given with the "
|
|
|
|
"'pflash' parameter\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-03-30 03:23:56 +08:00
|
|
|
#ifdef TARGET_WORDS_BIGENDIAN
|
2011-08-04 20:55:30 +08:00
|
|
|
flash_ops = &pflash_cfi01_ops_be;
|
2010-03-30 03:23:56 +08:00
|
|
|
#else
|
2011-08-04 20:55:30 +08:00
|
|
|
flash_ops = &pflash_cfi01_ops_le;
|
2010-03-30 03:23:56 +08:00
|
|
|
#endif
|
2011-08-04 20:55:30 +08:00
|
|
|
memory_region_init_rom_device(flash, flash_ops,
|
|
|
|
NULL, "verdex.rom", verdex_rom);
|
|
|
|
if (!pflash_cfi01_register(0x00000000, flash,
|
2010-03-30 03:23:56 +08:00
|
|
|
dinfo->bdrv, sector_len, verdex_rom / sector_len,
|
2011-08-04 20:55:30 +08:00
|
|
|
2, 0, 0, 0, 0)) {
|
2007-11-25 07:47:38 +08:00
|
|
|
fprintf(stderr, "qemu: Error registering flash memory.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Interrupt line of NIC is connected to GPIO line 99 */
|
|
|
|
smc91c111_init(&nd_table[0], 0x04000300,
|
2011-01-22 00:57:50 +08:00
|
|
|
qdev_get_gpio_in(cpu->gpio, 99));
|
2007-11-17 19:50:55 +08:00
|
|
|
}
|
|
|
|
|
2009-05-21 07:38:09 +08:00
|
|
|
static QEMUMachine connex_machine = {
|
2008-10-08 04:34:35 +08:00
|
|
|
.name = "connex",
|
|
|
|
.desc = "Gumstix Connex (PXA255)",
|
|
|
|
.init = connex_init,
|
2007-11-17 19:50:55 +08:00
|
|
|
};
|
2007-11-25 07:47:38 +08:00
|
|
|
|
2009-05-21 07:38:09 +08:00
|
|
|
static QEMUMachine verdex_machine = {
|
2008-10-08 04:34:35 +08:00
|
|
|
.name = "verdex",
|
|
|
|
.desc = "Gumstix Verdex (PXA270)",
|
|
|
|
.init = verdex_init,
|
2007-11-25 07:47:38 +08:00
|
|
|
};
|
2009-05-21 07:38:09 +08:00
|
|
|
|
|
|
|
static void gumstix_machine_init(void)
|
|
|
|
{
|
|
|
|
qemu_register_machine(&connex_machine);
|
|
|
|
qemu_register_machine(&verdex_machine);
|
|
|
|
}
|
|
|
|
|
|
|
|
machine_init(gumstix_machine_init);
|