/[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 18 - (show annotations)
Mon Oct 8 16:19:11 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: text/plain
File size: 6824 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1004 2005/10/27 14:01:10 debug Exp $
20051011        Passing -A as the default boot arg for CATS (works fine with
                OpenBSD/cats).
20051012	Fixing the VGA cursor offset bug, and speeding up framebuffer
		redraws if character cells contain the same thing as during
		the last redraw.
20051013	Adding a slow strd ARM instruction hack.
20051017	Minor updates: Adding a dummy i80321 Verde controller (for
		XScale emulation), fixing the disassembly of the ARM "ldrd"
		instruction, adding "support" for less-than-4KB pages for ARM
		(by not adding them to translation tables).
20051020	Continuing on some HPCarm stuff. A NetBSD/hpcarm kernel prints
		some boot messages on an emulated Jornada 720.
		Making dev_ram work better with dyntrans (speeds up some things
		quite a bit).
20051021	Automatically generating some of the most common ARM load/store
		multiple instructions.
20051022	Better statistics gathering for the ARM load/store multiple.
		Various other dyntrans and device updates.
20051023	Various minor updates.
20051024	Continuing; minor device and dyntrans fine-tuning. Adding the
		first "reasonable" instruction combination hacks for ARM (the
		cores of NetBSD/cats' memset and memcpy).
20051025	Fixing a dyntrans-related bug in dev_vga. Also changing the
		dyntrans low/high access notification to only be updated on
		writes, not reads. Hopefully it will be enough. (dev_vga in
		charcell mode now seems to work correctly with both reads and
		writes.)
		Experimenting with gathering dyntrans statistics (which parts
		of emulated RAM that are actually executed), and adding
		instruction combination hacks for cache cleaning and a part of
		NetBSD's scanc() function.
20051026	Adding a bitmap for ARM emulation which indicates if a page is
		(specifically) user accessible; loads and stores with the t-
		flag set can now use the translation arrays, which results in
		a measurable speedup.
20051027	Dyntrans updates; adding an extra bitmap array for 32-bit
		emulation modes, speeding up the check whether a physical page
		has any code translations or not (O(n) -> O(1)). Doing a
		similar reduction of O(n) to O(1) by avoiding the scan through
		the translation entries on a translation update (32-bit mode
		only).
		Various other minor hacks.
20051029	Quick release, without any testing at all.

==============  RELEASE 0.3.6.2  ==============


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.28 2005/10/26 14:37:04 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 if (writeflag == MEM_WRITE)
91 idata = memory_readmax64(cpu, data, len);
92
93 switch (relative_addr) {
94
95 case 0x48:
96 switch (d->type) {
97 case PCI_PRODUCT_GALILEO_GT64120:
98 /*
99 * This is needed for Linux on Malta, according
100 * to Alec Voropay. (TODO: Remove this hack when
101 * things have stabilized.)
102 */
103 if (writeflag == MEM_READ) {
104 odata = 0x18000000 >> 21;
105 debug("[ gt: read from 0x48: 0x%08x ]\n",
106 (int)odata);
107 }
108 break;
109 default:
110 fatal("[ gt: access to 0x48? (type %i) ]\n", d->type);
111 }
112 break;
113
114 case 0xc18:
115 if (writeflag == MEM_WRITE) {
116 debug("[ gt: write to 0xc18: 0x%08x ]\n", (int)idata);
117 return 1;
118 } else {
119 odata = 0xffffffffULL;
120 /* ??? interrupt something... */
121
122 /*
123 * TODO: Remove this hack when things have stabilized.
124 */
125 odata = 0x00000100; /* netbsd/cobalt cobalt/machdep.c:cpu_intr() */
126
127 cpu_interrupt_ack(cpu, d->irqnr);
128
129 debug("[ gt: read from 0xc18 (0x%08x) ]\n", (int)odata);
130 }
131 break;
132
133 case 0xc34: /* GT_PCI0_INTR_ACK */
134 /*
135 * Ugly hack, which works for at least evbmips/Malta:
136 */
137 asserted =
138 (cpu->machine->isa_pic_data.pic1->irr &
139 ~cpu->machine->isa_pic_data.pic1->ier) |
140 ((cpu->machine->isa_pic_data.pic2->irr &
141 ~cpu->machine->isa_pic_data.pic2->ier) << 8);
142 odata = 7; /* "Spurious interrupt" defaults to 7. */
143 for (i=0; i<16; i++)
144 if ((asserted >> i) & 1) {
145 odata = i;
146 break;
147 }
148 break;
149
150 case 0xcf8: /* PCI ADDR */
151 case 0xcfc: /* PCI DATA */
152 if (writeflag == MEM_WRITE) {
153 bus_pci_access(cpu, mem, relative_addr, &idata,
154 writeflag, d->pci_data);
155 } else {
156 bus_pci_access(cpu, mem, relative_addr, &odata,
157 writeflag, d->pci_data);
158 }
159 break;
160 default:
161 if (writeflag==MEM_READ) {
162 debug("[ gt: read from addr 0x%x ]\n",
163 (int)relative_addr);
164 } else {
165 debug("[ gt: write to addr 0x%x:", (int)relative_addr);
166 for (i=0; i<len; i++)
167 debug(" %02x", data[i]);
168 debug(" ]\n");
169 }
170 }
171
172 if (writeflag == MEM_READ)
173 memory_writemax64(cpu, data, len, odata);
174
175 return 1;
176 }
177
178
179 /*
180 * pci_gt_rr_011():
181 */
182 static uint32_t pci_gt_rr_011(int reg)
183 {
184 switch (reg) {
185 case 0x00:
186 return PCI_VENDOR_GALILEO + (PCI_PRODUCT_GALILEO_GT64011 << 16);
187 case 0x08:
188 return 0x06000001; /* Revision 1 */
189 default:
190 return 0;
191 }
192 }
193
194
195 /*
196 * pci_gt_rr_120():
197 */
198 static uint32_t pci_gt_rr_120(int reg)
199 {
200 switch (reg) {
201 case 0x00:
202 return PCI_VENDOR_GALILEO + (PCI_PRODUCT_GALILEO_GT64120 << 16);
203 case 0x08:
204 return 0x06000002; /* Revision 2? */
205 default:
206 return 0;
207 }
208 }
209
210
211 /*
212 * pci_gt_init():
213 */
214 void pci_gt_init(struct machine *machine, struct memory *mem)
215 {
216 }
217
218
219 /*
220 * dev_gt_init():
221 *
222 * Initialize a GT device. Return a pointer to the pci_data used, so that
223 * the caller may add PCI devices. First, however, we add the GT device
224 * itself.
225 */
226 struct pci_data *dev_gt_init(struct machine *machine, struct memory *mem,
227 uint64_t baseaddr, int irq_nr, int pciirq, int type)
228 {
229 struct gt_data *d;
230
231 d = malloc(sizeof(struct gt_data));
232 if (d == NULL) {
233 fprintf(stderr, "out of memory\n");
234 exit(1);
235 }
236 memset(d, 0, sizeof(struct gt_data));
237 d->irqnr = irq_nr;
238 d->pciirq = pciirq;
239 d->pci_data = bus_pci_init(pciirq);
240
241 switch (type) {
242 case 11:
243 d->type = PCI_PRODUCT_GALILEO_GT64011;
244 break;
245 case 120:
246 d->type = PCI_PRODUCT_GALILEO_GT64120;
247 break;
248 default:fatal("dev_gt_init(): type must be 11 or 120.\n");
249 exit(1);
250 }
251
252 /*
253 * According to NetBSD/cobalt:
254 * pchb0 at pci0 dev 0 function 0: Galileo GT-64011
255 * System Controller, rev 1
256 */
257 bus_pci_add(machine, d->pci_data, mem, 0, 0, 0, pci_gt_init,
258 d->type == PCI_PRODUCT_GALILEO_GT64011?
259 pci_gt_rr_011 : pci_gt_rr_120);
260
261 memory_device_register(mem, "gt", baseaddr, DEV_GT_LENGTH,
262 dev_gt_access, d, MEM_DEFAULT, NULL);
263 machine_add_tickfunction(machine, dev_gt_tick, d, TICK_SHIFT);
264
265 return d->pci_data;
266 }
267

  ViewVC Help
Powered by ViewVC 1.1.26