blob: 8fbf64c0f39d31a26c2a31e24457027fbae25bbb [file] [log] [blame]
balrog05ee37e2007-11-17 11:50:55 +00001/*
2 * Gumstix Platforms
3 *
4 * Copyright (c) 2007 by Thorsten Zitterell <info@bitmux.org>
5 *
6 * Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org>
7 *
8 * This code is licensed under the GNU GPL v2.
9 */
balrog3e3f6752007-11-24 23:47:38 +000010
11/*
12 * Example usage:
13 *
14 * connex:
15 * =======
16 * create image:
17 * # dd of=flash bs=1k count=16k if=/dev/zero
18 * # dd of=flash bs=1k conv=notrunc if=u-boot.bin
19 * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2
20 * start it:
21 * # qemu-system-arm -M connex -pflash flash -monitor null -nographic
22 *
23 * verdex:
24 * =======
25 * create image:
26 * # dd of=flash bs=1k count=32k if=/dev/zero
27 * # dd of=flash bs=1k conv=notrunc if=u-boot.bin
28 * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2
29 * # dd of=flash bs=1k conv=notrunc seek=31744 if=uImage
30 * start it:
31 * # qemu-system-arm -M verdex -pflash flash -monitor null -nographic -m 289
32 */
balrog05ee37e2007-11-17 11:50:55 +000033
pbrook87ecb682007-11-17 17:14:51 +000034#include "hw.h"
35#include "pxa.h"
36#include "net.h"
37#include "flash.h"
38#include "sysemu.h"
39#include "devices.h"
40#include "boards.h"
balrog05ee37e2007-11-17 11:50:55 +000041
balrog1fc678c2007-11-25 00:29:23 +000042static const int sector_len = 128 * 1024;
43
Anthony Liguoric227f092009-10-01 16:12:16 -050044static void connex_init(ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +000045 const char *boot_device,
balrog3e3f6752007-11-24 23:47:38 +000046 const char *kernel_filename, const char *kernel_cmdline,
47 const char *initrd_filename, const char *cpu_model)
balrog05ee37e2007-11-17 11:50:55 +000048{
Paul Brookbc24a222009-05-10 01:44:56 +010049 PXA2xxState *cpu;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +020050 DriveInfo *dinfo;
balrog05ee37e2007-11-17 11:50:55 +000051
balrog3e3f6752007-11-24 23:47:38 +000052 uint32_t connex_rom = 0x01000000;
53 uint32_t connex_ram = 0x04000000;
balrog05ee37e2007-11-17 11:50:55 +000054
aliguori3023f332009-01-16 19:04:14 +000055 cpu = pxa255_init(connex_ram);
balrog05ee37e2007-11-17 11:50:55 +000056
Gerd Hoffmann751c6a12009-07-22 16:42:57 +020057 dinfo = drive_get(IF_PFLASH, 0, 0);
58 if (!dinfo) {
balrog05ee37e2007-11-17 11:50:55 +000059 fprintf(stderr, "A flash image must be given with the "
60 "'pflash' parameter\n");
61 exit(1);
62 }
63
balrog88eeee02007-12-10 00:28:27 +000064 if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(connex_rom),
Gerd Hoffmann751c6a12009-07-22 16:42:57 +020065 dinfo->bdrv, sector_len, connex_rom / sector_len,
balrog1fc678c2007-11-25 00:29:23 +000066 2, 0, 0, 0, 0)) {
balrog3e3f6752007-11-24 23:47:38 +000067 fprintf(stderr, "qemu: Error registering flash memory.\n");
balrog05ee37e2007-11-17 11:50:55 +000068 exit(1);
69 }
70
71 cpu->env->regs[15] = 0x00000000;
72
balrog5697ff62008-01-14 02:39:21 +000073 /* Interrupt line of NIC is connected to GPIO line 36 */
balrog38641a52007-11-17 14:07:13 +000074 smc91c111_init(&nd_table[0], 0x04000300,
75 pxa2xx_gpio_in_get(cpu->gpio)[36]);
balrog05ee37e2007-11-17 11:50:55 +000076}
77
Anthony Liguoric227f092009-10-01 16:12:16 -050078static void verdex_init(ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +000079 const char *boot_device,
balrog05ee37e2007-11-17 11:50:55 +000080 const char *kernel_filename, const char *kernel_cmdline,
81 const char *initrd_filename, const char *cpu_model)
82{
Paul Brookbc24a222009-05-10 01:44:56 +010083 PXA2xxState *cpu;
Gerd Hoffmann751c6a12009-07-22 16:42:57 +020084 DriveInfo *dinfo;
balrog3e3f6752007-11-24 23:47:38 +000085
86 uint32_t verdex_rom = 0x02000000;
87 uint32_t verdex_ram = 0x10000000;
88
aliguori3023f332009-01-16 19:04:14 +000089 cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
balrog3e3f6752007-11-24 23:47:38 +000090
Gerd Hoffmann751c6a12009-07-22 16:42:57 +020091 dinfo = drive_get(IF_PFLASH, 0, 0);
92 if (!dinfo) {
balrog3e3f6752007-11-24 23:47:38 +000093 fprintf(stderr, "A flash image must be given with the "
94 "'pflash' parameter\n");
95 exit(1);
96 }
97
balrog88eeee02007-12-10 00:28:27 +000098 if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(verdex_rom),
Gerd Hoffmann751c6a12009-07-22 16:42:57 +020099 dinfo->bdrv, sector_len, verdex_rom / sector_len,
balrog1fc678c2007-11-25 00:29:23 +0000100 2, 0, 0, 0, 0)) {
balrog3e3f6752007-11-24 23:47:38 +0000101 fprintf(stderr, "qemu: Error registering flash memory.\n");
102 exit(1);
103 }
104
105 cpu->env->regs[15] = 0x00000000;
106
107 /* Interrupt line of NIC is connected to GPIO line 99 */
108 smc91c111_init(&nd_table[0], 0x04000300,
109 pxa2xx_gpio_in_get(cpu->gpio)[99]);
balrog05ee37e2007-11-17 11:50:55 +0000110}
111
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500112static QEMUMachine connex_machine = {
aliguori4b32e162008-10-07 20:34:35 +0000113 .name = "connex",
114 .desc = "Gumstix Connex (PXA255)",
115 .init = connex_init,
balrog05ee37e2007-11-17 11:50:55 +0000116};
balrog3e3f6752007-11-24 23:47:38 +0000117
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500118static QEMUMachine verdex_machine = {
aliguori4b32e162008-10-07 20:34:35 +0000119 .name = "verdex",
120 .desc = "Gumstix Verdex (PXA270)",
121 .init = verdex_init,
balrog3e3f6752007-11-24 23:47:38 +0000122};
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500123
124static void gumstix_machine_init(void)
125{
126 qemu_register_machine(&connex_machine);
127 qemu_register_machine(&verdex_machine);
128}
129
130machine_init(gumstix_machine_init);