aspeed_soc.c 12.9 KB
Newer Older
1
/*
2
 * ASPEED SoC family
3 4 5 6 7 8 9 10 11 12 13
 *
 * Andrew Jeffery <andrew@aj.id.au>
 * Jeremy Kerr <jk@ozlabs.org>
 *
 * Copyright 2016 IBM Corp.
 *
 * This code is licensed under the GPL version 2 or later.  See
 * the COPYING file in the top-level directory.
 */

#include "qemu/osdep.h"
14
#include "qapi/error.h"
15 16
#include "qemu-common.h"
#include "cpu.h"
17
#include "exec/address-spaces.h"
18
#include "hw/misc/unimp.h"
19
#include "hw/arm/aspeed_soc.h"
20
#include "hw/char/serial.h"
21
#include "qemu/log.h"
22
#include "hw/i2c/aspeed_i2c.h"
C
Cédric Le Goater 已提交
23
#include "net/net.h"
24

25 26 27 28 29
#define ASPEED_SOC_UART_5_BASE      0x00184000
#define ASPEED_SOC_IOMEM_SIZE       0x00200000
#define ASPEED_SOC_IOMEM_BASE       0x1E600000
#define ASPEED_SOC_FMC_BASE         0x1E620000
#define ASPEED_SOC_SPI_BASE         0x1E630000
30
#define ASPEED_SOC_SPI2_BASE        0x1E631000
31 32 33
#define ASPEED_SOC_VIC_BASE         0x1E6C0000
#define ASPEED_SOC_SDMC_BASE        0x1E6E0000
#define ASPEED_SOC_SCU_BASE         0x1E6E2000
34
#define ASPEED_SOC_SRAM_BASE        0x1E720000
35
#define ASPEED_SOC_TIMER_BASE       0x1E782000
36
#define ASPEED_SOC_WDT_BASE         0x1E785000
37
#define ASPEED_SOC_I2C_BASE         0x1E78A000
C
Cédric Le Goater 已提交
38 39
#define ASPEED_SOC_ETH1_BASE        0x1E660000
#define ASPEED_SOC_ETH2_BASE        0x1E680000
40

41 42 43
static const int uart_irqs[] = { 9, 32, 33, 34, 10 };
static const int timer_irqs[] = { 16, 17, 18, 35, 36, 37, 38, 39, };

44
#define AST2400_SDRAM_BASE       0x40000000
45
#define AST2500_SDRAM_BASE       0x80000000
46

47
static const hwaddr aspeed_soc_ast2400_spi_bases[] = { ASPEED_SOC_SPI_BASE };
48
static const char *aspeed_soc_ast2400_typenames[] = { "aspeed.smc.spi" };
49

50 51 52 53
static const hwaddr aspeed_soc_ast2500_spi_bases[] = { ASPEED_SOC_SPI_BASE,
                                                       ASPEED_SOC_SPI2_BASE};
static const char *aspeed_soc_ast2500_typenames[] = {
    "aspeed.smc.ast2500-spi1", "aspeed.smc.ast2500-spi2" };
54

55
static const AspeedSoCInfo aspeed_socs[] = {
56 57
    {
        .name         = "ast2400-a0",
58
        .cpu_type     = ARM_CPU_TYPE_NAME("arm926"),
59 60 61 62 63 64 65
        .silicon_rev  = AST2400_A0_SILICON_REV,
        .sdram_base   = AST2400_SDRAM_BASE,
        .sram_size    = 0x8000,
        .spis_num     = 1,
        .spi_bases    = aspeed_soc_ast2400_spi_bases,
        .fmc_typename = "aspeed.smc.fmc",
        .spi_typename = aspeed_soc_ast2400_typenames,
J
Joel Stanley 已提交
66
        .wdts_num     = 2,
67 68
    }, {
        .name         = "ast2400-a1",
69
        .cpu_type     = ARM_CPU_TYPE_NAME("arm926"),
70 71 72 73 74 75 76
        .silicon_rev  = AST2400_A1_SILICON_REV,
        .sdram_base   = AST2400_SDRAM_BASE,
        .sram_size    = 0x8000,
        .spis_num     = 1,
        .spi_bases    = aspeed_soc_ast2400_spi_bases,
        .fmc_typename = "aspeed.smc.fmc",
        .spi_typename = aspeed_soc_ast2400_typenames,
J
Joel Stanley 已提交
77
        .wdts_num     = 2,
78 79
    }, {
        .name         = "ast2400",
80
        .cpu_type     = ARM_CPU_TYPE_NAME("arm926"),
81 82 83 84 85 86 87
        .silicon_rev  = AST2400_A0_SILICON_REV,
        .sdram_base   = AST2400_SDRAM_BASE,
        .sram_size    = 0x8000,
        .spis_num     = 1,
        .spi_bases    = aspeed_soc_ast2400_spi_bases,
        .fmc_typename = "aspeed.smc.fmc",
        .spi_typename = aspeed_soc_ast2400_typenames,
J
Joel Stanley 已提交
88
        .wdts_num     = 2,
89 90
    }, {
        .name         = "ast2500-a1",
91
        .cpu_type     = ARM_CPU_TYPE_NAME("arm1176"),
92 93 94 95 96 97 98
        .silicon_rev  = AST2500_A1_SILICON_REV,
        .sdram_base   = AST2500_SDRAM_BASE,
        .sram_size    = 0x9000,
        .spis_num     = 2,
        .spi_bases    = aspeed_soc_ast2500_spi_bases,
        .fmc_typename = "aspeed.smc.ast2500-fmc",
        .spi_typename = aspeed_soc_ast2500_typenames,
J
Joel Stanley 已提交
99
        .wdts_num     = 3,
100
    },
101 102
};

