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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31 - (show annotations)
Mon Oct 8 16:20:48 2007 UTC (16 years, 8 months ago) by dpavlin
File MIME type: text/plain
File size: 3835 byte(s)
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: dev_malta_lcd.c,v 1.7 2006/03/04 12:38:47 debug Exp $
29 *
30 * Malta (evbmips) LCD thingy. Mostly 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 debug("[ malta_lcd: ");
72 for (i=0; i<LCD_LEN; i++)
73 if (d->display[i] >= ' ')
74 debug("%c", d->display[i]);
75 debug(" ]\n");
76 d->display_modified = 0;
77 }
78
79
80 /*
81 * dev_malta_lcd_access():
82 */
83 DEVICE_ACCESS(malta_lcd)
84 {
85 struct malta_lcd_data *d = (struct malta_lcd_data *) extra;
86 uint64_t idata = 0, odata = 0;
87 int i;
88
89 if (writeflag == MEM_WRITE)
90 idata = memory_readmax64(cpu, data, len);
91
92 switch (relative_addr) {
93 case 0x18:
94 case 0x20:
95 case 0x28:
96 case 0x30:
97 case 0x38:
98 case 0x40:
99 case 0x48:
100 case 0x50:
101 i = (relative_addr - 0x18) / 8;
102 if (writeflag == MEM_WRITE) {
103 d->display[i] = idata;
104 d->display_modified = 1;
105 } else
106 odata = d->display[i];
107 break;
108 default:if (writeflag == MEM_WRITE) {
109 fatal("[ malta_lcd: unimplemented write to "
110 "offset 0x%x: data=0x%02x ]\n", (int)
111 relative_addr, (int)idata);
112 } else {
113 fatal("[ malta_lcd: unimplemented read from "
114 "offset 0x%x ]\n", (int)relative_addr);
115 }
116 }
117
118 if (writeflag == MEM_READ)
119 memory_writemax64(cpu, data, len, odata);
120
121 return 1;
122 }
123
124
125 DEVINIT(malta_lcd)
126 {
127 struct malta_lcd_data *d = malloc(sizeof(struct malta_lcd_data));
128
129 if (d == NULL) {
130 fprintf(stderr, "out of memory\n");
131 exit(1);
132 }
133 memset(d, 0, sizeof(struct malta_lcd_data));
134
135 memory_device_register(devinit->machine->memory, devinit->name,
136 devinit->addr, DEV_MALTA_LCD_LENGTH,
137 dev_malta_lcd_access, (void *)d, DM_DEFAULT, NULL);
138
139 machine_add_tickfunction(devinit->machine, dev_malta_lcd_tick,
140 d, MALTA_LCD_TICK_SHIFT, 0.0);
141
142 return 1;
143 }
144

  ViewVC Help
Powered by ViewVC 1.1.26