/[gxemul]/upstream/0.4.4.1/src/devices/dev_epcom.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.4.1/src/devices/dev_epcom.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 37 - (show annotations)
Mon Oct 8 16:21:43 2007 UTC (16 years, 8 months ago) by dpavlin
File MIME type: text/plain
File size: 4291 byte(s)
0.4.4.1
1 /*
2 * Copyright (C) 2006-2007 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_epcom.c,v 1.2 2006/12/30 13:30:57 debug Exp $
29 *
30 * EPCOM serial controller, used by (at least) the TS7200 emulation mode.
31 */
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36
37 #include "console.h"
38 #include "cpu.h"
39 #include "device.h"
40 #include "machine.h"
41 #include "memory.h"
42 #include "misc.h"
43
44 #include "epcomreg.h"
45
46
47 #define debug fatal
48
49 #define TICK_SHIFT 14
50 #define DEV_EPCOM_LENGTH 0x108
51
52 struct epcom_data {
53 int irqnr;
54 int console_handle;
55 char *name;
56 };
57
58
59 /*
60 * dev_epcom_tick():
61 */
62 void dev_epcom_tick(struct cpu *cpu, void *extra)
63 {
64 /* struct epcom_data *d = extra; */
65 }
66
67
68 DEVICE_ACCESS(epcom)
69 {
70 uint64_t idata = 0, odata=0;
71 size_t i;
72 struct epcom_data *d = extra;
73
74 if (writeflag == MEM_WRITE)
75 idata = memory_readmax64(cpu, data, len);
76
77 switch (relative_addr) {
78
79 case EPCOM_Data:
80 if (writeflag == MEM_WRITE)
81 console_putchar(d->console_handle, idata);
82 else
83 fatal("TODO: epcom read\n");
84 break;
85
86 case EPCOM_Flag:
87 if (writeflag == MEM_READ)
88 odata = Flag_CTS | Flag_DSR | Flag_DCD | Flag_TXFE;
89 else
90 fatal("TODO: epcom flag write?\n");
91 break;
92
93 default:if (writeflag == MEM_READ) {
94 debug("[ epcom (%s): read from reg %i ]\n",
95 d->name, (int)relative_addr);
96 } else {
97 debug("[ epcom (%s): write to reg %i:",
98 d->name, (int)relative_addr);
99 for (i=0; i<len; i++)
100 debug(" %02x", data[i]);
101 debug(" ]\n");
102 }
103 }
104
105 if (writeflag == MEM_READ)
106 memory_writemax64(cpu, data, len, odata);
107
108 return 1;
109 }
110
111
112 DEVINIT(epcom)
113 {
114 struct epcom_data *d = malloc(sizeof(struct epcom_data));
115 size_t nlen;
116 char *name;
117
118 if (d == NULL) {
119 fprintf(stderr, "out of memory\n");
120 exit(1);
121 }
122 memset(d, 0, sizeof(struct epcom_data));
123 d->irqnr = devinit->irq_nr;
124 d->name = devinit->name2 != NULL? devinit->name2 : "";
125 d->console_handle =
126 console_start_slave(devinit->machine, devinit->name2 != NULL?
127 devinit->name2 : devinit->name, devinit->in_use);
128
129 nlen = strlen(devinit->name) + 10;
130 if (devinit->name2 != NULL)
131 nlen += strlen(devinit->name2);
132 name = malloc(nlen);
133 if (name == NULL) {
134 fprintf(stderr, "out of memory\n");
135 exit(1);
136 }
137 if (devinit->name2 != NULL && devinit->name2[0])
138 snprintf(name, nlen, "%s [%s]", devinit->name, devinit->name2);
139 else
140 snprintf(name, nlen, "%s", devinit->name);
141
142 memory_device_register(devinit->machine->memory, name, devinit->addr,
143 DEV_EPCOM_LENGTH, dev_epcom_access, d, DM_DEFAULT, NULL);
144 machine_add_tickfunction(devinit->machine,
145 dev_epcom_tick, d, TICK_SHIFT, 0.0);
146
147 /*
148 * NOTE: Ugly cast into a pointer, because this is a convenient way
149 * to return the console handle to code in src/machine.c.
150 */
151 devinit->return_ptr = (void *)(size_t)d->console_handle;
152
153 return 1;
154 }
155

  ViewVC Help
Powered by ViewVC 1.1.26