1 /* 2 * Nuvoton NPCM7xx SoC family. 3 * 4 * Copyright 2020 Google LLC 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the 8 * Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * for more details. 15 */ 16 17 #include "qemu/osdep.h" 18 19 #include "exec/address-spaces.h" 20 #include "hw/arm/boot.h" 21 #include "hw/arm/npcm7xx.h" 22 #include "hw/char/serial.h" 23 #include "hw/loader.h" 24 #include "hw/misc/unimp.h" 25 #include "hw/qdev-clock.h" 26 #include "hw/qdev-properties.h" 27 #include "qapi/error.h" 28 #include "qemu/units.h" 29 #include "sysemu/sysemu.h" 30 31 /* 32 * This covers the whole MMIO space. We'll use this to catch any MMIO accesses 33 * that aren't handled by any device. 34 */ 35 #define NPCM7XX_MMIO_BA (0x80000000) 36 #define NPCM7XX_MMIO_SZ (0x7ffd0000) 37 38 /* OTP key storage and fuse strap array */ 39 #define NPCM7XX_OTP1_BA (0xf0189000) 40 #define NPCM7XX_OTP2_BA (0xf018a000) 41 42 /* Core system modules. */ 43 #define NPCM7XX_L2C_BA (0xf03fc000) 44 #define NPCM7XX_CPUP_BA (0xf03fe000) 45 #define NPCM7XX_GCR_BA (0xf0800000) 46 #define NPCM7XX_CLK_BA (0xf0801000) 47 #define NPCM7XX_MC_BA (0xf0824000) 48 #define NPCM7XX_RNG_BA (0xf000b000) 49 50 /* USB Host modules */ 51 #define NPCM7XX_EHCI_BA (0xf0806000) 52 #define NPCM7XX_OHCI_BA (0xf0807000) 53 54 /* ADC Module */ 55 #define NPCM7XX_ADC_BA (0xf000c000) 56 57 /* Internal AHB SRAM */ 58 #define NPCM7XX_RAM3_BA (0xc0008000) 59 #define NPCM7XX_RAM3_SZ (4 * KiB) 60 61 /* Memory blocks at the end of the address space */ 62 #define NPCM7XX_RAM2_BA (0xfffd0000) 63 #define NPCM7XX_RAM2_SZ (128 * KiB) 64 #define NPCM7XX_ROM_BA (0xffff0000) 65 #define NPCM7XX_ROM_SZ (64 * KiB) 66 67 68 /* Clock configuration values to be fixed up when bypassing bootloader */ 69 70 /* Run PLL1 at 1600 MHz */ 71 #define NPCM7XX_PLLCON1_FIXUP_VAL (0x00402101) 72 /* Run the CPU from PLL1 and UART from PLL2 */ 73 #define NPCM7XX_CLKSEL_FIXUP_VAL (0x004aaba9) 74 75 /* 76 * Interrupt lines going into the GIC. This does not include internal Cortex-A9 77 * interrupts. 78 */ 79 enum NPCM7xxInterrupt { 80 NPCM7XX_ADC_IRQ = 0, 81 NPCM7XX_UART0_IRQ = 2, 82 NPCM7XX_UART1_IRQ, 83 NPCM7XX_UART2_IRQ, 84 NPCM7XX_UART3_IRQ, 85 NPCM7XX_TIMER0_IRQ = 32, /* Timer Module 0 */ 86 NPCM7XX_TIMER1_IRQ, 87 NPCM7XX_TIMER2_IRQ, 88 NPCM7XX_TIMER3_IRQ, 89 NPCM7XX_TIMER4_IRQ, 90 NPCM7XX_TIMER5_IRQ, /* Timer Module 1 */ 91 NPCM7XX_TIMER6_IRQ, 92 NPCM7XX_TIMER7_IRQ, 93 NPCM7XX_TIMER8_IRQ, 94 NPCM7XX_TIMER9_IRQ, 95 NPCM7XX_TIMER10_IRQ, /* Timer Module 2 */ 96 NPCM7XX_TIMER11_IRQ, 97 NPCM7XX_TIMER12_IRQ, 98 NPCM7XX_TIMER13_IRQ, 99 NPCM7XX_TIMER14_IRQ, 100 NPCM7XX_WDG0_IRQ = 47, /* Timer Module 0 Watchdog */ 101 NPCM7XX_WDG1_IRQ, /* Timer Module 1 Watchdog */ 102 NPCM7XX_WDG2_IRQ, /* Timer Module 2 Watchdog */ 103 NPCM7XX_EHCI_IRQ = 61, 104 NPCM7XX_OHCI_IRQ = 62, 105 NPCM7XX_GPIO0_IRQ = 116, 106 NPCM7XX_GPIO1_IRQ, 107 NPCM7XX_GPIO2_IRQ, 108 NPCM7XX_GPIO3_IRQ, 109 NPCM7XX_GPIO4_IRQ, 110 NPCM7XX_GPIO5_IRQ, 111 NPCM7XX_GPIO6_IRQ, 112 NPCM7XX_GPIO7_IRQ, 113 }; 114 115 /* Total number of GIC interrupts, including internal Cortex-A9 interrupts. */ 116 #define NPCM7XX_NUM_IRQ (160) 117 118 /* Register base address for each Timer Module */ 119 static const hwaddr npcm7xx_tim_addr[] = { 120 0xf0008000, 121 0xf0009000, 122 0xf000a000, 123 }; 124 125 /* Register base address for each 16550 UART */ 126 static const hwaddr npcm7xx_uart_addr[] = { 127 0xf0001000, 128 0xf0002000, 129 0xf0003000, 130 0xf0004000, 131 }; 132 133 /* Direct memory-mapped access to SPI0 CS0-1. */ 134 static const hwaddr npcm7xx_fiu0_flash_addr[] = { 135 0x80000000, /* CS0 */ 136 0x88000000, /* CS1 */ 137 }; 138 139 /* Direct memory-mapped access to SPI3 CS0-3. */ 140 static const hwaddr npcm7xx_fiu3_flash_addr[] = { 141 0xa0000000, /* CS0 */ 142 0xa8000000, /* CS1 */ 143 0xb0000000, /* CS2 */ 144 0xb8000000, /* CS3 */ 145 }; 146 147 static const struct { 148 hwaddr regs_addr; 149 uint32_t unconnected_pins; 150 uint32_t reset_pu; 151 uint32_t reset_pd; 152 uint32_t reset_osrc; 153 uint32_t reset_odsc; 154 } npcm7xx_gpio[] = { 155 { 156 .regs_addr = 0xf0010000, 157 .reset_pu = 0xff03ffff, 158 .reset_pd = 0x00fc0000, 159 }, { 160 .regs_addr = 0xf0011000, 161 .unconnected_pins = 0x0000001e, 162 .reset_pu = 0xfefffe07, 163 .reset_pd = 0x010001e0, 164 }, { 165 .regs_addr = 0xf0012000, 166 .reset_pu = 0x780fffff, 167 .reset_pd = 0x07f00000, 168 .reset_odsc = 0x00700000, 169 }, { 170 .regs_addr = 0xf0013000, 171 .reset_pu = 0x00fc0000, 172 .reset_pd = 0xff000000, 173 }, { 174 .regs_addr = 0xf0014000, 175 .reset_pu = 0xffffffff, 176 }, { 177 .regs_addr = 0xf0015000, 178 .reset_pu = 0xbf83f801, 179 .reset_pd = 0x007c0000, 180 .reset_osrc = 0x000000f1, 181 .reset_odsc = 0x3f9f80f1, 182 }, { 183 .regs_addr = 0xf0016000, 184 .reset_pu = 0xfc00f801, 185 .reset_pd = 0x000007fe, 186 .reset_odsc = 0x00000800, 187 }, { 188 .regs_addr = 0xf0017000, 189 .unconnected_pins = 0xffffff00, 190 .reset_pu = 0x0000007f, 191 .reset_osrc = 0x0000007f, 192 .reset_odsc = 0x0000007f, 193 }, 194 }; 195 196 static const struct { 197 const char *name; 198 hwaddr regs_addr; 199 int cs_count; 200 const hwaddr *flash_addr; 201 } npcm7xx_fiu[] = { 202 { 203 .name = "fiu0", 204 .regs_addr = 0xfb000000, 205 .cs_count = ARRAY_SIZE(npcm7xx_fiu0_flash_addr), 206 .flash_addr = npcm7xx_fiu0_flash_addr, 207 }, { 208 .name = "fiu3", 209 .regs_addr = 0xc0000000, 210 .cs_count = ARRAY_SIZE(npcm7xx_fiu3_flash_addr), 211 .flash_addr = npcm7xx_fiu3_flash_addr, 212 }, 213 }; 214 215 static void npcm7xx_write_board_setup(ARMCPU *cpu, 216 const struct arm_boot_info *info) 217 { 218 uint32_t board_setup[] = { 219 0xe59f0010, /* ldr r0, clk_base_addr */ 220 0xe59f1010, /* ldr r1, pllcon1_value */ 221 0xe5801010, /* str r1, [r0, #16] */ 222 0xe59f100c, /* ldr r1, clksel_value */ 223 0xe5801004, /* str r1, [r0, #4] */ 224 0xe12fff1e, /* bx lr */ 225 NPCM7XX_CLK_BA, 226 NPCM7XX_PLLCON1_FIXUP_VAL, 227 NPCM7XX_CLKSEL_FIXUP_VAL, 228 }; 229 int i; 230 231 for (i = 0; i < ARRAY_SIZE(board_setup); i++) { 232 board_setup[i] = tswap32(board_setup[i]); 233 } 234 rom_add_blob_fixed("board-setup", board_setup, sizeof(board_setup), 235 info->board_setup_addr); 236 } 237 238 static void npcm7xx_write_secondary_boot(ARMCPU *cpu, 239 const struct arm_boot_info *info) 240 { 241 /* 242 * The default smpboot stub halts the secondary CPU with a 'wfi' 243 * instruction, but the arch/arm/mach-npcm/platsmp.c in the Linux kernel 244 * does not send an IPI to wake it up, so the second CPU fails to boot. So 245 * we need to provide our own smpboot stub that can not use 'wfi', it has 246 * to spin the secondary CPU until the first CPU writes to the SCRPAD reg. 247 */ 248 uint32_t smpboot[] = { 249 0xe59f2018, /* ldr r2, bootreg_addr */ 250 0xe3a00000, /* mov r0, #0 */ 251 0xe5820000, /* str r0, [r2] */ 252 0xe320f002, /* wfe */ 253 0xe5921000, /* ldr r1, [r2] */ 254 0xe1110001, /* tst r1, r1 */ 255 0x0afffffb, /* beq <wfe> */ 256 0xe12fff11, /* bx r1 */ 257 NPCM7XX_SMP_BOOTREG_ADDR, 258 }; 259 int i; 260 261 for (i = 0; i < ARRAY_SIZE(smpboot); i++) { 262 smpboot[i] = tswap32(smpboot[i]); 263 } 264 265 rom_add_blob_fixed("smpboot", smpboot, sizeof(smpboot), 266 NPCM7XX_SMP_LOADER_START); 267 } 268 269 static struct arm_boot_info npcm7xx_binfo = { 270 .loader_start = NPCM7XX_LOADER_START, 271 .smp_loader_start = NPCM7XX_SMP_LOADER_START, 272 .smp_bootreg_addr = NPCM7XX_SMP_BOOTREG_ADDR, 273 .gic_cpu_if_addr = NPCM7XX_GIC_CPU_IF_ADDR, 274 .write_secondary_boot = npcm7xx_write_secondary_boot, 275 .board_id = -1, 276 .board_setup_addr = NPCM7XX_BOARD_SETUP_ADDR, 277 .write_board_setup = npcm7xx_write_board_setup, 278 }; 279 280 void npcm7xx_load_kernel(MachineState *machine, NPCM7xxState *soc) 281 { 282 NPCM7xxClass *sc = NPCM7XX_GET_CLASS(soc); 283 284 npcm7xx_binfo.ram_size = machine->ram_size; 285 npcm7xx_binfo.nb_cpus = sc->num_cpus; 286 287 arm_load_kernel(&soc->cpu[0], machine, &npcm7xx_binfo); 288 } 289 290 static void npcm7xx_init_fuses(NPCM7xxState *s) 291 { 292 NPCM7xxClass *nc = NPCM7XX_GET_CLASS(s); 293 uint32_t value; 294 295 /* 296 * The initial mask of disabled modules indicates the chip derivative (e.g. 297 * NPCM750 or NPCM730). 298 */ 299 value = tswap32(nc->disabled_modules); 300 npcm7xx_otp_array_write(&s->fuse_array, &value, NPCM7XX_FUSE_DERIVATIVE, 301 sizeof(value)); 302 } 303 304 static void npcm7xx_write_adc_calibration(NPCM7xxState *s) 305 { 306 /* Both ADC and the fuse array must have realized. */ 307 QEMU_BUILD_BUG_ON(sizeof(s->adc.calibration_r_values) != 4); 308 npcm7xx_otp_array_write(&s->fuse_array, s->adc.calibration_r_values, 309 NPCM7XX_FUSE_ADC_CALIB, sizeof(s->adc.calibration_r_values)); 310 } 311 312 static qemu_irq npcm7xx_irq(NPCM7xxState *s, int n) 313 { 314 return qdev_get_gpio_in(DEVICE(&s->a9mpcore), n); 315 } 316 317 static void npcm7xx_init(Object *obj) 318 { 319 NPCM7xxState *s = NPCM7XX(obj); 320 int i; 321 322 for (i = 0; i < NPCM7XX_MAX_NUM_CPUS; i++) { 323 object_initialize_child(obj, "cpu[*]", &s->cpu[i], 324 ARM_CPU_TYPE_NAME("cortex-a9")); 325 } 326 327 object_initialize_child(obj, "a9mpcore", &s->a9mpcore, TYPE_A9MPCORE_PRIV); 328 object_initialize_child(obj, "gcr", &s->gcr, TYPE_NPCM7XX_GCR); 329 object_property_add_alias(obj, "power-on-straps", OBJECT(&s->gcr), 330 "power-on-straps"); 331 object_initialize_child(obj, "clk", &s->clk, TYPE_NPCM7XX_CLK); 332 object_initialize_child(obj, "otp1", &s->key_storage, 333 TYPE_NPCM7XX_KEY_STORAGE); 334 object_initialize_child(obj, "otp2", &s->fuse_array, 335 TYPE_NPCM7XX_FUSE_ARRAY); 336 object_initialize_child(obj, "mc", &s->mc, TYPE_NPCM7XX_MC); 337 object_initialize_child(obj, "rng", &s->rng, TYPE_NPCM7XX_RNG); 338 object_initialize_child(obj, "adc", &s->adc, TYPE_NPCM7XX_ADC); 339 340 for (i = 0; i < ARRAY_SIZE(s->tim); i++) { 341 object_initialize_child(obj, "tim[*]", &s->tim[i], TYPE_NPCM7XX_TIMER); 342 } 343 344 for (i = 0; i < ARRAY_SIZE(s->gpio); i++) { 345 object_initialize_child(obj, "gpio[*]", &s->gpio[i], TYPE_NPCM7XX_GPIO); 346 } 347 348 object_initialize_child(obj, "ehci", &s->ehci, TYPE_NPCM7XX_EHCI); 349 object_initialize_child(obj, "ohci", &s->ohci, TYPE_SYSBUS_OHCI); 350 351 QEMU_BUILD_BUG_ON(ARRAY_SIZE(npcm7xx_fiu) != ARRAY_SIZE(s->fiu)); 352 for (i = 0; i < ARRAY_SIZE(s->fiu); i++) { 353 object_initialize_child(obj, npcm7xx_fiu[i].name, &s->fiu[i], 354 TYPE_NPCM7XX_FIU); 355 } 356 } 357 358 static void npcm7xx_realize(DeviceState *dev, Error **errp) 359 { 360 NPCM7xxState *s = NPCM7XX(dev); 361 NPCM7xxClass *nc = NPCM7XX_GET_CLASS(s); 362 int i; 363 364 if (memory_region_size(s->dram) > NPCM7XX_DRAM_SZ) { 365 error_setg(errp, "%s: NPCM7xx cannot address more than %" PRIu64 366 " MiB of DRAM", __func__, NPCM7XX_DRAM_SZ / MiB); 367 return; 368 } 369 370 /* CPUs */ 371 for (i = 0; i < nc->num_cpus; i++) { 372 object_property_set_int(OBJECT(&s->cpu[i]), "mp-affinity", 373 arm_cpu_mp_affinity(i, NPCM7XX_MAX_NUM_CPUS), 374 &error_abort); 375 object_property_set_int(OBJECT(&s->cpu[i]), "reset-cbar", 376 NPCM7XX_GIC_CPU_IF_ADDR, &error_abort); 377 object_property_set_bool(OBJECT(&s->cpu[i]), "reset-hivecs", true, 378 &error_abort); 379 380 /* Disable security extensions. */ 381 object_property_set_bool(OBJECT(&s->cpu[i]), "has_el3", false, 382 &error_abort); 383 384 if (!qdev_realize(DEVICE(&s->cpu[i]), NULL, errp)) { 385 return; 386 } 387 } 388 389 /* A9MPCORE peripherals. Can only fail if we pass bad parameters here. */ 390 object_property_set_int(OBJECT(&s->a9mpcore), "num-cpu", nc->num_cpus, 391 &error_abort); 392 object_property_set_int(OBJECT(&s->a9mpcore), "num-irq", NPCM7XX_NUM_IRQ, 393 &error_abort); 394 sysbus_realize(SYS_BUS_DEVICE(&s->a9mpcore), &error_abort); 395 sysbus_mmio_map(SYS_BUS_DEVICE(&s->a9mpcore), 0, NPCM7XX_CPUP_BA); 396 397 for (i = 0; i < nc->num_cpus; i++) { 398 sysbus_connect_irq(SYS_BUS_DEVICE(&s->a9mpcore), i, 399 qdev_get_gpio_in(DEVICE(&s->cpu[i]), ARM_CPU_IRQ)); 400 sysbus_connect_irq(SYS_BUS_DEVICE(&s->a9mpcore), i + nc->num_cpus, 401 qdev_get_gpio_in(DEVICE(&s->cpu[i]), ARM_CPU_FIQ)); 402 } 403 404 /* L2 cache controller */ 405 sysbus_create_simple("l2x0", NPCM7XX_L2C_BA, NULL); 406 407 /* System Global Control Registers (GCR). Can fail due to user input. */ 408 object_property_set_int(OBJECT(&s->gcr), "disabled-modules", 409 nc->disabled_modules, &error_abort); 410 object_property_add_const_link(OBJECT(&s->gcr), "dram-mr", OBJECT(s->dram)); 411 if (!sysbus_realize(SYS_BUS_DEVICE(&s->gcr), errp)) { 412 return; 413 } 414 sysbus_mmio_map(SYS_BUS_DEVICE(&s->gcr), 0, NPCM7XX_GCR_BA); 415 416 /* Clock Control Registers (CLK). Cannot fail. */ 417 sysbus_realize(SYS_BUS_DEVICE(&s->clk), &error_abort); 418 sysbus_mmio_map(SYS_BUS_DEVICE(&s->clk), 0, NPCM7XX_CLK_BA); 419 420 /* OTP key storage and fuse strap array. Cannot fail. */ 421 sysbus_realize(SYS_BUS_DEVICE(&s->key_storage), &error_abort); 422 sysbus_mmio_map(SYS_BUS_DEVICE(&s->key_storage), 0, NPCM7XX_OTP1_BA); 423 sysbus_realize(SYS_BUS_DEVICE(&s->fuse_array), &error_abort); 424 sysbus_mmio_map(SYS_BUS_DEVICE(&s->fuse_array), 0, NPCM7XX_OTP2_BA); 425 npcm7xx_init_fuses(s); 426 427 /* Fake Memory Controller (MC). Cannot fail. */ 428 sysbus_realize(SYS_BUS_DEVICE(&s->mc), &error_abort); 429 sysbus_mmio_map(SYS_BUS_DEVICE(&s->mc), 0, NPCM7XX_MC_BA); 430 431 /* ADC Modules. Cannot fail. */ 432 qdev_connect_clock_in(DEVICE(&s->adc), "clock", qdev_get_clock_out( 433 DEVICE(&s->clk), "adc-clock")); 434 sysbus_realize(SYS_BUS_DEVICE(&s->adc), &error_abort); 435 sysbus_mmio_map(SYS_BUS_DEVICE(&s->adc), 0, NPCM7XX_ADC_BA); 436 sysbus_connect_irq(SYS_BUS_DEVICE(&s->adc), 0, 437 npcm7xx_irq(s, NPCM7XX_ADC_IRQ)); 438 npcm7xx_write_adc_calibration(s); 439 440 /* Timer Modules (TIM). Cannot fail. */ 441 QEMU_BUILD_BUG_ON(ARRAY_SIZE(npcm7xx_tim_addr) != ARRAY_SIZE(s->tim)); 442 for (i = 0; i < ARRAY_SIZE(s->tim); i++) { 443 SysBusDevice *sbd = SYS_BUS_DEVICE(&s->tim[i]); 444 int first_irq; 445 int j; 446 447 /* Connect the timer clock. */ 448 qdev_connect_clock_in(DEVICE(&s->tim[i]), "clock", qdev_get_clock_out( 449 DEVICE(&s->clk), "timer-clock")); 450 451 sysbus_realize(sbd, &error_abort); 452 sysbus_mmio_map(sbd, 0, npcm7xx_tim_addr[i]); 453 454 first_irq = NPCM7XX_TIMER0_IRQ + i * NPCM7XX_TIMERS_PER_CTRL; 455 for (j = 0; j < NPCM7XX_TIMERS_PER_CTRL; j++) { 456 qemu_irq irq = npcm7xx_irq(s, first_irq + j); 457 sysbus_connect_irq(sbd, j, irq); 458 } 459 460 /* IRQ for watchdogs */ 461 sysbus_connect_irq(sbd, NPCM7XX_TIMERS_PER_CTRL, 462 npcm7xx_irq(s, NPCM7XX_WDG0_IRQ + i)); 463 /* GPIO that connects clk module with watchdog */ 464 qdev_connect_gpio_out_named(DEVICE(&s->tim[i]), 465 NPCM7XX_WATCHDOG_RESET_GPIO_OUT, 0, 466 qdev_get_gpio_in_named(DEVICE(&s->clk), 467 NPCM7XX_WATCHDOG_RESET_GPIO_IN, i)); 468 } 469 470 /* UART0..3 (16550 compatible) */ 471 for (i = 0; i < ARRAY_SIZE(npcm7xx_uart_addr); i++) { 472 serial_mm_init(get_system_memory(), npcm7xx_uart_addr[i], 2, 473 npcm7xx_irq(s, NPCM7XX_UART0_IRQ + i), 115200, 474 serial_hd(i), DEVICE_LITTLE_ENDIAN); 475 } 476 477 /* Random Number Generator. Cannot fail. */ 478 sysbus_realize(SYS_BUS_DEVICE(&s->rng), &error_abort); 479 sysbus_mmio_map(SYS_BUS_DEVICE(&s->rng), 0, NPCM7XX_RNG_BA); 480 481 /* GPIO modules. Cannot fail. */ 482 QEMU_BUILD_BUG_ON(ARRAY_SIZE(npcm7xx_gpio) != ARRAY_SIZE(s->gpio)); 483 for (i = 0; i < ARRAY_SIZE(s->gpio); i++) { 484 Object *obj = OBJECT(&s->gpio[i]); 485 486 object_property_set_uint(obj, "reset-pullup", 487 npcm7xx_gpio[i].reset_pu, &error_abort); 488 object_property_set_uint(obj, "reset-pulldown", 489 npcm7xx_gpio[i].reset_pd, &error_abort); 490 object_property_set_uint(obj, "reset-osrc", 491 npcm7xx_gpio[i].reset_osrc, &error_abort); 492 object_property_set_uint(obj, "reset-odsc", 493 npcm7xx_gpio[i].reset_odsc, &error_abort); 494 sysbus_realize(SYS_BUS_DEVICE(obj), &error_abort); 495 sysbus_mmio_map(SYS_BUS_DEVICE(obj), 0, npcm7xx_gpio[i].regs_addr); 496 sysbus_connect_irq(SYS_BUS_DEVICE(obj), 0, 497 npcm7xx_irq(s, NPCM7XX_GPIO0_IRQ + i)); 498 } 499 500 /* USB Host */ 501 object_property_set_bool(OBJECT(&s->ehci), "companion-enable", true, 502 &error_abort); 503 sysbus_realize(SYS_BUS_DEVICE(&s->ehci), &error_abort); 504 sysbus_mmio_map(SYS_BUS_DEVICE(&s->ehci), 0, NPCM7XX_EHCI_BA); 505 sysbus_connect_irq(SYS_BUS_DEVICE(&s->ehci), 0, 506 npcm7xx_irq(s, NPCM7XX_EHCI_IRQ)); 507 508 object_property_set_str(OBJECT(&s->ohci), "masterbus", "usb-bus.0", 509 &error_abort); 510 object_property_set_uint(OBJECT(&s->ohci), "num-ports", 1, &error_abort); 511 sysbus_realize(SYS_BUS_DEVICE(&s->ohci), &error_abort); 512 sysbus_mmio_map(SYS_BUS_DEVICE(&s->ohci), 0, NPCM7XX_OHCI_BA); 513 sysbus_connect_irq(SYS_BUS_DEVICE(&s->ohci), 0, 514 npcm7xx_irq(s, NPCM7XX_OHCI_IRQ)); 515 516 /* 517 * Flash Interface Unit (FIU). Can fail if incorrect number of chip selects 518 * specified, but this is a programming error. 519 */ 520 QEMU_BUILD_BUG_ON(ARRAY_SIZE(npcm7xx_fiu) != ARRAY_SIZE(s->fiu)); 521 for (i = 0; i < ARRAY_SIZE(s->fiu); i++) { 522 SysBusDevice *sbd = SYS_BUS_DEVICE(&s->fiu[i]); 523 int j; 524 525 object_property_set_int(OBJECT(sbd), "cs-count", 526 npcm7xx_fiu[i].cs_count, &error_abort); 527 sysbus_realize(sbd, &error_abort); 528 529 sysbus_mmio_map(sbd, 0, npcm7xx_fiu[i].regs_addr); 530 for (j = 0; j < npcm7xx_fiu[i].cs_count; j++) { 531 sysbus_mmio_map(sbd, j + 1, npcm7xx_fiu[i].flash_addr[j]); 532 } 533 } 534 535 /* RAM2 (SRAM) */ 536 memory_region_init_ram(&s->sram, OBJECT(dev), "ram2", 537 NPCM7XX_RAM2_SZ, &error_abort); 538 memory_region_add_subregion(get_system_memory(), NPCM7XX_RAM2_BA, &s->sram); 539 540 /* RAM3 (SRAM) */ 541 memory_region_init_ram(&s->ram3, OBJECT(dev), "ram3", 542 NPCM7XX_RAM3_SZ, &error_abort); 543 memory_region_add_subregion(get_system_memory(), NPCM7XX_RAM3_BA, &s->ram3); 544 545 /* Internal ROM */ 546 memory_region_init_rom(&s->irom, OBJECT(dev), "irom", NPCM7XX_ROM_SZ, 547 &error_abort); 548 memory_region_add_subregion(get_system_memory(), NPCM7XX_ROM_BA, &s->irom); 549 550 create_unimplemented_device("npcm7xx.shm", 0xc0001000, 4 * KiB); 551 create_unimplemented_device("npcm7xx.vdmx", 0xe0800000, 4 * KiB); 552 create_unimplemented_device("npcm7xx.pcierc", 0xe1000000, 64 * KiB); 553 create_unimplemented_device("npcm7xx.kcs", 0xf0007000, 4 * KiB); 554 create_unimplemented_device("npcm7xx.gfxi", 0xf000e000, 4 * KiB); 555 create_unimplemented_device("npcm7xx.gpio[0]", 0xf0010000, 4 * KiB); 556 create_unimplemented_device("npcm7xx.gpio[1]", 0xf0011000, 4 * KiB); 557 create_unimplemented_device("npcm7xx.gpio[2]", 0xf0012000, 4 * KiB); 558 create_unimplemented_device("npcm7xx.gpio[3]", 0xf0013000, 4 * KiB); 559 create_unimplemented_device("npcm7xx.gpio[4]", 0xf0014000, 4 * KiB); 560 create_unimplemented_device("npcm7xx.gpio[5]", 0xf0015000, 4 * KiB); 561 create_unimplemented_device("npcm7xx.gpio[6]", 0xf0016000, 4 * KiB); 562 create_unimplemented_device("npcm7xx.gpio[7]", 0xf0017000, 4 * KiB); 563 create_unimplemented_device("npcm7xx.smbus[0]", 0xf0080000, 4 * KiB); 564 create_unimplemented_device("npcm7xx.smbus[1]", 0xf0081000, 4 * KiB); 565 create_unimplemented_device("npcm7xx.smbus[2]", 0xf0082000, 4 * KiB); 566 create_unimplemented_device("npcm7xx.smbus[3]", 0xf0083000, 4 * KiB); 567 create_unimplemented_device("npcm7xx.smbus[4]", 0xf0084000, 4 * KiB); 568 create_unimplemented_device("npcm7xx.smbus[5]", 0xf0085000, 4 * KiB); 569 create_unimplemented_device("npcm7xx.smbus[6]", 0xf0086000, 4 * KiB); 570 create_unimplemented_device("npcm7xx.smbus[7]", 0xf0087000, 4 * KiB); 571 create_unimplemented_device("npcm7xx.smbus[8]", 0xf0088000, 4 * KiB); 572 create_unimplemented_device("npcm7xx.smbus[9]", 0xf0089000, 4 * KiB); 573 create_unimplemented_device("npcm7xx.smbus[10]", 0xf008a000, 4 * KiB); 574 create_unimplemented_device("npcm7xx.smbus[11]", 0xf008b000, 4 * KiB); 575 create_unimplemented_device("npcm7xx.smbus[12]", 0xf008c000, 4 * KiB); 576 create_unimplemented_device("npcm7xx.smbus[13]", 0xf008d000, 4 * KiB); 577 create_unimplemented_device("npcm7xx.smbus[14]", 0xf008e000, 4 * KiB); 578 create_unimplemented_device("npcm7xx.smbus[15]", 0xf008f000, 4 * KiB); 579 create_unimplemented_device("npcm7xx.espi", 0xf009f000, 4 * KiB); 580 create_unimplemented_device("npcm7xx.peci", 0xf0100000, 4 * KiB); 581 create_unimplemented_device("npcm7xx.siox[1]", 0xf0101000, 4 * KiB); 582 create_unimplemented_device("npcm7xx.siox[2]", 0xf0102000, 4 * KiB); 583 create_unimplemented_device("npcm7xx.pwm[0]", 0xf0103000, 4 * KiB); 584 create_unimplemented_device("npcm7xx.pwm[1]", 0xf0104000, 4 * KiB); 585 create_unimplemented_device("npcm7xx.mft[0]", 0xf0180000, 4 * KiB); 586 create_unimplemented_device("npcm7xx.mft[1]", 0xf0181000, 4 * KiB); 587 create_unimplemented_device("npcm7xx.mft[2]", 0xf0182000, 4 * KiB); 588 create_unimplemented_device("npcm7xx.mft[3]", 0xf0183000, 4 * KiB); 589 create_unimplemented_device("npcm7xx.mft[4]", 0xf0184000, 4 * KiB); 590 create_unimplemented_device("npcm7xx.mft[5]", 0xf0185000, 4 * KiB); 591 create_unimplemented_device("npcm7xx.mft[6]", 0xf0186000, 4 * KiB); 592 create_unimplemented_device("npcm7xx.mft[7]", 0xf0187000, 4 * KiB); 593 create_unimplemented_device("npcm7xx.pspi1", 0xf0200000, 4 * KiB); 594 create_unimplemented_device("npcm7xx.pspi2", 0xf0201000, 4 * KiB); 595 create_unimplemented_device("npcm7xx.ahbpci", 0xf0400000, 1 * MiB); 596 create_unimplemented_device("npcm7xx.mcphy", 0xf05f0000, 64 * KiB); 597 create_unimplemented_device("npcm7xx.gmac1", 0xf0802000, 8 * KiB); 598 create_unimplemented_device("npcm7xx.gmac2", 0xf0804000, 8 * KiB); 599 create_unimplemented_device("npcm7xx.vcd", 0xf0810000, 64 * KiB); 600 create_unimplemented_device("npcm7xx.ece", 0xf0820000, 8 * KiB); 601 create_unimplemented_device("npcm7xx.vdma", 0xf0822000, 8 * KiB); 602 create_unimplemented_device("npcm7xx.emc1", 0xf0825000, 4 * KiB); 603 create_unimplemented_device("npcm7xx.emc2", 0xf0826000, 4 * KiB); 604 create_unimplemented_device("npcm7xx.usbd[0]", 0xf0830000, 4 * KiB); 605 create_unimplemented_device("npcm7xx.usbd[1]", 0xf0831000, 4 * KiB); 606 create_unimplemented_device("npcm7xx.usbd[2]", 0xf0832000, 4 * KiB); 607 create_unimplemented_device("npcm7xx.usbd[3]", 0xf0833000, 4 * KiB); 608 create_unimplemented_device("npcm7xx.usbd[4]", 0xf0834000, 4 * KiB); 609 create_unimplemented_device("npcm7xx.usbd[5]", 0xf0835000, 4 * KiB); 610 create_unimplemented_device("npcm7xx.usbd[6]", 0xf0836000, 4 * KiB); 611 create_unimplemented_device("npcm7xx.usbd[7]", 0xf0837000, 4 * KiB); 612 create_unimplemented_device("npcm7xx.usbd[8]", 0xf0838000, 4 * KiB); 613 create_unimplemented_device("npcm7xx.usbd[9]", 0xf0839000, 4 * KiB); 614 create_unimplemented_device("npcm7xx.sd", 0xf0840000, 8 * KiB); 615 create_unimplemented_device("npcm7xx.mmc", 0xf0842000, 8 * KiB); 616 create_unimplemented_device("npcm7xx.pcimbx", 0xf0848000, 512 * KiB); 617 create_unimplemented_device("npcm7xx.aes", 0xf0858000, 4 * KiB); 618 create_unimplemented_device("npcm7xx.des", 0xf0859000, 4 * KiB); 619 create_unimplemented_device("npcm7xx.sha", 0xf085a000, 4 * KiB); 620 create_unimplemented_device("npcm7xx.secacc", 0xf085b000, 4 * KiB); 621 create_unimplemented_device("npcm7xx.spixcs0", 0xf8000000, 16 * MiB); 622 create_unimplemented_device("npcm7xx.spixcs1", 0xf9000000, 16 * MiB); 623 create_unimplemented_device("npcm7xx.spix", 0xfb001000, 4 * KiB); 624 } 625 626 static Property npcm7xx_properties[] = { 627 DEFINE_PROP_LINK("dram-mr", NPCM7xxState, dram, TYPE_MEMORY_REGION, 628 MemoryRegion *), 629 DEFINE_PROP_END_OF_LIST(), 630 }; 631 632 static void npcm7xx_class_init(ObjectClass *oc, void *data) 633 { 634 DeviceClass *dc = DEVICE_CLASS(oc); 635 636 dc->realize = npcm7xx_realize; 637 dc->user_creatable = false; 638 device_class_set_props(dc, npcm7xx_properties); 639 } 640 641 static void npcm730_class_init(ObjectClass *oc, void *data) 642 { 643 NPCM7xxClass *nc = NPCM7XX_CLASS(oc); 644 645 /* NPCM730 is optimized for data center use, so no graphics, etc. */ 646 nc->disabled_modules = 0x00300395; 647 nc->num_cpus = 2; 648 } 649 650 static void npcm750_class_init(ObjectClass *oc, void *data) 651 { 652 NPCM7xxClass *nc = NPCM7XX_CLASS(oc); 653 654 /* NPCM750 has 2 cores and a full set of peripherals */ 655 nc->disabled_modules = 0x00000000; 656 nc->num_cpus = 2; 657 } 658 659 static const TypeInfo npcm7xx_soc_types[] = { 660 { 661 .name = TYPE_NPCM7XX, 662 .parent = TYPE_DEVICE, 663 .instance_size = sizeof(NPCM7xxState), 664 .instance_init = npcm7xx_init, 665 .class_size = sizeof(NPCM7xxClass), 666 .class_init = npcm7xx_class_init, 667 .abstract = true, 668 }, { 669 .name = TYPE_NPCM730, 670 .parent = TYPE_NPCM7XX, 671 .class_init = npcm730_class_init, 672 }, { 673 .name = TYPE_NPCM750, 674 .parent = TYPE_NPCM7XX, 675 .class_init = npcm750_class_init, 676 }, 677 }; 678 679 DEFINE_TYPES(npcm7xx_soc_types); 680