realview.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. /*
  2. * ARM RealView Baseboard System emulation.
  3. *
  4. * Copyright (c) 2006-2007 CodeSourcery.
  5. * Written by Paul Brook
  6. *
  7. * This code is licensed under the GPL.
  8. */
  9. #include "sysbus.h"
  10. #include "arm-misc.h"
  11. #include "primecell.h"
  12. #include "devices.h"
  13. #include "pci/pci.h"
  14. #include "net/net.h"
  15. #include "sysemu/sysemu.h"
  16. #include "boards.h"
  17. #include "i2c.h"
  18. #include "sysemu/blockdev.h"
  19. #include "exec/address-spaces.h"
  20. #define SMP_BOOT_ADDR 0xe0000000
  21. #define SMP_BOOTREG_ADDR 0x10000030
  22. /* Board init. */
  23. static struct arm_boot_info realview_binfo = {
  24. .smp_loader_start = SMP_BOOT_ADDR,
  25. .smp_bootreg_addr = SMP_BOOTREG_ADDR,
  26. };
  27. /* The following two lists must be consistent. */
  28. enum realview_board_type {
  29. BOARD_EB,
  30. BOARD_EB_MPCORE,
  31. BOARD_PB_A8,
  32. BOARD_PBX_A9,
  33. };
  34. static const int realview_board_id[] = {
  35. 0x33b,
  36. 0x33b,
  37. 0x769,
  38. 0x76d
  39. };
  40. static void realview_init(QEMUMachineInitArgs *args,
  41. enum realview_board_type board_type)
  42. {
  43. ARMCPU *cpu = NULL;
  44. CPUARMState *env;
  45. MemoryRegion *sysmem = get_system_memory();
  46. MemoryRegion *ram_lo = g_new(MemoryRegion, 1);
  47. MemoryRegion *ram_hi = g_new(MemoryRegion, 1);
  48. MemoryRegion *ram_alias = g_new(MemoryRegion, 1);
  49. MemoryRegion *ram_hack = g_new(MemoryRegion, 1);
  50. DeviceState *dev, *sysctl, *gpio2, *pl041;
  51. SysBusDevice *busdev;
  52. qemu_irq *irqp;
  53. qemu_irq pic[64];
  54. qemu_irq mmc_irq[2];
  55. PCIBus *pci_bus;
  56. NICInfo *nd;
  57. i2c_bus *i2c;
  58. int n;
  59. int done_nic = 0;
  60. qemu_irq cpu_irq[4];
  61. int is_mpcore = 0;
  62. int is_pb = 0;
  63. uint32_t proc_id = 0;
  64. uint32_t sys_id;
  65. ram_addr_t low_ram_size;
  66. ram_addr_t ram_size = args->ram_size;
  67. switch (board_type) {
  68. case BOARD_EB:
  69. break;
  70. case BOARD_EB_MPCORE:
  71. is_mpcore = 1;
  72. break;
  73. case BOARD_PB_A8:
  74. is_pb = 1;
  75. break;
  76. case BOARD_PBX_A9:
  77. is_mpcore = 1;
  78. is_pb = 1;
  79. break;
  80. }
  81. for (n = 0; n < smp_cpus; n++) {
  82. cpu = cpu_arm_init(args->cpu_model);
  83. if (!cpu) {
  84. fprintf(stderr, "Unable to find CPU definition\n");
  85. exit(1);
  86. }
  87. irqp = arm_pic_init_cpu(cpu);
  88. cpu_irq[n] = irqp[ARM_PIC_CPU_IRQ];
  89. }
  90. env = &cpu->env;
  91. if (arm_feature(env, ARM_FEATURE_V7)) {
  92. if (is_mpcore) {
  93. proc_id = 0x0c000000;
  94. } else {
  95. proc_id = 0x0e000000;
  96. }
  97. } else if (arm_feature(env, ARM_FEATURE_V6K)) {
  98. proc_id = 0x06000000;
  99. } else if (arm_feature(env, ARM_FEATURE_V6)) {
  100. proc_id = 0x04000000;
  101. } else {
  102. proc_id = 0x02000000;
  103. }
  104. if (is_pb && ram_size > 0x20000000) {
  105. /* Core tile RAM. */
  106. low_ram_size = ram_size - 0x20000000;
  107. ram_size = 0x20000000;
  108. memory_region_init_ram(ram_lo, "realview.lowmem", low_ram_size);
  109. vmstate_register_ram_global(ram_lo);
  110. memory_region_add_subregion(sysmem, 0x20000000, ram_lo);
  111. }
  112. memory_region_init_ram(ram_hi, "realview.highmem", ram_size);
  113. vmstate_register_ram_global(ram_hi);
  114. low_ram_size = ram_size;
  115. if (low_ram_size > 0x10000000)
  116. low_ram_size = 0x10000000;
  117. /* SDRAM at address zero. */
  118. memory_region_init_alias(ram_alias, "realview.alias",
  119. ram_hi, 0, low_ram_size);
  120. memory_region_add_subregion(sysmem, 0, ram_alias);
  121. if (is_pb) {
  122. /* And again at a high address. */
  123. memory_region_add_subregion(sysmem, 0x70000000, ram_hi);
  124. } else {
  125. ram_size = low_ram_size;
  126. }
  127. sys_id = is_pb ? 0x01780500 : 0xc1400400;
  128. sysctl = qdev_create(NULL, "realview_sysctl");
  129. qdev_prop_set_uint32(sysctl, "sys_id", sys_id);
  130. qdev_prop_set_uint32(sysctl, "proc_id", proc_id);
  131. qdev_init_nofail(sysctl);
  132. sysbus_mmio_map(SYS_BUS_DEVICE(sysctl), 0, 0x10000000);
  133. if (is_mpcore) {
  134. hwaddr periphbase;
  135. dev = qdev_create(NULL, is_pb ? "a9mpcore_priv": "realview_mpcore");
  136. qdev_prop_set_uint32(dev, "num-cpu", smp_cpus);
  137. qdev_init_nofail(dev);
  138. busdev = SYS_BUS_DEVICE(dev);
  139. if (is_pb) {
  140. periphbase = 0x1f000000;
  141. } else {
  142. periphbase = 0x10100000;
  143. }
  144. sysbus_mmio_map(busdev, 0, periphbase);
  145. for (n = 0; n < smp_cpus; n++) {
  146. sysbus_connect_irq(busdev, n, cpu_irq[n]);
  147. }
  148. sysbus_create_varargs("l2x0", periphbase + 0x2000, NULL);
  149. /* Both A9 and 11MPCore put the GIC CPU i/f at base + 0x100 */
  150. realview_binfo.gic_cpu_if_addr = periphbase + 0x100;
  151. } else {
  152. uint32_t gic_addr = is_pb ? 0x1e000000 : 0x10040000;
  153. /* For now just create the nIRQ GIC, and ignore the others. */
  154. dev = sysbus_create_simple("realview_gic", gic_addr, cpu_irq[0]);
  155. }
  156. for (n = 0; n < 64; n++) {
  157. pic[n] = qdev_get_gpio_in(dev, n);
  158. }
  159. pl041 = qdev_create(NULL, "pl041");
  160. qdev_prop_set_uint32(pl041, "nc_fifo_depth", 512);
  161. qdev_init_nofail(pl041);
  162. sysbus_mmio_map(SYS_BUS_DEVICE(pl041), 0, 0x10004000);
  163. sysbus_connect_irq(SYS_BUS_DEVICE(pl041), 0, pic[19]);
  164. sysbus_create_simple("pl050_keyboard", 0x10006000, pic[20]);
  165. sysbus_create_simple("pl050_mouse", 0x10007000, pic[21]);
  166. sysbus_create_simple("pl011", 0x10009000, pic[12]);
  167. sysbus_create_simple("pl011", 0x1000a000, pic[13]);
  168. sysbus_create_simple("pl011", 0x1000b000, pic[14]);
  169. sysbus_create_simple("pl011", 0x1000c000, pic[15]);
  170. /* DMA controller is optional, apparently. */
  171. sysbus_create_simple("pl081", 0x10030000, pic[24]);
  172. sysbus_create_simple("sp804", 0x10011000, pic[4]);
  173. sysbus_create_simple("sp804", 0x10012000, pic[5]);
  174. sysbus_create_simple("pl061", 0x10013000, pic[6]);
  175. sysbus_create_simple("pl061", 0x10014000, pic[7]);
  176. gpio2 = sysbus_create_simple("pl061", 0x10015000, pic[8]);
  177. sysbus_create_simple("pl111", 0x10020000, pic[23]);
  178. dev = sysbus_create_varargs("pl181", 0x10005000, pic[17], pic[18], NULL);
  179. /* Wire up MMC card detect and read-only signals. These have
  180. * to go to both the PL061 GPIO and the sysctl register.
  181. * Note that the PL181 orders these lines (readonly,inserted)
  182. * and the PL061 has them the other way about. Also the card
  183. * detect line is inverted.
  184. */
  185. mmc_irq[0] = qemu_irq_split(
  186. qdev_get_gpio_in(sysctl, ARM_SYSCTL_GPIO_MMC_WPROT),
  187. qdev_get_gpio_in(gpio2, 1));
  188. mmc_irq[1] = qemu_irq_split(
  189. qdev_get_gpio_in(sysctl, ARM_SYSCTL_GPIO_MMC_CARDIN),
  190. qemu_irq_invert(qdev_get_gpio_in(gpio2, 0)));
  191. qdev_connect_gpio_out(dev, 0, mmc_irq[0]);
  192. qdev_connect_gpio_out(dev, 1, mmc_irq[1]);
  193. sysbus_create_simple("pl031", 0x10017000, pic[10]);
  194. if (!is_pb) {
  195. dev = qdev_create(NULL, "realview_pci");
  196. busdev = SYS_BUS_DEVICE(dev);
  197. qdev_init_nofail(dev);
  198. sysbus_mmio_map(busdev, 0, 0x61000000); /* PCI self-config */
  199. sysbus_mmio_map(busdev, 1, 0x62000000); /* PCI config */
  200. sysbus_mmio_map(busdev, 2, 0x63000000); /* PCI I/O */
  201. sysbus_connect_irq(busdev, 0, pic[48]);
  202. sysbus_connect_irq(busdev, 1, pic[49]);
  203. sysbus_connect_irq(busdev, 2, pic[50]);
  204. sysbus_connect_irq(busdev, 3, pic[51]);
  205. pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
  206. if (usb_enabled(false)) {
  207. pci_create_simple(pci_bus, -1, "pci-ohci");
  208. }
  209. n = drive_get_max_bus(IF_SCSI);
  210. while (n >= 0) {
  211. pci_create_simple(pci_bus, -1, "lsi53c895a");
  212. n--;
  213. }
  214. }
  215. for(n = 0; n < nb_nics; n++) {
  216. nd = &nd_table[n];
  217. if (!done_nic && (!nd->model ||
  218. strcmp(nd->model, is_pb ? "lan9118" : "smc91c111") == 0)) {
  219. if (is_pb) {
  220. lan9118_init(nd, 0x4e000000, pic[28]);
  221. } else {
  222. smc91c111_init(nd, 0x4e000000, pic[28]);
  223. }
  224. done_nic = 1;
  225. } else {
  226. pci_nic_init_nofail(nd, "rtl8139", NULL);
  227. }
  228. }
  229. dev = sysbus_create_simple("versatile_i2c", 0x10002000, NULL);
  230. i2c = (i2c_bus *)qdev_get_child_bus(dev, "i2c");
  231. i2c_create_slave(i2c, "ds1338", 0x68);
  232. /* Memory map for RealView Emulation Baseboard: */
  233. /* 0x10000000 System registers. */
  234. /* 0x10001000 System controller. */
  235. /* 0x10002000 Two-Wire Serial Bus. */
  236. /* 0x10003000 Reserved. */
  237. /* 0x10004000 AACI. */
  238. /* 0x10005000 MCI. */
  239. /* 0x10006000 KMI0. */
  240. /* 0x10007000 KMI1. */
  241. /* 0x10008000 Character LCD. (EB) */
  242. /* 0x10009000 UART0. */
  243. /* 0x1000a000 UART1. */
  244. /* 0x1000b000 UART2. */
  245. /* 0x1000c000 UART3. */
  246. /* 0x1000d000 SSPI. */
  247. /* 0x1000e000 SCI. */
  248. /* 0x1000f000 Reserved. */
  249. /* 0x10010000 Watchdog. */
  250. /* 0x10011000 Timer 0+1. */
  251. /* 0x10012000 Timer 2+3. */
  252. /* 0x10013000 GPIO 0. */
  253. /* 0x10014000 GPIO 1. */
  254. /* 0x10015000 GPIO 2. */
  255. /* 0x10002000 Two-Wire Serial Bus - DVI. (PB) */
  256. /* 0x10017000 RTC. */
  257. /* 0x10018000 DMC. */
  258. /* 0x10019000 PCI controller config. */
  259. /* 0x10020000 CLCD. */
  260. /* 0x10030000 DMA Controller. */
  261. /* 0x10040000 GIC1. (EB) */
  262. /* 0x10050000 GIC2. (EB) */
  263. /* 0x10060000 GIC3. (EB) */
  264. /* 0x10070000 GIC4. (EB) */
  265. /* 0x10080000 SMC. */
  266. /* 0x1e000000 GIC1. (PB) */
  267. /* 0x1e001000 GIC2. (PB) */
  268. /* 0x1e002000 GIC3. (PB) */
  269. /* 0x1e003000 GIC4. (PB) */
  270. /* 0x40000000 NOR flash. */
  271. /* 0x44000000 DoC flash. */
  272. /* 0x48000000 SRAM. */
  273. /* 0x4c000000 Configuration flash. */
  274. /* 0x4e000000 Ethernet. */
  275. /* 0x4f000000 USB. */
  276. /* 0x50000000 PISMO. */
  277. /* 0x54000000 PISMO. */
  278. /* 0x58000000 PISMO. */
  279. /* 0x5c000000 PISMO. */
  280. /* 0x60000000 PCI. */
  281. /* 0x61000000 PCI Self Config. */
  282. /* 0x62000000 PCI Config. */
  283. /* 0x63000000 PCI IO. */
  284. /* 0x64000000 PCI mem 0. */
  285. /* 0x68000000 PCI mem 1. */
  286. /* 0x6c000000 PCI mem 2. */
  287. /* ??? Hack to map an additional page of ram for the secondary CPU
  288. startup code. I guess this works on real hardware because the
  289. BootROM happens to be in ROM/flash or in memory that isn't clobbered
  290. until after Linux boots the secondary CPUs. */
  291. memory_region_init_ram(ram_hack, "realview.hack", 0x1000);
  292. vmstate_register_ram_global(ram_hack);
  293. memory_region_add_subregion(sysmem, SMP_BOOT_ADDR, ram_hack);
  294. realview_binfo.ram_size = ram_size;
  295. realview_binfo.kernel_filename = args->kernel_filename;
  296. realview_binfo.kernel_cmdline = args->kernel_cmdline;
  297. realview_binfo.initrd_filename = args->initrd_filename;
  298. realview_binfo.nb_cpus = smp_cpus;
  299. realview_binfo.board_id = realview_board_id[board_type];
  300. realview_binfo.loader_start = (board_type == BOARD_PB_A8 ? 0x70000000 : 0);
  301. arm_load_kernel(arm_env_get_cpu(first_cpu), &realview_binfo);
  302. }
  303. static void realview_eb_init(QEMUMachineInitArgs *args)
  304. {
  305. if (!args->cpu_model) {
  306. args->cpu_model = "arm926";
  307. }
  308. realview_init(args, BOARD_EB);
  309. }
  310. static void realview_eb_mpcore_init(QEMUMachineInitArgs *args)
  311. {
  312. if (!args->cpu_model) {
  313. args->cpu_model = "arm11mpcore";
  314. }
  315. realview_init(args, BOARD_EB_MPCORE);
  316. }
  317. static void realview_pb_a8_init(QEMUMachineInitArgs *args)
  318. {
  319. if (!args->cpu_model) {
  320. args->cpu_model = "cortex-a8";
  321. }
  322. realview_init(args, BOARD_PB_A8);
  323. }
  324. static void realview_pbx_a9_init(QEMUMachineInitArgs *args)
  325. {
  326. if (!args->cpu_model) {
  327. args->cpu_model = "cortex-a9";
  328. }
  329. realview_init(args, BOARD_PBX_A9);
  330. }
  331. static QEMUMachine realview_eb_machine = {
  332. .name = "realview-eb",
  333. .desc = "ARM RealView Emulation Baseboard (ARM926EJ-S)",
  334. .init = realview_eb_init,
  335. .block_default_type = IF_SCSI,
  336. DEFAULT_MACHINE_OPTIONS,
  337. };
  338. static QEMUMachine realview_eb_mpcore_machine = {
  339. .name = "realview-eb-mpcore",
  340. .desc = "ARM RealView Emulation Baseboard (ARM11MPCore)",
  341. .init = realview_eb_mpcore_init,
  342. .block_default_type = IF_SCSI,
  343. .max_cpus = 4,
  344. DEFAULT_MACHINE_OPTIONS,
  345. };
  346. static QEMUMachine realview_pb_a8_machine = {
  347. .name = "realview-pb-a8",
  348. .desc = "ARM RealView Platform Baseboard for Cortex-A8",
  349. .init = realview_pb_a8_init,
  350. DEFAULT_MACHINE_OPTIONS,
  351. };
  352. static QEMUMachine realview_pbx_a9_machine = {
  353. .name = "realview-pbx-a9",
  354. .desc = "ARM RealView Platform Baseboard Explore for Cortex-A9",
  355. .init = realview_pbx_a9_init,
  356. .block_default_type = IF_SCSI,
  357. .max_cpus = 4,
  358. DEFAULT_MACHINE_OPTIONS,
  359. };
  360. static void realview_machine_init(void)
  361. {
  362. qemu_register_machine(&realview_eb_machine);
  363. qemu_register_machine(&realview_eb_mpcore_machine);
  364. qemu_register_machine(&realview_pb_a8_machine);
  365. qemu_register_machine(&realview_pbx_a9_machine);
  366. }
  367. machine_init(realview_machine_init);