/[gxemul]/upstream/0.4.0.1/src/devices/dev_lpt.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.0.1/src/devices/dev_lpt.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (show annotations)
Mon Oct 8 16:20:18 2007 UTC (16 years, 8 months ago) by dpavlin
File MIME type: text/plain
File size: 4097 byte(s)
0.4.0.1
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_lpt.c,v 1.9 2006/03/04 12:38:47 debug Exp $
29 *
30 * LPT (parallel printer) controller.
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 "lptreg.h"
45
46
47 /* #define debug fatal */
48
49 #define TICK_SHIFT 18
50 #define DEV_LPT_LENGTH 3
51
52 struct lpt_data {
53 int irqnr;
54 char *name;
55 int console_handle;
56
57 unsigned char data;
58 unsigned char control;
59 };
60
61
62 /*
63 * dev_lpt_tick():
64 */
65 void dev_lpt_tick(struct cpu *cpu, void *extra)
66 {
67 /* struct lpt_data *d = extra; */
68
69 /* TODO */
70 }
71
72
73 /*
74 * dev_lpt_access():
75 */
76 DEVICE_ACCESS(lpt)
77 {
78 uint64_t idata = 0, odata=0;
79 struct lpt_data *d = extra;
80
81 if (writeflag == MEM_WRITE)
82 idata = memory_readmax64(cpu, data, len);
83
84 switch (relative_addr) {
85
86 case LPT_DATA:
87 if (writeflag == MEM_READ)
88 odata = d->data;
89 else
90 d->data = idata;
91 break;
92
93 case LPT_STATUS:
94 odata = LPS_NBSY | LPS_NACK | LPS_SELECT | LPS_NERR;
95 break;
96
97 case LPT_CONTROL:
98 if (writeflag == MEM_WRITE) {
99 if (idata != d->control) {
100 if (idata & LPC_STROBE) {
101 /* data strobe */
102 console_putchar(d->console_handle,
103 d->data);
104 }
105 }
106 d->control = idata;
107 }
108 break;
109 }
110
111 if (writeflag == MEM_READ)
112 memory_writemax64(cpu, data, len, odata);
113
114 return 1;
115 }
116
117
118 DEVINIT(lpt)
119 {
120 struct lpt_data *d = malloc(sizeof(struct lpt_data));
121 size_t nlen;
122 char *name;
123
124 if (d == NULL) {
125 fprintf(stderr, "out of memory\n");
126 exit(1);
127 }
128 memset(d, 0, sizeof(struct lpt_data));
129 d->irqnr = devinit->irq_nr;
130 d->name = devinit->name2 != NULL? devinit->name2 : "";
131 d->console_handle = console_start_slave(devinit->machine, devinit->name,
132 CONSOLE_OUTPUT_ONLY);
133
134 nlen = strlen(devinit->name) + 10;
135 if (devinit->name2 != NULL)
136 nlen += strlen(devinit->name2);
137 name = malloc(nlen);
138 if (name == NULL) {
139 fprintf(stderr, "out of memory\n");
140 exit(1);
141 }
142 if (devinit->name2 != NULL && devinit->name2[0])
143 snprintf(name, nlen, "%s [%s]", devinit->name, devinit->name2);
144 else
145 snprintf(name, nlen, "%s", devinit->name);
146
147 memory_device_register(devinit->machine->memory, name, devinit->addr,
148 DEV_LPT_LENGTH, dev_lpt_access, d, DM_DEFAULT, NULL);
149 machine_add_tickfunction(devinit->machine, dev_lpt_tick, d,
150 TICK_SHIFT, 0.0);
151
152 /*
153 * NOTE: Ugly cast into a pointer, because this is a convenient way
154 * to return the console handle to code in src/machine.c.
155 */
156 devinit->return_ptr = (void *)(size_t)d->console_handle;
157
158 return 1;
159 }
160

  ViewVC Help
Powered by ViewVC 1.1.26