1 /* 2 * Generic Loongson-3 Platform support 3 * 4 * Copyright (c) 2018-2020 Huacai Chen (chenhc@lemote.com) 5 * Copyright (c) 2018-2020 Jiaxun Yang <jiaxun.yang@flygoat.com> 6 * 7 * This program is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 2 of the License, or 10 * (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program. If not, see <https://www.gnu.org/licenses/>. 19 */ 20 21 /* 22 * Generic virtualized PC Platform based on Loongson-3 CPU (MIPS64R2 with 23 * extensions, 800~2000MHz) 24 */ 25 26 #include "qemu/osdep.h" 27 #include "qemu/units.h" 28 #include "qemu/cutils.h" 29 #include "qemu/datadir.h" 30 #include "qapi/error.h" 31 #include "elf.h" 32 #include "hw/char/serial-mm.h" 33 #include "hw/intc/loongson_liointc.h" 34 #include "hw/mips/mips.h" 35 #include "hw/mips/fw_cfg.h" 36 #include "hw/mips/loongson3_bootp.h" 37 #include "hw/misc/unimp.h" 38 #include "hw/intc/i8259.h" 39 #include "hw/intc/loongson_ipi.h" 40 #include "hw/loader.h" 41 #include "hw/isa/superio.h" 42 #include "hw/pci/msi.h" 43 #include "hw/pci/pci.h" 44 #include "hw/pci/pci_host.h" 45 #include "hw/pci-host/gpex.h" 46 #include "hw/usb.h" 47 #include "net/net.h" 48 #include "system/kvm.h" 49 #include "system/qtest.h" 50 #include "system/reset.h" 51 #include "system/runstate.h" 52 #include "system/system.h" 53 #include "qemu/error-report.h" 54 55 #define PM_CNTL_MODE 0x10 56 57 #define LOONGSON_MAX_VCPUS 16 58 59 /* 60 * Loongson-3's virtual machine BIOS can be obtained here: 61 * 1, https://github.com/loongson-community/firmware-nonfree 62 * 2, http://dev.lemote.com:8000/files/firmware/UEFI/KVM/bios_loongson3.bin 63 */ 64 #define LOONGSON3_BIOSNAME "bios_loongson3.bin" 65 66 #define UART_IRQ 0 67 #define RTC_IRQ 1 68 #define PCIE_IRQ_BASE 2 69 70 const MemMapEntry virt_memmap[] = { 71 [VIRT_LOWMEM] = { 0x00000000, 0x10000000 }, 72 [VIRT_PM] = { 0x10080000, 0x100 }, 73 [VIRT_FW_CFG] = { 0x10080100, 0x100 }, 74 [VIRT_RTC] = { 0x10081000, 0x1000 }, 75 [VIRT_PCIE_PIO] = { 0x18000000, 0x80000 }, 76 [VIRT_PCIE_ECAM] = { 0x1a000000, 0x2000000 }, 77 [VIRT_BIOS_ROM] = { 0x1fc00000, 0x200000 }, 78 [VIRT_UART] = { 0x1fe001e0, 0x8 }, 79 [VIRT_IPI] = { 0x3ff01000, 0x400 }, 80 [VIRT_LIOINTC] = { 0x3ff01400, 0x64 }, 81 [VIRT_PCIE_MMIO] = { 0x40000000, 0x40000000 }, 82 [VIRT_HIGHMEM] = { 0x80000000, 0x0 }, /* Variable */ 83 }; 84 85 static const MemMapEntry loader_memmap[] = { 86 [LOADER_KERNEL] = { 0x00000000, 0x4000000 }, 87 [LOADER_INITRD] = { 0x04000000, 0x0 }, /* Variable */ 88 [LOADER_CMDLINE] = { 0x0ff00000, 0x100000 }, 89 }; 90 91 static const MemMapEntry loader_rommap[] = { 92 [LOADER_BOOTROM] = { 0x1fc00000, 0x1000 }, 93 [LOADER_PARAM] = { 0x1fc01000, 0x10000 }, 94 }; 95 96 struct LoongsonMachineState { 97 MachineState parent_obj; 98 MemoryRegion *pio_alias; 99 MemoryRegion *mmio_alias; 100 MemoryRegion *ecam_alias; 101 MemoryRegion *core_iocsr[LOONGSON_MAX_VCPUS]; 102 }; 103 typedef struct LoongsonMachineState LoongsonMachineState; 104 105 #define TYPE_LOONGSON_MACHINE MACHINE_TYPE_NAME("loongson3-virt") 106 DECLARE_INSTANCE_CHECKER(LoongsonMachineState, LOONGSON_MACHINE, TYPE_LOONGSON_MACHINE) 107 108 static struct _loaderparams { 109 uint64_t cpu_freq; 110 uint64_t ram_size; 111 const char *kernel_cmdline; 112 const char *kernel_filename; 113 const char *initrd_filename; 114 uint64_t kernel_entry; 115 uint64_t a0, a1, a2; 116 } loaderparams; 117 118 static uint64_t loongson3_pm_read(void *opaque, hwaddr addr, unsigned size) 119 { 120 return 0; 121 } 122 123 static void loongson3_pm_write(void *opaque, hwaddr addr, 124 uint64_t val, unsigned size) 125 { 126 if (addr != PM_CNTL_MODE) { 127 return; 128 } 129 130 switch (val) { 131 case 0x00: 132 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET); 133 return; 134 case 0x01: 135 qemu_system_suspend_request(); 136 return; 137 case 0xff: 138 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN); 139 return; 140 default: 141 return; 142 } 143 } 144 145 static const MemoryRegionOps loongson3_pm_ops = { 146 .read = loongson3_pm_read, 147 .write = loongson3_pm_write, 148 .endianness = DEVICE_LITTLE_ENDIAN, 149 .valid = { 150 .min_access_size = 1, 151 .max_access_size = 1 152 } 153 }; 154 155 #define DEF_LOONGSON3_FREQ (800 * 1000 * 1000) 156 157 static uint64_t get_cpu_freq_hz(const MIPSCPU *cpu) 158 { 159 #ifdef CONFIG_KVM 160 int ret; 161 uint64_t freq; 162 struct kvm_one_reg freq_reg = { 163 .id = KVM_REG_MIPS_COUNT_HZ, 164 .addr = (uintptr_t)(&freq) 165 }; 166 167 if (kvm_enabled()) { 168 ret = kvm_vcpu_ioctl(CPU(cpu), KVM_GET_ONE_REG, &freq_reg); 169 if (ret >= 0) { 170 return freq * 2; 171 } 172 } 173 #endif 174 return DEF_LOONGSON3_FREQ; 175 } 176 177 static void init_boot_param(unsigned cpu_count, uint32_t processor_id) 178 { 179 static void *p; 180 struct boot_params *bp; 181 182 p = g_malloc0(loader_rommap[LOADER_PARAM].size); 183 bp = p; 184 185 bp->efi.smbios.vers = cpu_to_le16(1); 186 init_reset_system(&(bp->reset_system)); 187 p += ROUND_UP(sizeof(struct boot_params), 64); 188 init_loongson_params(&(bp->efi.smbios.lp), p, cpu_count, processor_id, 189 loaderparams.cpu_freq, loaderparams.ram_size); 190 191 rom_add_blob_fixed("params_rom", bp, 192 loader_rommap[LOADER_PARAM].size, 193 loader_rommap[LOADER_PARAM].base); 194 195 g_free(bp); 196 197 loaderparams.a2 = cpu_mips_phys_to_kseg0(NULL, 198 loader_rommap[LOADER_PARAM].base); 199 } 200 201 static void init_boot_rom(void) 202 { 203 const unsigned int boot_code[] = { 204 0x40086000, /* mfc0 t0, CP0_STATUS */ 205 0x240900E4, /* li t1, 0xe4 #set kx, sx, ux, erl */ 206 0x01094025, /* or t0, t0, t1 */ 207 0x3C090040, /* lui t1, 0x40 #set bev */ 208 0x01094025, /* or t0, t0, t1 */ 209 0x40886000, /* mtc0 t0, CP0_STATUS */ 210 0x00000000, 211 0x40806800, /* mtc0 zero, CP0_CAUSE */ 212 0x00000000, 213 0x400A7801, /* mfc0 t2, $15, 1 */ 214 0x314A00FF, /* andi t2, 0x0ff */ 215 0x3C089000, /* dli t0, 0x900000003ff01000 */ 216 0x00084438, 217 0x35083FF0, 218 0x00084438, 219 0x35081000, 220 0x314B0003, /* andi t3, t2, 0x3 #local cpuid */ 221 0x000B5A00, /* sll t3, 8 */ 222 0x010B4025, /* or t0, t0, t3 */ 223 0x314C000C, /* andi t4, t2, 0xc #node id */ 224 0x000C62BC, /* dsll t4, 42 */ 225 0x010C4025, /* or t0, t0, t4 */ 226 /* WaitForInit: */ 227 0xDD020020, /* ld v0, FN_OFF(t0) #FN_OFF 0x020 */ 228 0x1040FFFE, /* beqz v0, WaitForInit */ 229 0x00000000, /* nop */ 230 0xDD1D0028, /* ld sp, SP_OFF(t0) #FN_OFF 0x028 */ 231 0xDD1C0030, /* ld gp, GP_OFF(t0) #FN_OFF 0x030 */ 232 0xDD050038, /* ld a1, A1_OFF(t0) #FN_OFF 0x038 */ 233 0x00400008, /* jr v0 #byebye */ 234 0x00000000, /* nop */ 235 0x1000FFFF, /* 1: b 1b */ 236 0x00000000, /* nop */ 237 238 /* Reset */ 239 0x3C0C9000, /* dli t0, 0x9000000010080010 */ 240 0x358C0000, 241 0x000C6438, 242 0x358C1008, 243 0x000C6438, 244 0x358C0010, 245 0x240D0000, /* li t1, 0x00 */ 246 0xA18D0000, /* sb t1, (t0) */ 247 0x1000FFFF, /* 1: b 1b */ 248 0x00000000, /* nop */ 249 250 /* Shutdown */ 251 0x3C0C9000, /* dli t0, 0x9000000010080010 */ 252 0x358C0000, 253 0x000C6438, 254 0x358C1008, 255 0x000C6438, 256 0x358C0010, 257 0x240D00FF, /* li t1, 0xff */ 258 0xA18D0000, /* sb t1, (t0) */ 259 0x1000FFFF, /* 1: b 1b */ 260 0x00000000, /* nop */ 261 /* Suspend */ 262 0x3C0C9000, /* dli t0, 0x9000000010080010 */ 263 0x358C0000, 264 0x000C6438, 265 0x358C1008, 266 0x000C6438, 267 0x358C0010, 268 0x240D0001, /* li t1, 0x01 */ 269 0xA18D0000, /* sb t1, (t0) */ 270 0x03e00008, /* jr ra */ 271 0x00000000 /* nop */ 272 }; 273 274 rom_add_blob_fixed("boot_rom", boot_code, sizeof(boot_code), 275 loader_rommap[LOADER_BOOTROM].base); 276 } 277 278 static void fw_cfg_boot_set(void *opaque, const char *boot_device, 279 Error **errp) 280 { 281 fw_cfg_modify_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]); 282 } 283 284 static void fw_conf_init(void) 285 { 286 static const uint8_t suspend[6] = {128, 0, 0, 129, 128, 128}; 287 FWCfgState *fw_cfg; 288 hwaddr cfg_addr = virt_memmap[VIRT_FW_CFG].base; 289 290 fw_cfg = fw_cfg_init_mem_wide(cfg_addr, cfg_addr + 8, 8, 0, NULL); 291 fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, (uint16_t)current_machine->smp.cpus); 292 fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)current_machine->smp.max_cpus); 293 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, loaderparams.ram_size); 294 fw_cfg_add_i32(fw_cfg, FW_CFG_MACHINE_VERSION, 1); 295 fw_cfg_add_i64(fw_cfg, FW_CFG_CPU_FREQ, loaderparams.cpu_freq); 296 297 fw_cfg_add_file(fw_cfg, "etc/system-states", 298 g_memdup2(suspend, sizeof(suspend)), sizeof(suspend)); 299 300 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg); 301 } 302 303 static int set_prom_cmdline(ram_addr_t initrd_offset, long initrd_size) 304 { 305 int ret = 0; 306 void *cmdline_buf; 307 hwaddr cmdline_vaddr; 308 unsigned int *parg_env; 309 310 /* Allocate cmdline_buf for command line. */ 311 cmdline_buf = g_malloc0(loader_memmap[LOADER_CMDLINE].size); 312 cmdline_vaddr = cpu_mips_phys_to_kseg0(NULL, 313 loader_memmap[LOADER_CMDLINE].base); 314 315 /* 316 * Layout of cmdline_buf looks like this: 317 * argv[0], argv[1], 0, env[0], env[1], ... env[i], 0, 318 * argv[0]'s data, argv[1]'s data, env[0]'data, ..., env[i]'s data, 0 319 */ 320 parg_env = (void *)cmdline_buf; 321 322 ret = (3 + 1) * 4; 323 *parg_env++ = cmdline_vaddr + ret; 324 ret += (1 + snprintf(cmdline_buf + ret, 256 - ret, "g")); 325 326 /* argv1 */ 327 *parg_env++ = cmdline_vaddr + ret; 328 if (initrd_size > 0) 329 ret += (1 + snprintf(cmdline_buf + ret, 256 - ret, 330 "rd_start=0x" TARGET_FMT_lx " rd_size=%li %s", 331 cpu_mips_phys_to_kseg0(NULL, initrd_offset), 332 initrd_size, loaderparams.kernel_cmdline)); 333 else 334 ret += (1 + snprintf(cmdline_buf + ret, 256 - ret, "%s", 335 loaderparams.kernel_cmdline)); 336 337 /* argv2 */ 338 *parg_env++ = cmdline_vaddr + 4 * ret; 339 340 rom_add_blob_fixed("cmdline", cmdline_buf, 341 loader_memmap[LOADER_CMDLINE].size, 342 loader_memmap[LOADER_CMDLINE].base); 343 344 g_free(cmdline_buf); 345 346 loaderparams.a0 = 2; 347 loaderparams.a1 = cmdline_vaddr; 348 349 return 0; 350 } 351 352 static uint64_t load_kernel(CPUMIPSState *env) 353 { 354 long kernel_size; 355 ram_addr_t initrd_offset; 356 uint64_t kernel_entry, kernel_low, kernel_high, initrd_size; 357 358 kernel_size = load_elf(loaderparams.kernel_filename, NULL, 359 cpu_mips_kseg0_to_phys, NULL, 360 &kernel_entry, 361 &kernel_low, &kernel_high, 362 NULL, ELFDATA2LSB, EM_MIPS, 1, 0); 363 if (kernel_size < 0) { 364 error_report("could not load kernel '%s': %s", 365 loaderparams.kernel_filename, 366 load_elf_strerror(kernel_size)); 367 exit(1); 368 } 369 370 /* load initrd */ 371 initrd_size = 0; 372 initrd_offset = 0; 373 if (loaderparams.initrd_filename) { 374 initrd_size = get_image_size(loaderparams.initrd_filename, NULL); 375 if (initrd_size > 0) { 376 initrd_offset = MAX(loader_memmap[LOADER_INITRD].base, 377 ROUND_UP(kernel_high, INITRD_PAGE_SIZE)); 378 379 if (initrd_offset + initrd_size > loaderparams.ram_size) { 380 error_report("memory too small for initial ram disk '%s'", 381 loaderparams.initrd_filename); 382 exit(1); 383 } 384 385 initrd_size = load_image_targphys(loaderparams.initrd_filename, 386 initrd_offset, 387 loaderparams.ram_size - initrd_offset, 388 NULL); 389 } 390 391 if (initrd_size == (target_ulong) -1) { 392 error_report("could not load initial ram disk '%s'", 393 loaderparams.initrd_filename); 394 exit(1); 395 } 396 } 397 398 /* Setup prom cmdline. */ 399 set_prom_cmdline(initrd_offset, initrd_size); 400 401 return kernel_entry; 402 } 403 404 static void generic_cpu_reset(void *opaque) 405 { 406 MIPSCPU *cpu = opaque; 407 CPUMIPSState *env = &cpu->env; 408 409 cpu_reset(CPU(cpu)); 410 411 if (loaderparams.kernel_filename) { 412 env->CP0_Status &= ~((1 << CP0St_BEV) | (1 << CP0St_ERL)); 413 } 414 } 415 416 static void main_cpu_reset(void *opaque) 417 { 418 generic_cpu_reset(opaque); 419 420 if (loaderparams.kernel_filename) { 421 MIPSCPU *cpu = opaque; 422 CPUMIPSState *env = &cpu->env; 423 424 env->active_tc.gpr[4] = loaderparams.a0; 425 env->active_tc.gpr[5] = loaderparams.a1; 426 env->active_tc.gpr[6] = loaderparams.a2; 427 env->active_tc.PC = loaderparams.kernel_entry; 428 } 429 } 430 431 static inline void loongson3_virt_devices_init(MachineState *machine, 432 DeviceState *pic) 433 { 434 int i; 435 qemu_irq irq; 436 PCIBus *pci_bus; 437 DeviceState *dev; 438 MemoryRegion *mmio_reg, *ecam_reg; 439 MachineClass *mc = MACHINE_GET_CLASS(machine); 440 LoongsonMachineState *s = LOONGSON_MACHINE(machine); 441 442 dev = qdev_new(TYPE_GPEX_HOST); 443 sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal); 444 pci_bus = PCI_HOST_BRIDGE(dev)->bus; 445 446 s->ecam_alias = g_new0(MemoryRegion, 1); 447 ecam_reg = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0); 448 memory_region_init_alias(s->ecam_alias, OBJECT(dev), "pcie-ecam", 449 ecam_reg, 0, virt_memmap[VIRT_PCIE_ECAM].size); 450 memory_region_add_subregion(get_system_memory(), 451 virt_memmap[VIRT_PCIE_ECAM].base, 452 s->ecam_alias); 453 454 s->mmio_alias = g_new0(MemoryRegion, 1); 455 mmio_reg = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 1); 456 memory_region_init_alias(s->mmio_alias, OBJECT(dev), "pcie-mmio", 457 mmio_reg, virt_memmap[VIRT_PCIE_MMIO].base, 458 virt_memmap[VIRT_PCIE_MMIO].size); 459 memory_region_add_subregion(get_system_memory(), 460 virt_memmap[VIRT_PCIE_MMIO].base, 461 s->mmio_alias); 462 463 s->pio_alias = g_new0(MemoryRegion, 1); 464 memory_region_init_alias(s->pio_alias, OBJECT(dev), "pcie-pio", 465 get_system_io(), 0, 466 virt_memmap[VIRT_PCIE_PIO].size); 467 memory_region_add_subregion(get_system_memory(), 468 virt_memmap[VIRT_PCIE_PIO].base, s->pio_alias); 469 sysbus_mmio_map(SYS_BUS_DEVICE(dev), 2, virt_memmap[VIRT_PCIE_PIO].base); 470 471 for (i = 0; i < PCI_NUM_PINS; i++) { 472 irq = qdev_get_gpio_in(pic, PCIE_IRQ_BASE + i); 473 sysbus_connect_irq(SYS_BUS_DEVICE(dev), i, irq); 474 gpex_set_irq_num(GPEX_HOST(dev), i, PCIE_IRQ_BASE + i); 475 } 476 msi_nonbroken = true; 477 478 pci_vga_init(pci_bus); 479 480 if (defaults_enabled() && object_class_by_name("pci-ohci")) { 481 USBBus *usb_bus; 482 483 pci_create_simple(pci_bus, -1, "pci-ohci"); 484 usb_bus = USB_BUS(object_resolve_type_unambiguous(TYPE_USB_BUS, 485 &error_abort)); 486 usb_create_simple(usb_bus, "usb-kbd"); 487 usb_create_simple(usb_bus, "usb-tablet"); 488 } 489 490 pci_init_nic_devices(pci_bus, mc->default_nic); 491 } 492 493 static void mips_loongson3_virt_init(MachineState *machine) 494 { 495 int i; 496 long bios_size; 497 MIPSCPU *cpu = NULL; 498 Clock *cpuclk; 499 DeviceState *liointc; 500 DeviceState *ipi = NULL; 501 char *filename; 502 const char *kernel_cmdline = machine->kernel_cmdline; 503 const char *kernel_filename = machine->kernel_filename; 504 const char *initrd_filename = machine->initrd_filename; 505 ram_addr_t ram_size = machine->ram_size; 506 LoongsonMachineState *s = LOONGSON_MACHINE(machine); 507 MemoryRegion *address_space_mem = get_system_memory(); 508 MemoryRegion *ram = g_new(MemoryRegion, 1); 509 MemoryRegion *bios = g_new(MemoryRegion, 1); 510 MemoryRegion *iomem = g_new(MemoryRegion, 1); 511 MemoryRegion *iocsr = g_new(MemoryRegion, 1); 512 513 /* TODO: TCG will support all CPU types */ 514 if (!kvm_enabled()) { 515 if (!machine->cpu_type) { 516 machine->cpu_type = MIPS_CPU_TYPE_NAME("Loongson-3A1000"); 517 } 518 if (!cpu_type_supports_isa(machine->cpu_type, INSN_LOONGSON3A)) { 519 error_report("Loongson-3/TCG needs a Loongson-3 series cpu"); 520 exit(1); 521 } 522 } else { 523 if (!machine->cpu_type) { 524 machine->cpu_type = MIPS_CPU_TYPE_NAME("Loongson-3A4000"); 525 } 526 if (!strstr(machine->cpu_type, "Loongson-3A4000")) { 527 error_report("Loongson-3/KVM needs cpu type Loongson-3A4000"); 528 exit(1); 529 } 530 } 531 532 if (ram_size < 512 * MiB) { 533 error_report("Loongson-3 machine needs at least 512MB memory"); 534 exit(1); 535 } 536 537 /* 538 * The whole MMIO range among configure registers doesn't generate 539 * exception when accessing invalid memory. Create some unimplememted 540 * devices to emulate this feature. 541 */ 542 create_unimplemented_device("mmio fallback 0", 0x10000000, 256 * MiB); 543 create_unimplemented_device("mmio fallback 1", 0x30000000, 256 * MiB); 544 545 memory_region_init(iocsr, OBJECT(machine), "loongson3.iocsr", UINT32_MAX); 546 547 /* IPI controller is in kernel for KVM */ 548 if (!kvm_enabled()) { 549 ipi = qdev_new(TYPE_LOONGSON_IPI); 550 qdev_prop_set_uint32(ipi, "num-cpu", machine->smp.cpus); 551 sysbus_realize_and_unref(SYS_BUS_DEVICE(ipi), &error_fatal); 552 memory_region_add_subregion(iocsr, SMP_IPI_MAILBOX, 553 sysbus_mmio_get_region(SYS_BUS_DEVICE(ipi), 0)); 554 memory_region_add_subregion(iocsr, MAIL_SEND_ADDR, 555 sysbus_mmio_get_region(SYS_BUS_DEVICE(ipi), 1)); 556 } 557 558 liointc = qdev_new("loongson.liointc"); 559 sysbus_realize_and_unref(SYS_BUS_DEVICE(liointc), &error_fatal); 560 561 sysbus_mmio_map(SYS_BUS_DEVICE(liointc), 0, virt_memmap[VIRT_LIOINTC].base); 562 563 serial_mm_init(address_space_mem, virt_memmap[VIRT_UART].base, 0, 564 qdev_get_gpio_in(liointc, UART_IRQ), 115200, serial_hd(0), 565 DEVICE_LITTLE_ENDIAN); 566 567 sysbus_create_simple("goldfish_rtc", virt_memmap[VIRT_RTC].base, 568 qdev_get_gpio_in(liointc, RTC_IRQ)); 569 570 cpuclk = clock_new(OBJECT(machine), "cpu-refclk"); 571 clock_set_hz(cpuclk, DEF_LOONGSON3_FREQ); 572 573 for (i = machine->smp.cpus - 1; i >= 0; --i) { 574 int node = i / LOONGSON3_CORE_PER_NODE; 575 int core = i % LOONGSON3_CORE_PER_NODE; 576 int ip; 577 578 /* init CPUs */ 579 cpu = mips_cpu_create_with_clock(machine->cpu_type, cpuclk, false); 580 581 /* Init internal devices */ 582 cpu_mips_irq_init_cpu(cpu); 583 cpu_mips_clock_init(cpu); 584 qemu_register_reset(i ? generic_cpu_reset : main_cpu_reset, cpu); 585 586 if (!kvm_enabled()) { 587 hwaddr base = ((hwaddr)node << 44) + virt_memmap[VIRT_IPI].base; 588 base += core * 0x100; 589 qdev_connect_gpio_out(ipi, i, cpu->env.irq[6]); 590 sysbus_mmio_map(SYS_BUS_DEVICE(ipi), i + 2, base); 591 } 592 593 if (ase_lcsr_available(&MIPS_CPU(cpu)->env)) { 594 MemoryRegion *core_iocsr = g_new(MemoryRegion, 1); 595 g_autofree char *name = g_strdup_printf("core%d_iocsr", i); 596 memory_region_init_alias(core_iocsr, OBJECT(cpu), name, 597 iocsr, 0, UINT32_MAX); 598 memory_region_add_subregion(&MIPS_CPU(cpu)->env.iocsr.mr, 599 0, core_iocsr); 600 s->core_iocsr[i] = core_iocsr; 601 } 602 603 if (node > 0) { 604 continue; /* Only node-0 can be connected to LIOINTC */ 605 } 606 607 for (ip = 0; ip < 4 ; ip++) { 608 int pin = core * LOONGSON3_CORE_PER_NODE + ip; 609 sysbus_connect_irq(SYS_BUS_DEVICE(liointc), 610 pin, cpu->env.irq[ip + 2]); 611 } 612 } 613 assert(cpu); /* This variable points to the first created cpu. */ 614 615 /* Allocate RAM/BIOS, 0x00000000~0x10000000 is alias of 0x80000000~0x90000000 */ 616 memory_region_init_rom(bios, NULL, "loongson3.bios", 617 virt_memmap[VIRT_BIOS_ROM].size, &error_fatal); 618 memory_region_init_alias(ram, NULL, "loongson3.lowmem", 619 machine->ram, 0, virt_memmap[VIRT_LOWMEM].size); 620 memory_region_init_io(iomem, NULL, &loongson3_pm_ops, 621 NULL, "loongson3_pm", virt_memmap[VIRT_PM].size); 622 qemu_register_wakeup_support(); 623 624 memory_region_add_subregion(address_space_mem, 625 virt_memmap[VIRT_LOWMEM].base, ram); 626 memory_region_add_subregion(address_space_mem, 627 virt_memmap[VIRT_BIOS_ROM].base, bios); 628 memory_region_add_subregion(address_space_mem, 629 virt_memmap[VIRT_HIGHMEM].base, machine->ram); 630 memory_region_add_subregion(address_space_mem, 631 virt_memmap[VIRT_PM].base, iomem); 632 633 /* 634 * We do not support flash operation, just loading bios.bin as raw BIOS. 635 * Please use -L to set the BIOS path and -bios to set bios name. 636 */ 637 638 loaderparams.cpu_freq = get_cpu_freq_hz(cpu); 639 loaderparams.ram_size = ram_size; 640 if (kernel_filename) { 641 loaderparams.kernel_filename = kernel_filename; 642 loaderparams.kernel_cmdline = kernel_cmdline; 643 loaderparams.initrd_filename = initrd_filename; 644 loaderparams.kernel_entry = load_kernel(&cpu->env); 645 646 init_boot_rom(); 647 init_boot_param(machine->smp.cpus, cpu->env.CP0_PRid); 648 } else { 649 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, 650 machine->firmware ?: LOONGSON3_BIOSNAME); 651 if (filename) { 652 bios_size = load_image_targphys(filename, 653 virt_memmap[VIRT_BIOS_ROM].base, 654 virt_memmap[VIRT_BIOS_ROM].size, 655 NULL); 656 g_free(filename); 657 } else { 658 bios_size = -1; 659 } 660 661 if ((bios_size < 0 || bios_size > virt_memmap[VIRT_BIOS_ROM].size) && 662 !kernel_filename && !qtest_enabled()) { 663 error_report("Could not load MIPS bios '%s'", machine->firmware); 664 exit(1); 665 } 666 667 fw_conf_init(); 668 } 669 670 loongson3_virt_devices_init(machine, liointc); 671 } 672 673 static void loongson3v_machine_class_init(ObjectClass *oc, const void *data) 674 { 675 MachineClass *mc = MACHINE_CLASS(oc); 676 677 mc->desc = "Loongson-3 Virtualization Platform"; 678 mc->init = mips_loongson3_virt_init; 679 mc->block_default_type = IF_IDE; 680 mc->max_cpus = LOONGSON_MAX_VCPUS; 681 mc->default_ram_id = "loongson3.highram"; 682 mc->default_ram_size = 1600 * MiB; 683 mc->default_nic = "virtio-net-pci"; 684 } 685 686 static const TypeInfo loongson3_machine_types[] = { 687 { 688 .name = TYPE_LOONGSON_MACHINE, 689 .parent = TYPE_MACHINE, 690 .instance_size = sizeof(LoongsonMachineState), 691 .class_init = loongson3v_machine_class_init, 692 } 693 }; 694 695 DEFINE_TYPES(loongson3_machine_types) 696