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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
|
/* $OpenBSD: smfb.c,v 1.8 2010/08/26 18:57:14 miod Exp $ */
/*
* Copyright (c) 2009, 2010 Miodrag Vallat.
*
* 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.
*/
/*
* Minimal SiliconMotion SM502 and SM712 frame buffer driver.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <machine/cpu.h>
#include <uvm/uvm_extern.h>
#include <dev/ic/vgareg.h>
#include <dev/isa/isareg.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wsdisplayvar.h>
#include <dev/rasops/rasops.h>
#include <loongson/dev/voyagerreg.h>
#include <loongson/dev/voyagervar.h>
#include <loongson/dev/smfbreg.h>
#define DPR_READ(fb, reg) (fb)->dpr[(reg) / 4]
#define DPR_WRITE(fb, reg, val) (fb)->dpr[(reg) / 4] = (val)
#define REG_READ(fb, reg) (fb)->regs[(reg) / 4]
#define REG_WRITE(fb, reg, val) (fb)->regs[(reg) / 4] = (val)
struct smfb_softc;
/* minimal frame buffer information, suitable for early console */
struct smfb {
struct smfb_softc *sc;
struct rasops_info ri;
int is5xx;
volatile uint32_t *regs;
volatile uint32_t *dpr;
volatile uint8_t *mmio;
struct wsscreen_descr wsd;
};
struct smfb_softc {
struct device sc_dev;
struct smfb *sc_fb;
struct smfb sc_fb_store;
bus_space_tag_t sc_memt;
bus_space_handle_t sc_memh;
bus_space_tag_t sc_regt;
bus_space_handle_t sc_regh;
struct wsscreen_list sc_wsl;
struct wsscreen_descr *sc_scrlist[1];
int sc_nscr;
};
int smfb_pci_match(struct device *, void *, void *);
void smfb_pci_attach(struct device *, struct device *, void *);
int smfb_voyager_match(struct device *, void *, void *);
void smfb_voyager_attach(struct device *, struct device *, void *);
const struct cfattach smfb_pci_ca = {
sizeof(struct smfb_softc), smfb_pci_match, smfb_pci_attach
};
const struct cfattach smfb_voyager_ca = {
sizeof(struct smfb_softc), smfb_voyager_match, smfb_voyager_attach
};
struct cfdriver smfb_cd = {
NULL, "smfb", DV_DULL
};
int smfb_alloc_screen(void *, const struct wsscreen_descr *, void **, int *,
int *, long *);
void smfb_free_screen(void *, void *);
int smfb_ioctl(void *, u_long, caddr_t, int, struct proc *);
int smfb_show_screen(void *, void *, int, void (*)(void *, int, int),
void *);
paddr_t smfb_mmap(void *, off_t, int);
void smfb_burner(void *, uint, uint);
struct wsdisplay_accessops smfb_accessops = {
smfb_ioctl,
smfb_mmap,
smfb_alloc_screen,
smfb_free_screen,
smfb_show_screen,
NULL, /* load_font */
NULL, /* scrollback */
NULL, /* getchar */
smfb_burner
};
int smfb_setup(struct smfb *, vaddr_t, vaddr_t);
void smfb_copyrect(struct smfb *, int, int, int, int, int, int);
void smfb_fillrect(struct smfb *, int, int, int, int, int);
int smfb_copyrows(void *, int, int, int);
int smfb_copycols(void *, int, int, int, int);
int smfb_do_cursor(struct rasops_info *);
int smfb_erasecols(void *, int, int, int, long);
int smfb_eraserows(void *, int, int, long);
int smfb_wait(struct smfb *);
uint8_t smfb_mmio_read(struct smfb *, uint);
void smfb_mmio_write(struct smfb *, uint, uint8_t);
void smfb_attach_common(struct smfb_softc *, int);
static struct smfb smfbcn;
const struct pci_matchid smfb_devices[] = {
{ PCI_VENDOR_SMI, PCI_PRODUCT_SMI_SM712 }
};
int
smfb_pci_match(struct device *parent, void *vcf, void *aux)
{
struct pci_attach_args *pa = (struct pci_attach_args *)aux;
return pci_matchbyid(pa, smfb_devices, nitems(smfb_devices));
}
int
smfb_voyager_match(struct device *parent, void *vcf, void *aux)
{
struct voyager_attach_args *vaa = (struct voyager_attach_args *)aux;
struct cfdata *cf = (struct cfdata *)vcf;
return strcmp(vaa->vaa_name, cf->cf_driver->cd_name) == 0;
}
void
smfb_pci_attach(struct device *parent, struct device *self, void *aux)
{
struct smfb_softc *sc = (struct smfb_softc *)self;
struct pci_attach_args *pa = (struct pci_attach_args *)aux;
if (pci_mapreg_map(pa, PCI_MAPREG_START, PCI_MAPREG_TYPE_MEM,
BUS_SPACE_MAP_LINEAR, &sc->sc_memt, &sc->sc_memh,
NULL, NULL, 0) != 0) {
printf(": can't map frame buffer\n");
return;
}
smfb_attach_common(sc, 0);
}
void
smfb_voyager_attach(struct device *parent, struct device *self, void *aux)
{
struct smfb_softc *sc = (struct smfb_softc *)self;
struct voyager_attach_args *vaa = (struct voyager_attach_args *)aux;
sc->sc_memt = vaa->vaa_fbt;
sc->sc_memh = vaa->vaa_fbh;
sc->sc_regt = vaa->vaa_mmiot;
sc->sc_regh = vaa->vaa_mmioh;
smfb_attach_common(sc, 1);
}
void
smfb_attach_common(struct smfb_softc *sc, int is5xx)
{
struct wsemuldisplaydev_attach_args waa;
vaddr_t fbbase, regbase;
int console;
console = smfbcn.ri.ri_hw != NULL;
if (console) {
sc->sc_fb = &smfbcn;
sc->sc_fb->sc = sc;
} else {
sc->sc_fb = &sc->sc_fb_store;
sc->sc_fb->is5xx = is5xx;
fbbase = (vaddr_t)bus_space_vaddr(sc->sc_memt, sc->sc_memh);
if (is5xx) {
regbase = (vaddr_t)bus_space_vaddr(sc->sc_regt,
sc->sc_regh);
} else {
regbase = 0;
}
if (smfb_setup(sc->sc_fb, fbbase, regbase) != 0) {
printf(": can't setup frame buffer\n");
return;
}
}
/* XXX print resolution */
printf("\n");
sc->sc_scrlist[0] = &sc->sc_fb->wsd;
sc->sc_wsl.nscreens = 1;
sc->sc_wsl.screens = (const struct wsscreen_descr **)sc->sc_scrlist;
waa.console = console;
waa.scrdata = &sc->sc_wsl;
waa.accessops = &smfb_accessops;
waa.accesscookie = sc;
waa.defaultscreens = 0;
config_found((struct device *)sc, &waa, wsemuldisplaydevprint);
}
/*
* wsdisplay accesops
*/
int
smfb_alloc_screen(void *v, const struct wsscreen_descr *type, void **cookiep,
int *curxp, int *curyp, long *attrp)
{
struct smfb_softc *sc = (struct smfb_softc *)v;
struct rasops_info *ri = &sc->sc_fb->ri;
if (sc->sc_nscr > 0)
return ENOMEM;
*cookiep = ri;
*curxp = *curyp = 0;
ri->ri_ops.alloc_attr(ri, 0, 0, 0, attrp);
sc->sc_nscr++;
return 0;
}
void
smfb_free_screen(void *v, void *cookie)
{
struct smfb_softc *sc = (struct smfb_softc *)v;
sc->sc_nscr--;
}
int
smfb_ioctl(void *v, u_long cmd, caddr_t data, int flags, struct proc *p)
{
struct smfb_softc *sc = (struct smfb_softc *)v;
struct rasops_info *ri = &sc->sc_fb->ri;
struct wsdisplay_fbinfo *wdf;
switch (cmd) {
case WSDISPLAYIO_GTYPE:
*(uint *)data = WSDISPLAY_TYPE_SMFB;
break;
case WSDISPLAYIO_GINFO:
wdf = (struct wsdisplay_fbinfo *)data;
wdf->width = ri->ri_width;
wdf->height = ri->ri_height;
wdf->depth = ri->ri_depth;
wdf->cmsize = 0;
break;
case WSDISPLAYIO_LINEBYTES:
*(uint *)data = ri->ri_stride;
break;
default:
return -1;
}
return 0;
}
int
smfb_show_screen(void *v, void *cookie, int waitok,
void (*cb)(void *, int, int), void *cbarg)
{
return 0;
}
paddr_t
smfb_mmap(void *v, off_t offset, int prot)
{
struct smfb_softc *sc = (struct smfb_softc *)v;
struct rasops_info *ri = &sc->sc_fb->ri;
paddr_t pa;
if ((offset & PAGE_MASK) != 0)
return -1;
if (offset < 0 || offset >= ri->ri_stride * ri->ri_height)
return -1;
pa = XKPHYS_TO_PHYS((paddr_t)ri->ri_bits) + offset;
return atop(pa);
}
void
smfb_burner(void *v, uint on, uint flg)
{
struct smfb_softc *sc = (struct smfb_softc *)v;
struct smfb *fb = sc->sc_fb;
if (fb->is5xx) {
/* XXX TBD */
} else {
if (on) {
smfb_mmio_write(fb, 0x31,
smfb_mmio_read(fb, 0x31) | 0x01);
} else {
smfb_mmio_write(fb, 0x21,
smfb_mmio_read(fb, 0x21) | 0x30);
smfb_mmio_write(fb, 0x31,
smfb_mmio_read(fb, 0x31) & ~0x01);
}
}
}
/*
* Frame buffer initialization.
*/
int
smfb_setup(struct smfb *fb, vaddr_t fbbase, vaddr_t regbase)
{
struct rasops_info *ri;
int accel = 0;
ri = &fb->ri;
ri->ri_width = 1024;
ri->ri_height = 600;
ri->ri_depth = 16;
ri->ri_stride = (ri->ri_width * ri->ri_depth) / 8;
ri->ri_flg = RI_CENTER | RI_CLEAR | RI_FULLCLEAR;
ri->ri_bits = (void *)fbbase;
ri->ri_hw = fb;
#ifdef __MIPSEL__
/* swap B and R */
ri->ri_rnum = 5;
ri->ri_rpos = 11;
ri->ri_gnum = 6;
ri->ri_gpos = 5;
ri->ri_bnum = 5;
ri->ri_bpos = 0;
#endif
rasops_init(ri, 160, 160);
strlcpy(fb->wsd.name, "std", sizeof(fb->wsd.name));
fb->wsd.ncols = ri->ri_cols;
fb->wsd.nrows = ri->ri_rows;
fb->wsd.textops = &ri->ri_ops;
fb->wsd.fontwidth = ri->ri_font->fontwidth;
fb->wsd.fontheight = ri->ri_font->fontheight;
fb->wsd.capabilities = ri->ri_caps;
if (fb->is5xx) {
fb->dpr = (volatile uint32_t *)(regbase + SM5XX_DPR_BASE);
fb->mmio = NULL;
fb->regs = (volatile uint32_t *)(regbase + SM5XX_MMIO_BASE);
accel = 1;
} else {
fb->dpr = (volatile uint32_t *)(fbbase + SM7XX_DPR_BASE);
fb->mmio = (volatile uint8_t *)(fbbase + SM7XX_MMIO_BASE);
fb->regs = NULL;
accel = 1;
}
/*
* Setup 2D acceleration whenever possible
*/
if (accel) {
if (smfb_wait(fb) != 0)
accel = 0;
}
if (accel) {
DPR_WRITE(fb, DPR_CROP_TOPLEFT_COORDS, DPR_COORDS(0, 0));
/* use of width both times is intentional */
DPR_WRITE(fb, DPR_PITCH,
DPR_COORDS(ri->ri_width, ri->ri_width));
DPR_WRITE(fb, DPR_SRC_WINDOW,
DPR_COORDS(ri->ri_width, ri->ri_width));
DPR_WRITE(fb, DPR_BYTE_BIT_MASK, 0xffffffff);
DPR_WRITE(fb, DPR_COLOR_COMPARE_MASK, 0);
DPR_WRITE(fb, DPR_COLOR_COMPARE, 0);
DPR_WRITE(fb, DPR_SRC_BASE, 0);
DPR_WRITE(fb, DPR_DST_BASE, 0);
DPR_READ(fb, DPR_DST_BASE);
ri->ri_ops.copycols = smfb_copycols;
ri->ri_ops.copyrows = smfb_copyrows;
ri->ri_ops.erasecols = smfb_erasecols;
ri->ri_ops.eraserows = smfb_eraserows;
}
return 0;
}
void
smfb_copyrect(struct smfb *fb, int sx, int sy, int dx, int dy, int w, int h)
{
uint32_t dir;
/* Compute rop direction */
if (sy < dy || (sy == dy && sx <= dx)) {
sx += w - 1;
dx += w - 1;
sy += h - 1;
dy += h - 1;
dir = DE_CTRL_RTOL;
} else
dir = 0;
DPR_WRITE(fb, DPR_SRC_COORDS, DPR_COORDS(sx, sy));
DPR_WRITE(fb, DPR_DST_COORDS, DPR_COORDS(dx, dy));
DPR_WRITE(fb, DPR_SPAN_COORDS, DPR_COORDS(w, h));
DPR_WRITE(fb, DPR_DE_CTRL, DE_CTRL_START | DE_CTRL_ROP_ENABLE | dir |
(DE_CTRL_COMMAND_BITBLT << DE_CTRL_COMMAND_SHIFT) |
(DE_CTRL_ROP_SRC << DE_CTRL_ROP_SHIFT));
DPR_READ(fb, DPR_DE_CTRL);
smfb_wait(fb);
}
void
smfb_fillrect(struct smfb *fb, int x, int y, int w, int h, int bg)
{
struct rasops_info *ri;
ri = &fb->ri;
DPR_WRITE(fb, DPR_FG_COLOR, ri->ri_devcmap[bg]);
DPR_WRITE(fb, DPR_DST_COORDS, DPR_COORDS(x, y));
DPR_WRITE(fb, DPR_SPAN_COORDS, DPR_COORDS(w, h));
DPR_WRITE(fb, DPR_DE_CTRL, DE_CTRL_START | DE_CTRL_ROP_ENABLE |
(DE_CTRL_COMMAND_SOLIDFILL << DE_CTRL_COMMAND_SHIFT) |
(DE_CTRL_ROP_SRC << DE_CTRL_ROP_SHIFT));
DPR_READ(fb, DPR_DE_CTRL);
smfb_wait(fb);
}
int
smfb_copyrows(void *cookie, int src, int dst, int num)
{
struct rasops_info *ri = cookie;
struct smfb *fb = ri->ri_hw;
struct wsdisplay_font *f = ri->ri_font;
num *= f->fontheight;
src *= f->fontheight;
dst *= f->fontheight;
smfb_copyrect(fb, ri->ri_xorigin, ri->ri_yorigin + src,
ri->ri_xorigin, ri->ri_yorigin + dst, ri->ri_emuwidth, num);
return 0;
}
int
smfb_copycols(void *cookie, int row, int src, int dst, int num)
{
struct rasops_info *ri = cookie;
struct smfb *fb = ri->ri_hw;
struct wsdisplay_font *f = ri->ri_font;
num *= f->fontwidth;
src *= f->fontwidth;
dst *= f->fontwidth;
row *= f->fontheight;
smfb_copyrect(fb, ri->ri_xorigin + src, ri->ri_yorigin + row,
ri->ri_xorigin + dst, ri->ri_yorigin + row, num, f->fontheight);
return 0;
}
int
smfb_erasecols(void *cookie, int row, int col, int num, long attr)
{
struct rasops_info *ri = cookie;
struct smfb *fb = ri->ri_hw;
struct wsdisplay_font *f = ri->ri_font;
int bg, fg;
ri->ri_ops.unpack_attr(cookie, attr, &fg, &bg, NULL);
row *= f->fontheight;
col *= f->fontwidth;
num *= f->fontwidth;
smfb_fillrect(fb, ri->ri_xorigin + col, ri->ri_yorigin + row,
num, f->fontheight, ri->ri_devcmap[bg]);
return 0;
}
int
smfb_eraserows(void *cookie, int row, int num, long attr)
{
struct rasops_info *ri = cookie;
struct smfb *fb = ri->ri_hw;
struct wsdisplay_font *f = ri->ri_font;
int bg, fg;
int x, y, w;
ri->ri_ops.unpack_attr(cookie, attr, &fg, &bg, NULL);
if ((num == ri->ri_rows) && ISSET(ri->ri_flg, RI_FULLCLEAR)) {
num = ri->ri_height;
x = y = 0;
w = ri->ri_width;
} else {
num *= f->fontheight;
x = ri->ri_xorigin;
y = ri->ri_yorigin + row * f->fontheight;
w = ri->ri_emuwidth;
}
smfb_fillrect(fb, x, y, w, num, ri->ri_devcmap[bg]);
return 0;
}
int
smfb_wait(struct smfb *fb)
{
uint32_t reg;
int i;
i = 10000;
while (i-- != 0) {
if (fb->is5xx) {
reg = REG_READ(fb, VOYAGER_SYSTEM_CONTROL);
if ((reg & (VSC_FIFO_EMPTY | VSC_2DENGINE_BUSY)) ==
VSC_FIFO_EMPTY)
return 0;
} else {
reg = smfb_mmio_read(fb, 0x16);
if ((reg & 0x18) == 0x10)
return 0;
}
delay(1);
}
return EBUSY;
}
uint8_t
smfb_mmio_read(struct smfb *fb, uint regno)
{
fb->mmio[IO_VGA + VGA_TS_INDEX] = regno;
(void)fb->mmio[IO_VGA + VGA_TS_INDEX]; /* posted write */
return fb->mmio[IO_VGA + VGA_TS_DATA];
}
void
smfb_mmio_write(struct smfb *fb, uint regno, uint8_t value)
{
fb->mmio[IO_VGA + VGA_TS_INDEX] = regno;
(void)fb->mmio[IO_VGA + VGA_TS_INDEX]; /* posted write */
fb->mmio[IO_VGA + VGA_TS_DATA] = value;
(void)fb->mmio[IO_VGA + VGA_TS_DATA]; /* posted write */
}
/*
* Early console code
*/
int smfb_cnattach(bus_space_tag_t, bus_space_tag_t, pcitag_t, pcireg_t);
int
smfb_cnattach(bus_space_tag_t memt, bus_space_tag_t iot, pcitag_t tag,
pcireg_t id)
{
long defattr;
struct rasops_info *ri;
bus_space_handle_t fbh, regh;
vaddr_t fbbase, regbase;
pcireg_t bar;
int rc, is5xx;
/* filter out unrecognized devices */
switch (id) {
default:
return ENODEV;
case PCI_ID_CODE(PCI_VENDOR_SMI, PCI_PRODUCT_SMI_SM712):
is5xx = 0;
break;
case PCI_ID_CODE(PCI_VENDOR_SMI, PCI_PRODUCT_SMI_SM501):
is5xx = 1;
break;
}
smfbcn.is5xx = is5xx;
bar = pci_conf_read_early(tag, PCI_MAPREG_START);
if (PCI_MAPREG_TYPE(bar) != PCI_MAPREG_TYPE_MEM)
return EINVAL;
rc = bus_space_map(memt, PCI_MAPREG_MEM_ADDR(bar), 1 /* XXX */,
BUS_SPACE_MAP_LINEAR, &fbh);
if (rc != 0)
return rc;
fbbase = (vaddr_t)bus_space_vaddr(memt, fbh);
if (smfbcn.is5xx) {
bar = pci_conf_read_early(tag, PCI_MAPREG_START + 0x04);
if (PCI_MAPREG_TYPE(bar) != PCI_MAPREG_TYPE_MEM)
return EINVAL;
rc = bus_space_map(memt, PCI_MAPREG_MEM_ADDR(bar), 1 /* XXX */,
BUS_SPACE_MAP_LINEAR, ®h);
if (rc != 0)
return rc;
regbase = (vaddr_t)bus_space_vaddr(memt, regh);
} else {
regbase = 0;
}
rc = smfb_setup(&smfbcn, fbbase, regbase);
if (rc != 0)
return rc;
ri = &smfbcn.ri;
ri->ri_ops.alloc_attr(ri, 0, 0, 0, &defattr);
wsdisplay_cnattach(&smfbcn.wsd, ri, 0, 0, defattr);
return 0;
}
|