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

Annotation of /trunk/src/devices/dev_sn.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 40 - (hide annotations)
Mon Oct 8 16:22:11 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: text/plain
File size: 3647 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1539 2007/05/01 04:03:51 debug Exp $
20070415	Landisk PCLOCK should be 33.33 MHz, not 50 MHz. (This makes
		the clock run at correct speed.)
		FINALLY found and fixed the bug which caused OpenBSD/landisk
		to randomly bug out: an &-sign was missing in the special case
		handling of FPSCR in the 'LDS.L @Rm+,FPSCR' instruction.
		Adding similar special case handling for 'LDC.L @Rm+,SR'
		(calling sh_update_sr() instead of just loading).
		Implementing the 'FCNVSD FPUL,DRn' and 'FCNVDS DRm,FPUL'
		SuperH instructions.
		The 'LDC Rm,SR' instruction now immediately breaks out of the
		dyntrans loop if an interrupt is to be triggered.
20070416	In memory_rw.c, if mapping a page as writable, make sure to
		invalidate code translations even if the data access was a
		read.
		Minor SuperH updates.
20070418	Removing the dummy M68K emulation mode.
		Minor SH update (turning unnecessary sts_mach_rn, sts_macl_rn,
		and sts_pr_rn instruction handlers into mov_rm_rn).
20070419	Beginning to add a skeleton for an M88K mode: Adding a hack to
		allow OpenBSD/m88k a.out binaries to be loaded, and disassembly
		of a few simple 88K instructions.
		Commenting out the 'LDC Rm,SR' fix from a few days ago, because
		it made Linux/dreamcast bug out.
		Adding a hack to dev_sh4.c (an extra translation cache
		invalidation), which allows OpenBSD/landisk to boot ok after
		an install. Upgrading the Landisk machine mode to stable,
		updating documentation, etc.
20070420	Experimenting with adding a PCI controller (pcic) to dev_sh4.
		Adding a dummy Realtek 8139C+ skeleton device (dev_rtl8139c).
		Implementing the first M88K instructions (br, or[.u] imm), and
		adding disassembly of some more instructions.
20070421	Continuing a little on dev_rtl8139c.
20070422	Implementing the 9346 EEPROM "read" command for dev_rtl8139c.
		Finally found and fixed an old bug in the log n symbol search
		(it sometimes missed symbols). Debug trace (-i, -t etc) should
		now show more symbols. :-)
