2
0

leon3.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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 "char/char.h"
  28. #include "sysemu/sysemu.h"
  29. #include "boards.h"
  30. #include "loader.h"
  31. #include "elf.h"
  32. #include "trace.h"
  33. #include "exec/address-spaces.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(QEMUMachineInitArgs *args)
  82. {
  83. ram_addr_t ram_size = args->ram_size;
  84. const char *cpu_model = args->cpu_model;
  85. const char *kernel_filename = args->kernel_filename;
  86. SPARCCPU *cpu;
  87. CPUSPARCState *env;
  88. MemoryRegion *address_space_mem = get_system_memory();
  89. MemoryRegion *ram = g_new(MemoryRegion, 1);
  90. MemoryRegion *prom = g_new(MemoryRegion, 1);
  91. int ret;
  92. char *filename;
  93. qemu_irq *cpu_irqs = NULL;
  94. int bios_size;
  95. int prom_size;
  96. ResetData *reset_info;
  97. /* Init CPU */
  98. if (!cpu_model) {
  99. cpu_model = "LEON3";
  100. }
  101. cpu = cpu_sparc_init(cpu_model);
  102. if (cpu == NULL) {
  103. fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n");
  104. exit(1);
  105. }
  106. env = &cpu->env;
  107. cpu_sparc_set_id(env, 0);
  108. /* Reset data */
  109. reset_info = g_malloc0(sizeof(ResetData));
  110. reset_info->cpu = cpu;
  111. qemu_register_reset(main_cpu_reset, reset_info);
  112. /* Allocate IRQ manager */
  113. grlib_irqmp_create(0x80000200, env, &cpu_irqs, MAX_PILS, &leon3_set_pil_in);
  114. env->qemu_irq_ack = leon3_irq_manager;
  115. /* Allocate RAM */
  116. if ((uint64_t)ram_size > (1UL << 30)) {
  117. fprintf(stderr,
  118. "qemu: Too much memory for this machine: %d, maximum 1G\n",
  119. (unsigned int)(ram_size / (1024 * 1024)));
  120. exit(1);
  121. }
  122. memory_region_init_ram(ram, "leon3.ram", ram_size);
  123. vmstate_register_ram_global(ram);
  124. memory_region_add_subregion(address_space_mem, 0x40000000, ram);
  125. /* Allocate BIOS */
  126. prom_size = 8 * 1024 * 1024; /* 8Mb */
  127. memory_region_init_ram(prom, "Leon3.bios", prom_size);
  128. vmstate_register_ram_global(prom);
  129. memory_region_set_readonly(prom, true);
  130. memory_region_add_subregion(address_space_mem, 0x00000000, prom);
  131. /* Load boot prom */
  132. if (bios_name == NULL) {
  133. bios_name = PROM_FILENAME;
  134. }
  135. filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
  136. bios_size = get_image_size(filename);
  137. if (bios_size > prom_size) {
  138. fprintf(stderr, "qemu: could not load prom '%s': file too big\n",
  139. filename);
  140. exit(1);
  141. }
  142. if (bios_size > 0) {
  143. ret = load_image_targphys(filename, 0x00000000, bios_size);
  144. if (ret < 0 || ret > prom_size) {
  145. fprintf(stderr, "qemu: could not load prom '%s'\n", filename);
  146. exit(1);
  147. }
  148. } else if (kernel_filename == NULL) {
  149. fprintf(stderr, "Can't read bios image %s\n", filename);
  150. exit(1);
  151. }
  152. /* Can directly load an application. */
  153. if (kernel_filename != NULL) {
  154. long kernel_size;
  155. uint64_t entry;
  156. kernel_size = load_elf(kernel_filename, NULL, NULL, &entry, NULL, NULL,
  157. 1 /* big endian */, ELF_MACHINE, 0);
  158. if (kernel_size < 0) {
  159. fprintf(stderr, "qemu: could not load kernel '%s'\n",
  160. kernel_filename);
  161. exit(1);
  162. }
  163. if (bios_size <= 0) {
  164. /* If there is no bios/monitor, start the application. */
  165. env->pc = entry;
  166. env->npc = entry + 4;
  167. reset_info->entry = entry;
  168. }
  169. }
  170. /* Allocate timers */
  171. grlib_gptimer_create(0x80000300, 2, CPU_CLK, cpu_irqs, 6);
  172. /* Allocate uart */
  173. if (serial_hds[0]) {
  174. grlib_apbuart_create(0x80000100, serial_hds[0], cpu_irqs[3]);
  175. }
  176. }
  177. static QEMUMachine leon3_generic_machine = {
  178. .name = "leon3_generic",
  179. .desc = "Leon-3 generic",
  180. .init = leon3_generic_hw_init,
  181. DEFAULT_MACHINE_OPTIONS,
  182. };
  183. static void leon3_machine_init(void)
  184. {
  185. qemu_register_machine(&leon3_generic_machine);
  186. }
  187. machine_init(leon3_machine_init);