/[gxemul]/trunk/src/promemul/yamon.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/promemul/yamon.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30 - (show annotations)
Mon Oct 8 16:20:40 2007 UTC (16 years, 5 months ago) by dpavlin
File MIME type: text/plain
File size: 3627 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1325 2006/08/15 15:38:37 debug Exp $
20060723	More Transputer instructions (pfix, nfix, opr, mint, ldl, ldlp,
		eqc, rev, ajw, stl, stlf, sthf, sub, ldnl, ldnlp, ldpi, move,
		wcnt, add, bcnt).
		Adding more SPARC instructions (andcc, addcc, bl, rdpr).
		Progress on the igsfb framebuffer used by NetBSD/netwinder.
		Enabling 8-bit fills in dev_fb.
		NetBSD/netwinder 3.0.1 can now run from a disk image :-)
20060724	Cleanup/performance fix for 64-bit virtual translation table
		updates (by removing the "timestamp" stuff). A full NetBSD/pmax
		3.0.1 install for R4400 has dropped from 667 seconds to 584 :)
		Fixing the igsfb "almost vga" color (it is 24-bit, not 18-bit).
		Adding some MIPS instruction combinations (3*lw, and 3*addu).
		The 8048 keyboard now turns off interrupt enable between the
		KBR_ACK and the KBR_RSTDONE, to work better with Linux 2.6.
		Not causing PPC DEC interrupts if PPC_NO_DEC is set for a
		specific CPU; NetBSD/bebox gets slightly further than before.
		Adding some more SPARC instructions: branches, udiv.
20060725	Refreshing dev_pckbc.c a little.
		Cleanups for the SH emulation mode, and adding the first
		"compact" (16-bit) instructions: various simple movs, nop,
		shll, stc, or, ldc.
20060726	Adding dummy "pcn" (AMD PCnet NIC) PCI glue.
20060727	Various cleanups; removing stuff from cpu.h, such as
		running_translated (not really meaningful anymore), and
		page flags (breaking into the debugger clears all translations
		anyway).
		Minor MIPS instruction combination updates.
20060807	Expanding the 3*sw and 3*lw MIPS instruction combinations to
		work with 2* and 4* too, resulting in a minor performance gain.
		Implementing a usleep hack for the RM52xx/MIPS32/MIPS64 "wait"
		instruction (when emulating 1 cpu).
20060808	Experimenting with some more MIPS instruction combinations.
		Implementing support for showing a (hardcoded 12x22) text
		cursor in igsfb.
20060809	Simplifying the NetBSD/evbmips (Malta) install instructions
		somewhat (by using a NetBSD/pmax ramdisk install kernel).
20060812	Experimenting more with the MIPS 'wait' instruction.
		PCI configuration register writes can now be handled, which
		allow PCI IDE controllers to work with NetBSD/Malta 3.0.1 and
		NetBSD/cobalt 3.0.1. (Previously only NetBSD 2.1 worked.)
20060813	Updating dev_gt.c based on numbers from Alec Voropay, to enable
		Linux 2.6 to use PCI on Malta.
		Continuing on Algor interrupt stuff.
20060814	Adding support for routing ISA interrupts to two different
		interrupts, making it possible to run NetBSD/algor :-)
20060814-15	Testing for the release.

==============  RELEASE 0.4.2  ==============


1 /*
2 * Copyright (C) 2005-2006 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: yamon.c,v 1.6 2006/07/26 23:21:48 debug Exp $
29 *
30 * YAMON emulation. (Very basic, only what is needed to get NetBSD booting.)
31 */
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <sys/types.h>
37
38 #include "console.h"
39 #include "cpu.h"
40 #include "cpu_mips.h"
41 #include "machine.h"
42 #include "memory.h"
43 #include "misc.h"
44
45 #ifdef ENABLE_MIPS
46
47 #include "yamon.h"
48
49
50 /*
51 * yamon_emul():
52 *
53 * YAMON emulation (for evbmips).
54 */
55 int yamon_emul(struct cpu *cpu)
56 {
57 uint32_t ofs = (cpu->pc & 0xff) + YAMON_FUNCTION_BASE;
58 uint8_t ch;
59 int n;
60
61 switch (ofs) {
62
63 case YAMON_PRINT_COUNT_OFS:
64 /*
65 * print count:
66 * a1 = string
67 * a2 = count
68 */
69 n = 0;
70 while (n < (int32_t)cpu->cd.mips.gpr[MIPS_GPR_A2]) {
71 cpu->memory_rw(cpu, cpu->mem, (int32_t)cpu->cd.mips.gpr
72 [MIPS_GPR_A1] + n, &ch, sizeof(ch), MEM_READ,
73 CACHE_DATA | NO_EXCEPTIONS);
74 console_putchar(cpu->machine->main_console_handle, ch);
75 n++;
76 }
77 break;
78
79 case YAMON_EXIT_OFS:
80 /*
81 * exit
82 */
83 debug("[ yamon_emul(): exit ]\n");
84 cpu->running = 0;
85 break;
86
87 /* YAMON_FLUSH_CACHE_OFS: TODO */
88 /* YAMON_PRINT_OFS: TODO */
89 /* YAMON_REG_CPU_ISR_OFS: TODO */
90 /* YAMON_DEREG_CPU_ISR_OFS: TODO */
91 /* YAMON_REG_IC_ISR_OFS: TODO */
92 /* YAMON_DEREG_IC_ISR_OFS: TODO */
93 /* YAMON_REG_ESR_OFS: TODO */
94 /* YAMON_DEREG_ESR_OFS: TODO */
95
96 case YAMON_GETCHAR_OFS:
97 n = console_readchar(cpu->machine->main_console_handle);
98 /* Note: -1 (if no char was available) becomes 0xff: */
99 ch = n;
100 cpu->memory_rw(cpu, cpu->mem, (int32_t)cpu->cd.mips.gpr[
101 MIPS_GPR_A1], &ch, sizeof(ch), MEM_WRITE,
102 CACHE_DATA | NO_EXCEPTIONS);
103 break;
104
105 case YAMON_SYSCON_READ_OFS:
106 /*
107 * syscon
108 */
109 fatal("[ yamon_emul(): syscon: TODO ]\n");
110
111 /* TODO. For now, return some kind of "failure": */
112 cpu->cd.mips.gpr[MIPS_GPR_V0] = 1;
113 break;
114
115 default:cpu_register_dump(cpu->machine, cpu, 1, 0);
116 printf("\n");
117 fatal("[ yamon_emul(): unimplemented yamon function 0x%"
118 PRIx32" ]\n", ofs);
119 cpu->running = 0;
120 }
121
122 return 1;
123 }
124
125 #endif /* ENABLE_MIPS */

  ViewVC Help
Powered by ViewVC 1.1.26