leon3.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /*
  2. * QEMU Leon3 System Emulator
  3. *
  4. * Copyright (c) 2010-2011 AdaCore
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. #include "hw.h"
  25. #include "qemu-timer.h"
  26. #include "ptimer.h"
  27. #include "qemu-char.h"
  28. #include "sysemu.h"
  29. #include "boards.h"
  30. #include "loader.h"
  31. #include "elf.h"
  32. #include "trace.h"
  33. #include "exec-memory.h"
  34. #include "grlib.h"
  35. /* Default system clock. */
  36. #define CPU_CLK (40 * 1000 * 1000)
  37. #define PROM_FILENAME "u-boot.bin"
  38. #define MAX_PILS 16
  39. typedef struct ResetData {
  40. SPARCCPU *cpu;
  41. uint32_t entry; /* save kernel entry in case of reset */
  42. } ResetData;
  43. static void main_cpu_reset(void *opaque)
  44. {
  45. ResetData *s = (ResetData *)opaque;
  46. CPUSPARCState *env = &s->cpu->env;
  47. cpu_reset(CPU(s->cpu));
  48. env->halted = 0;
  49. env->pc = s->entry;
  50. env->npc = s->entry + 4;
  51. }
  52. void leon3_irq_ack(void *irq_manager, int intno)
  53. {
  54. grlib_irqmp_ack((DeviceState *)irq_manager, intno);
  55. }
  56. static void leon3_set_pil_in(void *opaque, uint32_t pil_in)
  57. {
  58. CPUSPARCState *env = (CPUSPARCState *)opaque;
  59. assert(env != NULL);
  60. env->pil_in = pil_in;
  61. if (env->pil_in && (env->interrupt_index == 0 ||
  62. (env->interrupt_index & ~15) == TT_EXTINT)) {
  63. unsigned int i;
  64. for (i = 15; i > 0; i--) {
  65. if (env->pil_in & (1 << i)) {
  66. int old_interrupt = env->interrupt_index;
  67. env->interrupt_index = TT_EXTINT | i;
  68. if (old_interrupt != env->interrupt_index) {
  69. trace_leon3_set_irq(i);
  70. cpu_interrupt(env, CPU_INTERRUPT_HARD);
  71. }
  72. break;
  73. }
  74. }
  75. } else if (!env->pil_in && (env->interrupt_index & ~15) == TT_EXTINT) {
  76. trace_leon3_reset_irq(env->interrupt_index & 15);
  77. env->interrupt_index = 0;
  78. cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
  79. }
  80. }
  81. static void leon3_generic_hw_init(ram_addr_t ram_size,
  82. const char *boot_device,
  83. const char *kernel_filename,
  84. const char *kernel_cmdline,
  85. const char *initrd_filename,
  86. const char *cpu_model)
  87. {
  88. SPARCCPU *cpu;
  89. CPUSPARCState *env;
  90. MemoryRegion *address_space_mem = get_system_memory();
  91. MemoryRegion *ram = g_new(MemoryRegion, 1);
  92. MemoryRegion *prom = g_new(MemoryRegion, 1);
  93. int ret;
  94. char *filename;
  95. qemu_irq *cpu_irqs = NULL;
  96. int bios_size;
  97. int prom_size;
  98. ResetData *reset_info;
  99. /* Init CPU */
  100. if (!cpu_model) {
  101. cpu_model = "LEON3";
  102. }
  103. cpu = cpu_sparc_init(cpu_model);
  104. if (cpu == NULL) {
  105. fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n");
  106. exit(1);
  107. }
  108. env = &cpu->env;
  109. cpu_sparc_set_id(env, 0);
  110. /* Reset data */
  111. reset_info = g_malloc0(sizeof(ResetData));
  112. reset_info->cpu = cpu;
  113. qemu_register_reset(main_cpu_reset, reset_info);
  114. /* Allocate IRQ manager */
  115. grlib_irqmp_create(0x80000200, env, &cpu_irqs, MAX_PILS, &leon3_set_pil_in);
  116. env->qemu_irq_ack = leon3_irq_manager;
  117. /* Allocate RAM */
  118. if ((uint64_t)ram_size > (1UL << 30)) {
  119. fprintf(stderr,
  120. "qemu: Too much memory for this machine: %d, maximum 1G\n",
  121. (unsigned int)(ram_size / (1024 * 1024)));
  122. exit(1);
  123. }
  124. memory_region_init_ram(ram, "leon3.ram", ram_size);
  125. vmstate_register_ram_global(ram);
  126. memory_region_add_subregion(address_space_mem, 0x40000000, ram);
  127. /* Allocate BIOS */
  128. prom_size = 8 * 1024 * 1024; /* 8Mb */
  129. memory_region_init_ram(prom, "Leon3.bios", prom_size);
  130. vmstate_register_ram_global(prom);
  131. memory_region_set_readonly(prom, true);
  132. memory_region_add_subregion(address_space_mem, 0x00000000, prom);
  133. /* Load boot prom */
  134. if (bios_name == NULL) {
  135. bios_name = PROM_FILENAME;
  136. }
  137. filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
  138. bios_size = get_image_size(filename);
  139. if (bios_size > prom_size) {
  140. fprintf(stderr, "qemu: could not load prom '%s': file too big\n",
  141. filename);
  142. exit(1);
  143. }
  144. if (bios_size > 0) {
  145. ret = load_image_targphys(filename, 0x00000000, bios_size);
  146. if (ret < 0 || ret > prom_size) {
  147. fprintf(stderr, "qemu: could not load prom '%s'\n", filename);
  148. exit(1);
  149. }
  150. } else if (kernel_filename == NULL) {
  151. fprintf(stderr, "Can't read bios image %s\n", filename);
  152. exit(1);
  153. }
  154. /* Can directly load an application. */
  155. if (kernel_filename != NULL) {
  156. long kernel_size;
  157. uint64_t entry;
  158. kernel_size = load_elf(kernel_filename, NULL, NULL, &entry, NULL, NULL,
  159. 1 /* big endian */, ELF_MACHINE, 0);
  160. if (kernel_size < 0) {
  161. fprintf(stderr, "qemu: could not load kernel '%s'\n",
  162. kernel_filename);
  163. exit(1);
  164. }
  165. if (bios_size <= 0) {
  166. /* If there is no bios/monitor, start the application. */
  167. env->pc = entry;
  168. env->npc = entry + 4;
  169. reset_info->entry = entry;
  170. }
  171. }
  172. /* Allocate timers */
  173. grlib_gptimer_create(0x80000300, 2, CPU_CLK, cpu_irqs, 6);
  174. /* Allocate uart */
  175. if (serial_hds[0]) {
  176. grlib_apbuart_create(0x80000100, serial_hds[0], cpu_irqs[3]);
  177. }
  178. }
  179. QEMUMachine leon3_generic_machine = {
  180. .name = "leon3_generic",
  181. .desc = "Leon-3 generic",
  182. .init = leon3_generic_hw_init,
  183. .use_scsi = 0,
  184. };
  185. static void leon3_machine_init(void)
  186. {
  187. qemu_register_machine(&leon3_generic_machine);
  188. }
  189. machine_init(leon3_machine_init);