Statistics
| Branch: | Revision:

root / hw / gumstix.c @ ff753bb9

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 "sysemu.h"
39 87ecb68b pbrook
#include "devices.h"
40 87ecb68b pbrook
#include "boards.h"
41 2446333c Blue Swirl
#include "blockdev.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 3d08ff69 Blue Swirl
    int be;
53 05ee37eb balrog
54 3e3f6754 balrog
    uint32_t connex_rom = 0x01000000;
55 3e3f6754 balrog
    uint32_t connex_ram = 0x04000000;
56 05ee37eb balrog
57 3023f332 aliguori
    cpu = pxa255_init(connex_ram);
58 05ee37eb balrog
59 751c6a17 Gerd Hoffmann
    dinfo = drive_get(IF_PFLASH, 0, 0);
60 751c6a17 Gerd Hoffmann
    if (!dinfo) {
61 05ee37eb balrog
        fprintf(stderr, "A flash image must be given with the "
62 05ee37eb balrog
                "'pflash' parameter\n");
63 05ee37eb balrog
        exit(1);
64 05ee37eb balrog
    }
65 05ee37eb balrog
66 3d08ff69 Blue Swirl
#ifdef TARGET_WORDS_BIGENDIAN
67 3d08ff69 Blue Swirl
    be = 1;
68 3d08ff69 Blue Swirl
#else
69 3d08ff69 Blue Swirl
    be = 0;
70 3d08ff69 Blue Swirl
#endif
71 1724f049 Alex Williamson
    if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "connext.rom",
72 1724f049 Alex Williamson
                                                          connex_rom),
73 3d08ff69 Blue Swirl
                               dinfo->bdrv, sector_len, connex_rom / sector_len,
74 3d08ff69 Blue Swirl
                               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 38641a52 balrog
                    pxa2xx_gpio_in_get(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 3d08ff69 Blue Swirl
    int be;
92 3e3f6754 balrog
93 3e3f6754 balrog
    uint32_t verdex_rom = 0x02000000;
94 3e3f6754 balrog
    uint32_t verdex_ram = 0x10000000;
95 3e3f6754 balrog
96 3023f332 aliguori
    cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
97 3e3f6754 balrog
98 751c6a17 Gerd Hoffmann
    dinfo = drive_get(IF_PFLASH, 0, 0);
99 751c6a17 Gerd Hoffmann
    if (!dinfo) {
100 3e3f6754 balrog
        fprintf(stderr, "A flash image must be given with the "
101 3e3f6754 balrog
                "'pflash' parameter\n");
102 3e3f6754 balrog
        exit(1);
103 3e3f6754 balrog
    }
104 3e3f6754 balrog
105 3d08ff69 Blue Swirl
#ifdef TARGET_WORDS_BIGENDIAN
106 3d08ff69 Blue Swirl
    be = 1;
107 3d08ff69 Blue Swirl
#else
108 3d08ff69 Blue Swirl
    be = 0;
109 3d08ff69 Blue Swirl
#endif
110 1724f049 Alex Williamson
    if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "verdex.rom",
111 1724f049 Alex Williamson
                                                          verdex_rom),
112 3d08ff69 Blue Swirl
                               dinfo->bdrv, sector_len, verdex_rom / sector_len,
113 3d08ff69 Blue Swirl
                               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 3e3f6754 balrog
                    pxa2xx_gpio_in_get(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);