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
|
/* $NetBSD: video_subr.c,v 1.13 2012/02/12 16:34:11 matt Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by UCHIYAMA Yasushi.
*
* 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 NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``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 FOUNDATION OR CONTRIBUTORS
* 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/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: video_subr.c,v 1.13 2012/02/12 16:34:11 matt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <machine/bootinfo.h>
#include <dev/hpc/video_subr.h>
#define BPP2 ({ \
u_int8_t bitmap; \
bitmap = *(volatile u_int8_t*)addr; \
*(volatile u_int8_t*)addr = \
(bitmap & ~(0x3 << ((3 - (x % 4)) * 2))); \
})
#define BPP4 ({ \
u_int8_t bitmap; \
bitmap = *(volatile u_int8_t*)addr; \
*(volatile u_int8_t*)addr = \
(bitmap & ~(0xf << ((1 - (x % 2)) * 4))); \
})
#define BPP8 ({ \
*(volatile u_int8_t*)addr = 0xff; \
})
#define BRESENHAM(a, b, c, d, func) ({ \
u_int32_t fbaddr = vc->vc_fbvaddr; \
u_int32_t fbwidth = vc->vc_fbwidth; \
u_int32_t fbdepth = vc->vc_fbdepth; \
len = a, step = b -1; \
if (step == 0) \
return; \
kstep = len == 0 ? 0 : 1; \
for (i = k = 0, j = step / 2; i <= step; i++) { \
x = xbase c; \
y = ybase d; \
addr = fbaddr + (((y * fbwidth + x) * fbdepth) >> 3); \
func; \
j -= len; \
while (j < 0) { \
j += step; \
k += kstep; \
} \
} \
})
#define DRAWLINE(func) ({ \
if (x < 0) { \
if (y < 0) { \
if (_y < _x) { \
BRESENHAM(_y, _x, -i, -k, func); \
} else { \
BRESENHAM(_x, _y, -k, -i, func); \
} \
} else { \
if (_y < _x) { \
BRESENHAM(_y, _x, -i, +k, func); \
} else { \
BRESENHAM(_x, _y, -k, +i, func); \
} \
} \
} else { \
if (y < 0) { \
if (_y < _x) { \
BRESENHAM(_y, _x, +i, -k, func); \
} else { \
BRESENHAM(_x, _y, +k, -i, func); \
} \
} else { \
if (_y < _x) { \
BRESENHAM(_y, _x, +i, +k, func); \
} else { \
BRESENHAM(_x, _y, +k, +i, func); \
} \
} \
} \
})
#define LINEFUNC(b) \
static void \
linebpp##b(struct video_chip *vc, int x0, int y0, int x1, int y1) \
{ \
u_int32_t addr; \
int i, j, k, len, step, kstep; \
int x, _x, y, _y; \
int xbase, ybase; \
x = x1 - x0; \
y = y1 - y0; \
_x = abs(x); \
_y = abs(y); \
xbase = x0; \
ybase = y0; \
DRAWLINE(BPP##b); \
}
#define DOTFUNC(b) \
static void \
dotbpp##b(struct video_chip *vc, int x, int y) \
{ \
u_int32_t addr; \
addr = vc->vc_fbvaddr + (((y * vc->vc_fbwidth + x) * \
vc->vc_fbdepth) >> 3); \
BPP##b; \
}
LINEFUNC(2)
LINEFUNC(4)
LINEFUNC(8)
DOTFUNC(2)
DOTFUNC(4)
DOTFUNC(8)
static void linebpp_unimpl(struct video_chip *, int, int, int, int);
static void dotbpp_unimpl(struct video_chip *, int, int);
int
cmap_work_alloc(u_int8_t **r, u_int8_t **g, u_int8_t **b, u_int32_t **rgb,
int cnt)
{
KASSERT(LEGAL_CLUT_INDEX(cnt - 1));
#define ALLOC_BUF(x, bit) \
if (x) { \
*x = malloc(cnt * sizeof(u_int ## bit ## _t), \
M_DEVBUF, M_WAITOK); \
if (*x == 0) \
goto errout; \
}
ALLOC_BUF(r, 8);
ALLOC_BUF(g, 8);
ALLOC_BUF(b, 8);
ALLOC_BUF(rgb, 32);
#undef ALLOCBUF
return (0);
errout:
cmap_work_free(*r, *g, *b, *rgb);
return (ENOMEM);
}
void
cmap_work_free(u_int8_t *r, u_int8_t *g, u_int8_t *b, u_int32_t *rgb)
{
if (r)
free(r, M_DEVBUF);
if (g)
free(g, M_DEVBUF);
if (b)
free(b, M_DEVBUF);
if (rgb)
free(rgb, M_DEVBUF);
}
void
rgb24_compose(u_int32_t *rgb24, u_int8_t *r, u_int8_t *g, u_int8_t *b, int cnt)
{
int i;
KASSERT(rgb24 && r && g && b && LEGAL_CLUT_INDEX(cnt - 1));
for (i = 0; i < cnt; i++) {
*rgb24++ = RGB24(r[i], g[i], b[i]);
}
}
void
rgb24_decompose(u_int32_t *rgb24, u_int8_t *r, u_int8_t *g, u_int8_t *b,
int cnt)
{
int i;
KASSERT(rgb24 && r && g && b && LEGAL_CLUT_INDEX(cnt - 1));
for (i = 0; i < cnt; i++) {
u_int32_t rgb = *rgb24++;
*r++ = (rgb >> 16) & 0xff;
*g++ = (rgb >> 8) & 0xff;
*b++ = rgb & 0xff;
}
}
/*
* Debug routines.
*/
void
video_calibration_pattern(struct video_chip *vc)
{
int x, y;
x = vc->vc_fbwidth - 40;
y = vc->vc_fbheight - 40;
video_line(vc, 40, 40, x , 40);
video_line(vc, x , 40, x , y );
video_line(vc, x , y , 40, y );
video_line(vc, 40, y , 40, 40);
video_line(vc, 40, 40, x , y );
video_line(vc, x, 40, 40, y );
}
static void
linebpp_unimpl(struct video_chip *vc,
int x0, int y0,
int x1, int y1)
{
return;
}
static void
dotbpp_unimpl(struct video_chip *vc, int x, int y)
{
return;
}
void
video_attach_drawfunc(struct video_chip *vc)
{
switch (vc->vc_fbdepth) {
default:
vc->vc_drawline = linebpp_unimpl;
vc->vc_drawdot = dotbpp_unimpl;
break;
case 8:
vc->vc_drawline = linebpp8;
vc->vc_drawdot = dotbpp8;
break;
case 4:
vc->vc_drawline = linebpp4;
vc->vc_drawdot = dotbpp4;
break;
case 2:
vc->vc_drawline = linebpp2;
vc->vc_drawdot = dotbpp2;
break;
}
}
void
video_line(struct video_chip *vc, int x0, int y0, int x1, int y1)
{
if (vc->vc_drawline)
vc->vc_drawline(vc, x0, y0, x1, y1);
}
void
video_dot(struct video_chip *vc, int x, int y)
{
if (vc->vc_drawdot)
vc->vc_drawdot(vc, x, y);
}
int
video_reverse_color(void)
{
struct {
int reverse, normal;
} ctype[] = {
{ BIFB_D2_M2L_3, BIFB_D2_M2L_0 },
{ BIFB_D2_M2L_3x2, BIFB_D2_M2L_0x2 },
{ BIFB_D8_FF, BIFB_D8_00 },
{ BIFB_D16_FFFF, BIFB_D16_0000, },
{ -1, -1 } /* terminator */
}, *ctypep;
u_int16_t fbtype;
/* check reverse color */
fbtype = bootinfo->fb_type;
for (ctypep = ctype; ctypep->normal != -1 ; ctypep++) {
if (fbtype == ctypep->normal) {
return (0);
} else if (fbtype == ctypep->reverse) {
return (1);
}
}
printf(": WARNING unknown frame buffer type 0x%04x.\n", fbtype);
return (0);
}
|