tx3912video.c revision 1.17 1 1.17 mrg /* $NetBSD: tx3912video.c,v 1.17 2000/06/29 08:18:00 mrg Exp $ */
2 1.1 uch
3 1.11 uch /*-
4 1.11 uch * Copyright (c) 1999, 2000 UCHIYAMA Yasushi. All rights reserved.
5 1.1 uch *
6 1.1 uch * Redistribution and use in source and binary forms, with or without
7 1.1 uch * modification, are permitted provided that the following conditions
8 1.1 uch * are met:
9 1.1 uch * 1. Redistributions of source code must retain the above copyright
10 1.1 uch * notice, this list of conditions and the following disclaimer.
11 1.10 uch * 2. Redistributions in binary form must reproduce the above copyright
12 1.10 uch * notice, this list of conditions and the following disclaimer in the
13 1.10 uch * documentation and/or other materials provided with the distribution.
14 1.11 uch * 3. The name of the author may not be used to endorse or promote products
15 1.11 uch * derived from this software without specific prior written permission.
16 1.1 uch *
17 1.10 uch * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 1.10 uch * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 1.10 uch * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 1.10 uch * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 1.10 uch * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 1.10 uch * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 1.10 uch * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 1.10 uch * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 1.11 uch * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 1.11 uch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 1.1 uch */
28 1.15 uch #define TX3912VIDEO_DEBUG
29 1.10 uch
30 1.1 uch #include "opt_tx39_debug.h"
31 1.8 uch #include "hpcfb.h"
32 1.1 uch
33 1.1 uch #include <sys/param.h>
34 1.1 uch #include <sys/systm.h>
35 1.1 uch #include <sys/device.h>
36 1.1 uch #include <sys/extent.h>
37 1.1 uch
38 1.11 uch #include <sys/ioctl.h>
39 1.12 uch #include <sys/buf.h>
40 1.17 mrg
41 1.17 mrg #include <uvm/uvm_extern.h>
42 1.11 uch
43 1.1 uch #include <machine/bus.h>
44 1.10 uch #include <machine/bootinfo.h>
45 1.1 uch
46 1.1 uch #include <hpcmips/tx/tx39var.h>
47 1.1 uch #include <hpcmips/tx/tx3912videovar.h>
48 1.1 uch #include <hpcmips/tx/tx3912videoreg.h>
49 1.1 uch
50 1.12 uch /* CLUT */
51 1.12 uch #include <dev/wscons/wsdisplayvar.h>
52 1.12 uch #include <dev/rasops/rasops.h>
53 1.12 uch #include <arch/hpcmips/dev/video_subr.h>
54 1.12 uch
55 1.9 sato #include <dev/wscons/wsconsio.h>
56 1.8 uch #include <arch/hpcmips/dev/hpcfbvar.h>
57 1.8 uch #include <arch/hpcmips/dev/hpcfbio.h>
58 1.2 uch
59 1.1 uch struct tx3912video_softc {
60 1.1 uch struct device sc_dev;
61 1.11 uch struct hpcfb_fbconf sc_fbconf;
62 1.11 uch struct hpcfb_dspconf sc_dspconf;
63 1.15 uch struct video_chip *sc_chip;
64 1.1 uch };
65 1.1 uch
66 1.15 uch /* TX3912 built-in video chip itself */
67 1.15 uch static struct video_chip tx3912video_chip;
68 1.15 uch
69 1.15 uch void tx3912video_framebuffer_init __P((struct video_chip *));
70 1.15 uch int tx3912video_framebuffer_alloc __P((struct video_chip *,
71 1.15 uch paddr_t, paddr_t *));
72 1.15 uch void tx3912video_reset __P((struct video_chip *));
73 1.15 uch void tx3912video_resolution_init __P((struct video_chip *));
74 1.10 uch
75 1.10 uch int tx3912video_match __P((struct device *, struct cfdata *, void *));
76 1.10 uch void tx3912video_attach __P((struct device *, struct device *, void *));
77 1.10 uch int tx3912video_print __P((void *, const char *));
78 1.1 uch
79 1.11 uch void tx3912video_hpcfbinit __P((struct tx3912video_softc *));
80 1.11 uch int tx3912video_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
81 1.16 simonb paddr_t tx3912video_mmap __P((void *, off_t, int));
82 1.11 uch
83 1.12 uch void tx3912video_clut_init __P((struct tx3912video_softc *));
84 1.12 uch void tx3912video_clut_install __P((void *, struct rasops_info *));
85 1.12 uch void tx3912video_clut_get __P((struct tx3912video_softc *,
86 1.12 uch u_int32_t *, int, int));
87 1.12 uch static int __get_color8 __P((int));
88 1.12 uch static int __get_color4 __P((int));
89 1.12 uch
90 1.1 uch struct cfattach tx3912video_ca = {
91 1.3 uch sizeof(struct tx3912video_softc), tx3912video_match,
92 1.3 uch tx3912video_attach
93 1.1 uch };
94 1.1 uch
95 1.11 uch struct hpcfb_accessops tx3912video_ha = {
96 1.12 uch tx3912video_ioctl, tx3912video_mmap, 0, 0, 0, 0,
97 1.12 uch tx3912video_clut_install
98 1.11 uch };
99 1.11 uch
100 1.1 uch int
101 1.1 uch tx3912video_match(parent, cf, aux)
102 1.1 uch struct device *parent;
103 1.1 uch struct cfdata *cf;
104 1.1 uch void *aux;
105 1.1 uch {
106 1.10 uch return (1);
107 1.1 uch }
108 1.1 uch
109 1.1 uch void
110 1.1 uch tx3912video_attach(parent, self, aux)
111 1.1 uch struct device *parent;
112 1.1 uch struct device *self;
113 1.1 uch void *aux;
114 1.1 uch {
115 1.10 uch struct tx3912video_softc *sc = (void *)self;
116 1.15 uch struct video_chip *chip;
117 1.10 uch const char *depth_print[] = {
118 1.10 uch [TX3912_VIDEOCTRL1_BITSEL_MONOCHROME] = "monochrome",
119 1.10 uch [TX3912_VIDEOCTRL1_BITSEL_2BITGREYSCALE] = "2bit greyscale",
120 1.10 uch [TX3912_VIDEOCTRL1_BITSEL_4BITGREYSCALE] = "4bit greyscale",
121 1.10 uch [TX3912_VIDEOCTRL1_BITSEL_8BITCOLOR] = "8bit color"
122 1.10 uch };
123 1.11 uch struct hpcfb_attach_args ha;
124 1.12 uch tx_chipset_tag_t tc;
125 1.12 uch txreg_t val;
126 1.11 uch int console = (bootinfo->bi_cnuse & BI_CNUSE_SERIAL) ? 0 : 1;
127 1.10 uch
128 1.10 uch sc->sc_chip = chip = &tx3912video_chip;
129 1.10 uch
130 1.10 uch /* print video module information */
131 1.10 uch printf(": %s, frame buffer 0x%08x-0x%08x\n",
132 1.10 uch depth_print[(ffs(chip->vc_fbdepth) - 1) & 0x3],
133 1.15 uch (unsigned)chip->vc_fbpaddr,
134 1.15 uch (unsigned)(chip->vc_fbpaddr + chip->vc_fbsize));
135 1.5 uch
136 1.12 uch /* don't inverse VDAT[3:0] signal */
137 1.15 uch tc = chip->vc_v;
138 1.12 uch val = tx_conf_read(tc, TX3912_VIDEOCTRL1_REG);
139 1.12 uch val &= ~TX3912_VIDEOCTRL1_INVVID;
140 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL1_REG, val);
141 1.12 uch
142 1.12 uch /* install default CLUT */
143 1.12 uch tx3912video_clut_init(sc);
144 1.12 uch
145 1.10 uch /* if serial console, power off video module */
146 1.6 uch #ifndef TX3912VIDEO_DEBUG
147 1.11 uch if (!console) {
148 1.5 uch printf("%s: power off\n", sc->sc_dev.dv_xname);
149 1.13 uch val = tx_conf_read(tc, TX3912_VIDEOCTRL1_REG);
150 1.13 uch val &= ~(TX3912_VIDEOCTRL1_DISPON |
151 1.4 uch TX3912_VIDEOCTRL1_ENVID);
152 1.13 uch tx_conf_write(tc, TX3912_VIDEOCTRL1_REG, val);
153 1.4 uch }
154 1.6 uch #endif /* TX3912VIDEO_DEBUG */
155 1.6 uch
156 1.13 uch #ifdef TX3912VIDEO_DEBUG
157 1.10 uch /* attach debug draw routine (debugging use) */
158 1.15 uch video_attach_drawfunc(sc->sc_chip);
159 1.15 uch tx_conf_register_video(tc, sc->sc_chip);
160 1.13 uch #endif
161 1.10 uch
162 1.1 uch /* Attach frame buffer device */
163 1.11 uch tx3912video_hpcfbinit(sc);
164 1.11 uch
165 1.11 uch if (console && hpcfb_cnattach(&sc->sc_fbconf) != 0) {
166 1.11 uch panic("tx3912video_attach: can't init fb console");
167 1.2 uch }
168 1.11 uch
169 1.11 uch ha.ha_console = console;
170 1.11 uch ha.ha_accessops = &tx3912video_ha;
171 1.11 uch ha.ha_accessctx = sc;
172 1.11 uch ha.ha_curfbconf = 0;
173 1.11 uch ha.ha_nfbconf = 1;
174 1.11 uch ha.ha_fbconflist = &sc->sc_fbconf;
175 1.11 uch ha.ha_curdspconf = 0;
176 1.11 uch ha.ha_ndspconf = 1;
177 1.11 uch ha.ha_dspconflist = &sc->sc_dspconf;
178 1.11 uch
179 1.11 uch config_found(self, &ha, hpcfbprint);
180 1.1 uch }
181 1.1 uch
182 1.11 uch void
183 1.11 uch tx3912video_hpcfbinit(sc)
184 1.11 uch struct tx3912video_softc *sc;
185 1.1 uch {
186 1.15 uch struct video_chip *chip = sc->sc_chip;
187 1.11 uch struct hpcfb_fbconf *fb = &sc->sc_fbconf;
188 1.15 uch vaddr_t fbvaddr = (vaddr_t)MIPS_PHYS_TO_KSEG1(chip->vc_fbpaddr);
189 1.11 uch
190 1.11 uch memset(fb, 0, sizeof(struct hpcfb_fbconf));
191 1.11 uch
192 1.11 uch fb->hf_conf_index = 0; /* configuration index */
193 1.11 uch fb->hf_nconfs = 1; /* how many configurations */
194 1.12 uch strncpy(fb->hf_name, "TX3912 built-in video", HPCFB_MAXNAMELEN);
195 1.11 uch /* frame buffer name */
196 1.12 uch strncpy(fb->hf_conf_name, "LCD", HPCFB_MAXNAMELEN);
197 1.11 uch /* configuration name */
198 1.11 uch fb->hf_height = chip->vc_fbheight;
199 1.11 uch fb->hf_width = chip->vc_fbwidth;
200 1.13 uch fb->hf_baseaddr = mips_ptob(mips_btop(fbvaddr));
201 1.13 uch fb->hf_offset = (u_long)fbvaddr - fb->hf_baseaddr;
202 1.11 uch /* frame buffer start offset */
203 1.12 uch fb->hf_bytes_per_line = (chip->vc_fbwidth * chip->vc_fbdepth)
204 1.12 uch / NBBY;
205 1.11 uch fb->hf_nplanes = 1;
206 1.11 uch fb->hf_bytes_per_plane = chip->vc_fbheight * fb->hf_bytes_per_line;
207 1.11 uch
208 1.11 uch fb->hf_access_flags |= HPCFB_ACCESS_BYTE;
209 1.11 uch fb->hf_access_flags |= HPCFB_ACCESS_WORD;
210 1.11 uch fb->hf_access_flags |= HPCFB_ACCESS_DWORD;
211 1.11 uch
212 1.11 uch switch (chip->vc_fbdepth) {
213 1.11 uch default:
214 1.11 uch panic("tx3912video_hpcfbinit: not supported color depth\n");
215 1.11 uch /* NOTREACHED */
216 1.11 uch case 2:
217 1.11 uch fb->hf_class = HPCFB_CLASS_GRAYSCALE;
218 1.11 uch fb->hf_access_flags |= HPCFB_ACCESS_STATIC;
219 1.11 uch fb->hf_pack_width = 8;
220 1.11 uch fb->hf_pixels_per_pack = 4;
221 1.11 uch fb->hf_pixel_width = 2;
222 1.11 uch fb->hf_class_data_length = sizeof(struct hf_gray_tag);
223 1.14 uch /* reserved for future use */
224 1.14 uch fb->hf_u.hf_gray.hf_flags = 0;
225 1.11 uch break;
226 1.11 uch case 8:
227 1.12 uch fb->hf_class = HPCFB_CLASS_INDEXCOLOR;
228 1.11 uch fb->hf_access_flags |= HPCFB_ACCESS_STATIC;
229 1.11 uch fb->hf_pack_width = 8;
230 1.11 uch fb->hf_pixels_per_pack = 1;
231 1.11 uch fb->hf_pixel_width = 8;
232 1.11 uch fb->hf_class_data_length = sizeof(struct hf_indexed_tag);
233 1.14 uch /* reserved for future use */
234 1.14 uch fb->hf_u.hf_indexed.hf_flags = 0;
235 1.11 uch break;
236 1.11 uch }
237 1.1 uch }
238 1.1 uch
239 1.1 uch int
240 1.10 uch tx3912video_init(fb_start, fb_end)
241 1.10 uch paddr_t fb_start, *fb_end;
242 1.10 uch {
243 1.15 uch struct video_chip *chip = &tx3912video_chip;
244 1.1 uch tx_chipset_tag_t tc;
245 1.7 uch txreg_t reg;
246 1.10 uch int fbdepth;
247 1.10 uch int error;
248 1.1 uch
249 1.15 uch chip->vc_v = tc = tx_conf_get_tag();
250 1.10 uch
251 1.10 uch reg = tx_conf_read(tc, TX3912_VIDEOCTRL1_REG);
252 1.10 uch fbdepth = 1 << (TX3912_VIDEOCTRL1_BITSEL(reg));
253 1.7 uch
254 1.10 uch switch (fbdepth) {
255 1.7 uch case 2:
256 1.7 uch bootinfo->fb_type = BIFB_D2_M2L_0;
257 1.7 uch break;
258 1.7 uch case 4:
259 1.7 uch /* XXX should implement rasops4.c */
260 1.10 uch fbdepth = 2;
261 1.7 uch bootinfo->fb_type = BIFB_D2_M2L_0;
262 1.7 uch reg = tx_conf_read(tc, TX3912_VIDEOCTRL1_REG);
263 1.7 uch TX3912_VIDEOCTRL1_BITSEL_CLR(reg);
264 1.7 uch reg = TX3912_VIDEOCTRL1_BITSEL_SET(
265 1.7 uch reg, TX3912_VIDEOCTRL1_BITSEL_2BITGREYSCALE);
266 1.7 uch tx_conf_write(tc, TX3912_VIDEOCTRL1_REG, reg);
267 1.7 uch break;
268 1.7 uch case 8:
269 1.7 uch bootinfo->fb_type = BIFB_D8_FF;
270 1.7 uch break;
271 1.7 uch }
272 1.7 uch
273 1.15 uch chip->vc_fbdepth = fbdepth;
274 1.15 uch chip->vc_fbwidth = bootinfo->fb_width;
275 1.15 uch chip->vc_fbheight= bootinfo->fb_height;
276 1.7 uch
277 1.1 uch /* Allocate framebuffer area */
278 1.10 uch error = tx3912video_framebuffer_alloc(chip, fb_start, fb_end);
279 1.10 uch if (error != 0)
280 1.10 uch return (1);
281 1.10 uch
282 1.1 uch #if notyet
283 1.10 uch tx3912video_resolution_init(chip);
284 1.1 uch #else
285 1.1 uch /* Use Windows CE setting. */
286 1.1 uch #endif
287 1.1 uch /* Set DMA transfer address to VID module */
288 1.10 uch tx3912video_framebuffer_init(chip);
289 1.1 uch
290 1.1 uch /* Syncronize framebuffer addr to frame signal */
291 1.10 uch tx3912video_reset(chip);
292 1.1 uch
293 1.10 uch bootinfo->fb_line_bytes = (chip->vc_fbwidth * fbdepth) / NBBY;
294 1.15 uch bootinfo->fb_addr = (void *)MIPS_PHYS_TO_KSEG1(chip->vc_fbpaddr);
295 1.10 uch
296 1.10 uch return (0);
297 1.1 uch }
298 1.1 uch
299 1.1 uch int
300 1.10 uch tx3912video_framebuffer_alloc(chip, fb_start, fb_end)
301 1.15 uch struct video_chip *chip;
302 1.10 uch paddr_t fb_start, *fb_end; /* buffer allocation hint */
303 1.1 uch {
304 1.10 uch struct extent_fixed ex_fixed[10];
305 1.1 uch struct extent *ex;
306 1.1 uch u_long addr, size;
307 1.10 uch int error;
308 1.10 uch
309 1.10 uch /* calcurate frame buffer size */
310 1.10 uch size = (chip->vc_fbwidth * chip->vc_fbheight * chip->vc_fbdepth) /
311 1.10 uch NBBY;
312 1.10 uch
313 1.10 uch /* extent V-RAM region */
314 1.10 uch ex = extent_create("Frame buffer address", fb_start, *fb_end,
315 1.10 uch 0, (caddr_t)ex_fixed, sizeof ex_fixed,
316 1.10 uch EX_NOWAIT);
317 1.10 uch if (ex == 0)
318 1.10 uch return (1);
319 1.1 uch
320 1.1 uch /* Allocate V-RAM area */
321 1.14 uch error = extent_alloc_subregion(ex, fb_start, fb_start + size - 1,
322 1.14 uch size, TX3912_FRAMEBUFFER_ALIGNMENT,
323 1.10 uch TX3912_FRAMEBUFFER_BOUNDARY,
324 1.10 uch EX_FAST|EX_NOWAIT, &addr);
325 1.10 uch extent_destroy(ex);
326 1.10 uch
327 1.10 uch if (error != 0) {
328 1.10 uch return (1);
329 1.1 uch }
330 1.10 uch
331 1.15 uch chip->vc_fbpaddr = addr;
332 1.15 uch chip->vc_fbvaddr = MIPS_PHYS_TO_KSEG1(addr);
333 1.10 uch chip->vc_fbsize = size;
334 1.6 uch
335 1.10 uch *fb_end = addr + size;
336 1.1 uch
337 1.10 uch return (0);
338 1.1 uch }
339 1.1 uch
340 1.1 uch void
341 1.10 uch tx3912video_framebuffer_init(chip)
342 1.15 uch struct video_chip *chip;
343 1.1 uch {
344 1.10 uch u_int32_t fb_addr, fb_size, vaddr, bank, base;
345 1.10 uch txreg_t reg;
346 1.15 uch tx_chipset_tag_t tc = chip->vc_v;
347 1.10 uch
348 1.15 uch fb_addr = chip->vc_fbpaddr;
349 1.10 uch fb_size = chip->vc_fbsize;
350 1.1 uch
351 1.1 uch /* XXX currently I don't set DFVAL, so force DF signal toggled on
352 1.1 uch * XXX each frame. */
353 1.1 uch reg = tx_conf_read(tc, TX3912_VIDEOCTRL1_REG);
354 1.1 uch reg &= ~TX3912_VIDEOCTRL1_DFMODE;
355 1.1 uch tx_conf_write(tc, TX3912_VIDEOCTRL1_REG, reg);
356 1.1 uch
357 1.1 uch /* Set DMA transfer start and end address */
358 1.10 uch
359 1.1 uch bank = TX3912_VIDEOCTRL3_VIDBANK(fb_addr);
360 1.1 uch base = TX3912_VIDEOCTRL3_VIDBASEHI(fb_addr);
361 1.1 uch reg = TX3912_VIDEOCTRL3_VIDBANK_SET(0, bank);
362 1.1 uch /* Upper address counter */
363 1.1 uch reg = TX3912_VIDEOCTRL3_VIDBASEHI_SET(reg, base);
364 1.1 uch tx_conf_write(tc, TX3912_VIDEOCTRL3_REG, reg);
365 1.1 uch
366 1.1 uch /* Lower address counter */
367 1.1 uch base = TX3912_VIDEOCTRL4_VIDBASELO(fb_addr + fb_size);
368 1.1 uch reg = TX3912_VIDEOCTRL4_VIDBASELO_SET(0, base);
369 1.1 uch
370 1.1 uch /* Set DF-signal rate */
371 1.1 uch reg = TX3912_VIDEOCTRL4_DFVAL_SET(reg, 0); /* XXX not yet*/
372 1.1 uch
373 1.1 uch /* Set VIDDONE signal delay after FRAME signal */
374 1.1 uch /* XXX not yet*/
375 1.1 uch tx_conf_write(tc, TX3912_VIDEOCTRL4_REG, reg);
376 1.1 uch
377 1.1 uch /* Clear frame buffer */
378 1.1 uch vaddr = MIPS_PHYS_TO_KSEG1(fb_addr);
379 1.10 uch memset((void*)vaddr, 0, fb_size);
380 1.1 uch }
381 1.1 uch
382 1.1 uch void
383 1.10 uch tx3912video_resolution_init(chip)
384 1.15 uch struct video_chip *chip;
385 1.1 uch {
386 1.10 uch int h, v, split, bit8, horzval, lineval;
387 1.15 uch tx_chipset_tag_t tc = chip->vc_v;
388 1.10 uch txreg_t reg;
389 1.10 uch u_int32_t val;
390 1.10 uch
391 1.10 uch h = chip->vc_fbwidth;
392 1.10 uch v = chip->vc_fbheight;
393 1.1 uch reg = tx_conf_read(tc, TX3912_VIDEOCTRL1_REG);
394 1.1 uch split = reg & TX3912_VIDEOCTRL1_DISPSPLIT;
395 1.1 uch bit8 = (TX3912_VIDEOCTRL1_BITSEL(reg) ==
396 1.1 uch TX3912_VIDEOCTRL1_BITSEL_8BITCOLOR);
397 1.1 uch val = TX3912_VIDEOCTRL1_BITSEL(reg);
398 1.1 uch
399 1.1 uch if ((val == TX3912_VIDEOCTRL1_BITSEL_8BITCOLOR) &&
400 1.1 uch !split) {
401 1.3 uch /* (LCD horizontal pixels / 8bit) * RGB - 1 */
402 1.3 uch horzval = (h / 8) * 3 - 1;
403 1.1 uch } else {
404 1.1 uch horzval = h / 4 - 1;
405 1.1 uch }
406 1.1 uch lineval = (split ? v / 2 : v) - 1;
407 1.1 uch
408 1.1 uch /* Video rate */
409 1.3 uch /* XXX
410 1.3 uch * probably This value should be determined from DFINT and LCDINT
411 1.3 uch */
412 1.1 uch reg = TX3912_VIDEOCTRL2_VIDRATE_SET(0, horzval + 1);
413 1.1 uch /* Horizontal size of LCD */
414 1.1 uch reg = TX3912_VIDEOCTRL2_HORZVAL_SET(reg, horzval);
415 1.1 uch /* # of lines for the LCD */
416 1.1 uch reg = TX3912_VIDEOCTRL2_LINEVAL_SET(reg, lineval);
417 1.1 uch
418 1.1 uch tx_conf_write(tc, TX3912_VIDEOCTRL2_REG, reg);
419 1.1 uch }
420 1.1 uch
421 1.1 uch void
422 1.10 uch tx3912video_reset(chip)
423 1.15 uch struct video_chip *chip;
424 1.1 uch {
425 1.15 uch tx_chipset_tag_t tc = chip->vc_v;
426 1.10 uch txreg_t reg;
427 1.1 uch
428 1.1 uch reg = tx_conf_read(tc, TX3912_VIDEOCTRL1_REG);
429 1.3 uch
430 1.1 uch /* Disable video logic at end of this frame */
431 1.1 uch reg |= TX3912_VIDEOCTRL1_ENFREEZEFRAME;
432 1.1 uch tx_conf_write(tc, TX3912_VIDEOCTRL1_REG, reg);
433 1.3 uch
434 1.1 uch /* Wait for end of frame */
435 1.10 uch delay(30 * 1000);
436 1.3 uch
437 1.1 uch /* Make sure to disable video logic */
438 1.1 uch reg &= ~TX3912_VIDEOCTRL1_ENVID;
439 1.1 uch tx_conf_write(tc, TX3912_VIDEOCTRL1_REG, reg);
440 1.3 uch
441 1.1 uch delay(1000);
442 1.3 uch
443 1.1 uch /* Enable video logic again */
444 1.1 uch reg &= ~TX3912_VIDEOCTRL1_ENFREEZEFRAME;
445 1.1 uch reg |= TX3912_VIDEOCTRL1_ENVID;
446 1.1 uch tx_conf_write(tc, TX3912_VIDEOCTRL1_REG, reg);
447 1.3 uch
448 1.1 uch delay(1000);
449 1.1 uch }
450 1.1 uch
451 1.11 uch int
452 1.11 uch tx3912video_ioctl(v, cmd, data, flag, p)
453 1.11 uch void *v;
454 1.11 uch u_long cmd;
455 1.11 uch caddr_t data;
456 1.11 uch int flag;
457 1.11 uch struct proc *p;
458 1.11 uch {
459 1.11 uch struct tx3912video_softc *sc = (struct tx3912video_softc *)v;
460 1.11 uch struct hpcfb_fbconf *fbconf;
461 1.11 uch struct hpcfb_dspconf *dspconf;
462 1.12 uch struct wsdisplay_cmap *cmap;
463 1.12 uch u_int8_t *r, *g, *b;
464 1.12 uch u_int32_t *rgb;
465 1.12 uch int idx, cnt, error;
466 1.11 uch
467 1.11 uch switch (cmd) {
468 1.11 uch case WSDISPLAYIO_GETCMAP:
469 1.12 uch cmap = (struct wsdisplay_cmap*)data;
470 1.12 uch cnt = cmap->count;
471 1.12 uch idx = cmap->index;
472 1.12 uch
473 1.12 uch if (sc->sc_fbconf.hf_class != HPCFB_CLASS_INDEXCOLOR ||
474 1.12 uch sc->sc_fbconf.hf_pack_width != 8 ||
475 1.12 uch !LEGAL_CLUT_INDEX(idx) ||
476 1.12 uch !LEGAL_CLUT_INDEX(idx + cnt -1)) {
477 1.12 uch return (EINVAL);
478 1.12 uch }
479 1.12 uch
480 1.12 uch if (!uvm_useracc(cmap->red, cnt, B_WRITE) ||
481 1.12 uch !uvm_useracc(cmap->green, cnt, B_WRITE) ||
482 1.12 uch !uvm_useracc(cmap->blue, cnt, B_WRITE)) {
483 1.12 uch return (EFAULT);
484 1.12 uch }
485 1.12 uch
486 1.12 uch error = cmap_work_alloc(&r, &g, &b, &rgb, cnt);
487 1.12 uch if (error != 0) {
488 1.12 uch cmap_work_free(r, g, b, rgb);
489 1.12 uch return (ENOMEM);
490 1.12 uch }
491 1.12 uch tx3912video_clut_get(sc, rgb, idx, cnt);
492 1.12 uch rgb24_decompose(rgb, r, g, b, cnt);
493 1.12 uch
494 1.12 uch copyout(r, cmap->red, cnt);
495 1.12 uch copyout(g, cmap->green,cnt);
496 1.12 uch copyout(b, cmap->blue, cnt);
497 1.12 uch
498 1.12 uch cmap_work_free(r, g, b, rgb);
499 1.12 uch
500 1.12 uch return (0);
501 1.11 uch
502 1.11 uch case WSDISPLAYIO_PUTCMAP:
503 1.12 uch /*
504 1.12 uch * TX3912 can't change CLUT index. R:G:B = 3:3:2
505 1.12 uch */
506 1.14 uch return (0);
507 1.11 uch
508 1.11 uch case HPCFBIO_GCONF:
509 1.11 uch fbconf = (struct hpcfb_fbconf *)data;
510 1.11 uch if (fbconf->hf_conf_index != 0 &&
511 1.11 uch fbconf->hf_conf_index != HPCFB_CURRENT_CONFIG) {
512 1.11 uch return (EINVAL);
513 1.11 uch }
514 1.11 uch *fbconf = sc->sc_fbconf; /* structure assignment */
515 1.11 uch return (0);
516 1.11 uch
517 1.11 uch case HPCFBIO_SCONF:
518 1.11 uch fbconf = (struct hpcfb_fbconf *)data;
519 1.11 uch if (fbconf->hf_conf_index != 0 &&
520 1.11 uch fbconf->hf_conf_index != HPCFB_CURRENT_CONFIG) {
521 1.11 uch return (EINVAL);
522 1.11 uch }
523 1.11 uch /*
524 1.11 uch * nothing to do because we have only one configration
525 1.11 uch */
526 1.11 uch return (0);
527 1.11 uch
528 1.11 uch case HPCFBIO_GDSPCONF:
529 1.11 uch dspconf = (struct hpcfb_dspconf *)data;
530 1.11 uch if ((dspconf->hd_unit_index != 0 &&
531 1.11 uch dspconf->hd_unit_index != HPCFB_CURRENT_UNIT) ||
532 1.11 uch (dspconf->hd_conf_index != 0 &&
533 1.11 uch dspconf->hd_conf_index != HPCFB_CURRENT_CONFIG)) {
534 1.11 uch return (EINVAL);
535 1.11 uch }
536 1.11 uch *dspconf = sc->sc_dspconf; /* structure assignment */
537 1.11 uch return (0);
538 1.11 uch
539 1.11 uch case HPCFBIO_SDSPCONF:
540 1.11 uch dspconf = (struct hpcfb_dspconf *)data;
541 1.11 uch if ((dspconf->hd_unit_index != 0 &&
542 1.11 uch dspconf->hd_unit_index != HPCFB_CURRENT_UNIT) ||
543 1.11 uch (dspconf->hd_conf_index != 0 &&
544 1.11 uch dspconf->hd_conf_index != HPCFB_CURRENT_CONFIG)) {
545 1.11 uch return (EINVAL);
546 1.11 uch }
547 1.11 uch /*
548 1.11 uch * nothing to do
549 1.11 uch * because we have only one unit and one configration
550 1.11 uch */
551 1.11 uch return (0);
552 1.11 uch
553 1.11 uch case HPCFBIO_GOP:
554 1.11 uch case HPCFBIO_SOP:
555 1.11 uch /* XXX not implemented yet */
556 1.11 uch return (EINVAL);
557 1.11 uch }
558 1.11 uch
559 1.11 uch return (ENOTTY);
560 1.11 uch }
561 1.11 uch
562 1.16 simonb paddr_t
563 1.11 uch tx3912video_mmap(ctx, offset, prot)
564 1.11 uch void *ctx;
565 1.11 uch off_t offset;
566 1.11 uch int prot;
567 1.11 uch {
568 1.11 uch struct tx3912video_softc *sc = (struct tx3912video_softc *)ctx;
569 1.11 uch
570 1.11 uch if (offset < 0 || (sc->sc_fbconf.hf_bytes_per_plane +
571 1.11 uch sc->sc_fbconf.hf_offset) < offset) {
572 1.11 uch return (-1);
573 1.11 uch }
574 1.11 uch
575 1.15 uch return (mips_btop(sc->sc_chip->vc_fbpaddr + offset));
576 1.12 uch }
577 1.12 uch
578 1.12 uch /*
579 1.12 uch * CLUT staff
580 1.12 uch */
581 1.12 uch static const struct {
582 1.12 uch int mul, div;
583 1.12 uch } dither_list [] = {
584 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_1] = { 1, 1 },
585 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_6_7] = { 6, 7 },
586 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_4_5] = { 4, 5 },
587 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_3_4] = { 3, 4 },
588 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_5_7] = { 5, 7 },
589 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_2_3] = { 2, 3 },
590 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_3_5] = { 3, 5 },
591 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_4_7] = { 4, 7 },
592 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_2_4] = { 2, 4 },
593 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_3_7] = { 3, 7 },
594 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_2_5] = { 2, 5 },
595 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_1_3] = { 1, 3 },
596 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_2_7] = { 2, 7 },
597 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_1_5] = { 1, 5 },
598 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_1_7] = { 1, 7 },
599 1.12 uch [TX3912_VIDEO_DITHER_DUTYCYCLE_0] = { 0, 1 }
600 1.12 uch }, *dlp;
601 1.12 uch
602 1.12 uch static const int dither_level8[8] = {
603 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_0,
604 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_2_7,
605 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_2_5,
606 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_2_4,
607 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_3_5,
608 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_5_7,
609 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_4_5,
610 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_1,
611 1.12 uch };
612 1.12 uch
613 1.12 uch static const int dither_level4[4] = {
614 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_0,
615 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_1_3,
616 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_5_7,
617 1.12 uch TX3912_VIDEO_DITHER_DUTYCYCLE_1,
618 1.12 uch };
619 1.12 uch
620 1.12 uch static int
621 1.12 uch __get_color8(luti)
622 1.12 uch int luti;
623 1.12 uch {
624 1.12 uch KASSERT(luti >=0 && luti < 8);
625 1.12 uch dlp = &dither_list[dither_level8[luti]];
626 1.12 uch
627 1.12 uch return ((0xff * dlp->mul) / dlp->div);
628 1.12 uch }
629 1.12 uch
630 1.12 uch static int
631 1.12 uch __get_color4(luti)
632 1.12 uch int luti;
633 1.12 uch {
634 1.12 uch KASSERT(luti >=0 && luti < 4);
635 1.12 uch dlp = &dither_list[dither_level4[luti]];
636 1.12 uch
637 1.12 uch return ((0xff * dlp->mul) / dlp->div);
638 1.12 uch }
639 1.12 uch
640 1.12 uch void
641 1.12 uch tx3912video_clut_get(sc, rgb, beg, cnt)
642 1.12 uch struct tx3912video_softc *sc;
643 1.12 uch u_int32_t *rgb;
644 1.12 uch int beg, cnt;
645 1.12 uch {
646 1.12 uch int i;
647 1.12 uch
648 1.12 uch KASSERT(rgb);
649 1.12 uch KASSERT(LEGAL_CLUT_INDEX(beg));
650 1.12 uch KASSERT(LEGAL_CLUT_INDEX(beg + cnt - 1));
651 1.12 uch
652 1.14 uch for (i = beg; i < beg + cnt; i++) {
653 1.14 uch *rgb++ = RGB24(__get_color8((i >> 5) & 0x7),
654 1.12 uch __get_color8((i >> 2) & 0x7),
655 1.12 uch __get_color4(i & 0x3));
656 1.12 uch }
657 1.12 uch }
658 1.12 uch
659 1.12 uch void
660 1.12 uch tx3912video_clut_install(ctx, ri)
661 1.12 uch void *ctx;
662 1.12 uch struct rasops_info *ri;
663 1.12 uch {
664 1.12 uch struct tx3912video_softc *sc = ctx;
665 1.12 uch const int system_cmap[0x10] = {
666 1.12 uch TX3912VIDEO_BLACK,
667 1.12 uch TX3912VIDEO_RED,
668 1.12 uch TX3912VIDEO_GREEN,
669 1.12 uch TX3912VIDEO_YELLOW,
670 1.12 uch TX3912VIDEO_BLUE,
671 1.12 uch TX3912VIDEO_MAGENTA,
672 1.12 uch TX3912VIDEO_CYAN,
673 1.12 uch TX3912VIDEO_WHITE,
674 1.12 uch TX3912VIDEO_DARK_BLACK,
675 1.12 uch TX3912VIDEO_DARK_RED,
676 1.12 uch TX3912VIDEO_DARK_GREEN,
677 1.12 uch TX3912VIDEO_DARK_YELLOW,
678 1.12 uch TX3912VIDEO_DARK_BLUE,
679 1.12 uch TX3912VIDEO_DARK_MAGENTA,
680 1.12 uch TX3912VIDEO_DARK_CYAN,
681 1.12 uch TX3912VIDEO_DARK_WHITE,
682 1.12 uch };
683 1.12 uch
684 1.12 uch KASSERT(ri);
685 1.12 uch
686 1.12 uch if (sc->sc_chip->vc_fbdepth == 8) {
687 1.12 uch /* XXX 2bit gray scale LUT not supported */
688 1.12 uch memcpy(ri->ri_devcmap, system_cmap, sizeof system_cmap);
689 1.12 uch }
690 1.12 uch }
691 1.12 uch
692 1.12 uch void
693 1.12 uch tx3912video_clut_init(sc)
694 1.12 uch struct tx3912video_softc *sc;
695 1.12 uch {
696 1.15 uch tx_chipset_tag_t tc = sc->sc_chip->vc_v;
697 1.12 uch
698 1.12 uch if (sc->sc_chip->vc_fbdepth != 8) {
699 1.12 uch return; /* XXX 2bit gray scale LUT not supported */
700 1.12 uch }
701 1.12 uch
702 1.12 uch /*
703 1.12 uch * time-based dithering pattern (TOSHIBA recommended pattern)
704 1.12 uch */
705 1.12 uch /* 2/3, 1/3 */
706 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL8_REG,
707 1.12 uch TX3912_VIDEOCTRL8_PAT2_3_DEFAULT);
708 1.12 uch /* 3/4, 2/4 */
709 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL9_REG,
710 1.12 uch (TX3912_VIDEOCTRL9_PAT3_4_DEFAULT << 16) |
711 1.12 uch TX3912_VIDEOCTRL9_PAT2_4_DEFAULT);
712 1.12 uch /* 4/5, 1/5 */
713 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL10_REG,
714 1.12 uch TX3912_VIDEOCTRL10_PAT4_5_DEFAULT);
715 1.12 uch /* 3/5, 2/5 */
716 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL11_REG,
717 1.12 uch TX3912_VIDEOCTRL11_PAT3_5_DEFAULT);
718 1.12 uch /* 6/7, 1/7 */
719 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL12_REG,
720 1.12 uch TX3912_VIDEOCTRL12_PAT6_7_DEFAULT);
721 1.12 uch /* 5/7, 2/7 */
722 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL13_REG,
723 1.12 uch TX3912_VIDEOCTRL13_PAT5_7_DEFAULT);
724 1.12 uch /* 4/7, 3/7 */
725 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL14_REG,
726 1.12 uch TX3912_VIDEOCTRL14_PAT4_7_DEFAULT);
727 1.12 uch
728 1.12 uch /*
729 1.12 uch * dither-pattern look-up table. (selected by uch)
730 1.12 uch */
731 1.12 uch /* red */
732 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL5_REG,
733 1.12 uch (dither_level8[7] << 28) |
734 1.12 uch (dither_level8[6] << 24) |
735 1.12 uch (dither_level8[5] << 20) |
736 1.12 uch (dither_level8[4] << 16) |
737 1.12 uch (dither_level8[3] << 12) |
738 1.12 uch (dither_level8[2] << 8) |
739 1.12 uch (dither_level8[1] << 4) |
740 1.12 uch (dither_level8[0] << 0));
741 1.12 uch /* green */
742 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL6_REG,
743 1.12 uch (dither_level8[7] << 28) |
744 1.12 uch (dither_level8[6] << 24) |
745 1.12 uch (dither_level8[5] << 20) |
746 1.12 uch (dither_level8[4] << 16) |
747 1.12 uch (dither_level8[3] << 12) |
748 1.12 uch (dither_level8[2] << 8) |
749 1.12 uch (dither_level8[1] << 4) |
750 1.12 uch (dither_level8[0] << 0));
751 1.12 uch /* blue (2bit gray scale also use this look-up table) */
752 1.12 uch tx_conf_write(tc, TX3912_VIDEOCTRL7_REG,
753 1.12 uch (dither_level4[3] << 12) |
754 1.12 uch (dither_level4[2] << 8) |
755 1.12 uch (dither_level4[1] << 4) |
756 1.12 uch (dither_level4[0] << 0));
757 1.14 uch
758 1.14 uch tx3912video_reset(sc->sc_chip);
759 1.6 uch }
760