103
static void aspeed_soc_init(Object *obj)
104
{
105
    AspeedSoCState *s = ASPEED_SOC(obj);
106
    AspeedSoCClass *sc = ASPEED_SOC_GET_CLASS(s);
107
    int i;
108

109
    object_initialize(&s->cpu, sizeof(s->cpu), sc->info->cpu_type);
110
    object_property_add_child(obj, "cpu", OBJECT(&s->cpu), NULL);
111

112 113 114 115
    object_initialize(&s->scu, sizeof(s->scu), TYPE_ASPEED_SCU);
    object_property_add_child(obj, "scu", OBJECT(&s->scu), NULL);
    qdev_set_parent_bus(DEVICE(&s->scu), sysbus_get_default());
    qdev_prop_set_uint32(DEVICE(&s->scu), "silicon-rev",
116
                         sc->info->silicon_rev);
117 118 119 120
    object_property_add_alias(obj, "hw-strap1", OBJECT(&s->scu),
                              "hw-strap1", &error_abort);
    object_property_add_alias(obj, "hw-strap2", OBJECT(&s->scu),
                              "hw-strap2", &error_abort);
121 122
    object_property_add_alias(obj, "hw-prot-key", OBJECT(&s->scu),
                              "hw-prot-key", &error_abort);
123

124 125 126 127 128 129
    object_initialize(&s->vic, sizeof(s->vic), TYPE_ASPEED_VIC);
    object_property_add_child(obj, "vic", OBJECT(&s->vic), NULL);
    qdev_set_parent_bus(DEVICE(&s->vic), sysbus_get_default());

    object_initialize(&s->timerctrl, sizeof(s->timerctrl), TYPE_ASPEED_TIMER);
    object_property_add_child(obj, "timerctrl", OBJECT(&s->timerctrl), NULL);
130 131
    object_property_add_const_link(OBJECT(&s->timerctrl), "scu",
                                   OBJECT(&s->scu), &error_abort);
132 133 134 135 136 137
    qdev_set_parent_bus(DEVICE(&s->timerctrl), sysbus_get_default());

    object_initialize(&s->i2c, sizeof(s->i2c), TYPE_ASPEED_I2C);
    object_property_add_child(obj, "i2c", OBJECT(&s->i2c), NULL);
    qdev_set_parent_bus(DEVICE(&s->i2c), sysbus_get_default());

138
    object_initialize(&s->fmc, sizeof(s->fmc), sc->info->fmc_typename);
139 140
    object_property_add_child(obj, "fmc", OBJECT(&s->fmc), NULL);
    qdev_set_parent_bus(DEVICE(&s->fmc), sysbus_get_default());
141 142
    object_property_add_alias(obj, "num-cs", OBJECT(&s->fmc), "num-cs",
                              &error_abort);
143

144
    for (i = 0; i < sc->info->spis_num; i++) {
145 146
        object_initialize(&s->spi[i], sizeof(s->spi[i]),
                          sc->info->spi_typename[i]);
147
        object_property_add_child(obj, "spi[*]", OBJECT(&s->spi[i]), NULL);
148 149
        qdev_set_parent_bus(DEVICE(&s->spi[i]), sysbus_get_default());
    }
150 151 152 153 154

    object_initialize(&s->sdmc, sizeof(s->sdmc), TYPE_ASPEED_SDMC);
    object_property_add_child(obj, "sdmc", OBJECT(&s->sdmc), NULL);
    qdev_set_parent_bus(DEVICE(&s->sdmc), sysbus_get_default());
    qdev_prop_set_uint32(DEVICE(&s->sdmc), "silicon-rev",
155
                         sc->info->silicon_rev);
156 157
    object_property_add_alias(obj, "ram-size", OBJECT(&s->sdmc),
                              "ram-size", &error_abort);
158 159
    object_property_add_alias(obj, "max-ram-size", OBJECT(&s->sdmc),
                              "max-ram-size", &error_abort);
160

J
Joel Stanley 已提交
161 162 163 164
    for (i = 0; i < sc->info->wdts_num; i++) {
        object_initialize(&s->wdt[i], sizeof(s->wdt[i]), TYPE_ASPEED_WDT);
        object_property_add_child(obj, "wdt[*]", OBJECT(&s->wdt[i]), NULL);
        qdev_set_parent_bus(DEVICE(&s->wdt[i]), sysbus_get_default());
165 166
        qdev_prop_set_uint32(DEVICE(&s->wdt[i]), "silicon-rev",
                                    sc->info->silicon_rev);
J
Joel Stanley 已提交
167
    }
C
Cédric Le Goater 已提交
168 169 170 171

    object_initialize(&s->ftgmac100, sizeof(s->ftgmac100), TYPE_FTGMAC100);
    object_property_add_child(obj, "ftgmac100", OBJECT(&s->ftgmac100), NULL);
    qdev_set_parent_bus(DEVICE(&s->ftgmac100), sysbus_get_default());
172 173
}

