| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * OpenRISC simulator for use as an IIS. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com> | 
					
						
							|  |  |  |  *                         Feng Gao <gf91597@gmail.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2019-02-13 14:46:50 +01:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:22 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
											  
											
												hw/openrisc: Replace fprintf(stderr, "*\n" with error_report()
Replace a large number of the fprintf(stderr, "*\n" calls with
error_report(). The functions were renamed with these commands and then
compiler issues where manually fixed.
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
Some lines where then manually tweaked to pass checkpatch.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Cc: Jia Liu <proljc@gmail.com>
Cc: Stafford Horne <shorne@gmail.com>
Acked-by: Stafford Horne <shorne@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180203084315.20497-8-armbru@redhat.com>
											
										 
											2018-02-03 09:43:08 +01:00
										 |  |  | #include "qemu/error-report.h"
 | 
					
						
							| 
									
										
											  
											
												include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef.  Since then, we've moved to include qemu/osdep.h
everywhere.  Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h.  That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h.  Include qapi/error.h in .c files that need it and don't
get it now.  Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly.  Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h.  Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third.  Unfortunately, the number depending on
qapi-types.h shrinks only a little.  More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
											
										 
											2016-03-14 09:01:28 +01:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-19 21:51:44 +01:00
										 |  |  | #include "cpu.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:42 +02:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/boards.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | #include "elf.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/char/serial.h"
 | 
					
						
							| 
									
										
										
										
											2012-10-24 08:43:34 +02:00
										 |  |  | #include "net/net.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/loader.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:51 +02:00
										 |  |  | #include "hw/qdev-properties.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:49 +01:00
										 |  |  | #include "exec/address-spaces.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/sysemu.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:04 +01:00
										 |  |  | #include "sysemu/qtest.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:38 +02:00
										 |  |  | #include "sysemu/reset.h"
 | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define KERNEL_LOAD_ADDR 0x100
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  | static struct openrisc_boot_info { | 
					
						
							|  |  |  |     uint32_t bootstrap_pc; | 
					
						
							|  |  |  | } boot_info; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | static void main_cpu_reset(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OpenRISCCPU *cpu = opaque; | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     CPUState *cs = CPU(cpu); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     cpu_reset(CPU(cpu)); | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |     cpu_set_pc(cs, boot_info.bootstrap_pc); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  | static void openrisc_sim_net_init(hwaddr base, hwaddr descriptors, | 
					
						
							|  |  |  |                                   int num_cpus, qemu_irq **cpu_irqs, | 
					
						
							|  |  |  |                                   int irq_pin, NICInfo *nd) | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     DeviceState *dev; | 
					
						
							|  |  |  |     SysBusDevice *s; | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dev = qdev_create(NULL, "open_eth"); | 
					
						
							|  |  |  |     qdev_set_nic_properties(dev, nd); | 
					
						
							|  |  |  |     qdev_init_nofail(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-20 02:47:33 +01:00
										 |  |  |     s = SYS_BUS_DEVICE(dev); | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     for (i = 0; i < num_cpus; i++) { | 
					
						
							|  |  |  |         sysbus_connect_irq(s, 0, cpu_irqs[i][irq_pin]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     sysbus_mmio_map(s, 0, base); | 
					
						
							|  |  |  |     sysbus_mmio_map(s, 1, descriptors); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void openrisc_sim_ompic_init(hwaddr base, int num_cpus, | 
					
						
							|  |  |  |                                     qemu_irq **cpu_irqs, int irq_pin) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceState *dev; | 
					
						
							|  |  |  |     SysBusDevice *s; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dev = qdev_create(NULL, "or1k-ompic"); | 
					
						
							|  |  |  |     qdev_prop_set_uint32(dev, "num-cpus", num_cpus); | 
					
						
							|  |  |  |     qdev_init_nofail(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s = SYS_BUS_DEVICE(dev); | 
					
						
							|  |  |  |     for (i = 0; i < num_cpus; i++) { | 
					
						
							|  |  |  |         sysbus_connect_irq(s, i, cpu_irqs[i][irq_pin]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     sysbus_mmio_map(s, 0, base); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  | static void openrisc_load_kernel(ram_addr_t ram_size, | 
					
						
							|  |  |  |                                  const char *kernel_filename) | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     long kernel_size; | 
					
						
							|  |  |  |     uint64_t elf_entry; | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |     hwaddr entry; | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (kernel_filename && !qtest_enabled()) { | 
					
						
							| 
									
										
										
										
											2019-01-15 12:18:03 +00:00
										 |  |  |         kernel_size = load_elf(kernel_filename, NULL, NULL, NULL, | 
					
						
							| 
									
										
										
										
											2020-01-26 23:55:04 +01:00
										 |  |  |                                &elf_entry, NULL, NULL, NULL, 1, EM_OPENRISC, | 
					
						
							| 
									
										
										
										
											2016-03-04 11:30:21 +00:00
										 |  |  |                                1, 0); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |         entry = elf_entry; | 
					
						
							|  |  |  |         if (kernel_size < 0) { | 
					
						
							|  |  |  |             kernel_size = load_uimage(kernel_filename, | 
					
						
							| 
									
										
										
										
											2014-10-19 07:42:22 +04:00
										 |  |  |                                       &entry, NULL, NULL, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (kernel_size < 0) { | 
					
						
							|  |  |  |             kernel_size = load_image_targphys(kernel_filename, | 
					
						
							|  |  |  |                                               KERNEL_LOAD_ADDR, | 
					
						
							|  |  |  |                                               ram_size - KERNEL_LOAD_ADDR); | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (entry <= 0) { | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |             entry = KERNEL_LOAD_ADDR; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (kernel_size < 0) { | 
					
						
							| 
									
										
											  
											
												hw/openrisc: Replace fprintf(stderr, "*\n" with error_report()
Replace a large number of the fprintf(stderr, "*\n" calls with
error_report(). The functions were renamed with these commands and then
compiler issues where manually fixed.
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
find ./* -type f -exec sed -i \
    'N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
    {} +
Some lines where then manually tweaked to pass checkpatch.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Cc: Jia Liu <proljc@gmail.com>
Cc: Stafford Horne <shorne@gmail.com>
Acked-by: Stafford Horne <shorne@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180203084315.20497-8-armbru@redhat.com>
											
										 
											2018-02-03 09:43:08 +01:00
										 |  |  |             error_report("couldn't load the kernel '%s'", kernel_filename); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |         boot_info.bootstrap_pc = entry; | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  | static void openrisc_sim_init(MachineState *machine) | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  |     ram_addr_t ram_size = machine->ram_size; | 
					
						
							|  |  |  |     const char *kernel_filename = machine->kernel_filename; | 
					
						
							| 
									
										
										
										
											2013-07-23 18:30:09 +08:00
										 |  |  |     OpenRISCCPU *cpu = NULL; | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |     MemoryRegion *ram; | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     qemu_irq *cpu_irqs[2]; | 
					
						
							|  |  |  |     qemu_irq serial_irq; | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |     int n; | 
					
						
							| 
									
										
										
										
											2019-05-19 04:54:27 +08:00
										 |  |  |     unsigned int smp_cpus = machine->smp.cpus; | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (n = 0; n < smp_cpus; n++) { | 
					
						
							| 
									
										
										
										
											2017-10-05 15:50:52 +02:00
										 |  |  |         cpu = OPENRISC_CPU(cpu_create(machine->cpu_type)); | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |         if (cpu == NULL) { | 
					
						
							|  |  |  |             fprintf(stderr, "Unable to find CPU definition!\n"); | 
					
						
							|  |  |  |             exit(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         cpu_openrisc_pic_init(cpu); | 
					
						
							|  |  |  |         cpu_irqs[n] = (qemu_irq *) cpu->env.irq; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         cpu_openrisc_clock_init(cpu); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |         qemu_register_reset(main_cpu_reset, cpu); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ram = g_malloc(sizeof(*ram)); | 
					
						
							| 
									
										
										
										
											2017-07-07 15:42:53 +01:00
										 |  |  |     memory_region_init_ram(ram, NULL, "openrisc.ram", ram_size, &error_fatal); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |     memory_region_add_subregion(get_system_memory(), 0, ram); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     if (nd_table[0].used) { | 
					
						
							|  |  |  |         openrisc_sim_net_init(0x92000000, 0x92000400, smp_cpus, | 
					
						
							|  |  |  |                               cpu_irqs, 4, nd_table); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     if (smp_cpus > 1) { | 
					
						
							|  |  |  |         openrisc_sim_ompic_init(0x98000000, smp_cpus, cpu_irqs, 1); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |         serial_irq = qemu_irq_split(cpu_irqs[0][2], cpu_irqs[1][2]); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         serial_irq = cpu_irqs[0][2]; | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     serial_mm_init(get_system_memory(), 0x90000000, 0, serial_irq, | 
					
						
							| 
									
										
										
										
											2018-04-20 15:52:43 +01:00
										 |  |  |                    115200, serial_hd(0), DEVICE_NATIVE_ENDIAN); | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |     openrisc_load_kernel(ram_size, kernel_filename); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 15:37:08 -03:00
										 |  |  | static void openrisc_sim_machine_init(MachineClass *mc) | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-02-08 15:06:54 -08:00
										 |  |  |     mc->desc = "or1k simulation"; | 
					
						
							| 
									
										
										
										
											2015-09-04 15:37:08 -03:00
										 |  |  |     mc->init = openrisc_sim_init; | 
					
						
							| 
									
										
										
										
											2017-10-21 06:36:58 +09:00
										 |  |  |     mc->max_cpus = 2; | 
					
						
							| 
									
										
										
										
											2015-09-04 15:37:08 -03:00
										 |  |  |     mc->is_default = 1; | 
					
						
							| 
									
										
										
										
											2017-10-05 15:50:52 +02:00
										 |  |  |     mc->default_cpu_type = OPENRISC_CPU_TYPE_NAME("or1200"); | 
					
						
							| 
									
										
										
										
											2012-07-20 15:50:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-08 15:06:54 -08:00
										 |  |  | DEFINE_MACHINE("or1k-sim", openrisc_sim_machine_init) |