20070423	Continuing a little on M88K disassembly.
20070428	Fixing a memset arg order bug in src/net/net.c (thanks to
		Nigel Horne for noticing the bug).
		Applying parts of a patch from Carl van Schaik to clear out
		bottom bits of MIPS addresses more correctly, when using large
		page sizes, and doing some other minor cleanup/refactoring.
		Fixing a couple of warnings given by gcc with the -W option (a
		few more warnings than just plain -Wall).
		Reducing SuperH dyntrans physical address space from 64-bit to
		32-bit (since SH5/SH64 isn't imlemented yet anyway).
		Adding address-to-symbol annotation to a few more instructions
		in the SuperH instruction trace output.
		Beginning regression testing for the next release.
		Reverting the value of SCIF_DELAYED_TX_VALUE from 1 to 2,
		because OpenBSD/landisk may otherwise hang randomly.
20070429	The ugly hack/workaround to get OpenBSD/landisk booting without
		crashing does NOT work anymore (with the April 21 snapshot
		of OpenBSD/landisk). Strangely enough, removing the hack
		completely causes OpenBSD/landisk to work (!).
		More regression testing (re-testing everything SuperH-related,
		and some other things).
		Cobalt interrupts were actually broken; fixing by commenting
		out the DEC21143s in the Cobalt machine.
20070430	More regression testing.
20070501	Updating the OpenBSD/landisk install instructions to use
		4.1 instead of the current snapshot.
		GAAAH! OpenBSD/landisk 4.1 _needs_ the ugly hack/workaround;
		reintroducing it again. (The 4.1 kernel is actually from
		2007-03-11.)
		Simplifying the NetBSD/evbarm install instructions a bit.
		More regression testing.

==============  RELEASE 0.4.5.1  ==============


1 dpavlin 4 /*
2 dpavlin 34 * Copyright (C) 2004-2007 Anders Gavare. All rights reserved.
3 dpavlin 4 *
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 dpavlin 40 * $Id: dev_sn.c,v 1.18 2007/04/21 06:13:53 debug Exp $
29 dpavlin 4 *
30     * National Semiconductor SONIC ("sn") DP83932 ethernet.
31     *
32     *
33     * TODO
34     */
35    
36     #include <stdio.h>
37     #include <stdlib.h>
38     #include <string.h>
39    
40     #include "cpu.h"
41     #include "device.h"
42     #include "emul.h"
43     #include "machine.h"
44     #include "memory.h"
45     #include "misc.h"
46     #include "net.h"
47    
48     #include "dp83932reg.h"
49    
50    
51     #define DEV_SN_LENGTH 0x1000
52    
53     struct sn_data {
54 dpavlin 40 struct interrupt irq;
55 dpavlin 4 unsigned char macaddr[6];
56     uint32_t reg[SONIC_NREGS];
57     };
58    
59    
60 dpavlin 22 DEVICE_ACCESS(sn)
61 dpavlin 4 {
62     struct sn_data *d = (struct sn_data *) extra;
63     uint64_t idata = 0, odata = 0;
64     int regnr;
65    
66 dpavlin 18 if (writeflag == MEM_WRITE)
67     idata = memory_readmax64(cpu, data, len);
68    
69 dpavlin 4 regnr = relative_addr / sizeof(uint32_t);
70    
71     if (regnr < SONIC_NREGS) {
72     if (writeflag == MEM_WRITE)
73     d->reg[regnr] = idata;
74     else
75     odata = d->reg[regnr];
76     }
77    
78     switch (regnr) {
79 dpavlin 40
80 dpavlin 4 default:
81     if (writeflag == MEM_WRITE) {
82     fatal("[ sn: unimplemented write to address 0x%x"
83     " (regnr %i), data=0x%02x ]\n",
84     (int)relative_addr, regnr, (int)idata);
85     } else {
86     fatal("[ sn: unimplemented read from address 0x%x "
87     "(regnr %i) ]\n", (int)relative_addr, regnr);
88     }
89 dpavlin 40 /* exit(1); */
90 dpavlin 4 }
91    
92     if (writeflag == MEM_READ)
93     memory_writemax64(cpu, data, len, odata);
94    
95     return 1;
96     }
97    
98    
99 dpavlin 22 DEVINIT(sn)
100 dpavlin 4 {
101     char *name2;
102 dpavlin 10 size_t nlen = 55;
103 dpavlin 4 struct sn_data *d = malloc(sizeof(struct sn_data));
104    
105     if (d == NULL) {
106     fprintf(stderr, "out of memory\n");
107     exit(1);
108     }
109     memset(d, 0, sizeof(struct sn_data));
110    
111 dpavlin 40 INTERRUPT_CONNECT(devinit->interrupt_path, d->irq);
112    
113 dpavlin 4 net_generate_unique_mac(devinit->machine, d->macaddr);
114    
115 dpavlin 10 name2 = malloc(nlen);
116 dpavlin 4 if (name2 == NULL) {
117     fprintf(stderr, "out of memory in dev_sn_init()\n");
118     exit(1);
119     }
120 dpavlin 10 snprintf(name2, nlen, "%s [%02x:%02x:%02x:%02x:%02x:%02x]",
121     devinit->name, d->macaddr[0], d->macaddr[1], d->macaddr[2],
122 dpavlin 4 d->macaddr[3], d->macaddr[4], d->macaddr[5]);
123    
124     memory_device_register(devinit->machine->memory, name2,
125     devinit->addr, DEV_SN_LENGTH,
126 dpavlin 20 dev_sn_access, (void *)d, DM_DEFAULT, NULL);
127 dpavlin 4
128     net_add_nic(devinit->machine->emul->net, d, d->macaddr);
129    
130     return 1;
131     }
132    

  ViewVC Help
Powered by ViewVC 1.1.26