2
0

leon3.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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 "qemu-char.h"
  27. #include "sysemu.h"
  28. #include "boards.h"
  29. #include "loader.h"
  30. #include "elf.h"
  31. #include "trace.h"
  32. #include "exec-memory.h"
  33. #include "grlib.h"
  34. /* Default system clock. */
  35. #define CPU_CLK (40 * 1000 * 1000)
  36. #define PROM_FILENAME "u-boot.bin"
  37. #define MAX_PILS 16
  38. typedef struct ResetData {
  39. CPUState *env;
  40. uint32_t entry; /* save kernel entry in case of reset */
  41. } ResetData;
  42. static void main_cpu_reset(void *opaque)
  43. {
  44. ResetData *s = (ResetData *)opaque;
  45. CPUState *env = s->env;
  46. cpu_reset(env);
  47. env->halted = 0;
  48. env->pc = s->entry;
  49. env->npc = s->entry + 4;
  50. }
  51. void leon3_irq_ack(void *irq_manager, int intno)
  52. {
  53. grlib_irqmp_ack((DeviceState *)irq_manager, intno);
  54. }
  55. static void leon3_set_pil_in(void *opaque, uint32_t pil_in)
  56. {
  57. CPUState *env = (CPUState *)opaque;
  58. assert(env != NULL);
  59. env->pil_in = pil_in;
  60. if (env->pil_in && (env->interrupt_index == 0 ||
  61. (env->interrupt_index & ~15) == TT_EXTINT)) {
  62. unsigned int i;
  63. for (i = 15; i > 0; i--) {
  64. if (env->pil_in & (1 << i)) {
  65. int old_interrupt = env->interrupt_index;
  66. env->interrupt_index = TT_EXTINT | i;
  67. if (old_interrupt != env->interrupt_index) {
  68. trace_leon3_set_irq(i);
  69. cpu_interrupt(env, CPU_INTERRUPT_HARD);
  70. }
  71. break;
  72. }
  73. }
  74. } else if (!env->pil_in && (env->interrupt_index & ~15) == TT_EXTINT) {
  75. trace_leon3_reset_irq(env->interrupt_index & 15);
  76. env->interrupt_index = 0;
  77. cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
  78. }
  79. }
  80. static void leon3_generic_hw_init(ram_addr_t ram_size,
  81. const char *boot_device,
  82. const char *kernel_filename,
  83. const char *kernel_cmdline,
  84. const char *initrd_filename,
  85. const char *cpu_model)
  86. {
  87. CPUState *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. env = cpu_init(cpu_model);
  102. if (!env) {
  103. fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n");
  104. exit(1);
  105. }
  106. cpu_sparc_set_id(env, 0);
  107. /* Reset data */
  108. reset_info = g_malloc0(sizeof(ResetData));
  109. reset_info->env = env;
  110. qemu_register_reset(main_cpu_reset, reset_info);
  111. /* Allocate IRQ manager */
  112. grlib_irqmp_create(0x80000200, env, &cpu_irqs, MAX_PILS, &leon3_set_pil_in);
  113. env->qemu_irq_ack = leon3_irq_manager;
  114. /* Allocate RAM */
  115. if ((uint64_t)ram_size > (1UL << 30)) {
  116. fprintf(stderr,
  117. "qemu: Too much memory for this machine: %d, maximum 1G\n",
  118. (unsigned int)(ram_size / (1024 * 1024)));
  119. exit(1);
  120. }
  121. memory_region_init_ram(ram, NULL, "leon3.ram", ram_size);
  122. memory_region_add_subregion(address_space_mem, 0x40000000, ram);
  123. /* Allocate BIOS */
  124. prom_size = 8 * 1024 * 1024; /* 8Mb */
  125. memory_region_init_ram(prom, NULL, "Leon3.bios", prom_size);
  126. memory_region_set_readonly(prom, true);
  127. memory_region_add_subregion(address_space_mem, 0x00000000, prom);
  128. /* Load boot prom */
  129. if (bios_name == NULL) {
  130. bios_name = PROM_FILENAME;
  131. }
  132. filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
  133. bios_size = get_image_size(filename);
  134. if (bios_size > prom_size) {
  135. fprintf(stderr, "qemu: could not load prom '%s': file too big\n",
  136. filename);
  137. exit(1);
  138. }
  139. if (bios_size > 0) {
  140. ret = load_image_targphys(filename, 0x00000000, bios_size);
  141. if (ret < 0 || ret > prom_size) {
  142. fprintf(stderr, "qemu: could not load prom '%s'\n", filename);
  143. exit(1);
  144. }
  145. } else if (kernel_filename == NULL) {
  146. fprintf(stderr, "Can't read bios image %s\n", filename);
  147. exit(1);
  148. }
  149. /* Can directly load an application. */
  150. if (kernel_filename != NULL) {
  151. long kernel_size;
  152. uint64_t entry;
  153. kernel_size = load_elf(kernel_filename, NULL, NULL, &entry, NULL, NULL,
  154. 1 /* big endian */, ELF_MACHINE, 0);
  155. if (kernel_size < 0) {
  156. fprintf(stderr, "qemu: could not load kernel '%s'\n",
  157. kernel_filename);
  158. exit(1);
  159. }
  160. if (bios_size <= 0) {
  161. /* If there is no bios/monitor, start the application. */
  162. env->pc = entry;
  163. env->npc = entry + 4;
  164. reset_info->entry = entry;
  165. }
  166. }
  167. /* Allocate timers */
  168. grlib_gptimer_create(0x80000300, 2, CPU_CLK, cpu_irqs, 6);
  169. /* Allocate uart */
  170. if (serial_hds[0]) {
  171. grlib_apbuart_create(0x80000100, serial_hds[0], cpu_irqs[3]);
  172. }
  173. }
  174. QEMUMachine leon3_generic_machine = {
  175. .name = "leon3_generic",
  176. .desc = "Leon-3 generic",
  177. .init = leon3_generic_hw_init,
  178. .use_scsi = 0,
  179. };
  180. static void leon3_machine_init(void)
  181. {
  182. qemu_register_machine(&leon3_generic_machine);
  183. }
  184. machine_init(leon3_machine_init);