Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab. |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions are met: |
| 7 | * * Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * * Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * * Neither the name of the Open Source and Linux Lab nor the |
| 13 | * names of its contributors may be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
| 28 | #include "sysemu.h" |
| 29 | #include "boards.h" |
| 30 | #include "loader.h" |
| 31 | #include "elf.h" |
| 32 | #include "memory.h" |
| 33 | #include "exec-memory.h" |
| 34 | |
| 35 | static uint64_t translate_phys_addr(void *env, uint64_t addr) |
| 36 | { |
| 37 | return cpu_get_phys_page_debug(env, addr); |
| 38 | } |
| 39 | |
Andreas Färber | 11e7bfd | 2012-05-04 19:28:19 +0200 | [diff] [blame] | 40 | static void sim_reset(void *opaque) |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 41 | { |
Andreas Färber | 11e7bfd | 2012-05-04 19:28:19 +0200 | [diff] [blame] | 42 | XtensaCPU *cpu = opaque; |
| 43 | |
| 44 | cpu_reset(CPU(cpu)); |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 45 | } |
| 46 | |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 47 | static void sim_init(ram_addr_t ram_size, |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 48 | const char *boot_device, |
| 49 | const char *kernel_filename, const char *kernel_cmdline, |
| 50 | const char *initrd_filename, const char *cpu_model) |
| 51 | { |
Andreas Färber | 06d2627 | 2012-05-04 19:26:57 +0200 | [diff] [blame] | 52 | XtensaCPU *cpu = NULL; |
Andreas Färber | 5bfcb36 | 2012-03-14 01:38:24 +0100 | [diff] [blame] | 53 | CPUXtensaState *env = NULL; |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 54 | MemoryRegion *ram, *rom; |
| 55 | int n; |
| 56 | |
| 57 | for (n = 0; n < smp_cpus; n++) { |
Andreas Färber | 06d2627 | 2012-05-04 19:26:57 +0200 | [diff] [blame] | 58 | cpu = cpu_xtensa_init(cpu_model); |
| 59 | if (cpu == NULL) { |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 60 | fprintf(stderr, "Unable to find CPU definition\n"); |
| 61 | exit(1); |
| 62 | } |
Andreas Färber | 06d2627 | 2012-05-04 19:26:57 +0200 | [diff] [blame] | 63 | env = &cpu->env; |
| 64 | |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 65 | env->sregs[PRID] = n; |
Andreas Färber | 11e7bfd | 2012-05-04 19:28:19 +0200 | [diff] [blame] | 66 | qemu_register_reset(sim_reset, cpu); |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 67 | /* Need MMU initialized prior to ELF loading, |
| 68 | * so that ELF gets loaded into virtual addresses |
| 69 | */ |
Andreas Färber | 11e7bfd | 2012-05-04 19:28:19 +0200 | [diff] [blame] | 70 | sim_reset(cpu); |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | ram = g_malloc(sizeof(*ram)); |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 74 | memory_region_init_ram(ram, "xtensa.sram", ram_size); |
| 75 | vmstate_register_ram_global(ram); |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 76 | memory_region_add_subregion(get_system_memory(), 0, ram); |
| 77 | |
| 78 | rom = g_malloc(sizeof(*rom)); |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 79 | memory_region_init_ram(rom, "xtensa.rom", 0x1000); |
| 80 | vmstate_register_ram_global(rom); |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 81 | memory_region_add_subregion(get_system_memory(), 0xfe000000, rom); |
| 82 | |
| 83 | if (kernel_filename) { |
| 84 | uint64_t elf_entry; |
| 85 | uint64_t elf_lowaddr; |
| 86 | #ifdef TARGET_WORDS_BIGENDIAN |
| 87 | int success = load_elf(kernel_filename, translate_phys_addr, env, |
| 88 | &elf_entry, &elf_lowaddr, NULL, 1, ELF_MACHINE, 0); |
| 89 | #else |
| 90 | int success = load_elf(kernel_filename, translate_phys_addr, env, |
| 91 | &elf_entry, &elf_lowaddr, NULL, 0, ELF_MACHINE, 0); |
| 92 | #endif |
| 93 | if (success > 0) { |
| 94 | env->pc = elf_entry; |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 99 | static void xtensa_sim_init(ram_addr_t ram_size, |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 100 | const char *boot_device, |
| 101 | const char *kernel_filename, const char *kernel_cmdline, |
| 102 | const char *initrd_filename, const char *cpu_model) |
| 103 | { |
| 104 | if (!cpu_model) { |
Max Filippov | e38077f | 2012-08-08 14:07:14 +0400 | [diff] [blame] | 105 | cpu_model = XTENSA_DEFAULT_CPU_MODEL; |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 106 | } |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 107 | sim_init(ram_size, boot_device, kernel_filename, kernel_cmdline, |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 108 | initrd_filename, cpu_model); |
| 109 | } |
| 110 | |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 111 | static QEMUMachine xtensa_sim_machine = { |
| 112 | .name = "sim", |
Max Filippov | e38077f | 2012-08-08 14:07:14 +0400 | [diff] [blame] | 113 | .desc = "sim machine (" XTENSA_DEFAULT_CPU_MODEL ")", |
Max Filippov | 82e5d46 | 2012-08-09 03:31:38 +0400 | [diff] [blame] | 114 | .is_default = true, |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 115 | .init = xtensa_sim_init, |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 116 | .max_cpus = 4, |
| 117 | }; |
| 118 | |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 119 | static void xtensa_sim_machine_init(void) |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 120 | { |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 121 | qemu_register_machine(&xtensa_sim_machine); |
Max Filippov | 47d05a8 | 2011-09-06 03:55:55 +0400 | [diff] [blame] | 122 | } |
| 123 | |
Max Filippov | 5e40857 | 2011-10-16 02:56:07 +0400 | [diff] [blame] | 124 | machine_init(xtensa_sim_machine_init); |