1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
/* $OpenBSD: tvtwo.c,v 1.6 2006/02/12 00:04:23 miod Exp $ */
/*
* Copyright (c) 2003, Miodrag Vallat.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
/*
* Driver for the Parallax XVideo and PowerVideo graphics boards.
*
* Some details about these board are available at:
* http://www.jlw.com/~woolsey/parallax/support/developers/xvideotech.html
*/
/*
* The Parallax XVideo series frame buffers are 8/24-bit accelerated
* frame buffers, with hardware MPEG capabilities using a CCube chipset.
*/
/*
* Currently, this driver can only handle the 24-bit plane of the frame
* buffer, in an unaccelerated mode.
*
* TODO:
* - nvram handling
* - use the accelerator
* - interface to the c^3
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/device.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/conf.h>
#include <uvm/uvm_extern.h>
#include <machine/autoconf.h>
#include <machine/bus.h>
#include <machine/pmap.h>
#include <machine/cpu.h>
#include <machine/conf.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsdisplayvar.h>
#include <dev/rasops/rasops.h>
#include <machine/fbvar.h>
#include <dev/sbus/sbusvar.h>
/*
* The memory layout of the board is as follows:
*
* PROM0 000000 - 00ffff
* overlay plane 010000 - 037fff
* registers 040000 - 0404d0
* CCube 050000 - 05ffff
* 8-bit plane 080000 - 17ffff
* 24-bit plane 200000 - 6fffff
* PROM1 7f0000 - 7fffff
*
* Older XVideo provide two sets of SBus registers:
* R0 040000 - 040800
* R1 080000 - 17d200
* While the more recent revisions provide only one register:
* R0 000000 - 7fffff
*
* We currently refuse to attach to the old version because mapping
* things requires us to play with the sbus register ranges, and I
* don't want to play this game without the hardware at hand -- miod
*
* At PROM initialization, the board will be in 24-bit mode,
* so no specific initialization is necessary.
*/
#define PX_PROM0_OFFSET 0x000000
#define PX_OVERAY_OFFSET 0x010000
#define PX_REG_OFFSET 0x040000
#define PX_CCUBE_OFFSET 0x050000
#define PX_PLANE8_OFFSET 0x080000
#define PX_PLANE24_OFFSET 0x200000
#define PX_PROM1_OFFSET 0x7f0000
/*
* Partial registers layout
*/
#define PX_REG_DISPKLUDGE 0x00b8 /* write only */
#define DISPKLUDGE_DEFAULT 0xc41f
#define DISPKLUDGE_BLANK (1 << 12)
#define PX_REG_BT463_RED 0x0480
#define PX_REG_BT463_GREEN 0x0490
#define PX_REG_BT463_BLUE 0x04a0
#define PX_REG_BT463_ALL 0x04b0
#define PX_REG_SIZE 0x04d0
/* per-display variables */
struct tvtwo_softc {
struct sunfb sc_sunfb; /* common base device */
struct sbusdev sc_sd; /* sbus device */
bus_space_tag_t sc_bustag;
bus_addr_t sc_paddr;
volatile u_int8_t *sc_regs;
int sc_nscreens;
};
int tvtwo_ioctl(void *, u_long, caddr_t, int, struct proc *);
int tvtwo_alloc_screen(void *, const struct wsscreen_descr *, void **,
int *, int *, long *);
void tvtwo_free_screen(void *, void *);
int tvtwo_show_screen(void *, void *, int, void (*cb)(void *, int, int),
void *);
paddr_t tvtwo_mmap(void *, off_t, int);
void tvtwo_burner(void *, u_int, u_int);
static __inline__ void tvtwo_ramdac_wraddr(struct tvtwo_softc *sc,
u_int32_t addr);
void tvtwo_initcmap(struct tvtwo_softc *);
struct wsdisplay_accessops tvtwo_accessops = {
tvtwo_ioctl,
tvtwo_mmap,
tvtwo_alloc_screen,
tvtwo_free_screen,
tvtwo_show_screen,
NULL, /* load_font */
NULL, /* scrollback */
NULL, /* getchar */
tvtwo_burner,
};
int tvtwomatch(struct device *, void *, void *);
void tvtwoattach(struct device *, struct device *, void *);
struct cfattach tvtwo_ca = {
sizeof(struct tvtwo_softc), tvtwomatch, tvtwoattach
};
struct cfdriver tvtwo_cd = {
NULL, "tvtwo", DV_DULL
};
/*
* Default frame buffer resolution, depending upon the "freqcode"
*/
#define NFREQCODE 5
const int defwidth[NFREQCODE] = { 1152, 1152, 1152, 1024, 640 };
const int defheight[NFREQCODE] = { 900, 900, 900, 768, 480 };
/*
* Match an XVideo or PowerVideo card.
*/
int
tvtwomatch(struct device *parent, void *vcf, void *aux)
{
struct sbus_attach_args *sa = aux;
if (strcmp(sa->sa_name, "PGI,tvtwo") == 0 ||
strcmp(sa->sa_name, "PGI,tvthree") == 0)
return (1);
return (0);
}
/*
* Attach a display.
*/
void
tvtwoattach(struct device *parent, struct device *self, void *args)
{
struct tvtwo_softc *sc = (struct tvtwo_softc *)self;
struct sbus_attach_args *sa = args;
bus_space_tag_t bt;
bus_space_handle_t bh;
int node, width, height, freqcode;
int isconsole;
char *freqstring;
bt = sa->sa_bustag;
node = sa->sa_node;
printf(": %s", getpropstring(node, "model"));
printf(", revision %s\n", getpropstring(node, "revision"));
/* We do not handle older boards yet. */
if (sa->sa_nreg != 1) {
printf("%s: old-style boards with %d registers are not supported\n"
"%s: please report this to <sparc@openbsd.org>\n",
self->dv_xname, sa->sa_nreg,
self->dv_xname);
return;
}
isconsole = node == fbnode;
/* Map registers. */
sc->sc_bustag = bt;
if (sbus_bus_map(bt, sa->sa_slot, sa->sa_offset + PX_REG_OFFSET,
PX_REG_SIZE, BUS_SPACE_MAP_LINEAR, 0, &bh) != 0) {
printf("%s: couldn't map registers\n", self->dv_xname);
return;
}
sc->sc_regs = bus_space_vaddr(bt, bh);
/* Compute framebuffer size. */
freqstring = getpropstring(node, "freqcode");
freqcode = (int)*freqstring;
if (freqcode == 'g') {
width = height = 1024;
} else {
if (freqcode < '1' || freqcode > '6')
freqcode = 0;
else
freqcode -= '1';
width = defwidth[freqcode];
height = defheight[freqcode];
}
width = getpropint(node, "hres", width);
height = getpropint(node, "vres", height);
fb_setsize(&sc->sc_sunfb, 32, width, height, node, 0);
/* Map the frame buffer memory area we're interested in. */
sc->sc_paddr = sbus_bus_addr(bt, sa->sa_slot, sa->sa_offset);
if (sbus_bus_map(bt, sa->sa_slot, sa->sa_offset + PX_PLANE24_OFFSET,
round_page(sc->sc_sunfb.sf_fbsize), BUS_SPACE_MAP_LINEAR, 0,
&bh) != 0) {
printf("%s: couldn't map video memory\n", self->dv_xname);
return;
}
sc->sc_sunfb.sf_ro.ri_bits = bus_space_vaddr(bt, bh);
/* Initialize a direct color map. */
tvtwo_initcmap(sc);
/*
* Clear display. We can't pass RI_CLEAR to fbwscons_init
* below and have rasops do it for us as we want a white background.
*/
memset(sc->sc_sunfb.sf_ro.ri_bits, 0xff, sc->sc_sunfb.sf_fbsize);
sc->sc_sunfb.sf_ro.ri_hw = sc;
fbwscons_init(&sc->sc_sunfb, 0);
if (isconsole) {
fbwscons_console_init(&sc->sc_sunfb, 0);
}
sbus_establish(&sc->sc_sd, &sc->sc_sunfb.sf_dev);
printf("%s: %dx%d\n", self->dv_xname,
sc->sc_sunfb.sf_width, sc->sc_sunfb.sf_height);
fbwscons_attach(&sc->sc_sunfb, &tvtwo_accessops, isconsole);
}
int
tvtwo_ioctl(void *dev, u_long cmd, caddr_t data, int flags, struct proc *p)
{
struct tvtwo_softc *sc = dev;
struct wsdisplay_fbinfo *wdf;
switch (cmd) {
case WSDISPLAYIO_GTYPE:
*(u_int *)data = WSDISPLAY_TYPE_SUN24;
break;
case WSDISPLAYIO_GINFO:
wdf = (struct wsdisplay_fbinfo *)data;
wdf->height = sc->sc_sunfb.sf_height;
wdf->width = sc->sc_sunfb.sf_width;
wdf->depth = sc->sc_sunfb.sf_depth;
wdf->cmsize = 0;
break;
case WSDISPLAYIO_LINEBYTES:
*(u_int *)data = sc->sc_sunfb.sf_linebytes;
break;
case WSDISPLAYIO_GETCMAP:
case WSDISPLAYIO_PUTCMAP:
break;
case WSDISPLAYIO_SVIDEO:
case WSDISPLAYIO_GVIDEO:
break;
case WSDISPLAYIO_GCURPOS:
case WSDISPLAYIO_SCURPOS:
case WSDISPLAYIO_GCURMAX:
case WSDISPLAYIO_GCURSOR:
case WSDISPLAYIO_SCURSOR:
default:
return (-1);
}
return (0);
}
/*
* Return the address that would map the given device at the given
* offset, allowing for the given protection, or return -1 for error.
*/
paddr_t
tvtwo_mmap(void *v, off_t offset, int prot)
{
struct tvtwo_softc *sc = v;
if (offset & PGOFSET)
return (-1);
/* Allow mapping as a dumb framebuffer from offset 0 */
if (offset >= 0 && offset < sc->sc_sunfb.sf_fbsize) {
return (bus_space_mmap(sc->sc_bustag, sc->sc_paddr,
PX_PLANE24_OFFSET + offset, prot, BUS_SPACE_MAP_LINEAR));
}
return (-1);
}
int
tvtwo_alloc_screen(void *v, const struct wsscreen_descr *type,
void **cookiep, int *curxp, int *curyp, long *attrp)
{
struct tvtwo_softc *sc = v;
if (sc->sc_nscreens > 0)
return (ENOMEM);
*cookiep = &sc->sc_sunfb.sf_ro;
*curyp = 0;
*curxp = 0;
sc->sc_sunfb.sf_ro.ri_ops.alloc_attr(&sc->sc_sunfb.sf_ro,
0, 0, 0, attrp);
sc->sc_nscreens++;
return (0);
}
void
tvtwo_free_screen(void *v, void *cookie)
{
struct tvtwo_softc *sc = v;
sc->sc_nscreens--;
}
int
tvtwo_show_screen(void *v, void *cookie, int waitok,
void (*cb)(void *, int, int), void *cbarg)
{
return (0);
}
/*
* Simple Bt463 programming routines.
*/
static __inline__ void
tvtwo_ramdac_wraddr(struct tvtwo_softc *sc, u_int32_t addr)
{
volatile u_int32_t *dac = (u_int32_t *)(sc->sc_regs + PX_REG_BT463_RED);
dac[0] = (addr & 0xff); /* lo addr */
dac[1] = ((addr >> 8) & 0xff); /* hi addr */
}
void
tvtwo_initcmap(struct tvtwo_softc *sc)
{
volatile u_int32_t *dac = (u_int32_t *)(sc->sc_regs + PX_REG_BT463_RED);
u_int32_t c;
tvtwo_ramdac_wraddr(sc, 0);
for (c = 0; c < 256; c++) {
dac[3] = c; /* R */
dac[3] = c; /* G */
dac[3] = c; /* B */
}
}
void
tvtwo_burner(void *v, u_int on, u_int flags)
{
struct tvtwo_softc *sc = v;
volatile u_int32_t *dispkludge =
(u_int32_t *)(sc->sc_regs + PX_REG_DISPKLUDGE);
if (on)
*dispkludge = DISPKLUDGE_DEFAULT & ~DISPKLUDGE_BLANK;
else
*dispkludge = DISPKLUDGE_DEFAULT | DISPKLUDGE_BLANK;
}
|