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
|
/* $NetBSD: cgfourreg.h,v 1.4 1994/11/20 20:52:03 deraadt Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Theo de Raadt.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* 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.
*/
#include <sys/param.h>
#include <sys/device.h>
#include <sys/malloc.h>
#ifdef DEBUG
#include <sys/proc.h>
#include <sys/syslog.h>
#endif
#include <vm/vm.h>
#include <machine/autoconf.h>
#include <machine/pmap.h>
#include <machine/oldmon.h>
#include <machine/cpu.h>
#include <machine/ctlreg.h>
#include <sparc/sparc/asm.h>
#include <sparc/sparc/vaddrs.h>
#include <sparc/dev/pfourreg.h>
volatile int *pfour_vaddr; /* pfour register */
struct pfour_softc {
struct device sc_dev; /* base device */
int nothing;
};
static int pfourmatch __P((struct device *, void *, void *));
static void pfourattach __P((struct device *, struct device *, void *));
struct cfdriver pfourcd = { NULL, "pfour", pfourmatch, pfourattach,
DV_DULL, sizeof(struct pfour_softc)
};
int
pfourmatch(parent, vcf, aux)
struct device *parent;
void *vcf, *aux;
{
struct cfdata *cf = vcf;
register struct confargs *ca = aux;
register struct romaux *ra = &ca->ca_ra;
return (strcmp(cf->cf_driver->cd_name, ra->ra_name) == 0);
}
void
pfourattach(parent, self, args)
struct device *parent, *self;
void *args;
{
register struct pfour_softc *sc = (struct pfour_softc *)self;
extern struct cfdata cfdata[];
register struct confargs *ca = args;
struct confargs oca;
register short *p;
struct cfdata *cf;
caddr_t tmp;
u_int val;
if (sc->sc_dev.dv_unit > 0) {
printf(" unsupported\n");
return;
}
tmp = bus_tmp(ca->ca_ra.ra_paddr + PFOUR_REG, BUS_PFOUR);
if (tmp == NULL) {
printf("\n");
return;
}
val = probeget(tmp, 4);
if (val == -1) {
printf(": empty\n");
return;
}
pfour_vaddr = mapiodev((caddr_t)(ca->ca_ra.ra_paddr + PFOUR_REG),
NBPG, ca->ca_bustype);
printf(": cardtype 0x%02x\n", PFOUR_FBTYPE(val));
*(int *)tmp = PFOUR_REG_VIDEO | PFOUR_REG_RESET;
*(int *)tmp = PFOUR_REG_VIDEO;
for (cf = cfdata; cf->cf_driver; cf++) {
if (cf->cf_fstate == FSTATE_FOUND)
continue;
for (p = cf->cf_parents; *p >= 0; p++)
if (self->dv_cfdata == &cfdata[*p]) {
oca.ca_ra.ra_iospace = -1;
oca.ca_ra.ra_len = 0;
oca.ca_ra.ra_nreg = 1;
oca.ca_ra.ra_pfour = val;
oca.ca_ra.ra_intr[0].int_vec = -1;
oca.ca_ra.ra_nintr = 0;
oca.ca_ra.ra_name = cf->cf_driver->cd_name;
oca.ca_ra.ra_paddr = ca->ca_ra.ra_paddr;
oca.ca_bustype = BUS_PFOUR;
if ((*cf->cf_driver->cd_match)(self, cf, &oca) == 0)
continue;
config_attach(self, cf, &oca, NULL);
}
}
bus_untmp();
}
void
pfour_reset()
{
*pfour_vaddr = PFOUR_REG_VIDEO | PFOUR_REG_RESET;
*pfour_vaddr = PFOUR_REG_VIDEO;
}
int
pfour_videosize(reg, xp, yp)
int reg;
int *xp, *yp;
{
if (PFOUR_ID(reg) == PFOUR_ID_COLOR24) {
*xp = 1152;
*yp = 900;
return 0;
}
switch (PFOUR_SIZE(reg)) {
case PFOUR_SIZE_1152X900:
*xp = 1152;
*yp = 900;
break;
case PFOUR_SIZE_1024X1024:
*xp = 1024;
*yp = 1024;
break;
case PFOUR_SIZE_1280X1024:
*xp = 1280;
*yp = 1024;
break;
case PFOUR_SIZE_1600X1280:
*xp = 1600;
*yp = 1280;
break;
case PFOUR_SIZE_1440X1440:
*xp = 1440;
*yp = 1440;
break;
case PFOUR_SIZE_640X480:
*xp = 640;
*yp = 480;
break;
default:
*xp = 1152; /* assume, but indicate error */
*yp = 900;
return (-1);
}
return (0);
}
|