/[gxemul]/trunk/src/devices/dev_m8820x.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/src/devices/dev_m8820x.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 44 - (show annotations)
Mon Oct 8 16:22:56 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: text/plain
File size: 6391 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1632 2007/09/11 21:46:35 debug Exp $
20070616	Implementing the MIPS32/64 revision 2 "ror" instruction.
20070617	Adding a struct for each physpage which keeps track of which
		ranges within that page (base offset, length) that are
		continuously translatable. When running with native code
		generation enabled (-b), a range is added after each read-
		ahead loop.
		Experimenting with using the physical program counter sample
		data (implemented 20070608) together with the "translatable
		range" information, to figure out which physical address ranges
		would be worth translating to native code (if the number of
		samples falling within a range is above a certain threshold).
20070618	Adding automagic building of .index comment files for
		src/file/, src/promemul/, src src/useremul/ as well.
		Adding a "has been translated" bit to the ranges, so that only
		not-yet-translated ranges will be sampled.
20070619	Moving src/cpu.c and src/memory_rw.c into src/cpus/,
		src/device.c into src/devices/, and src/machine.c into
		src/machines/.
		Creating a skeleton cc/ld native backend module; beginning on
		the function which will detect cc command line, etc.
20070620	Continuing on the native code generation infrastructure.
20070621	Moving src/x11.c and src/console.c into a new src/console/
		subdir (for everything that is console or framebuffer related).
		Moving src/symbol*.c into a new src/symbol/, which should
		contain anything that is symbol handling related.
20070624	Making the program counter sampling threshold a "settings
		variable" (sampling_threshold), i.e. it can now be changed
		during runtime.
		Switching the RELEASE notes format from plain text to HTML.
		If the TMPDIR environment variable is set, it is used instead
		of "/tmp" for temporary files.
		Continuing on the cc/ld backend: simple .c code is generated,
		the compiler and linker are called, etc.
		Adding detection of host architecture to the configure script
		(again), and adding icache invalidation support (only
		implemented for Alpha hosts so far).
20070625	Simplifying the program counter sampling mechanism.
20070626	Removing the cc/ld native code generation stuff, program
		counter sampling, etc; it would not have worked well in the
		general case.
20070627	Removing everything related to native code generation.
20070629	Removing the (practically unusable) support for multiple
		emulations. (The single emulation allowed now still supports
		multiple simultaneous machines, as before.)
		Beginning on PCCTWO and M88K interrupts.
20070723	Adding a dummy skeleton for emulation of M32R processors.
20070901	Fixing a warning found by "gcc version 4.3.0 20070817
		(experimental)" on amd64.
20070905	Removing some more traces of the old "multiple emulations"
		code.
		Also looking in /usr/local/include and /usr/local/lib for
		X11 libs, when running configure.
20070909	Minor updates to the guest OS install instructions, in
		preparation for the NetBSD 4.0 release.
20070918	More testing of NetBSD 4.0 RC1.

