Convert m_config.c to use talloc
[mplayer.git] / vidix / unichrome_vid.c
blob4fb9ddaedc93dab224f3a63ed3dae2814916f147
1 /*
2 * VIDIX driver for VIA CLE266/Unichrome chipsets.
3 * Copyright (C) 2004 Timothy Lee
5 * This file is part of MPlayer.
7 * MPlayer is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * MPlayer is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with MPlayer; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 * Thanks to Gilles Frattini for bugfixes
23 * Changes:
24 * 2004-03-10
25 * Initial version
26 * 2004-10-09
27 * Added Doxygen documentation (Benjamin Zores <ben@geexbox.org>)
28 * 2004-11-08
29 * Added h/w revision detection (Timothy Lee <timothy.lee@siriushk.com>)
32 #include <errno.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <inttypes.h>
37 #include <unistd.h>
39 #include "config.h"
40 #include "vidix.h"
41 #include "vidixlib.h"
42 #include "fourcc.h"
43 #include "dha.h"
44 #include "pci_ids.h"
45 #include "pci_names.h"
47 #include "unichrome_regs.h"
49 /**
50 * @brief Information on PCI device.
52 static pciinfo_t pci_info;
54 /**
55 * @brief Unichrome driver colorkey settings.
57 static vidix_grkey_t uc_grkey;
59 static int frames[VID_PLAY_MAXFRAMES];
60 static uint8_t *vio;
61 static uint8_t *uc_mem;
62 static uint8_t mclk_save[3];
63 static uint8_t hwrev;
65 #define VIA_OUT(hwregs, reg, val) *(volatile uint32_t *)((hwregs) + (reg)) = (val)
66 #define VIA_IN(hwregs, reg) *(volatile uint32_t *)((hwregs) + (reg))
67 #define VGA_OUT8(hwregs, reg, val) *(volatile uint8_t *)((hwregs) + (reg) + 0x8000) = (val)
68 #define VGA_IN8(hwregs, reg) *(volatile uint8_t *)((hwregs) + (reg) + 0x8000)
69 #define VIDEO_OUT(hwregs, reg, val) VIA_OUT((hwregs)+0x200, reg, val)
70 #define VIDEO_IN(hwregs, reg) VIA_IN((hwregs)+0x200, reg)
72 #define outb(val,reg) OUTPORT8(reg,val)
73 #define inb(reg) INPORT8(reg)
75 #define ALIGN_TO(v, n) (((v) + (n-1)) & ~(n-1))
76 #define UC_MAP_V1_FIFO_CONTROL(depth, pre_thr, thr) \
77 (((depth)-1) | ((thr) << 8) | ((pre_thr) << 24))
79 #define VIDEOMEMORY_SIZE (8 * 1024 * 1024)
80 #define FRAMEBUFFER_SIZE 0x200000
81 #define FRAMEBUFFER_START (VIDEOMEMORY_SIZE - FRAMEBUFFER_SIZE)
83 #ifdef DEBUG_LOGFILE
84 static FILE *logfile = 0;
85 #define LOGWRITE(x) {if(logfile) fprintf(logfile,x);}
86 #else
87 #define LOGWRITE(x)
88 #endif
90 /**
91 * @brief Unichrome driver vidix capabilities.
93 static vidix_capability_t uc_cap = {
94 "VIA CLE266 Unichrome driver",
95 "Timothy Lee <timothy@siriushk.com>",
96 TYPE_OUTPUT,
97 {0, 0, 0, 0},
98 4096,
99 4096,
103 FLAG_UPSCALER | FLAG_DOWNSCALER,
104 VENDOR_VIA2,
106 {0, 0, 0, 0}
110 * @brief list of card IDs compliant with the Unichrome driver .
112 static unsigned short uc_card_ids[] = {
113 DEVICE_VIA2_VT8623_APOLLO_CLE266,
114 DEVICE_VIA2_VT8378_S3_UNICHROME
118 * @brief Find chip index in Unichrome compliant devices list.
120 * @param chip_id PCI device ID.
122 * @returns index position in uc_card_ids if successful.
123 * -1 if chip_id is not a compliant chipset ID.
125 static int
126 find_chip (unsigned chip_id)
128 unsigned i;
129 for (i = 0; i < sizeof (uc_card_ids) / sizeof (unsigned short); i++)
131 if (chip_id == uc_card_ids[i])
132 return i;
134 return -1;
138 * @brief Map hardware settings for vertical scaling.
140 * @param sh source height.
141 * @param dh destination height.
142 * @param zoom will hold vertical setting of zoom register.
143 * @param mini will hold vertical setting of mini register.
145 * @returns 1 if successful.
146 * 0 if the zooming factor is too large or small.
148 * @note Derived from VIA's V4L driver.
149 * See ddover.c, DDOVER_HQVCalcZoomHeight()
151 static int
152 uc_ovl_map_vzoom (uint32_t sh, uint32_t dh, uint32_t * zoom, uint32_t * mini)
154 uint32_t sh1, tmp, d;
155 int zoom_ok = 1;
157 if (sh == dh) /* No zoom */
159 /* Do nothing */
161 else if (sh < dh) /* Zoom in */
163 tmp = (sh * 0x0400) / dh;
164 zoom_ok = !(tmp > 0x3ff);
166 *zoom |= (tmp & 0x3ff) | V1_Y_ZOOM_ENABLE;
167 *mini |= V1_Y_INTERPOLY | V1_YCBCR_INTERPOLY;
169 else /* sw > dh - Zoom out */
171 /* Find a suitable divider (1 << d) = {2, 4, 8 or 16} */
172 sh1 = sh;
173 for (d = 1; d < 5; d++)
175 sh1 >>= 1;
176 if (sh1 <= dh)
177 break;
179 if (d == 5) /* too small */
181 d = 4;
182 zoom_ok = 0;
185 *mini |= ((d << 1) - 1) << 16; /* <= {1,3,5,7} << 16 */
187 /* Add scaling */
188 if (sh1 < dh)
190 tmp = (sh1 * 0x400) / dh;
191 *zoom |= ((tmp & 0x3ff) | V1_Y_ZOOM_ENABLE);
192 *mini |= V1_Y_INTERPOLY | V1_YCBCR_INTERPOLY;
196 return zoom_ok;
200 * @brief Map hardware settings for horizontal scaling.
202 * @param sw source width.
203 * @param dw destination width.
204 * @param zoom will hold horizontal setting of zoom register.
205 * @param mini will hold horizontal setting of mini register.
206 * @param falign will hold fetch aligment.
207 * @param dcount will hold display count.
209 * @returns 1 if successful.
210 * 0 if the zooming factor is too large or small.
212 * @note Derived from VIA's V4L driver.
213 * See ddover.c, DDOVER_HQVCalcZoomWidth() and DDOver_GetDisplayCount()
215 static int
216 uc_ovl_map_hzoom (uint32_t sw, uint32_t dw, uint32_t * zoom, uint32_t * mini,
217 int *falign, int *dcount)
219 uint32_t tmp, sw1, d;
220 int md; /* Minify-divider */
221 int zoom_ok = 1;
223 md = 1;
224 *falign = 0;
226 if (sw == dw) /* no zoom */
228 /* Do nothing */
230 else if (sw < dw) /* zoom in */
232 tmp = (sw * 0x0800) / dw;
233 zoom_ok = !(tmp > 0x7ff);
235 *zoom |= ((tmp & 0x7ff) << 16) | V1_X_ZOOM_ENABLE;
236 *mini |= V1_X_INTERPOLY;
238 else /* sw > dw - Zoom out */
240 /* Find a suitable divider (1 << d) = {2, 4, 8 or 16} */
241 sw1 = sw;
242 for (d = 1; d < 5; d++)
244 sw1 >>= 1;
245 if (sw1 <= dw)
246 break;
248 if (d == 5) /* too small */
250 d = 4;
251 zoom_ok = 0;
254 md = 1 << d; /* <= {2,4,8,16} */
255 *falign = ((md << 1) - 1) & 0xf; /* <= {3,7,15,15} */
256 *mini |= V1_X_INTERPOLY;
257 *mini |= ((d << 1) - 1) << 24; /* <= {1,3,5,7} << 24 */
259 /* Add scaling */
260 if (sw1 < dw)
262 /* CLE bug */
263 /* tmp = sw1*0x0800 / dw; */
264 tmp = (sw1 - 2) * 0x0800 / dw;
265 *zoom |= ((tmp & 0x7ff) << 16) | V1_X_ZOOM_ENABLE;
269 *dcount = sw - md;
270 return zoom_ok;
274 * @brief qword fetch register setting.
276 * @param format overlay pixel format.
277 * @param sw source width.
279 * @return qword fetch register setting
281 * @note Derived from VIA's V4L driver. See ddover.c, DDOver_GetFetch()
282 * @note Only call after uc_ovl_map_hzoom()
284 static uint32_t
285 uc_ovl_map_qwfetch (uint32_t format, int sw)
287 uint32_t fetch = 0;
289 switch (format)
291 case IMGFMT_YV12:
292 case IMGFMT_I420:
293 fetch = ALIGN_TO (sw, 32) >> 4;
294 break;
295 case IMGFMT_UYVY:
296 case IMGFMT_YVYU:
297 case IMGFMT_YUY2:
298 fetch = (ALIGN_TO (sw << 1, 16) >> 4) + 1;
299 break;
300 case IMGFMT_BGR15:
301 case IMGFMT_BGR16:
302 fetch = (ALIGN_TO (sw << 1, 16) >> 4) + 1;
303 break;
304 case IMGFMT_BGR32:
305 fetch = (ALIGN_TO (sw << 2, 16) >> 4) + 1;
306 break;
307 default:
308 printf ("[unichrome] Unexpected pixelformat!");
309 break;
312 if (fetch < 4)
313 fetch = 4;
315 return fetch;
319 * @brief Map pixel format.
321 * @param format pixel format.
323 * @return the mapped pixel format.
325 * @note Derived from VIA's V4L driver. See ddover.c, DDOver_GetV1Format()
327 static uint32_t
328 uc_ovl_map_format (uint32_t format)
330 switch (format)
332 case IMGFMT_UYVY:
333 case IMGFMT_YVYU:
334 case IMGFMT_YUY2:
335 return V1_COLORSPACE_SIGN | V1_YUV422;
336 case IMGFMT_IYUV:
337 return V1_COLORSPACE_SIGN | V1_YCbCr420 | V1_SWAP_SW;
338 case IMGFMT_YV12:
339 case IMGFMT_I420:
340 return V1_COLORSPACE_SIGN | V1_YCbCr420;
341 case IMGFMT_BGR15:
342 return V1_RGB15;
343 case IMGFMT_BGR16:
344 return V1_RGB16;
345 case IMGFMT_BGR32:
346 return V1_RGB32;
347 default:
348 printf ("[unichrome] Unexpected pixelformat!");
349 return V1_YUV422;
354 * @brief Calculate V1 control and fifo-control register values.
356 * @param format pixel format.
357 * @param sw source width.
358 * @param hwrev CLE266 hardware revision.
359 * @param extfifo_on set this 1 if the extended FIFO is enabled.
360 * @param control will hold value for V1_CONTROL.
361 * @param fifo will hold value for V1_FIFO_CONTROL.
363 static void
364 uc_ovl_map_v1_control (uint32_t format, int sw,
365 int hwrev, int extfifo_on,
366 uint32_t * control, uint32_t * fifo)
368 *control = V1_BOB_ENABLE | uc_ovl_map_format (format);
370 if (hwrev == 0x10)
372 *control |= V1_EXPIRE_NUM_F;
374 else
376 if (extfifo_on)
378 *control |= V1_EXPIRE_NUM_A | V1_FIFO_EXTENDED;
380 else
382 *control |= V1_EXPIRE_NUM;
386 if ((format == IMGFMT_YV12) || (format == IMGFMT_I420))
388 /* Minified video will be skewed without this workaround. */
389 if (sw <= 80) /* Fetch count <= 5 */
391 *fifo = UC_MAP_V1_FIFO_CONTROL (16, 0, 0);
393 else
395 if (hwrev == 0x10)
396 *fifo = UC_MAP_V1_FIFO_CONTROL (64, 56, 56);
397 else
398 *fifo = UC_MAP_V1_FIFO_CONTROL (16, 12, 8);
401 else
403 if (hwrev == 0x10)
405 *fifo = UC_MAP_V1_FIFO_CONTROL (64, 56, 56); /* Default rev 0x10 */
407 else
409 if (extfifo_on)
410 *fifo = UC_MAP_V1_FIFO_CONTROL (48, 40, 40);
411 else
412 *fifo = UC_MAP_V1_FIFO_CONTROL (32, 29, 16); /* Default */
418 * @brief Setup extended FIFO.
420 * @param extfifo_on pointer determining if extended fifo is enable or not.
421 * @param dst_w destination width.
423 static void
424 uc_ovl_setup_fifo (int *extfifo_on, int dst_w)
426 if (dst_w <= 1024) /* Disable extended FIFO */
428 outb (0x16, 0x3c4);
429 outb (mclk_save[0], 0x3c5);
430 outb (0x17, 0x3c4);
431 outb (mclk_save[1], 0x3c5);
432 outb (0x18, 0x3c4);
433 outb (mclk_save[2], 0x3c5);
434 *extfifo_on = 0;
436 else /* Enable extended FIFO */
438 outb (0x17, 0x3c4);
439 outb (0x2f, 0x3c5);
440 outb (0x16, 0x3c4);
441 outb ((mclk_save[0] & 0xf0) | 0x14, 0x3c5);
442 outb (0x18, 0x3c4);
443 outb (0x56, 0x3c5);
444 *extfifo_on = 1;
448 static void
449 uc_ovl_vcmd_wait (volatile uint8_t * vio)
451 while ((VIDEO_IN (vio, V_COMPOSE_MODE)
452 & (V1_COMMAND_FIRE | V3_COMMAND_FIRE)));
456 * @brief Probe hardware to find some useable chipset.
458 * @param verbose specifies verbose level.
459 * @param force specifies force mode : driver should ignore
460 * device_id (danger but useful for new devices)
462 * @returns 0 if it can handle something in PC.
463 * a negative error code otherwise.
465 static int
466 unichrome_probe (int verbose, int force)
468 pciinfo_t lst[MAX_PCI_DEVICES];
469 unsigned i, num_pci;
470 int err;
471 err = pci_scan (lst, &num_pci);
472 if (err)
474 printf ("[unichrome] Error occurred during pci scan: %s\n",
475 strerror (err));
476 return err;
478 else
480 err = ENXIO;
481 for (i = 0; i < num_pci; i++)
483 if (lst[i].vendor == VENDOR_VIA2)
485 int idx;
486 const char *dname;
487 idx = find_chip (lst[i].device);
488 if (idx == -1)
489 continue;
490 dname = pci_device_name (VENDOR_VIA2, lst[i].device);
491 dname = dname ? dname : "Unknown chip";
492 printf ("[unichrome] Found chip: %s\n", dname);
493 if ((lst[i].command & PCI_COMMAND_IO) == 0)
495 printf ("[unichrome] Device is disabled, ignoring\n");
496 continue;
498 uc_cap.device_id = lst[i].device;
499 err = 0;
500 memcpy (&pci_info, &lst[i], sizeof (pciinfo_t));
501 break;
506 if (err && verbose)
507 printf ("[unichrome] Can't find chip\n");
508 return err;
512 * @brief Initializes driver.
514 * @returns 0 if ok.
515 * a negative error code otherwise.
517 static int
518 unichrome_init (void)
520 long tmp;
521 uc_mem = map_phys_mem (pci_info.base0, VIDEOMEMORY_SIZE);
522 enable_app_io ();
524 outb (0x2f, 0x3c4);
525 tmp = inb (0x3c5) << 0x18;
526 vio = map_phys_mem (tmp, 0x1000);
528 outb (0x16, 0x3c4);
529 mclk_save[0] = inb (0x3c5);
530 outb (0x17, 0x3c4);
531 mclk_save[1] = inb (0x3c5);
532 outb (0x18, 0x3c4);
533 mclk_save[2] = inb (0x3c5);
535 uc_grkey.ckey.blue = 0x00;
536 uc_grkey.ckey.green = 0x00;
537 uc_grkey.ckey.red = 0x00;
539 /* Detect whether we have a CLE266Ax or CLE266Cx */
540 outb (0x4f, 0x3d4);
541 tmp = inb (0x3d5);
542 outb (0x4f, 0x3d4);
543 outb (0x55, 0x3d5);
544 outb (0x4f, 0x3d4);
545 if (0x55 == inb (0x3d5))
547 /* Only CLE266Cx supports CR4F */
548 hwrev = 0x11;
550 else
552 /* Otherwise assume to be a CLE266Ax */
553 hwrev = 0x00;
555 outb (0x4f, 0x3d4);
556 outb (tmp, 0x3d5);
558 #ifdef DEBUG_LOGFILE
559 logfile = fopen ("/tmp/uc_vidix.log", "w");
560 #endif
561 return 0;
565 * @brief Destroys driver.
567 static void
568 unichrome_destroy (void)
570 #ifdef DEBUG_LOGFILE
571 if (logfile)
572 fclose (logfile);
573 #endif
574 outb (0x16, 0x3c4);
575 outb (mclk_save[0], 0x3c5);
576 outb (0x17, 0x3c4);
577 outb (mclk_save[1], 0x3c5);
578 outb (0x18, 0x3c4);
579 outb (mclk_save[2], 0x3c5);
581 disable_app_io ();
582 unmap_phys_mem (uc_mem, VIDEOMEMORY_SIZE);
583 unmap_phys_mem (vio, 0x1000);
587 * @brief Get chipset's hardware capabilities.
589 * @param to Pointer to the vidix_capability_t structure to be filled.
591 * @returns 0.
593 static int
594 unichrome_get_caps (vidix_capability_t * to)
596 memcpy (to, &uc_cap, sizeof (vidix_capability_t));
597 return 0;
601 * @brief Report if the video FourCC is supported by hardware.
603 * @param fourcc input image format.
605 * @returns 1 if the fourcc is supported.
606 * 0 otherwise.
608 static int
609 is_supported_fourcc (uint32_t fourcc)
611 switch (fourcc)
613 case IMGFMT_YV12:
614 case IMGFMT_I420:
615 case IMGFMT_UYVY:
616 case IMGFMT_YVYU:
617 case IMGFMT_YUY2:
618 case IMGFMT_BGR15:
619 case IMGFMT_BGR16:
620 case IMGFMT_BGR32:
621 return 1;
622 default:
623 return 0;
628 * @brief Try to configure video memory for given fourcc.
630 * @param to Pointer to the vidix_fourcc_t structure to be filled.
632 * @returns 0 if ok.
633 * errno otherwise.
635 static int
636 unichrome_query_fourcc (vidix_fourcc_t * to)
638 if (is_supported_fourcc (to->fourcc))
640 to->depth = VID_DEPTH_ALL;
641 to->flags = VID_CAP_EXPAND | VID_CAP_SHRINK | VID_CAP_COLORKEY;
642 return 0;
644 else
645 to->depth = to->flags = 0;
646 return ENOSYS;
650 * @brief Get the GrKeys
652 * @param grkey Pointer to the vidix_grkey_t structure to be filled by driver.
654 * @return 0.
656 static int
657 unichrome_get_gkey (vidix_grkey_t * grkey)
659 memcpy (grkey, &uc_grkey, sizeof (vidix_grkey_t));
660 return (0);
664 * @brief Set the GrKeys
666 * @param grkey Colorkey to be set.
668 * @return 0.
670 static int
671 unichrome_set_gkey (const vidix_grkey_t * grkey)
673 unsigned long dwCompose = VIDEO_IN (vio, V_COMPOSE_MODE) & ~0x0f;
674 memcpy (&uc_grkey, grkey, sizeof (vidix_grkey_t));
675 if (uc_grkey.ckey.op != CKEY_FALSE)
677 /* Set colorkey (how do I detect BPP in hardware ??) */
678 unsigned long ckey;
679 if (1) /* Assume 16-bit graphics */
681 ckey = (grkey->ckey.blue & 0x1f)
682 | ((grkey->ckey.green & 0x3f) << 5)
683 | ((grkey->ckey.red & 0x1f) << 11);
685 else
687 ckey = (grkey->ckey.blue)
688 | (grkey->ckey.green << 8) | (grkey->ckey.red << 16);
690 VIDEO_OUT (vio, V_COLOR_KEY, ckey);
691 dwCompose |= SELECT_VIDEO_IF_COLOR_KEY;
694 /* Execute the changes */
695 VIDEO_OUT (vio, V_COMPOSE_MODE, dwCompose | V1_COMMAND_FIRE);
696 return (0);
700 * @brief Unichrome driver equalizer capabilities.
702 static vidix_video_eq_t equal = {
703 VEQ_CAP_BRIGHTNESS | VEQ_CAP_SATURATION | VEQ_CAP_HUE,
704 300, 100, 0, 0, 0, 0, 0, 0
709 * @brief Get the equalizer capabilities.
711 * @param eq Pointer to the vidix_video_eq_t structure to be filled by driver.
713 * @return 0.
715 static int
716 unichrome_get_eq (vidix_video_eq_t * eq)
718 memcpy (eq, &equal, sizeof (vidix_video_eq_t));
719 return 0;
723 * @brief Set the equalizer capabilities for color correction
725 * @param eq equalizer capabilities to be set.
727 * @return 0.
729 static int
730 unichrome_set_eq (const vidix_video_eq_t * eq)
732 return 0;
736 * @brief Y, U, V offsets.
738 static int YOffs, UOffs, VOffs;
740 static int unichrome_frame_select (unsigned int frame);
743 * @brief Configure driver for playback. Driver should prepare BES.
745 * @param info configuration description for playback.
747 * @returns 0 in case of success.
748 * -1 otherwise.
750 static int
751 unichrome_config_playback (vidix_playback_t * info)
753 int src_w, drw_w;
754 int src_h, drw_h;
755 long base0, pitch = 0;
756 int uv_size = 0, swap_uv;
757 unsigned int i;
758 int extfifo_on;
760 /* Overlay register settings */
761 uint32_t win_start, win_end;
762 uint32_t zoom, mini;
763 uint32_t dcount, falign, qwfetch;
764 uint32_t v_ctrl, fifo_ctrl;
766 if (!is_supported_fourcc (info->fourcc))
767 return -1;
769 src_w = info->src.w;
770 src_h = info->src.h;
772 drw_w = info->dest.w;
773 drw_h = info->dest.h;
775 /* Setup FIFO */
776 uc_ovl_setup_fifo (&extfifo_on, src_w);
778 /* Get image format, FIFO size, etc. */
779 uc_ovl_map_v1_control (info->fourcc, src_w, hwrev, extfifo_on,
780 &v_ctrl, &fifo_ctrl);
782 /* Setup layer window */
783 win_start = (info->dest.x << 16) | info->dest.y;
784 win_end = ((info->dest.x + drw_w - 1) << 16) | (info->dest.y + drw_h - 1);
786 /* Get scaling and data-fetch parameters */
787 zoom = 0;
788 mini = 0;
789 uc_ovl_map_vzoom (src_h, drw_h, &zoom, &mini);
790 uc_ovl_map_hzoom (src_w, drw_w, &zoom, &mini, (int *) &falign, (int *) &dcount);
791 qwfetch = uc_ovl_map_qwfetch (info->fourcc, src_w);
793 /* Calculate buffer sizes */
794 swap_uv = 0;
795 switch (info->fourcc)
797 case IMGFMT_YV12:
798 swap_uv = 1;
799 case IMGFMT_I420:
800 case IMGFMT_UYVY:
801 case IMGFMT_YVYU:
802 pitch = ALIGN_TO (src_w, 32);
803 uv_size = (pitch >> 1) * (src_h >> 1);
804 break;
806 case IMGFMT_YUY2:
807 case IMGFMT_BGR15:
808 case IMGFMT_BGR16:
809 pitch = ALIGN_TO (src_w << 1, 32);
810 uv_size = 0;
811 break;
813 case IMGFMT_BGR32:
814 pitch = ALIGN_TO (src_w << 2, 32);
815 uv_size = 0;
816 break;
818 if ((src_w > 4096) || (src_h > 4096) ||
819 (src_w < 32) || (src_h < 1) || (pitch > 0x1fff))
821 printf ("[unichrome] Layer size out of bounds\n");
824 /* Calculate offsets */
825 info->offset.y = 0;
826 info->offset.v = info->offset.y + pitch * src_h;
827 info->offset.u = info->offset.v + uv_size;
828 info->frame_size = info->offset.u + uv_size;
829 YOffs = info->offset.y;
830 UOffs = (swap_uv ? info->offset.v : info->offset.u);
831 VOffs = (swap_uv ? info->offset.u : info->offset.v);
833 /* Assume we have 2 MB to play with */
834 info->num_frames = FRAMEBUFFER_SIZE / info->frame_size;
835 if (info->num_frames > VID_PLAY_MAXFRAMES)
836 info->num_frames = VID_PLAY_MAXFRAMES;
838 /* Start at 6 MB. Let's hope it's not in use. */
839 base0 = FRAMEBUFFER_START;
840 info->dga_addr = uc_mem + base0;
842 info->dest.pitch.y = 32;
843 info->dest.pitch.u = 32;
844 info->dest.pitch.v = 32;
846 for (i = 0; i < info->num_frames; i++)
848 info->offsets[i] = info->frame_size * i;
849 frames[i] = base0 + info->offsets[i];
852 /* Write to the hardware */
853 uc_ovl_vcmd_wait (vio);
855 /* Configure diy_pitchlay parameters now */
856 if (v_ctrl & V1_COLORSPACE_SIGN)
858 if (hwrev >= 0x10)
860 VIDEO_OUT (vio, V1_ColorSpaceReg_2, ColorSpaceValue_2_3123C0);
861 VIDEO_OUT (vio, V1_ColorSpaceReg_1, ColorSpaceValue_1_3123C0);
863 else
865 VIDEO_OUT (vio, V1_ColorSpaceReg_2, ColorSpaceValue_2);
866 VIDEO_OUT (vio, V1_ColorSpaceReg_1, ColorSpaceValue_1);
870 VIDEO_OUT (vio, V1_CONTROL, v_ctrl);
871 VIDEO_OUT (vio, V_FIFO_CONTROL, fifo_ctrl);
873 VIDEO_OUT (vio, V1_WIN_START_Y, win_start);
874 VIDEO_OUT (vio, V1_WIN_END_Y, win_end);
876 VIDEO_OUT (vio, V1_SOURCE_HEIGHT, (src_h << 16) | dcount);
878 VIDEO_OUT (vio, V12_QWORD_PER_LINE, qwfetch << 20);
879 VIDEO_OUT (vio, V1_STRIDE, pitch | ((pitch >> 1) << 16));
881 VIDEO_OUT (vio, V1_MINI_CONTROL, mini);
882 VIDEO_OUT (vio, V1_ZOOM_CONTROL, zoom);
884 /* Configure buffer address and execute the changes now! */
885 unichrome_frame_select (0);
887 return 0;
891 * @brief Set playback on : driver should activate BES on this call.
893 * @return 0.
895 static int
896 unichrome_playback_on (void)
898 LOGWRITE ("Enable overlay\n");
900 /* Turn on overlay */
901 VIDEO_OUT (vio, V1_CONTROL, VIDEO_IN (vio, V1_CONTROL) | V1_ENABLE);
903 /* Execute the changes */
904 VIDEO_OUT (vio, V_COMPOSE_MODE,
905 VIDEO_IN (vio, V_COMPOSE_MODE) | V1_COMMAND_FIRE);
907 return 0;
911 * @brief Set playback off : driver should deactivate BES on this call.
913 * @return 0.
915 static int
916 unichrome_playback_off (void)
918 LOGWRITE ("Disable overlay\n");
920 uc_ovl_vcmd_wait (vio);
922 /* Restore FIFO */
923 VIDEO_OUT (vio, V_FIFO_CONTROL, UC_MAP_V1_FIFO_CONTROL (16, 12, 8));
925 /* Turn off overlay */
926 VIDEO_OUT (vio, V1_CONTROL, VIDEO_IN (vio, V1_CONTROL) & ~V1_ENABLE);
928 /* Execute the changes */
929 VIDEO_OUT (vio, V_COMPOSE_MODE,
930 VIDEO_IN (vio, V_COMPOSE_MODE) | V1_COMMAND_FIRE);
932 return 0;
936 * @brief Driver should prepare and activate corresponded frame.
938 * @param frame the frame index.
940 * @return 0.
942 * @note This function is used only for double and triple buffering
943 * and never used for single buffering playback.
945 static int
946 unichrome_frame_select (unsigned int frame)
948 LOGWRITE ("Frame select\n");
950 uc_ovl_vcmd_wait (vio);
952 /* Configure buffer address */
953 VIDEO_OUT (vio, V1_STARTADDR_Y0, frames[frame] + YOffs);
954 VIDEO_OUT (vio, V1_STARTADDR_CB0, frames[frame] + UOffs);
955 VIDEO_OUT (vio, V1_STARTADDR_CR0, frames[frame] + VOffs);
957 /* Execute the changes */
958 VIDEO_OUT (vio, V_COMPOSE_MODE,
959 VIDEO_IN (vio, V_COMPOSE_MODE) | V1_COMMAND_FIRE);
961 return 0;
964 VDXDriver unichrome_drv = {
965 "unichrome",
966 NULL,
967 .probe = unichrome_probe,
968 .get_caps = unichrome_get_caps,
969 .query_fourcc = unichrome_query_fourcc,
970 .init = unichrome_init,
971 .destroy = unichrome_destroy,
972 .config_playback = unichrome_config_playback,
973 .playback_on = unichrome_playback_on,
974 .playback_off = unichrome_playback_off,
975 .frame_sel = unichrome_frame_select,
976 .get_eq = unichrome_get_eq,
977 .set_eq = unichrome_set_eq,
978 .get_gkey = unichrome_get_gkey,
979 .set_gkey = unichrome_set_gkey,