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
|
/* $OpenBSD: simplefb.c,v 1.20 2023/04/16 11:34:32 kettenis Exp $ */
/*
* Copyright (c) 2016 Mark Kettenis
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <uvm/uvm_extern.h>
#include <machine/bus.h>
#include <machine/fdt.h>
#include <dev/ofw/openfirm.h>
#include <dev/ofw/fdt.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsdisplayvar.h>
#include <dev/rasops/rasops.h>
#define SIMPLEFB_WIDTH 160
#define SIMPLEFB_HEIGHT 50
struct simplefb_format {
const char *format;
int depth;
int rpos, rnum;
int gpos, gnum;
int bpos, bnum;
};
/*
* Supported pixel formats. Layout omitted when it matches the
* rasops defaults.
*/
const struct simplefb_format simplefb_formats[] = {
{ "r5g6b5", 16 },
{ "x1r5g5b5", 15 },
{ "a1r5g5b5", 15 },
{ "r8g8b8", 24 },
{ "x8r8g8b8", 32, 16, 8, 8, 8, 0, 8 },
{ "a8r8g8b8", 32, 16, 8, 8, 8, 0, 8 },
{ "x8b8g8r8", 32 },
{ "a8b8g8r8", 32 },
{ "x2r10g10b10", 32, 20, 10, 10, 10, 0, 10 },
{ "a2r10g10b10", 32, 20, 10, 10, 10, 0, 10 },
};
struct simplefb_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
struct rasops_info sc_ri;
struct wsscreen_descr sc_wsd;
struct wsscreen_list sc_wsl;
struct wsscreen_descr *sc_scrlist[1];
struct simplefb_format *sc_format;
paddr_t sc_paddr;
psize_t sc_psize;
};
void (*simplefb_burn_hook)(u_int) = NULL;
struct rasops_info simplefb_ri;
struct wsscreen_descr simplefb_wsd = { "std" };
struct wsdisplay_charcell simplefb_bs[SIMPLEFB_WIDTH * SIMPLEFB_HEIGHT];
int simplefb_match(struct device *, void *, void *);
void simplefb_attach(struct device *, struct device *, void *);
const struct cfattach simplefb_ca = {
sizeof(struct simplefb_softc), simplefb_match, simplefb_attach
};
struct cfdriver simplefb_cd = {
NULL, "simplefb", DV_DULL
};
const char *simplefb_init(int, struct rasops_info *);
int simplefb_wsioctl(void *, u_long, caddr_t, int, struct proc *);
paddr_t simplefb_wsmmap(void *, off_t, int);
int simplefb_alloc_screen(void *, const struct wsscreen_descr *,
void **, int *, int *, uint32_t *);
void simplefb_burn_screen(void *, u_int, u_int);
struct wsdisplay_accessops simplefb_accessops = {
.ioctl = simplefb_wsioctl,
.mmap = simplefb_wsmmap,
.alloc_screen = simplefb_alloc_screen,
.free_screen = rasops_free_screen,
.show_screen = rasops_show_screen,
.getchar = rasops_getchar,
.load_font = rasops_load_font,
.list_font = rasops_list_font,
.scrollback = rasops_scrollback,
.burn_screen = simplefb_burn_screen,
};
int
simplefb_match(struct device *parent, void *match, void *aux)
{
struct fdt_attach_args *faa = aux;
/* Don't attach if it has no address space. */
if (faa->fa_nreg < 1 || faa->fa_reg[0].size == 0)
return 0;
/* Don't attach if another driver already claimed our framebuffer. */
if (rasops_check_framebuffer(faa->fa_reg[0].addr))
return 0;
return OF_is_compatible(faa->fa_node, "simple-framebuffer");
}
void
simplefb_attach(struct device *parent, struct device *self, void *aux)
{
struct simplefb_softc *sc = (struct simplefb_softc *)self;
struct fdt_attach_args *faa = aux;
struct rasops_info *ri = &sc->sc_ri;
struct wsemuldisplaydev_attach_args waa;
const char *format;
int console = 0;
uint32_t defattr;
format = simplefb_init(faa->fa_node, ri);
if (format) {
printf(": unsupported format \"%s\"\n", format);
return;
}
if (faa->fa_node == stdout_node)
console = 1;
sc->sc_iot = faa->fa_iot;
sc->sc_paddr = faa->fa_reg[0].addr;
sc->sc_psize = faa->fa_reg[0].size;
if (bus_space_map(sc->sc_iot, sc->sc_paddr, sc->sc_psize,
BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_PREFETCHABLE, &sc->sc_ioh)) {
printf(": can't map framebuffer\n");
return;
}
ri->ri_bits = bus_space_vaddr(sc->sc_iot, sc->sc_ioh);
ri->ri_hw = sc;
if (console) {
/* Preserve contents. */
ri->ri_bs = simplefb_bs;
ri->ri_flg &= ~RI_CLEAR;
}
printf(": %dx%d, %dbpp\n", ri->ri_width, ri->ri_height, ri->ri_depth);
ri->ri_flg |= RI_VCONS;
rasops_init(ri, SIMPLEFB_HEIGHT, SIMPLEFB_WIDTH);
strlcpy(sc->sc_wsd.name, "std", sizeof(sc->sc_wsd.name));
sc->sc_wsd.capabilities = ri->ri_caps;
sc->sc_wsd.nrows = ri->ri_rows;
sc->sc_wsd.ncols = ri->ri_cols;
sc->sc_wsd.textops = &ri->ri_ops;
sc->sc_wsd.fontwidth = ri->ri_font->fontwidth;
sc->sc_wsd.fontheight = ri->ri_font->fontheight;
sc->sc_scrlist[0] = &sc->sc_wsd;
sc->sc_wsl.nscreens = 1;
sc->sc_wsl.screens = (const struct wsscreen_descr **)sc->sc_scrlist;
if (console) {
ri->ri_ops.pack_attr(ri->ri_active, 0, 0, 0, &defattr);
wsdisplay_cnattach(&sc->sc_wsd, ri->ri_active,
simplefb_ri.ri_ccol, simplefb_ri.ri_crow, defattr);
}
memset(&waa, 0, sizeof(waa));
waa.scrdata = &sc->sc_wsl;
waa.accessops = &simplefb_accessops;
waa.accesscookie = ri;
waa.console = console;
config_found_sm(self, &waa, wsemuldisplaydevprint,
wsemuldisplaydevsubmatch);
}
const char *
simplefb_init(int node, struct rasops_info *ri)
{
const struct simplefb_format *fmt = NULL;
static char format[16];
int i;
format[0] = 0;
OF_getprop(node, "format", format, sizeof(format));
format[sizeof(format) - 1] = 0;
for (i = 0; i < nitems(simplefb_formats); i++) {
if (strcmp(format, simplefb_formats[i].format) == 0) {
fmt = &simplefb_formats[i];
break;
}
}
if (fmt == NULL)
return format;
ri->ri_width = OF_getpropint(node, "width", 0);
ri->ri_height = OF_getpropint(node, "height", 0);
ri->ri_stride = OF_getpropint(node, "stride", 0);
ri->ri_depth = fmt->depth;
ri->ri_rpos = fmt->rpos;
ri->ri_rnum = fmt->rnum;
ri->ri_gpos = fmt->gpos;
ri->ri_gnum = fmt->gnum;
ri->ri_bpos = fmt->bpos;
ri->ri_bnum = fmt->bnum;
ri->ri_flg = RI_CENTER | RI_CLEAR | RI_FULLCLEAR | RI_WRONLY;
return NULL;
}
int
simplefb_wsioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
{
struct rasops_info *ri = v;
struct simplefb_softc *sc = ri->ri_hw;
struct wsdisplay_param *dp = (struct wsdisplay_param *)data;
struct wsdisplay_fbinfo *wdf;
switch (cmd) {
case WSDISPLAYIO_GETPARAM:
if (ws_get_param)
return ws_get_param(dp);
return -1;
case WSDISPLAYIO_SETPARAM:
if (ws_set_param)
return ws_set_param(dp);
return -1;
case WSDISPLAYIO_GTYPE:
*(u_int *)data = WSDISPLAY_TYPE_EFIFB;
return 0;
case WSDISPLAYIO_GINFO:
wdf = (struct wsdisplay_fbinfo *)data;
wdf->width = ri->ri_width;
wdf->height = ri->ri_height;
wdf->depth = ri->ri_depth;
wdf->stride = ri->ri_stride;
wdf->offset = sc->sc_paddr & PAGE_MASK;
wdf->cmsize = 0; /* color map is unavailable */
break;
case WSDISPLAYIO_LINEBYTES:
*(u_int *)data = ri->ri_stride;
break;
case WSDISPLAYIO_SMODE:
break;
case WSDISPLAYIO_GETSUPPORTEDDEPTH:
switch (ri->ri_depth) {
case 32:
if (ri->ri_rnum == 10)
*(u_int *)data = WSDISPLAYIO_DEPTH_30;
else
*(u_int *)data = WSDISPLAYIO_DEPTH_24_32;
break;
case 24:
*(u_int *)data = WSDISPLAYIO_DEPTH_24_24;
break;
case 16:
*(u_int *)data = WSDISPLAYIO_DEPTH_16;
break;
case 15:
*(u_int *)data = WSDISPLAYIO_DEPTH_15;
break;
default:
return -1;
}
break;
case WSDISPLAYIO_GVIDEO:
case WSDISPLAYIO_SVIDEO:
break;
default:
return -1;
}
return 0;
}
paddr_t
simplefb_wsmmap(void *v, off_t off, int prot)
{
struct rasops_info *ri = v;
struct simplefb_softc *sc = ri->ri_hw;
if (off < 0 || off >= (sc->sc_psize + (sc->sc_paddr & PAGE_MASK)))
return -1;
return (((sc->sc_paddr & ~PAGE_MASK) + off) | PMAP_NOCACHE);
}
int
simplefb_alloc_screen(void *v, const struct wsscreen_descr *type,
void **cookiep, int *curxp, int *curyp, uint32_t *attrp)
{
return rasops_alloc_screen(v, cookiep, curxp, curyp, attrp);
}
void
simplefb_burn_screen(void *v, u_int on, u_int flags)
{
if (simplefb_burn_hook != NULL)
simplefb_burn_hook(on);
}
#include "ukbd.h"
#if NUKBD > 0
#include <dev/usb/ukbdvar.h>
#endif
void
simplefb_init_cons(bus_space_tag_t iot)
{
struct rasops_info *ri = &simplefb_ri;
bus_space_handle_t ioh;
struct fdt_reg reg;
void *node;
uint32_t defattr = 0;
node = fdt_find_cons("simple-framebuffer");
if (node == NULL)
return;
if (fdt_get_reg(node, 0, ®))
return;
if (bus_space_map(iot, reg.addr, reg.size,
BUS_SPACE_MAP_LINEAR | BUS_SPACE_MAP_PREFETCHABLE, &ioh))
return;
ri->ri_bits = bus_space_vaddr(iot, ioh);
if (simplefb_init(stdout_node, ri))
return;
ri->ri_bs = simplefb_bs;
rasops_init(ri, SIMPLEFB_HEIGHT, SIMPLEFB_WIDTH);
simplefb_wsd.capabilities = ri->ri_caps;
simplefb_wsd.ncols = ri->ri_cols;
simplefb_wsd.nrows = ri->ri_rows;
simplefb_wsd.textops = &ri->ri_ops;
simplefb_wsd.fontwidth = ri->ri_font->fontwidth;
simplefb_wsd.fontheight = ri->ri_font->fontheight;
ri->ri_ops.pack_attr(ri, 0, 0, 0, &defattr);
wsdisplay_cnattach(&simplefb_wsd, ri, 0, 0, defattr);
#if NUKBD > 0
/* Allow USB keyboards to become the console input device. */
ukbd_cnattach();
#endif
}
|