Statistics
| Branch: | Revision:

root / hw / gumstix.c @ 7d0d6950

History | View | Annotate | Download (3.7 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 05ee37eb balrog
42 1fc678cc balrog
static const int sector_len = 128 * 1024;
43 1fc678cc balrog
44 c227f099 Anthony Liguori
static void connex_init(ram_addr_t ram_size,
45 3023f332 aliguori
                const char *boot_device,
46 3e3f6754 balrog
                const char *kernel_filename, const char *kernel_cmdline,
47 3e3f6754 balrog
                const char *initrd_filename, const char *cpu_model)
48 05ee37eb balrog
{
49 bc24a225 Paul Brook
    PXA2xxState *cpu;
50 751c6a17 Gerd Hoffmann
    DriveInfo *dinfo;
51 3d08ff69 Blue Swirl
    int be;
52 05ee37eb balrog
53 3e3f6754 balrog
    uint32_t connex_rom = 0x01000000;
54 3e3f6754 balrog
    uint32_t connex_ram = 0x04000000;
55 05ee37eb balrog
56 3023f332 aliguori
    cpu = pxa255_init(connex_ram);
57 05ee37eb balrog
58 751c6a17 Gerd Hoffmann
    dinfo = drive_get(IF_PFLASH, 0, 0);
59 751c6a17 Gerd Hoffmann
    if (!dinfo) {
60 05ee37eb balrog
        fprintf(stderr, "A flash image must be given with the "
61 05ee37eb balrog
                "'pflash' parameter\n");
62 05ee37eb balrog
        exit(1);
63 05ee37eb balrog
    }
64 05ee37eb balrog
65 3d08ff69 Blue Swirl
#ifdef TARGET_WORDS_BIGENDIAN
66 3d08ff69 Blue Swirl
    be = 1;
67 3d08ff69 Blue Swirl
#else
68 3d08ff69 Blue Swirl
    be = 0;
69 3d08ff69 Blue Swirl
#endif
70 88eeee0a balrog
    if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(connex_rom),
71 3d08ff69 Blue Swirl
                               dinfo->bdrv, sector_len, connex_rom / sector_len,
72 3d08ff69 Blue Swirl
                               2, 0, 0, 0, 0, be)) {
73 3e3f6754 balrog
        fprintf(stderr, "qemu: Error registering flash memory.\n");
74 05ee37eb balrog
        exit(1);
75 05ee37eb balrog
    }
76 05ee37eb balrog
77 5697ff6b balrog
    /* Interrupt line of NIC is connected to GPIO line 36 */
78 38641a52 balrog
    smc91c111_init(&nd_table[0], 0x04000300,
79 38641a52 balrog
                    pxa2xx_gpio_in_get(cpu->gpio)[36]);
80 05ee37eb balrog
}
81 05ee37eb balrog
82 c227f099 Anthony Liguori
static void verdex_init(ram_addr_t ram_size,
83 3023f332 aliguori
                const char *boot_device,
84 05ee37eb balrog
                const char *kernel_filename, const char *kernel_cmdline,
85 05ee37eb balrog
                const char *initrd_filename, const char *cpu_model)
86 05ee37eb balrog
{
87 bc24a225 Paul Brook
    PXA2xxState *cpu;
88 751c6a17 Gerd Hoffmann
    DriveInfo *dinfo;
89 3d08ff69 Blue Swirl
    int be;
90 3e3f6754 balrog
91 3e3f6754 balrog
    uint32_t verdex_rom = 0x02000000;
92 3e3f6754 balrog
    uint32_t verdex_ram = 0x10000000;
93 3e3f6754 balrog
94 3023f332 aliguori
    cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
95 3e3f6754 balrog
96 751c6a17 Gerd Hoffmann
    dinfo = drive_get(IF_PFLASH, 0, 0);
97 751c6a17 Gerd Hoffmann
    if (!dinfo) {
98 3e3f6754 balrog
        fprintf(stderr, "A flash image must be given with the "
99 3e3f6754 balrog
                "'pflash' parameter\n");
100 3e3f6754 balrog
        exit(1);
101 3e3f6754 balrog
    }
102 3e3f6754 balrog
103 3d08ff69 Blue Swirl
#ifdef TARGET_WORDS_BIGENDIAN
104 3d08ff69 Blue Swirl
    be = 1;
105 3d08ff69 Blue Swirl
#else
106 3d08ff69 Blue Swirl
    be = 0;
107 3d08ff69 Blue Swirl
#endif
108 88eeee0a balrog
    if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(verdex_rom),
109 3d08ff69 Blue Swirl
                               dinfo->bdrv, sector_len, verdex_rom / sector_len,
110 3d08ff69 Blue Swirl
                               2, 0, 0, 0, 0, be)) {
111 3e3f6754 balrog
        fprintf(stderr, "qemu: Error registering flash memory.\n");
112 3e3f6754 balrog
        exit(1);
113 3e3f6754 balrog
    }
114 3e3f6754 balrog
115 3e3f6754 balrog
    /* Interrupt line of NIC is connected to GPIO line 99 */
116 3e3f6754 balrog
    smc91c111_init(&nd_table[0], 0x04000300,
117 3e3f6754 balrog
                    pxa2xx_gpio_in_get(cpu->gpio)[99]);
118 05ee37eb balrog
}
119 05ee37eb balrog
120 f80f9ec9 Anthony Liguori
static QEMUMachine connex_machine = {
121 4b32e168 aliguori
    .name = "connex",
122 4b32e168 aliguori
    .desc = "Gumstix Connex (PXA255)",
123 4b32e168 aliguori
    .init = connex_init,
124 05ee37eb balrog
};
125 3e3f6754 balrog
126 f80f9ec9 Anthony Liguori
static QEMUMachine verdex_machine = {
127 4b32e168 aliguori
    .name = "verdex",
128 4b32e168 aliguori
    .desc = "Gumstix Verdex (PXA270)",
129 4b32e168 aliguori
    .init = verdex_init,
130 3e3f6754 balrog
};
131 f80f9ec9 Anthony Liguori
132 f80f9ec9 Anthony Liguori
static void gumstix_machine_init(void)
133 f80f9ec9 Anthony Liguori
{
134 f80f9ec9 Anthony Liguori
    qemu_register_machine(&connex_machine);
135 f80f9ec9 Anthony Liguori
    qemu_register_machine(&verdex_machine);
136 f80f9ec9 Anthony Liguori
}
137 f80f9ec9 Anthony Liguori
138 f80f9ec9 Anthony Liguori
machine_init(gumstix_machine_init);