174
static void aspeed_soc_realize(DeviceState *dev, Error **errp)
175 176
{
    int i;
177
    AspeedSoCState *s = ASPEED_SOC(dev);
178
    AspeedSoCClass *sc = ASPEED_SOC_GET_CLASS(s);
179
    Error *err = NULL, *local_err = NULL;
180 181

    /* IO space */
182 183
    create_unimplemented_device("aspeed_soc.io",
                                ASPEED_SOC_IOMEM_BASE, ASPEED_SOC_IOMEM_SIZE);
184

185 186 187 188 189 190 191
    /* CPU */
    object_property_set_bool(OBJECT(&s->cpu), true, "realized", &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }

192
    /* SRAM */
193
    memory_region_init_ram(&s->sram, OBJECT(dev), "aspeed.sram",
194 195 196 197 198 199 200 201
                           sc->info->sram_size, &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
    memory_region_add_subregion(get_system_memory(), ASPEED_SOC_SRAM_BASE,
                                &s->sram);

202 203 204 205 206 207 208 209
    /* SCU */
    object_property_set_bool(OBJECT(&s->scu), true, "realized", &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->scu), 0, ASPEED_SOC_SCU_BASE);

210 211 212 213 214 215
    /* VIC */
    object_property_set_bool(OBJECT(&s->vic), true, "realized", &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
216
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->vic), 0, ASPEED_SOC_VIC_BASE);
217
    sysbus_connect_irq(SYS_BUS_DEVICE(&s->vic), 0,
218
                       qdev_get_gpio_in(DEVICE(&s->cpu), ARM_CPU_IRQ));
219
    sysbus_connect_irq(SYS_BUS_DEVICE(&s->vic), 1,
220
                       qdev_get_gpio_in(DEVICE(&s->cpu), ARM_CPU_FIQ));
221 222 223 224 225 226 227

    /* Timer */
    object_property_set_bool(OBJECT(&s->timerctrl), true, "realized", &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
228
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->timerctrl), 0, ASPEED_SOC_TIMER_BASE);
229 230 231 232 233 234
    for (i = 0; i < ARRAY_SIZE(timer_irqs); i++) {
        qemu_irq irq = qdev_get_gpio_in(DEVICE(&s->vic), timer_irqs[i]);
        sysbus_connect_irq(SYS_BUS_DEVICE(&s->timerctrl), i, irq);
    }

    /* UART - attach an 8250 to the IO space as our UART5 */
235
    if (serial_hd(0)) {
236
        qemu_irq uart5 = qdev_get_gpio_in(DEVICE(&s->vic), uart_irqs[4]);
237 238
        serial_mm_init(get_system_memory(),
                       ASPEED_SOC_IOMEM_BASE + ASPEED_SOC_UART_5_BASE, 2,
239
                       uart5, 38400, serial_hd(0), DEVICE_LITTLE_ENDIAN);
240
    }
