1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/* This file is part of the program psim.
Copyright (C) 1994-1996, Andrew Cagney <cagney@highland.com.au>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _OS_EMUL_C_
#define _OS_EMUL_C_
#include "cpu.h"
#include "idecode.h"
#include "os_emul.h"
#include "emul_generic.h"
#include "emul_netbsd.h"
#include "emul_unix.h"
#include "emul_chirp.h"
#include "emul_bugapi.h"
static const os_emul *(os_emulations[]) = {
&emul_chirp,
&emul_bugapi,
&emul_netbsd,
&emul_solaris,
&emul_linux,
0
};
INLINE_OS_EMUL\
(os_emul *)
os_emul_create(const char *file_name,
device *root)
{
const char *emulation_name = NULL;
bfd *image;
os_emul *chosen_emulation = NULL;
bfd_init(); /* would never hurt */
/* open the file */
image = bfd_openr(file_name, NULL);
if (image == NULL) {
bfd_perror(file_name);
error("nothing loaded\n");
}
/* check it is an executable */
if (!bfd_check_format(image, bfd_object)) {
TRACE(trace_tbd,
("FIXME - should check more than just bfd_check_format\n"));
TRACE(trace_os_emul,
("%s not an executable, assumeing a device file\n", file_name));
bfd_close(image);
image = NULL;
}
/* if a device file, load that before trying the emulations on */
if (image == NULL) {
psim_merge_device_file(root, file_name);
}
/* see if the device tree already specifies the required emulation */
if (tree_find_property(root, "/openprom/options/os-emul") != NULL)
emulation_name =
tree_find_string_property(root, "/openprom/options/os-emul");
else
emulation_name = NULL;
/* go through each emulation to see if they reconize it. FIXME -
should have some sort of imported table from a separate file */
{
os_emul_data *emul_data;
const os_emul **possible_emulation;
chosen_emulation = NULL;
for (possible_emulation = os_emulations, emul_data = NULL;
*possible_emulation != NULL && emul_data == NULL;
possible_emulation++) {
emul_data = (*possible_emulation)->create(root,
image,
emulation_name);
if (emul_data != NULL) {
chosen_emulation = ZALLOC(os_emul);
*chosen_emulation = **possible_emulation;
chosen_emulation->data = emul_data;
}
}
}
/* clean up */
if (image != NULL)
bfd_close(image);
return chosen_emulation;
}
INLINE_OS_EMUL\
(void)
os_emul_init(os_emul *emulation,
int nr_cpus)
{
if (emulation != (os_emul*)0)
emulation->init(emulation->data, nr_cpus);
}
INLINE_OS_EMUL\
(void)
os_emul_system_call(cpu *processor,
unsigned_word cia)
{
os_emul *emulation = cpu_os_emulation(processor);
if (emulation != (os_emul*)0 && emulation->system_call != 0)
emulation->system_call(processor, cia, emulation->data);
else
error("System call emulation not available\n");
}
INLINE_OS_EMUL\
(int)
os_emul_instruction_call(cpu *processor,
unsigned_word cia,
unsigned_word ra)
{
os_emul *emulation = cpu_os_emulation(processor);
if (emulation != (os_emul*)0 && emulation->instruction_call != 0)
return emulation->instruction_call(processor, cia, ra, emulation->data);
else
return 0;
}
#endif /* _OS_EMUL_C_ */
|