Statistics
| Branch: | Revision:

root / hw / gumstix.c @ 0200db65

History | View | Annotate | Download (3.8 kB)

1 05ee37eb balrog
/*
2 05ee37eb balrog
 * Gumstix Platforms
3 05ee37eb balrog
 *
4 05ee37eb balrog
 * Copyright (c) 2007 by Thorsten Zitterell <info@bitmux.org>
5 05ee37eb balrog
 *
6 05ee37eb balrog
 * Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org>
7 05ee37eb balrog
 *
8 05ee37eb balrog
 * This code is licensed under the GNU GPL v2.
9 05ee37eb balrog
 */
10 3e3f6754 balrog
 
11 3e3f6754 balrog
/* 
12 3e3f6754 balrog
 * Example usage:
13 3e3f6754 balrog
 * 
14 3e3f6754 balrog
 * connex:
15 3e3f6754 balrog
 * =======
16 3e3f6754 balrog
 * create image:
17 3e3f6754 balrog
 * # dd of=flash bs=1k count=16k if=/dev/zero
18 3e3f6754 balrog
 * # dd of=flash bs=1k conv=notrunc if=u-boot.bin
19 3e3f6754 balrog
 * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2
20 3e3f6754 balrog
 * start it:
21 3e3f6754 balrog
 * # qemu-system-arm -M connex -pflash flash -monitor null -nographic
22 3e3f6754 balrog
 *
23 3e3f6754 balrog
 * verdex:
24 3e3f6754 balrog
 * =======
25 3e3f6754 balrog
 * create image:
26 3e3f6754 balrog
 * # dd of=flash bs=1k count=32k if=/dev/zero
27 3e3f6754 balrog
 * # dd of=flash bs=1k conv=notrunc if=u-boot.bin
28 3e3f6754 balrog
 * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2
29 3e3f6754 balrog
 * # dd of=flash bs=1k conv=notrunc seek=31744 if=uImage
30 3e3f6754 balrog
 * start it:
31 3e3f6754 balrog
 * # qemu-system-arm -M verdex -pflash flash -monitor null -nographic -m 289
32 3e3f6754 balrog
 */
33 05ee37eb balrog
34 87ecb68b pbrook
#include "hw.h"
35 87ecb68b pbrook
#include "pxa.h"
36 87ecb68b pbrook
#include "net.h"
37 87ecb68b pbrook
#include "flash.h"
38 87ecb68b pbrook
#include "devices.h"
39 87ecb68b pbrook
#include "boards.h"
40 2446333c Blue Swirl
#include "blockdev.h"
41 a6dc4c2d Richard Henderson
#include "exec-memory.h"
42 05ee37eb balrog
43 1fc678cc balrog
static const int sector_len = 128 * 1024;
44 1fc678cc balrog
45 c227f099 Anthony Liguori
static void connex_init(ram_addr_t ram_size,
46 3023f332 aliguori
                const char *boot_device,
47 3e3f6754 balrog
                const char *kernel_filename, const char *kernel_cmdline,
48 3e3f6754 balrog
                const char *initrd_filename, const char *cpu_model)
49 05ee37eb balrog
{
50 bc24a225 Paul Brook
    PXA2xxState *cpu;
51 751c6a17 Gerd Hoffmann
    DriveInfo *dinfo;
52 01e0451a Anthony Liguori
    int be;
53 a6dc4c2d Richard Henderson
    MemoryRegion *address_space_mem = get_system_memory();
54 05ee37eb balrog
55 3e3f6754 balrog
    uint32_t connex_rom = 0x01000000;
56 3e3f6754 balrog
    uint32_t connex_ram = 0x04000000;
57 05ee37eb balrog
58 a6dc4c2d Richard Henderson
    cpu = pxa255_init(address_space_mem, connex_ram);
59 05ee37eb balrog
60 751c6a17 Gerd Hoffmann
    dinfo = drive_get(IF_PFLASH, 0, 0);
61 751c6a17 Gerd Hoffmann
    if (!dinfo) {
62 05ee37eb balrog
        fprintf(stderr, "A flash image must be given with the "
63 05ee37eb balrog
                "'pflash' parameter\n");
64 05ee37eb balrog
        exit(1);
65 05ee37eb balrog
    }
66 05ee37eb balrog
67 3d08ff69 Blue Swirl
#ifdef TARGET_WORDS_BIGENDIAN
68 01e0451a Anthony Liguori
    be = 1;
69 3d08ff69 Blue Swirl
#else
70 01e0451a Anthony Liguori
    be = 0;
71 3d08ff69 Blue Swirl
#endif
72 cfe5f011 Avi Kivity
    if (!pflash_cfi01_register(0x00000000, NULL, "connext.rom", connex_rom,
73 3d08ff69 Blue Swirl
                               dinfo->bdrv, sector_len, connex_rom / sector_len,
74 01e0451a Anthony Liguori
                               2, 0, 0, 0, 0, be)) {
75 3e3f6754 balrog
        fprintf(stderr, "qemu: Error registering flash memory.\n");
76 05ee37eb balrog
        exit(1);
77 05ee37eb balrog
    }
78 05ee37eb balrog
79 5697ff6b balrog
    /* Interrupt line of NIC is connected to GPIO line 36 */
80 38641a52 balrog
    smc91c111_init(&nd_table[0], 0x04000300,
81 0bb53337 Dmitry Eremin-Solenikov
                    qdev_get_gpio_in(cpu->gpio, 36));
82 05ee37eb balrog
}
83 05ee37eb balrog
84 c227f099 Anthony Liguori
static void verdex_init(ram_addr_t ram_size,
85 3023f332 aliguori
                const char *boot_device,
86 05ee37eb balrog
                const char *kernel_filename, const char *kernel_cmdline,
87 05ee37eb balrog
                const char *initrd_filename, const char *cpu_model)
