2
0

loongson3_virt.c 25 KB

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