1 /*
2 * Copyright (C) 2007 Anders Gavare. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. 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 * 3. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 *
28 * $Id: dev_m8820x.c,v 1.9 2007/06/19 03:38:10 debug Exp $
29 *
30 * COMMENT: M88200/M88204 CMMU (Cache/Memory Management Unit)
31 */
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36
37 #include "cpu.h"
38 #include "device.h"
39 #include "emul.h"
40 #include "machine.h"
41 #include "memory.h"
42 #include "misc.h"
43
44
45 #include "m8820x.h"
46 #include "m8820x_pte.h"
47
48 struct m8820x_data {
49 int cmmu_nr;
50 };
51
52
53 /*
54 * m8820x_command():
55 *
56 * Handle M8820x commands written to the System Command Register.
57 */
58 static void m8820x_command(struct cpu *cpu, struct m8820x_data *d)
59 {
60 uint32_t *regs = cpu->cd.m88k.cmmu[d->cmmu_nr]->reg;
61 int cmd = regs[CMMU_SCR];
62 uint32_t sar = regs[CMMU_SAR];
63 size_t i;
64 uint32_t super, all;
65
66 switch (cmd) {
67
68 case CMMU_FLUSH_CACHE_CB_LINE:
69 case CMMU_FLUSH_CACHE_INV_LINE:
70 case CMMU_FLUSH_CACHE_INV_ALL:
71 case CMMU_FLUSH_CACHE_CBI_LINE:
72 case CMMU_FLUSH_CACHE_CBI_PAGE:
73 case CMMU_FLUSH_CACHE_CBI_SEGMENT:
74 case CMMU_FLUSH_CACHE_CBI_ALL:
75 /* TODO */
76 break;
77
78 case CMMU_FLUSH_USER_ALL:
79 case CMMU_FLUSH_USER_PAGE:
80 case CMMU_FLUSH_SUPER_ALL:
81 case CMMU_FLUSH_SUPER_PAGE:
82 /* TODO: Segment invalidation. */
83
84 all = super = 0;
85 if (cmd == CMMU_FLUSH_USER_ALL ||
86 cmd == CMMU_FLUSH_SUPER_ALL)
87 all = 1;
88 if (cmd == CMMU_FLUSH_SUPER_ALL ||
89 cmd == CMMU_FLUSH_SUPER_PAGE)
90 super = M8820X_PATC_SUPERVISOR_BIT;
91
92 /* TODO: Don't invalidate EVERYTHING like this! */
93 cpu->invalidate_translation_caches(cpu, 0, INVALIDATE_ALL);
94
95 for (i=0; i<N_M88200_PATC_ENTRIES; i++) {
96 uint32_t v = cpu->cd.m88k.cmmu[d->cmmu_nr]
97 ->patc_v_and_control[i];
98 uint32_t p = cpu->cd.m88k.cmmu[d->cmmu_nr]
99 ->patc_p_and_supervisorbit[i];
100
101 /* Already invalid? Then skip this entry. */
102 if (!(v & PG_V))
103 continue;
104
105 /* Super/user mismatch? Then skip the entry. */
106 if ((p & M8820X_PATC_SUPERVISOR_BIT) != super)
107 continue;
108
109 /* If not all pages are to be invalidated, there
110 must be a virtual address match: */
111 if (!all && (sar & 0xfffff000) != (v & 0xfffff000))
112 continue;
113
114 /* Finally, invalidate the entry: */
115 cpu->cd.m88k.cmmu[d->cmmu_nr]->patc_v_and_control[i]
116 = v & ~PG_V;
117 }
118
119 break;
120
121 default:
122 fatal("[ m8820x_command: FATAL ERROR! unimplemented "
123 "command 0x%02x ]\n", cmd);
124 exit(1);
125 }
126 }
127
128
129 DEVICE_ACCESS(m8820x)
130 {
131 uint64_t idata = 0, odata = 0;
132 struct m8820x_data *d = extra;
133 uint32_t *regs = cpu->cd.m88k.cmmu[d->cmmu_nr]->reg;
134 uint32_t *batc = cpu->cd.m88k.cmmu[d->cmmu_nr]->batc;
135
136 if (writeflag == MEM_WRITE)
137 idata = memory_readmax64(cpu, data, len);
138
139 if (writeflag == MEM_READ)
140 odata = regs[relative_addr / sizeof(uint32_t)];
141
142 switch (relative_addr / sizeof(uint32_t)) {
143
144 case CMMU_IDR:
145 if (writeflag == MEM_WRITE) {
146 fatal("m8820x: write to CMMU_IDR: TODO\n");
147 exit(1);
148 }
149 break;
150
151 case CMMU_SCR:
152 if (writeflag == MEM_READ) {
153 fatal("m8820x: read from CMMU_SCR: TODO\n");
154 exit(1);
155 } else {
156 regs[relative_addr / sizeof(uint32_t)] = idata;
157 m8820x_command(cpu, d);
158 }
159 break;
160
161 case CMMU_SSR:
162 if (writeflag == MEM_WRITE) {
163 fatal("m8820x: write to CMMU_SSR: TODO\n");
164 exit(1);
165 }
166 break;
167
168 case CMMU_PFSR:
169 case CMMU_PFAR:
170 case CMMU_SAR:
171 case CMMU_SCTR:
172 case CMMU_SAPR: /* TODO: Invalidate something for */
173 case CMMU_UAPR: /* SAPR and UAPR writes? */
174 /* TODO: Don't invalidate everything. */
175 cpu->invalidate_translation_caches(cpu, 0, INVALIDATE_ALL);
176 if (writeflag == MEM_WRITE)
177 regs[relative_addr / sizeof(uint32_t)] = idata;
178 break;
179
180 case CMMU_BWP0:
181 case CMMU_BWP1:
182 case CMMU_BWP2:
183 case CMMU_BWP3:
184 case CMMU_BWP4:
185 case CMMU_BWP5:
186 case CMMU_BWP6:
187 case CMMU_BWP7:
188 if (writeflag == MEM_WRITE) {
189 uint32_t old;
190
191 regs[relative_addr / sizeof(uint32_t)] = idata;
192
193 /* Also write to the specific batc registers: */
194 old = batc[(relative_addr / sizeof(uint32_t))
195 - CMMU_BWP0];
196 batc[(relative_addr / sizeof(uint32_t)) - CMMU_BWP0]
197 = idata;
198 if (old != idata) {
199 /* TODO: Don't invalidate everything? */
200 cpu->invalidate_translation_caches(
201 cpu, 0, INVALIDATE_ALL);
202 }
203 }
204 break;
205
206 case CMMU_CSSP0:
207 /* TODO: Actually care about cache details. */
208 break;
209
210 default:fatal("[ m8820x: unimplemented %s offset 0x%x",
211 writeflag == MEM_WRITE? "write to" : "read from",
212 (int) relative_addr);
213 if (writeflag == MEM_WRITE)
214 fatal(": 0x%x", (int)idata);
215 fatal(" ]\n");
216 exit(1);
217 }
218
219 if (writeflag == MEM_READ)
220 memory_writemax64(cpu, data, len, odata);
221
222 return 1;
223 }
224
225
226 DEVINIT(m8820x)
227 {
228 struct m8820x_data *d;
229
230 CHECK_ALLOCATION(d = malloc(sizeof(struct m8820x_data)));
231 memset(d, 0, sizeof(struct m8820x_data));
232
233 d->cmmu_nr = devinit->addr2;
234
235 memory_device_register(devinit->machine->memory, devinit->name,
236 devinit->addr, M8820X_LENGTH, dev_m8820x_access, (void *)d,
237 DM_DEFAULT, NULL);
238
239 return 1;
240 }
241

  ViewVC Help
Powered by ViewVC 1.1.26