loongson3_virt.c 22 KB

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