leon3.c 6.4 KB

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