/[gxemul]/trunk/src/devices/dev_gt.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_gt.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 14 - (show annotations)
Mon Oct 8 16:18:51 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: text/plain
File size: 6794 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.982 2005/10/07 22:45:32 debug Exp $
20050816	Some success in decoding the way the SGI O2 PROM draws graphics
		during bootup; lines/rectangles and bitmaps work, enough to
		show the bootlogo etc. :-)
		Adding more PPC instructions, and (dummy) BAT registers.
20050817	Updating the pckbc to support scancode type 3 keyboards
		(required in order to interact with the SGI O2 PROM).
		Adding more PPC instructions.
20050818	Adding more ARM instructions; general register forms.
		Importing armreg.h from NetBSD (ARM cpu ids). Adding a (dummy)
		CATS machine mode (using SA110 as the default CPU).
		Continuing on general dyntrans related stuff.
20050819	Register forms for ARM load/stores. Gaah! The Compaq C Compiler
		bug is triggered for ARM loads as well, not just PPC :-(
		Adding full support for ARM PC-relative load/stores, and load/
		stores where the PC register is the destination register.
		Adding support for ARM a.out binaries.
20050820	Continuing to add more ARM instructions, and correcting some
		bugs. Continuing on CATS emulation.
		More work on the PPC stuff.
20050821	Minor PPC and ARM updates. Adding more machine types.
20050822	All ARM "data processing instructions" are now generated
		automatically.
20050824	Beginning the work on the ARM system control coprocessor.
		Adding support for ARM halfword load/stores, and signed loads.
20050825	Fixing an important bug related to the ARM condition codes.
		OpenBSD/zaurus and NetBSD/netwinder now print some boot
		messages. :)
		Adding a dummy SH (Hitachi SuperH) cpu family.
		Beginning to add some ARM virtual address translation.
		MIPS bugfixes: unaligned PC now cause an ADEL exception (at
		least for non-bintrans execution), and ADEL/ADES (not
		TLBL/TLBS) are used if userland tries to access kernel space.
		(Thanks to Joshua Wise for making me aware of these bugs.)
20050827	More work on the ARM emulation, and various other updates.
20050828	More ARM updates.
		Finally taking the time to work on translation invalidation
		(i.e. invalidating translated code mappings when memory is
		written to). Hopefully this doesn't break anything.
20050829	Moving CPU related files from src/ to a new subdir, src/cpus/.
		Moving PROM emulation stuff from src/ to src/promemul/.
		Better debug instruction trace for ARM loads and stores.
20050830	Various ARM updates (correcting CMP flag calculation, etc).
20050831	PPC instruction updates. (Flag fixes, etc.)
20050901	Various minor PPC and ARM instruction emulation updates.
		Minor OpenFirmware emulation updates.
20050903	Adding support for adding arbitrary ARM coprocessors (with
		the i80321 I/O coprocessor as a first test).
		Various other ARM and PPC updates.
20050904	Adding some SHcompact disassembly routines.
20050907	(Re)adding a dummy HPPA CPU module, and a dummy i960 module.
20050908	Began hacking on some Apple Partition Table support.
20050909	Adding support for loading Mach-O (Darwin PPC) binaries.
20050910	Fixing an ARM bug (Carry flag was incorrectly updated for some
		data processing instructions); OpenBSD/cats and NetBSD/
		netwinder get quite a bit further now.
		Applying a patch to dev_wdc, and a one-liner to dev_pcic, to
		make them work better when emulating new versions of OpenBSD.
		(Thanks to Alexander Yurchenko for the patches.)
		Also doing some other minor updates to dev_wdc. (Some cleanup,
		and finally converting to devinit, etc.)
20050912	IRIX doesn't have u_int64_t by default (noticed by Andreas
		<avr@gnulinux.nl>); configure updated to reflect this.
		Working on ARM register bank switching, CPSR vs SPSR issues,
		and beginning the work on interrupt/exception support.
20050913	Various minor ARM updates (speeding up load/store multiple,
		and fixing a ROR bug in R(); NetBSD/cats now boots as far as
		OpenBSD/cats).
20050917	Adding a dummy Atmel AVR (8-bit) cpu family skeleton.
20050918	Various minor updates.
20050919	Symbols are now loaded from Mach-O executables.
		Continuing the work on adding ARM exception support.
20050920	More work on ARM stuff: OpenBSD/cats and NetBSD/cats reach
		userland! :-)
20050921	Some more progress on ARM interrupt specifics.
20050923	Fixing linesize for VR4121 (patch by Yurchenko). Also fixing
		linesizes/cachesizes for some other VR4xxx.
		Adding a dummy Acer Labs M1543 PCI-ISA bridge (for CATS) and a
		dummy Symphony Labs 83C553 bridge (for Netwinder), usable by 
		dev_footbridge.
