blob: 70abbdc27eb4402fd0b6e7de22d714deb7ec4706 [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
aurel3200f82b82008-04-27 21:12:55 +000044static void connex_init(ram_addr_t ram_size, int vga_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{
49 struct pxa2xx_state_s *cpu;
thse4bcb142007-12-02 04:51:10 +000050 int index;
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
balrog3e3f6752007-11-24 23:47:38 +000055 if (ram_size < (connex_ram + connex_rom + PXA2XX_INTERNAL_SIZE)) {
balrog05ee37e2007-11-17 11:50:55 +000056 fprintf(stderr, "This platform requires %i bytes of memory\n",
balrog3e3f6752007-11-24 23:47:38 +000057 connex_ram + connex_rom + PXA2XX_INTERNAL_SIZE);
balrog05ee37e2007-11-17 11:50:55 +000058 exit(1);
59 }
60
aliguori3023f332009-01-16 19:04:14 +000061 cpu = pxa255_init(connex_ram);
balrog05ee37e2007-11-17 11:50:55 +000062
thse4bcb142007-12-02 04:51:10 +000063 index = drive_get_index(IF_PFLASH, 0, 0);
64 if (index == -1) {
balrog05ee37e2007-11-17 11:50:55 +000065 fprintf(stderr, "A flash image must be given with the "
66 "'pflash' parameter\n");
67 exit(1);
68 }
69
balrog88eeee02007-12-10 00:28:27 +000070 if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(connex_rom),
thse4bcb142007-12-02 04:51:10 +000071 drives_table[index].bdrv, sector_len, connex_rom / sector_len,
balrog1fc678c2007-11-25 00:29:23 +000072 2, 0, 0, 0, 0)) {
balrog3e3f6752007-11-24 23:47:38 +000073 fprintf(stderr, "qemu: Error registering flash memory.\n");
balrog05ee37e2007-11-17 11:50:55 +000074 exit(1);
75 }
76
77 cpu->env->regs[15] = 0x00000000;
78
balrog5697ff62008-01-14 02:39:21 +000079 /* Interrupt line of NIC is connected to GPIO line 36 */
balrog38641a52007-11-17 14:07:13 +000080 smc91c111_init(&nd_table[0], 0x04000300,
81 pxa2xx_gpio_in_get(cpu->gpio)[36]);
balrog05ee37e2007-11-17 11:50:55 +000082}
83
aurel3200f82b82008-04-27 21:12:55 +000084static void verdex_init(ram_addr_t ram_size, int vga_ram_size,
aliguori3023f332009-01-16 19:04:14 +000085 const char *boot_device,
balrog05ee37e2007-11-17 11:50:55 +000086 const char *kernel_filename, const char *kernel_cmdline,
87 const char *initrd_filename, const char *cpu_model)
88{
balrog3e3f6752007-11-24 23:47:38 +000089 struct pxa2xx_state_s *cpu;
thse4bcb142007-12-02 04:51:10 +000090 int index;
balrog3e3f6752007-11-24 23:47:38 +000091
92 uint32_t verdex_rom = 0x02000000;
93 uint32_t verdex_ram = 0x10000000;
94
95 if (ram_size < (verdex_ram + verdex_rom + PXA2XX_INTERNAL_SIZE)) {
96 fprintf(stderr, "This platform requires %i bytes of memory\n",
97 verdex_ram + verdex_rom + PXA2XX_INTERNAL_SIZE);
98 exit(1);
99 }
100
aliguori3023f332009-01-16 19:04:14 +0000101 cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
balrog3e3f6752007-11-24 23:47:38 +0000102
thse4bcb142007-12-02 04:51:10 +0000103 index = drive_get_index(IF_PFLASH, 0, 0);
104 if (index == -1) {
balrog3e3f6752007-11-24 23:47:38 +0000105 fprintf(stderr, "A flash image must be given with the "
106 "'pflash' parameter\n");
107 exit(1);
108 }
109
balrog88eeee02007-12-10 00:28:27 +0000110 if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(verdex_rom),
thse4bcb142007-12-02 04:51:10 +0000111 drives_table[index].bdrv, sector_len, verdex_rom / sector_len,
balrog1fc678c2007-11-25 00:29:23 +0000112 2, 0, 0, 0, 0)) {
balrog3e3f6752007-11-24 23:47:38 +0000113 fprintf(stderr, "qemu: Error registering flash memory.\n");
114 exit(1);
115 }
116
117 cpu->env->regs[15] = 0x00000000;
118
119 /* Interrupt line of NIC is connected to GPIO line 99 */
120 smc91c111_init(&nd_table[0], 0x04000300,
121 pxa2xx_gpio_in_get(cpu->gpio)[99]);
balrog05ee37e2007-11-17 11:50:55 +0000122}
123
124QEMUMachine connex_machine = {
aliguori4b32e162008-10-07 20:34:35 +0000125 .name = "connex",
126 .desc = "Gumstix Connex (PXA255)",
127 .init = connex_init,
128 .ram_require = (0x05000000 + PXA2XX_INTERNAL_SIZE) | RAMSIZE_FIXED,
balrog05ee37e2007-11-17 11:50:55 +0000129};
balrog3e3f6752007-11-24 23:47:38 +0000130
131QEMUMachine verdex_machine = {
aliguori4b32e162008-10-07 20:34:35 +0000132 .name = "verdex",
133 .desc = "Gumstix Verdex (PXA270)",
134 .init = verdex_init,
135 .ram_require = (0x12000000 + PXA2XX_INTERNAL_SIZE) | RAMSIZE_FIXED,
balrog3e3f6752007-11-24 23:47:38 +0000136};