88 05ee37eb balrog
{
89 bc24a225 Paul Brook
    PXA2xxState *cpu;
90 751c6a17 Gerd Hoffmann
    DriveInfo *dinfo;
91 01e0451a Anthony Liguori
    int be;
92 a6dc4c2d Richard Henderson
    MemoryRegion *address_space_mem = get_system_memory();
93 3e3f6754 balrog
94 3e3f6754 balrog
    uint32_t verdex_rom = 0x02000000;
95 3e3f6754 balrog
    uint32_t verdex_ram = 0x10000000;
96 3e3f6754 balrog
97 a6dc4c2d Richard Henderson
    cpu = pxa270_init(address_space_mem, verdex_ram, cpu_model ?: "pxa270-c0");
98 3e3f6754 balrog
99 751c6a17 Gerd Hoffmann
    dinfo = drive_get(IF_PFLASH, 0, 0);
100 751c6a17 Gerd Hoffmann
    if (!dinfo) {
101 3e3f6754 balrog
        fprintf(stderr, "A flash image must be given with the "
102 3e3f6754 balrog
                "'pflash' parameter\n");
103 3e3f6754 balrog
        exit(1);
104 3e3f6754 balrog
    }
105 3e3f6754 balrog
106 3d08ff69 Blue Swirl
#ifdef TARGET_WORDS_BIGENDIAN
107 01e0451a Anthony Liguori
    be = 1;
108 3d08ff69 Blue Swirl
#else
109 01e0451a Anthony Liguori
    be = 0;
110 3d08ff69 Blue Swirl
#endif
111 cfe5f011 Avi Kivity
    if (!pflash_cfi01_register(0x00000000, NULL, "verdex.rom", verdex_rom,
112 3d08ff69 Blue Swirl
                               dinfo->bdrv, sector_len, verdex_rom / sector_len,
113 01e0451a Anthony Liguori
                               2, 0, 0, 0, 0, be)) {
114 3e3f6754 balrog
        fprintf(stderr, "qemu: Error registering flash memory.\n");
115 3e3f6754 balrog
        exit(1);
116 3e3f6754 balrog
    }
117 3e3f6754 balrog
118 3e3f6754 balrog
    /* Interrupt line of NIC is connected to GPIO line 99 */
119 3e3f6754 balrog
    smc91c111_init(&nd_table[0], 0x04000300,
120 0bb53337 Dmitry Eremin-Solenikov
                    qdev_get_gpio_in(cpu->gpio, 99));
121 05ee37eb balrog
}
122 05ee37eb balrog
123 f80f9ec9 Anthony Liguori
static QEMUMachine connex_machine = {
124 4b32e168 aliguori
    .name = "connex",
125 4b32e168 aliguori
    .desc = "Gumstix Connex (PXA255)",
126 4b32e168 aliguori
    .init = connex_init,
127 05ee37eb balrog
};
128 3e3f6754 balrog
129 f80f9ec9 Anthony Liguori
static QEMUMachine verdex_machine = {
130 4b32e168 aliguori
    .name = "verdex",
131 4b32e168 aliguori
    .desc = "Gumstix Verdex (PXA270)",
132 4b32e168 aliguori
    .init = verdex_init,
133 3e3f6754 balrog
};
134 f80f9ec9 Anthony Liguori
135 f80f9ec9 Anthony Liguori
static void gumstix_machine_init(void)
136 f80f9ec9 Anthony Liguori
{
137 f80f9ec9 Anthony Liguori
    qemu_register_machine(&connex_machine);
138 f80f9ec9 Anthony Liguori
    qemu_register_machine(&verdex_machine);
139 f80f9ec9 Anthony Liguori
}
140 f80f9ec9 Anthony Liguori
141 f80f9ec9 Anthony Liguori
machine_init(gumstix_machine_init);