Statistics
| Branch: | Revision:

root / hw / gumstix.c @ 7d0d6950

History | View | Annotate | Download (3.7 kB)

1
/*
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
 */
10
 
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
 */
33

    
34
#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"
41

    
42
static const int sector_len = 128 * 1024;
43

    
44
static void connex_init(ram_addr_t ram_size,
45
                const char *boot_device,
46
                const char *kernel_filename, const char *kernel_cmdline,
47
                const char *initrd_filename, const char *cpu_model)
48
{
49
    PXA2xxState *cpu;
50
    DriveInfo *dinfo;
51
    int be;
52

    
53
    uint32_t connex_rom = 0x01000000;
54
    uint32_t connex_ram = 0x04000000;
55

    
56
    cpu = pxa255_init(connex_ram);
57

    
58
    dinfo = drive_get(IF_PFLASH, 0, 0);
59
    if (!dinfo) {
60
        fprintf(stderr, "A flash image must be given with the "
61
                "'pflash' parameter\n");
62
        exit(1);
63
    }
64

    
65
#ifdef TARGET_WORDS_BIGENDIAN
66
    be = 1;
67
#else
68
    be = 0;
69
#endif
70
    if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(connex_rom),
71
                               dinfo->bdrv, sector_len, connex_rom / sector_len,
72
                               2, 0, 0, 0, 0, be)) {
73
        fprintf(stderr, "qemu: Error registering flash memory.\n");
74
        exit(1);
75
    }
76

    
77
    /* Interrupt line of NIC is connected to GPIO line 36 */
78
    smc91c111_init(&nd_table[0], 0x04000300,
79
                    pxa2xx_gpio_in_get(cpu->gpio)[36]);
80
}
81

    
82
static void verdex_init(ram_addr_t ram_size,
83
                const char *boot_device,
84
                const char *kernel_filename, const char *kernel_cmdline,
85
                const char *initrd_filename, const char *cpu_model)
86
{
87
    PXA2xxState *cpu;
88
    DriveInfo *dinfo;
89
    int be;
90

    
91
    uint32_t verdex_rom = 0x02000000;
92
    uint32_t verdex_ram = 0x10000000;
93

    
94
    cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
95

    
96
    dinfo = drive_get(IF_PFLASH, 0, 0);
97
    if (!dinfo) {
98
        fprintf(stderr, "A flash image must be given with the "
99
                "'pflash' parameter\n");
100
        exit(1);
101
    }
102

    
103
#ifdef TARGET_WORDS_BIGENDIAN
104
    be = 1;
105
#else
106
    be = 0;
107
#endif
108
    if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(verdex_rom),
109
                               dinfo->bdrv, sector_len, verdex_rom / sector_len,
110
                               2, 0, 0, 0, 0, be)) {
111
        fprintf(stderr, "qemu: Error registering flash memory.\n");
112
        exit(1);
113
    }
114

    
115
    /* Interrupt line of NIC is connected to GPIO line 99 */
116
    smc91c111_init(&nd_table[0], 0x04000300,
117
                    pxa2xx_gpio_in_get(cpu->gpio)[99]);
118
}
119

    
120
static QEMUMachine connex_machine = {
121
    .name = "connex",
122
    .desc = "Gumstix Connex (PXA255)",
123
    .init = connex_init,
124
};
125

    
126
static QEMUMachine verdex_machine = {
127
    .name = "verdex",
128
    .desc = "Gumstix Verdex (PXA270)",
129
    .init = verdex_init,
130
};
131

    
132
static void gumstix_machine_init(void)
133
{
134
    qemu_register_machine(&connex_machine);
135
    qemu_register_machine(&verdex_machine);
136
}
137

    
138
machine_init(gumstix_machine_init);