241 242 243 244 245 246 247

    /* I2C */
    object_property_set_bool(OBJECT(&s->i2c), true, "realized", &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
248
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->i2c), 0, ASPEED_SOC_I2C_BASE);
249 250
    sysbus_connect_irq(SYS_BUS_DEVICE(&s->i2c), 0,
                       qdev_get_gpio_in(DEVICE(&s->vic), 12));
251

252 253
    /* FMC, The number of CS is set at the board level */
    object_property_set_bool(OBJECT(&s->fmc), true, "realized", &err);
254 255 256 257
    if (err) {
        error_propagate(errp, err);
        return;
    }
258
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->fmc), 0, ASPEED_SOC_FMC_BASE);
259 260
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->fmc), 1,
                    s->fmc.ctrl->flash_window_base);
261
    sysbus_connect_irq(SYS_BUS_DEVICE(&s->fmc), 0,
262 263 264
                       qdev_get_gpio_in(DEVICE(&s->vic), 19));

    /* SPI */
265 266 267 268 269 270 271 272 273 274 275 276
    for (i = 0; i < sc->info->spis_num; i++) {
        object_property_set_int(OBJECT(&s->spi[i]), 1, "num-cs", &err);
        object_property_set_bool(OBJECT(&s->spi[i]), true, "realized",
                                 &local_err);
        error_propagate(&err, local_err);
        if (err) {
            error_propagate(errp, err);
            return;
        }
        sysbus_mmio_map(SYS_BUS_DEVICE(&s->spi[i]), 0, sc->info->spi_bases[i]);
        sysbus_mmio_map(SYS_BUS_DEVICE(&s->spi[i]), 1,
                        s->spi[i].ctrl->flash_window_base);
277
    }
278 279 280 281 282 283 284

    /* SDMC - SDRAM Memory Controller */
    object_property_set_bool(OBJECT(&s->sdmc), true, "realized", &err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
285
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->sdmc), 0, ASPEED_SOC_SDMC_BASE);
286 287

    /* Watch dog */
J
Joel Stanley 已提交
288 289 290 291 292 293 294 295
    for (i = 0; i < sc->info->wdts_num; i++) {
        object_property_set_bool(OBJECT(&s->wdt[i]), true, "realized", &err);
        if (err) {
            error_propagate(errp, err);
            return;
        }
        sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt[i]), 0,
                        ASPEED_SOC_WDT_BASE + i * 0x20);
296
    }
C
Cédric Le Goater 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310

    /* Net */
    qdev_set_nic_properties(DEVICE(&s->ftgmac100), &nd_table[0]);
    object_property_set_bool(OBJECT(&s->ftgmac100), true, "aspeed", &err);
    object_property_set_bool(OBJECT(&s->ftgmac100), true, "realized",
                             &local_err);
    error_propagate(&err, local_err);
    if (err) {
        error_propagate(errp, err);
        return;
    }
    sysbus_mmio_map(SYS_BUS_DEVICE(&s->ftgmac100), 0, ASPEED_SOC_ETH1_BASE);
    sysbus_connect_irq(SYS_BUS_DEVICE(&s->ftgmac100), 0,
                       qdev_get_gpio_in(DEVICE(&s->vic), 2));
311 312
}

313
static void aspeed_soc_class_init(ObjectClass *oc, void *data)
314 315
{
    DeviceClass *dc = DEVICE_CLASS(oc);
316
    AspeedSoCClass *sc = ASPEED_SOC_CLASS(oc);
317

318
    sc->info = (AspeedSoCInfo *) data;
319
    dc->realize = aspeed_soc_realize;
320 321
    /* Reason: Uses serial_hds and nd_table in realize() directly */
    dc->user_creatable = false;
322 323
}

324
static const TypeInfo aspeed_soc_type_info = {
325 326 327 328 329 330
    .name           = TYPE_ASPEED_SOC,
    .parent         = TYPE_DEVICE,
    .instance_init  = aspeed_soc_init,
    .instance_size  = sizeof(AspeedSoCState),
    .class_size     = sizeof(AspeedSoCClass),
    .abstract       = true,
331 332
};

333
static void aspeed_soc_register_types(void)
334
{
335 336
    int i;

337
    type_register_static(&aspeed_soc_type_info);
338 339 340 341 342 343 344 345 346
    for (i = 0; i < ARRAY_SIZE(aspeed_socs); ++i) {
        TypeInfo ti = {
            .name       = aspeed_socs[i].name,
            .parent     = TYPE_ASPEED_SOC,
            .class_init = aspeed_soc_class_init,
            .class_data = (void *) &aspeed_socs[i],
        };
        type_register(&ti);
    }
347 348
}

349
type_init(aspeed_soc_register_types)