20050924	Some PPC progress.
20050925	More PPC progress.
20050926	PPC progress (fixing some bugs etc); Darwin's kernel gets
		slightly further than before.
20050928	Various updates: footbridge/ISA/pciide stuff, and finally
		fixing the VGA text scroll-by-changing-the-base-offset bug.
20050930	Adding a dummy S3 ViRGE pci card for CATS emulation, which
		both NetBSD and OpenBSD detects as VGA.
		Continuing on Footbridge (timers, ISA interrupt stuff).
20051001	Continuing... there are still bugs, probably interrupt-
		related.
20051002	More work on the Footbridge (interrupt stuff).
20051003	Various minor updates. (Trying to find the bug(s).)
20051004	Continuing on the ARM stuff.
20051005	More ARM-related fixes.
20051007	FINALLY! Found and fixed 2 ARM bugs: 1 memory related, and the
		other was because of an error in the ARM manual (load multiple
		with the S-bit set should _NOT_ load usermode registers, as the
		manual says, but it should load saved registers, which may or
		may not happen to be usermode registers).
		NetBSD/cats and OpenBSD/cats seem to install fine now :-)
		except for a minor bug at the end of the OpenBSD/cats install.
		Updating the documentation, preparing for the next release.
20051008	Continuing with release testing and cleanup.

