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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10 - (show annotations)
Mon Oct 8 16:18:27 2007 UTC (16 years, 5 months ago) by dpavlin
File MIME type: text/plain
File size: 3994 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.815 2005/06/27 23:04:35 debug Exp $
20050617	Experimenting some more with netbooting OpenBSD/sgi. Adding
		a hack which allows emulated ethernet networks to be
		distributed across multiple emulator processes.
20050618	Minor updates (documentation, dummy YAMON emulation, etc).
20050620	strcpy/strcat -> strlcpy/strlcat updates.
		Some more progress on evbmips (Malta).
20050621	Adding a section to doc/configfiles.html about ethernet
		emulation across multiple hosts.
		Beginning the work on the ARM translation engine (using the
		dynamic-but-not-binary translation method).
		Fixing a bintrans bug: 0x9fc00000 should always be treated as
		PROM area, just as 0xbfc00000 is.
		Minor progress on Malta emulation (the PCI-ISA bus).
20050622	NetBSD/evbmips can now be installed (using another emulated
		machine) and run (including userland and so on). :-)
		Spliting up the bintrans haddr_entry field into two (one for
		read, one for write). Probably not much of a speed increase,
		though.
		Updating some NetBSD 2.0 -> 2.0.2 in the documentation.
20050623	Minor updates (documentation, the TODO file, etc).
		gzipped kernels are now always automagically gunzipped when
		loaded.
20050624	Adding a dummy Playstation Portable (PSP) mode, just barely
		enough to run Hello World (in weird colors :-).
		Removing the -b command line option; old bintrans is enabled
		by default instead. It makes more sense.
		Trying to finally fix the non-working performance measurement
		thing (instr/second etc).
20050625	Continuing on the essential basics for ARM emulation. Two
		instructions seem to work, a branch and a simple "mov". (The
		mov arguments are not correct yet.) Performance is definitely
		reasonable.
		Various other minor updates.
		Adding the ARM "bl" instruction.
		Adding support for combining multiple ARM instructions into one
		function call. ("mov" + "mov" is the only one implemented so
		far, but it seems to work.)
		Cleaning up some IP32 interrupt things (crime/mace); disabling
		the PS/2 keyboard controller on IP32, so that NetBSD/sgimips
		boots into userland again.
20050626	Finally! NetBSD/sgimips netboots. Adding instructions to
		doc/guestoses.html on how to set up an nfs server etc.
		Various other minor fixes.
		Playstation Portable ".pbp" files can now be used directly.
		(The ELF part of the .pbp is extracted transparently.)
		Converting some sprintf -> snprintf.
		Adding some more instructions to the ARM disassembler.
20050627	More ARM updates. Adding some simple ldr(b), str(b),
		cmps, and conditional branch instructions, enough to run
		a simple Hello World program.
		All ARM instructions are now inlined/generated for all possible
		condition codes.
		Adding add and sub, and more load/store instructions.
		Removing dummy files: cpu_alpha.c, cpu_hppa.c, and cpu_sparc.c.
		Some minor documentation updates; preparing for a 0.3.4
		release. Updating some URLs.

==============  RELEASE 0.3.4  ==============


1 /*
2 * Copyright (C) 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_malta_lcd.c,v 1.1 2005/06/20 08:19:58 debug Exp $
29 *
30 * Malta (evbmips) LCD thingy. TODO: This is just a dummy device.
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 "devices.h"
40 #include "emul.h"
41 #include "machine.h"
42 #include "memory.h"
43 #include "misc.h"
44
45
46 #define DEV_MALTA_LCD_LENGTH 0x80
47 #define MALTA_LCD_TICK_SHIFT 15
48 #define LCD_LEN 8
49
50 struct malta_lcd_data {
51 int display_modified;
52 unsigned char display[LCD_LEN];
53 };
54
55
56
57 /*
58 * dev_malta_lcd_tick():
59 */
60 void dev_malta_lcd_tick(struct cpu *cpu, void *extra)
61 {
62 struct malta_lcd_data *d = extra;
63 int i;
64
65 if (d->display_modified == 0)
66 return;
67 if (d->display_modified == 1) {
68 d->display_modified = 2;
69 return;
70 }
71 fatal("[ malta_lcd: ");
72 for (i=0; i<LCD_LEN; i++)
73 if (d->display[i] >= ' ')
74 fatal("%c", d->display[i]);
75 fatal(" ]\n");
76 d->display_modified = 0;
77 }
78
79
80 /*
81 * dev_malta_lcd_access():
82 */
83 int dev_malta_lcd_access(struct cpu *cpu, struct memory *mem,
84 uint64_t relative_addr, unsigned char *data, size_t len,
85 int writeflag, void *extra)
86 {
87 struct malta_lcd_data *d = (struct malta_lcd_data *) extra;
88 uint64_t idata = 0, odata = 0;
89 int i;
90
91 idata = memory_readmax64(cpu, data, len);
92
93 switch (relative_addr) {
94 case 0x18:
95 case 0x20:
96 case 0x28:
97 case 0x30:
98 case 0x38:
99 case 0x40:
100 case 0x48:
101 case 0x50:
102 i = (relative_addr - 0x18) / 8;
103 if (writeflag == MEM_WRITE) {
104 d->display[i] = idata;
105 d->display_modified = 1;
106 } else
107 odata = d->display[i];
108 break;
109 default:if (writeflag == MEM_WRITE) {
110 fatal("[ malta_lcd: unimplemented write to "
111 "offset 0x%x: data=0x%02x ]\n", (int)
112 relative_addr, (int)idata);
113 } else {
114 fatal("[ malta_lcd: unimplemented read from "
115 "offset 0x%x ]\n", (int)relative_addr);
116 }
117 }
118
119 if (writeflag == MEM_READ)
120 memory_writemax64(cpu, data, len, odata);
121
122 return 1;
123 }
124
125
126 /*
127 * devinit_malta_lcd():
128 */
129 int devinit_malta_lcd(struct devinit *devinit)
130 {
131 struct malta_lcd_data *d = malloc(sizeof(struct malta_lcd_data));
132
133 if (d == NULL) {
134 fprintf(stderr, "out of memory\n");
135 exit(1);
136 }
137 memset(d, 0, sizeof(struct malta_lcd_data));
138
139 memory_device_register(devinit->machine->memory, devinit->name,
140 devinit->addr, DEV_MALTA_LCD_LENGTH,
141 dev_malta_lcd_access, (void *)d, MEM_DEFAULT, NULL);
142
143 machine_add_tickfunction(devinit->machine, dev_malta_lcd_tick,
144 d, MALTA_LCD_TICK_SHIFT);
145
146 return 1;
147 }
148

  ViewVC Help
Powered by ViewVC 1.1.26