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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
/*
* $Id: cpu_intel_80386_interpreter.c,v 1.18 2009-10-26 10:54:02 sand Exp $
*
* Copyright (C) 2008-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "glue-main.h"
#include "cpu_intel_80386_interpreter.h"
struct cpssp {
/* Config */
/* Ports */
struct sig_host_bus_main *host_bus_main;
/* Signals */
/* State */
int state_power;
int state_n_reset;
int state_n_init;
/* Processes */
struct process process;
};
static void
cpu_mr(void * _cpssp, uint32_t addr, unsigned int bs, uint32_t *valp)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
*valp = -1;
if (sig_host_bus_mr(cpssp->host_bus_main, cpssp, 0, addr, bs, valp) != 0) {
sig_host_bus_type_addr(cpssp->host_bus_main, cpssp,
SIG_HOST_BUS_MR, addr);
/* delay... */
sig_host_bus_read_data(cpssp->host_bus_main, cpssp,
bs, valp);
}
}
static void
cpu_mw(void * _cpssp, uint32_t addr, unsigned int bs, uint32_t val)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (sig_host_bus_mw(cpssp->host_bus_main, cpssp, 0, addr, bs, val) != 0) {
sig_host_bus_type_addr(cpssp->host_bus_main, cpssp,
SIG_HOST_BUS_MW, addr);
/* delay... */
sig_host_bus_write_data(cpssp->host_bus_main, cpssp,
bs, val);
}
}
static void
cpu_ior(void * _cpssp, uint32_t port, unsigned int bs, uint32_t *valp)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
*valp = -1;
if (sig_host_bus_ior(cpssp->host_bus_main, cpssp, port, bs, valp) != 0) {
sig_host_bus_type_addr(cpssp->host_bus_main, cpssp,
SIG_HOST_BUS_IOR, port);
/* delay... */
sig_host_bus_read_data(cpssp->host_bus_main, cpssp,
bs, valp);
}
}
static void
cpu_iow(void * _cpssp, uint32_t port, unsigned int bs, uint32_t val)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (sig_host_bus_iow(cpssp->host_bus_main, cpssp, port, bs, val) != 0) {
sig_host_bus_type_addr(cpssp->host_bus_main, cpssp,
SIG_HOST_BUS_IOW, port);
/* delay... */
sig_host_bus_write_data(cpssp->host_bus_main, cpssp,
bs, val);
}
}
uint8_t
irq_get(void * _cpssp)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
uint8_t vector;
int ret;
ret = sig_host_bus_inta_addr(cpssp->host_bus_main, cpssp);
assert(!ret);
ret = sig_host_bus_inta_data(cpssp->host_bus_main, cpssp, &vector);
assert(!ret);
return vector;
}
#define INTERPRETER 1
#include "chip_intel_80386_interpreter.c"
#undef INTERPRETER
void __attribute__((__noreturn__))
step(void *_cpssp)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
sched_to_scheduler();
again: ;
while (cpssp->process.inst_cnt < cpssp->process.inst_limit) {
if (! cpssp->state_power) {
cpssp->process.inst_cnt = cpssp->process.inst_limit;
} else if (cpssp->state_n_reset != 3 || cpssp->state_n_init != 3) {
reset();
cpssp->state_n_reset |= 2;
cpssp->state_n_init |= 2;
cpssp->process.inst_cnt = cpssp->process.inst_limit;
} else {
handle_instruction();
cpssp->process.inst_cnt += 1;
}
}
sched_to_scheduler();
goto again;
}
static void
power_set(void *_cpssp, unsigned int val)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
cpssp->state_power = val;
}
static void
n_reset_set(void *_cpssp, unsigned int n_val)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (n_val) {
/* Reset gone. */
cpssp->state_n_reset |= 1;
} else {
/* New reset. */
cpssp->state_n_reset = 0;
}
}
static void
n_init_set(void *_cpssp, unsigned int n_val)
{
struct cpssp * cpssp = (struct cpssp *) _cpssp;
if (n_val) {
/* Init gone. */
cpssp->state_n_init |= 1;
} else {
/* New init. */
cpssp->state_n_init = 0;
}
}
static void
_irq_set(void *_cpssp, unsigned int val)
{
#if 0
struct cpssp * cpssp = (struct cpssp *) _cpssp;
#endif
irq_set(val);
}
static void
_nmi_set(void *_cpssp, unsigned int val)
{
#if 0
struct cpssp * cpssp = (struct cpssp *) _cpssp;
#endif
nmi_set(val);
}
void *
cpu_intel_80386_interpreter_create(
const char *name,
struct sig_manage *port_manage,
struct sig_host_bus *port_conn
)
{
static const struct sig_boolean_or_funcs irq_func = {
.set = _irq_set,
};
static const struct sig_boolean_or_funcs nmi_func = {
.set = _nmi_set,
};
static const struct sig_boolean_funcs power_funcs = {
.set = power_set,
};
static const struct sig_boolean_funcs n_reset_funcs = {
.set = n_reset_set,
};
static const struct sig_boolean_funcs n_init_funcs = {
.set = n_init_set,
};
struct cpssp * cpssp;
cpssp = malloc(sizeof(*cpssp));
assert(cpssp);
memset(cpssp, 0, sizeof(*cpssp));
/* Running a 20MHz CPU - FIXME */
cpssp->process.inst_hz = 20*1000*1000;
cpssp->host_bus_main = port_conn->main;
sig_boolean_or_connect_in(port_conn->lint0, cpssp, &irq_func);
sig_boolean_or_connect_in(port_conn->lint1, cpssp, &nmi_func);
sig_boolean_connect_in(port_conn->power, cpssp, &power_funcs);
sig_boolean_connect_in(port_conn->n_reset, cpssp, &n_reset_funcs);
sig_boolean_connect_in(port_conn->n_init, cpssp, &n_init_funcs);
interpreter_init(cpssp);
sched_process_init(&cpssp->process, step, cpssp);
return cpssp;
}
void
cpu_intel_80386_interpreter_destroy(void *_cpssp)
{
struct cpssp *cpssp = _cpssp;
free(cpssp);
}
|