pcdisplay_subr.c revision 1.15 1 1.15 ad /* $NetBSD: pcdisplay_subr.c,v 1.15 2000/01/26 01:23:32 ad Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1995, 1996 Carnegie-Mellon University.
5 1.1 drochner * All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Author: Chris G. Demetriou
8 1.1 drochner *
9 1.1 drochner * Permission to use, copy, modify and distribute this software and
10 1.1 drochner * its documentation is hereby granted, provided that both the copyright
11 1.1 drochner * notice and this permission notice appear in all copies of the
12 1.1 drochner * software, derivative works or modified versions, and any portions
13 1.1 drochner * thereof, and that both notices appear in supporting documentation.
14 1.1 drochner *
15 1.1 drochner * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 1.1 drochner * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17 1.1 drochner * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18 1.1 drochner *
19 1.1 drochner * Carnegie Mellon requests users of this software to return to
20 1.1 drochner *
21 1.1 drochner * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
22 1.1 drochner * School of Computer Science
23 1.1 drochner * Carnegie Mellon University
24 1.1 drochner * Pittsburgh PA 15213-3890
25 1.1 drochner *
26 1.1 drochner * any improvements or extensions that they make and grant Carnegie the
27 1.1 drochner * rights to redistribute these changes.
28 1.1 drochner */
29 1.1 drochner
30 1.1 drochner #include <sys/param.h>
31 1.1 drochner #include <sys/systm.h>
32 1.1 drochner #include <sys/device.h>
33 1.1 drochner #include <machine/bus.h>
34 1.1 drochner
35 1.1 drochner #include <dev/isa/isavar.h>
36 1.1 drochner #include <dev/isa/isareg.h>
37 1.1 drochner
38 1.1 drochner #include <dev/ic/mc6845reg.h>
39 1.1 drochner #include <dev/ic/pcdisplayvar.h>
40 1.1 drochner
41 1.1 drochner #include <dev/wscons/wsdisplayvar.h>
42 1.12 ad
43 1.12 ad void
44 1.14 ad pcdisplay_cursor_init(scr, existing)
45 1.12 ad struct pcdisplayscreen *scr;
46 1.14 ad int existing;
47 1.12 ad {
48 1.14 ad #ifdef PCDISPLAY_SOFTCURSOR
49 1.14 ad bus_space_tag_t memt;
50 1.14 ad bus_space_handle_t memh;
51 1.14 ad int off;
52 1.12 ad
53 1.13 ad pcdisplay_6845_write(scr->hdl, curstart, 0x10);
54 1.13 ad pcdisplay_6845_write(scr->hdl, curend, 0x10);
55 1.14 ad
56 1.14 ad if (existing) {
57 1.14 ad /*
58 1.14 ad * This is the first screen. At this point, scr->active is
59 1.14 ad * false and scr->mem is NULL (no backing store), so we
60 1.14 ad * can't use pcdisplay_cursor() to do this.
61 1.14 ad */
62 1.14 ad memt = scr->hdl->ph_memt;
63 1.14 ad memh = scr->hdl->ph_memh;
64 1.14 ad off = (scr->vc_crow * scr->type->ncols + scr->vc_ccol) * 2 +
65 1.14 ad scr->dispoffset;
66 1.14 ad
67 1.14 ad scr->cursortmp = bus_space_read_2(memt, memh, off);
68 1.14 ad bus_space_write_2(memt, memh, off, scr->cursortmp ^ 0x7700);
69 1.15 ad } else
70 1.15 ad scr->cursortmp = 0;
71 1.12 ad #endif
72 1.14 ad scr->cursoron = 1;
73 1.12 ad }
74 1.1 drochner
75 1.1 drochner void
76 1.1 drochner pcdisplay_cursor(id, on, row, col)
77 1.1 drochner void *id;
78 1.1 drochner int on, row, col;
79 1.1 drochner {
80 1.7 ad #ifdef PCDISPLAY_SOFTCURSOR
81 1.7 ad struct pcdisplayscreen *scr = id;
82 1.7 ad bus_space_tag_t memt = scr->hdl->ph_memt;
83 1.7 ad bus_space_handle_t memh = scr->hdl->ph_memh;
84 1.7 ad int off;
85 1.7 ad
86 1.7 ad /* Remove old cursor image */
87 1.7 ad if (scr->cursoron) {
88 1.7 ad off = scr->vc_crow * scr->type->ncols + scr->vc_ccol;
89 1.7 ad if (scr->active)
90 1.7 ad bus_space_write_2(memt, memh, scr->dispoffset + off * 2,
91 1.7 ad scr->cursortmp);
92 1.7 ad else
93 1.7 ad scr->mem[off] = scr->cursortmp;
94 1.7 ad }
95 1.7 ad
96 1.7 ad scr->vc_crow = row;
97 1.7 ad scr->vc_ccol = col;
98 1.7 ad
99 1.7 ad if ((scr->cursoron = on) == 0)
100 1.7 ad return;
101 1.7 ad
102 1.7 ad off = (scr->vc_crow * scr->type->ncols + scr->vc_ccol);
103 1.8 ad if (scr->active) {
104 1.14 ad off = off * 2 + scr->dispoffset;
105 1.14 ad scr->cursortmp = bus_space_read_2(memt, memh, off);
106 1.14 ad bus_space_write_2(memt, memh, off, scr->cursortmp ^ 0x7700);
107 1.8 ad } else {
108 1.8 ad scr->cursortmp = scr->mem[off];
109 1.9 ad scr->mem[off] = scr->cursortmp ^ 0x7700;
110 1.8 ad }
111 1.7 ad #else /* PCDISPLAY_SOFTCURSOR */
112 1.1 drochner struct pcdisplayscreen *scr = id;
113 1.1 drochner int pos;
114 1.1 drochner
115 1.1 drochner scr->vc_crow = row;
116 1.1 drochner scr->vc_ccol = col;
117 1.1 drochner scr->cursoron = on;
118 1.1 drochner
119 1.1 drochner if (scr->active) {
120 1.7 ad if (!on)
121 1.7 ad pos = 0x1010;
122 1.7 ad else
123 1.6 drochner pos = scr->dispoffset / 2
124 1.6 drochner + row * scr->type->ncols + col;
125 1.1 drochner
126 1.1 drochner pcdisplay_6845_write(scr->hdl, cursorh, pos >> 8);
127 1.1 drochner pcdisplay_6845_write(scr->hdl, cursorl, pos);
128 1.1 drochner }
129 1.7 ad #endif /* PCDISPLAY_SOFTCURSOR */
130 1.1 drochner }
131 1.1 drochner
132 1.5 drochner #if 0
133 1.5 drochner unsigned int
134 1.5 drochner pcdisplay_mapchar_simple(id, uni)
135 1.5 drochner void *id;
136 1.5 drochner int uni;
137 1.4 drochner {
138 1.5 drochner if (uni < 128)
139 1.5 drochner return (uni);
140 1.5 drochner
141 1.5 drochner return (1); /* XXX ??? smiley */
142 1.5 drochner }
143 1.5 drochner #endif
144 1.4 drochner
145 1.1 drochner void
146 1.4 drochner pcdisplay_putchar(id, row, col, c, attr)
147 1.1 drochner void *id;
148 1.1 drochner int row, col;
149 1.4 drochner u_int c;
150 1.1 drochner long attr;
151 1.1 drochner {
152 1.1 drochner struct pcdisplayscreen *scr = id;
153 1.1 drochner bus_space_tag_t memt = scr->hdl->ph_memt;
154 1.1 drochner bus_space_handle_t memh = scr->hdl->ph_memh;
155 1.4 drochner int off;
156 1.1 drochner
157 1.1 drochner off = row * scr->type->ncols + col;
158 1.1 drochner
159 1.4 drochner if (scr->active)
160 1.6 drochner bus_space_write_2(memt, memh, scr->dispoffset + off * 2,
161 1.5 drochner c | (attr << 8));
162 1.4 drochner else
163 1.5 drochner scr->mem[off] = c | (attr << 8);
164 1.1 drochner }
165 1.1 drochner
166 1.1 drochner void
167 1.1 drochner pcdisplay_copycols(id, row, srccol, dstcol, ncols)
168 1.1 drochner void *id;
169 1.1 drochner int row, srccol, dstcol, ncols;
170 1.1 drochner {
171 1.1 drochner struct pcdisplayscreen *scr = id;
172 1.1 drochner bus_space_tag_t memt = scr->hdl->ph_memt;
173 1.1 drochner bus_space_handle_t memh = scr->hdl->ph_memh;
174 1.1 drochner bus_size_t srcoff, dstoff;
175 1.1 drochner
176 1.1 drochner srcoff = dstoff = row * scr->type->ncols;
177 1.1 drochner srcoff += srccol;
178 1.1 drochner dstoff += dstcol;
179 1.1 drochner
180 1.1 drochner if (scr->active)
181 1.6 drochner bus_space_copy_region_2(memt, memh,
182 1.6 drochner scr->dispoffset + srcoff * 2,
183 1.6 drochner memh, scr->dispoffset + dstoff * 2,
184 1.6 drochner ncols);
185 1.1 drochner else
186 1.1 drochner bcopy(&scr->mem[srcoff], &scr->mem[dstoff], ncols * 2);
187 1.1 drochner }
188 1.1 drochner
189 1.1 drochner void
190 1.1 drochner pcdisplay_erasecols(id, row, startcol, ncols, fillattr)
191 1.1 drochner void *id;
192 1.1 drochner int row, startcol, ncols;
193 1.1 drochner long fillattr;
194 1.1 drochner {
195 1.1 drochner struct pcdisplayscreen *scr = id;
196 1.1 drochner bus_space_tag_t memt = scr->hdl->ph_memt;
197 1.1 drochner bus_space_handle_t memh = scr->hdl->ph_memh;
198 1.1 drochner bus_size_t off;
199 1.1 drochner u_int16_t val;
200 1.1 drochner int i;
201 1.1 drochner
202 1.1 drochner off = row * scr->type->ncols + startcol;
203 1.1 drochner
204 1.1 drochner val = (fillattr << 8) | ' ';
205 1.1 drochner
206 1.1 drochner if (scr->active)
207 1.6 drochner bus_space_set_region_2(memt, memh, scr->dispoffset + off * 2,
208 1.6 drochner val, ncols);
209 1.1 drochner else
210 1.1 drochner for (i = 0; i < ncols; i++)
211 1.1 drochner scr->mem[off + i] = val;
212 1.1 drochner }
213 1.1 drochner
214 1.1 drochner void
215 1.1 drochner pcdisplay_copyrows(id, srcrow, dstrow, nrows)
216 1.1 drochner void *id;
217 1.1 drochner int srcrow, dstrow, nrows;
218 1.1 drochner {
219 1.1 drochner struct pcdisplayscreen *scr = id;
220 1.1 drochner bus_space_tag_t memt = scr->hdl->ph_memt;
221 1.1 drochner bus_space_handle_t memh = scr->hdl->ph_memh;
222 1.1 drochner int ncols = scr->type->ncols;
223 1.1 drochner bus_size_t srcoff, dstoff;
224 1.1 drochner
225 1.1 drochner srcoff = srcrow * ncols + 0;
226 1.1 drochner dstoff = dstrow * ncols + 0;
227 1.1 drochner
228 1.1 drochner if (scr->active)
229 1.6 drochner bus_space_copy_region_2(memt, memh,
230 1.6 drochner scr->dispoffset + srcoff * 2,
231 1.6 drochner memh, scr->dispoffset + dstoff * 2,
232 1.6 drochner nrows * ncols);
233 1.1 drochner else
234 1.1 drochner bcopy(&scr->mem[srcoff], &scr->mem[dstoff],
235 1.1 drochner nrows * ncols * 2);
236 1.1 drochner }
237 1.1 drochner
238 1.1 drochner void
239 1.1 drochner pcdisplay_eraserows(id, startrow, nrows, fillattr)
240 1.1 drochner void *id;
241 1.1 drochner int startrow, nrows;
242 1.1 drochner long fillattr;
243 1.1 drochner {
244 1.1 drochner struct pcdisplayscreen *scr = id;
245 1.1 drochner bus_space_tag_t memt = scr->hdl->ph_memt;
246 1.1 drochner bus_space_handle_t memh = scr->hdl->ph_memh;
247 1.1 drochner bus_size_t off, count;
248 1.1 drochner u_int16_t val;
249 1.1 drochner int i;
250 1.1 drochner
251 1.1 drochner off = startrow * scr->type->ncols;
252 1.1 drochner count = nrows * scr->type->ncols;
253 1.1 drochner
254 1.1 drochner val = (fillattr << 8) | ' ';
255 1.1 drochner
256 1.1 drochner if (scr->active)
257 1.6 drochner bus_space_set_region_2(memt, memh, scr->dispoffset + off * 2,
258 1.6 drochner val, count);
259 1.1 drochner else
260 1.1 drochner for (i = 0; i < count; i++)
261 1.1 drochner scr->mem[off + i] = val;
262 1.1 drochner }
263