1 /*
2 * Copyright (C) 2003-2005 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_gt.c,v 1.27 2005/09/21 19:10:34 debug Exp $
29 *
30 * Galileo Technology GT-64xxx PCI controller.
31 *
32 * GT-64011 Used in Cobalt machines.
33 * GT-64120 Used in evbmips machines (Malta).
34 *
35 * TODO: This more or less just a dummy device, so far. It happens to work
36 * with NetBSD/cobalt and /evbmips, and in some cases it might happen
37 * to work with Linux as well, but don't rely on it for anything else.
38 */
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43
44 #include "bus_pci.h"
45 #include "cpu.h"
46 #include "devices.h"
47 #include "machine.h"
48 #include "memory.h"
49 #include "misc.h"
50
51
52 #define TICK_SHIFT 14
53
54 /* #define debug fatal */
55
56 #define PCI_VENDOR_GALILEO 0x11ab /* Galileo Technology */
57 #define PCI_PRODUCT_GALILEO_GT64011 0x4146 /* GT-64011 System Controller */
58 #define PCI_PRODUCT_GALILEO_GT64120 0x4620 /* GT-64120 */
59
60 struct gt_data {
61 int irqnr;
62 int pciirq;
63 int type;
64
65 struct pci_data *pci_data;
66 };
67
68
69 /*
70 * dev_gt_tick():
71 */
72 void dev_gt_tick(struct cpu *cpu, void *extra)
73 {
74 struct gt_data *gt_data = extra;
75
76 cpu_interrupt(cpu, gt_data->irqnr);
77 }
78
79
80 /*
81 * dev_gt_access():
82 */
83 int dev_gt_access(struct cpu *cpu, struct memory *mem, uint64_t relative_addr,
84 unsigned char *data, size_t len, int writeflag, void *extra)
85 {
86 uint64_t idata = 0, odata = 0;
87 int i, asserted;
88 struct gt_data *d = extra;
89
90 idata = memory_readmax64(cpu, data, len);
91
92 switch (relative_addr) {
93
94 case 0x48:
95 switch (d->type) {
96 case PCI_PRODUCT_GALILEO_GT64120:
97 /*
98 * This is needed for Linux on Malta, according
99 * to Alec Voropay. (TODO: Remove this hack when
100 * things have stabilized.)
101 */
102 if (writeflag == MEM_READ) {
103 odata = 0x18000000 >> 21;
104 debug("[ gt: read from 0x48: 0x%08x ]\n",
105 (int)odata);
106 }
107 break;
108 default:
109 fatal("[ gt: access to 0x48? (type %i) ]\n", d->type);
110 }
111 break;
112
113 case 0xc18:
114 if (writeflag == MEM_WRITE) {
115 debug("[ gt: write to 0xc18: 0x%08x ]\n", (int)idata);
116 return 1;
117 } else {
118 odata = 0xffffffffULL;
119 /* ??? interrupt something... */
120
121 /*
122 * TODO: Remove this hack when things have stabilized.
123 */
124 odata = 0x00000100; /* netbsd/cobalt cobalt/machdep.c:cpu_intr() */
125
126 cpu_interrupt_ack(cpu, d->irqnr);
127
128 debug("[ gt: read from 0xc18 (0x%08x) ]\n", (int)odata);
129 }
130 break;
131
132 case 0xc34: /* GT_PCI0_INTR_ACK */
133 /*
134 * Ugly hack, which works for at least evbmips/Malta:
135 */
136 asserted =
137 (cpu->machine->isa_pic_data.pic1->irr &
138 ~cpu->machine->isa_pic_data.pic1->ier) |
139 ((cpu->machine->isa_pic_data.pic2->irr &
140 ~cpu->machine->isa_pic_data.pic2->ier) << 8);
141 odata = 7; /* "Spurious interrupt" defaults to 7. */
142 for (i=0; i<16; i++)
143 if ((asserted >> i) & 1) {
144 odata = i;
145 break;
146 }
147 break;
148
149 case 0xcf8: /* PCI ADDR */
150 case 0xcfc: /* PCI DATA */
151 if (writeflag == MEM_WRITE) {
152 bus_pci_access(cpu, mem, relative_addr, &idata,
153 writeflag, d->pci_data);
154 } else {
155 bus_pci_access(cpu, mem, relative_addr, &odata,
156 writeflag, d->pci_data);
157 }
158 break;
159 default:
160 if (writeflag==MEM_READ) {
161 debug("[ gt: read from addr 0x%x ]\n",
162 (int)relative_addr);
163 } else {
164 debug("[ gt: write to addr 0x%x:", (int)relative_addr);
165 for (i=0; i<len; i++)
166 debug(" %02x", data[i]);
167 debug(" ]\n");
168 }
169 }
170
171 if (writeflag == MEM_READ)
172 memory_writemax64(cpu, data, len, odata);
173
174 return 1;
175 }
176
177
178 /*
179 * pci_gt_rr_011():
180 */
181 static uint32_t pci_gt_rr_011(int reg)
182 {
183 switch (reg) {
184 case 0x00:
185 return PCI_VENDOR_GALILEO + (PCI_PRODUCT_GALILEO_GT64011 << 16);
186 case 0x08:
187 return 0x06000001; /* Revision 1 */
188 default:
189 return 0;
190 }
191 }
192
193
194 /*
195 * pci_gt_rr_120():
196 */
197 static uint32_t pci_gt_rr_120(int reg)
198 {
199 switch (reg) {
200 case 0x00:
201 return PCI_VENDOR_GALILEO + (PCI_PRODUCT_GALILEO_GT64120 << 16);
202 case 0x08:
203 return 0x06000002; /* Revision 2? */
204 default:
205 return 0;
206 }
207 }
208
209
210 /*
211 * pci_gt_init():
212 */
213 void pci_gt_init(struct machine *machine, struct memory *mem)
214 {
215 }
216
217
218 /*
219 * dev_gt_init():
220 *
221 * Initialize a GT device. Return a pointer to the pci_data used, so that
222 * the caller may add PCI devices. First, however, we add the GT device
223 * itself.
224 */
225 struct pci_data *dev_gt_init(struct machine *machine, struct memory *mem,
226 uint64_t baseaddr, int irq_nr, int pciirq, int type)
227 {
228 struct gt_data *d;
229
230 d = malloc(sizeof(struct gt_data));
231 if (d == NULL) {
232 fprintf(stderr, "out of memory\n");
233 exit(1);
234 }
235 memset(d, 0, sizeof(struct gt_data));
236 d->irqnr = irq_nr;
237 d->pciirq = pciirq;
238 d->pci_data = bus_pci_init(pciirq);
239
240 switch (type) {
241 case 11:
242 d->type = PCI_PRODUCT_GALILEO_GT64011;
243 break;
244 case 120:
245 d->type = PCI_PRODUCT_GALILEO_GT64120;
246 break;
247 default:fatal("dev_gt_init(): type must be 11 or 120.\n");
248 exit(1);
249 }
250
251 /*
252 * According to NetBSD/cobalt:
253 * pchb0 at pci0 dev 0 function 0: Galileo GT-64011
254 * System Controller, rev 1
255 */
256 bus_pci_add(machine, d->pci_data, mem, 0, 0, 0, pci_gt_init,
257 d->type == PCI_PRODUCT_GALILEO_GT64011?
258 pci_gt_rr_011 : pci_gt_rr_120);
259
260 memory_device_register(mem, "gt", baseaddr, DEV_GT_LENGTH,
261 dev_gt_access, d, MEM_DEFAULT, NULL);
262 machine_add_tickfunction(machine, dev_gt_tick, d, TICK_SHIFT);
263
264 return d->pci_data;
265 }
266

  ViewVC Help
Powered by ViewVC 1.1.26