annotate vidix/drivers/cyberblade_vid.c @ 13656:99b443dd45a8

I420 support patch by Benjamin Zores <ben@tutuxclan.org>
author faust3
date Sun, 17 Oct 2004 17:16:28 +0000
parents 6d2a63a93190
children 1255d1604e00
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
1 /*
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
2 Driver for CyberBlade/i1 - Version 0.1.4
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
3
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
4 Copyright (C) 2002 by Alastair M. Robinson.
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
5 Official homepage: http://www.blackfiveservices.co.uk/EPIAVidix.shtml
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
6
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
7 Based on Permedia 3 driver by Måns Rullgård
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
8
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
9 Thanks to Gilles Frattini for bugfixes
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
10
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
11 This program is free software; you can redistribute it and/or modify
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
12 it under the terms of the GNU General Public License as published by
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
13 the Free Software Foundation; either version 2 of the License, or
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
14 (at your option) any later version.
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
15
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
16 This program is distributed in the hope that it will be useful,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
19 GNU General Public License for more details.
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
20
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
21 You should have received a copy of the GNU General Public License
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
22 along with this program; if not, write to the Free Software
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
23 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
24
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
25 Changes:
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
26 18/01/03
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
27 MMIO is no longer used, sidestepping cache issues on EPIA-800
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
28 TV-Out modes are now better supported - this should be the end
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
29 of the magenta stripes :)
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
30 Brightness/Contrast controls disabled for the time being - they were
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
31 seriously degrading picture quality, especially with TV-Out.
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
32
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
33 To Do:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
34 Implement Hue/Saturation controls
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
35 Support / Test multiple frames
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
36 Test colour-key code more extensively
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
37 */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
38
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
39 #include <errno.h>
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
40 #include <stdio.h>
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
41 #include <stdlib.h>
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
42 #include <string.h>
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
43 #include <inttypes.h>
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
44 #include <unistd.h>
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
45
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
46 #include "../vidix.h"
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
47 #include "../fourcc.h"
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
48 #include "../../libdha/libdha.h"
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
49 #include "../../libdha/pci_ids.h"
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
50 #include "../../libdha/pci_names.h"
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
51 #include "../../config.h"
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
52
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
53 #include "cyberblade_regs.h"
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
54
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
55 pciinfo_t pci_info;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
56
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
57 char save_colourkey[6];
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
58 char *cyberblade_mem;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
59
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
60 #ifdef DEBUG_LOGFILE
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
61 FILE *logfile=0;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
62 #define LOGWRITE(x) {if(logfile) fprintf(logfile,x);}
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
63 #else
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
64 #define LOGWRITE(x)
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
65 #endif
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
66
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
67 /* Helper functions for reading registers. */
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
68
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
69 static int CRINW(int reg)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
70 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
71 int result;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
72 result=CRINB(reg);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
73 result|=CRINB(reg+1)<<8;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
74 return(result);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
75 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
76
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
77 static void CROUTW(int reg,int val)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
78 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
79 CROUTB(reg,val&255);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
80 CROUTB(reg+1,(val>>8)&255);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
81 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
82
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
83 static int SRINW(int reg)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
84 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
85 int result;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
86 result=SRINB(reg);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
87 result|=SRINB(reg+1)<<8;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
88 return(result);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
89 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
90
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
91 static void SROUTW(int reg,int val)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
92 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
93 SROUTB(reg,val&255);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
94 SROUTB(reg+1,(val>>8)&255);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
95 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
96
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
97 void DumpRegisters()
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
98 {
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
99 int reg,val;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
100 #ifdef DEBUG_LOGFILE
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
101 if(logfile)
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
102 {
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
103 LOGWRITE("CRTC Register Dump:\n")
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
104 for(reg=0;reg<256;++reg)
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
105 {
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
106 val=CRINB(reg);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
107 fprintf(logfile,"CR0x%2x: 0x%2x\n",reg,val);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
108 }
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
109 LOGWRITE("SR Register Dump:\n")
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
110 for(reg=0;reg<256;++reg)
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
111 {
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
112 val=SRINB(reg);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
113 fprintf(logfile,"SR0x%2x: 0x%2x\n",reg,val);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
114 }
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
115 }
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
116 #endif
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
117 }
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
118 /* --- */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
119
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
120 static vidix_capability_t cyberblade_cap =
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
121 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
122 "Trident CyberBlade i1 driver",
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
123 "Alastair M. Robinson <blackfive@fakenhamweb.co.uk>",
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
124 TYPE_OUTPUT,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
125 { 0, 0, 0, 0 },
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
126 1024,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
127 1024,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
128 4,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
129 4,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
130 -1,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
131 FLAG_UPSCALER|FLAG_DOWNSCALER,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
132 VENDOR_TRIDENT,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
133 -1,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
134 { 0, 0, 0, 0 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
135 };
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
136
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
137
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
138 unsigned int vixGetVersion(void)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
139 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
140 return(VIDIX_VERSION);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
141 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
142
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
143
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
144 static unsigned short cyberblade_card_ids[] =
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
145 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
146 DEVICE_TRIDENT_CYBERBLADE_I1
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
147 };
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
148
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
149
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
150 static int find_chip(unsigned chip_id)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
151 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
152 unsigned i;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
153 for(i = 0;i < sizeof(cyberblade_card_ids)/sizeof(unsigned short);i++)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
154 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
155 if(chip_id == cyberblade_card_ids[i]) return i;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
156 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
157 return -1;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
158 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
159
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
160 int vixProbe(int verbose, int force)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
161 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
162 pciinfo_t lst[MAX_PCI_DEVICES];
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
163 unsigned i,num_pci;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
164 int err;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
165 err = pci_scan(lst,&num_pci);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
166 if(err)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
167 {
11678
972d1998bde9 occured --> occurred typo patch by Clinton Roy <croy@dstc.edu.au>
diego
parents: 9767
diff changeset
168 printf("[cyberblade] Error occurred during pci scan: %s\n",strerror(err));
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
169 return err;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
170 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
171 else
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
172 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
173 err = ENXIO;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
174 for(i=0; i < num_pci; i++)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
175 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
176 if(lst[i].vendor == VENDOR_TRIDENT)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
177 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
178 int idx;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
179 const char *dname;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
180 idx = find_chip(lst[i].device);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
181 if(idx == -1)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
182 continue;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
183 dname = pci_device_name(VENDOR_TRIDENT, lst[i].device);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
184 dname = dname ? dname : "Unknown chip";
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
185 printf("[cyberblade] Found chip: %s\n", dname);
9767
f6d2772efca3 Ignore disabled cards. (Jon Burgess <jburgess@uklinux.net>)
ranma
parents: 9023
diff changeset
186 if ((lst[i].command & PCI_COMMAND_IO) == 0)
f6d2772efca3 Ignore disabled cards. (Jon Burgess <jburgess@uklinux.net>)
ranma
parents: 9023
diff changeset
187 {
f6d2772efca3 Ignore disabled cards. (Jon Burgess <jburgess@uklinux.net>)
ranma
parents: 9023
diff changeset
188 printf("[cyberblade] Device is disabled, ignoring\n");
f6d2772efca3 Ignore disabled cards. (Jon Burgess <jburgess@uklinux.net>)
ranma
parents: 9023
diff changeset
189 continue;
f6d2772efca3 Ignore disabled cards. (Jon Burgess <jburgess@uklinux.net>)
ranma
parents: 9023
diff changeset
190 }
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
191 cyberblade_cap.device_id = lst[i].device;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
192 err = 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
193 memcpy(&pci_info, &lst[i], sizeof(pciinfo_t));
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
194 break;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
195 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
196 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
197 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
198
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
199 if(err && verbose) printf("[cyberblade] Can't find chip\n");
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
200 return err;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
201 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
202
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
203
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
204 int vixInit(void)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
205 {
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
206 cyberblade_mem = map_phys_mem(pci_info.base0, 0x800000);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
207 enable_app_io();
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
208 save_colourkey[0]=SRINB(0x50);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
209 save_colourkey[1]=SRINB(0x51);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
210 save_colourkey[2]=SRINB(0x52);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
211 save_colourkey[3]=SRINB(0x54);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
212 save_colourkey[4]=SRINB(0x55);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
213 save_colourkey[5]=SRINB(0x56);
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
214 #ifdef DEBUG_LOGFILE
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
215 logfile=fopen("/tmp/cyberblade_vidix.log","w");
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
216 #endif
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
217 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
218 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
219
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
220 void vixDestroy(void)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
221 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
222 int protect;
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
223 #ifdef DEBUG_LOGFILE
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
224 if(logfile)
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
225 fclose(logfile);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
226 #endif
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
227 protect=SRINB(0x11);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
228 SROUTB(0x11, 0x92);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
229 CROUTB(0x8E, 0xc4); /* Disable overlay */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
230 SROUTB(0x50,save_colourkey[0]);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
231 SROUTB(0x51,save_colourkey[1]);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
232 SROUTB(0x52,save_colourkey[2]);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
233 SROUTB(0x54,save_colourkey[3]);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
234 SROUTB(0x55,save_colourkey[4]);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
235 SROUTB(0x56,save_colourkey[5]);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
236 SROUTB(0x11, protect);
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
237 disable_app_io();
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
238 unmap_phys_mem(cyberblade_mem, 0x800000);
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
239 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
240
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
241
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
242 int vixGetCapability(vidix_capability_t *to)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
243 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
244 memcpy(to, &cyberblade_cap, sizeof(vidix_capability_t));
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
245 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
246 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
247
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
248
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
249 static int is_supported_fourcc(uint32_t fourcc)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
250 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
251 switch(fourcc)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
252 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
253 case IMGFMT_YUY2:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
254 case IMGFMT_YV12:
13656
99b443dd45a8 I420 support patch by Benjamin Zores <ben@tutuxclan.org>
faust3
parents: 13604
diff changeset
255 case IMGFMT_I420:
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
256 case IMGFMT_YVU9:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
257 case IMGFMT_BGR16:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
258 return 1;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
259 default:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
260 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
261 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
262 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
263
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
264 int vixQueryFourcc(vidix_fourcc_t *to)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
265 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
266 if(is_supported_fourcc(to->fourcc))
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
267 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
268 to->depth = VID_DEPTH_1BPP | VID_DEPTH_2BPP |
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
269 VID_DEPTH_4BPP | VID_DEPTH_8BPP |
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
270 VID_DEPTH_12BPP| VID_DEPTH_15BPP|
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
271 VID_DEPTH_16BPP| VID_DEPTH_24BPP|
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
272 VID_DEPTH_32BPP;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
273 to->flags = VID_CAP_EXPAND | VID_CAP_SHRINK | VID_CAP_COLORKEY;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
274 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
275 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
276 else
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
277 to->depth = to->flags = 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
278 return ENOSYS;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
279 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
280
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
281
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
282 static int frames[VID_PLAY_MAXFRAMES];
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
283
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
284 static vidix_grkey_t cyberblade_grkey;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
285
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
286 int vixGetGrKeys(vidix_grkey_t *grkey)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
287 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
288 memcpy(grkey, &cyberblade_grkey, sizeof(vidix_grkey_t));
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
289 return(0);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
290 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
291
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
292 int vixSetGrKeys(const vidix_grkey_t *grkey)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
293 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
294 int pixfmt=CRINB(0x38);
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
295 int protect;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
296 memcpy(&cyberblade_grkey, grkey, sizeof(vidix_grkey_t));
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
297
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
298 protect=SRINB(0x11);
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
299 SROUTB(0x11, 0x92);
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
300
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
301 if(pixfmt&0x28) /* 32 or 24 bpp */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
302 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
303 SROUTB(0x50, cyberblade_grkey.ckey.blue); /* Colour Key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
304 SROUTB(0x51, cyberblade_grkey.ckey.green); /* Colour Key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
305 SROUTB(0x52, cyberblade_grkey.ckey.red); /* Colour Key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
306 SROUTB(0x54, 0xff); /* Colour Key Mask */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
307 SROUTB(0x55, 0xff); /* Colour Key Mask */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
308 SROUTB(0x56, 0xff); /* Colour Key Mask */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
309 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
310 else
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
311 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
312 int tmp=((cyberblade_grkey.ckey.blue & 0xF8)>>3)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
313 | ((cyberblade_grkey.ckey.green & 0xfc)<<3)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
314 | ((cyberblade_grkey.ckey.red & 0xf8)<<8);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
315 SROUTB(0x50, tmp&0xff); /* Colour Key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
316 SROUTB(0x51, (tmp>>8)&0xff); /* Colour Key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
317 SROUTB(0x52, 0); /* Colour Key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
318 SROUTB(0x54, 0xff); /* Colour Key Mask */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
319 SROUTB(0x55, 0xff); /* Colour Key Mask */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
320 SROUTB(0x56, 0x00); /* Colour Key Mask */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
321 }
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
322 SROUTB(0x11,protect);
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
323 return(0);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
324 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
325
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
326
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
327 vidix_video_eq_t equal =
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
328 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
329 VEQ_CAP_BRIGHTNESS | VEQ_CAP_SATURATION | VEQ_CAP_HUE,
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
330 300, 100, 0, 0, 0, 0, 0, 0
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
331 };
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
332
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
333 int vixPlaybackGetEq( vidix_video_eq_t * eq)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
334 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
335 memcpy(eq,&equal,sizeof(vidix_video_eq_t));
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
336 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
337 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
338
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
339 int vixPlaybackSetEq( const vidix_video_eq_t * eq)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
340 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
341 int br,sat,cr,protect;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
342 if(eq->cap & VEQ_CAP_BRIGHTNESS) equal.brightness = eq->brightness;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
343 if(eq->cap & VEQ_CAP_CONTRAST) equal.contrast = eq->contrast;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
344 if(eq->cap & VEQ_CAP_SATURATION) equal.saturation = eq->saturation;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
345 if(eq->cap & VEQ_CAP_HUE) equal.hue = eq->hue;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
346 if(eq->cap & VEQ_CAP_RGB_INTENSITY)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
347 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
348 equal.red_intensity = eq->red_intensity;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
349 equal.green_intensity = eq->green_intensity;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
350 equal.blue_intensity = eq->blue_intensity;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
351 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
352 equal.flags = eq->flags;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
353
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
354 cr = (equal.contrast) * 31 / 2000; cr+=16;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
355 if (cr < 0) cr = 0; if(cr > 7) cr = 7;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
356 cr=cr<<4 | cr;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
357
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
358 br = (equal.brightness+1000) * 63 / 2000;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
359 if (br < 0) br = 0; if(br > 63) br = 63;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
360 if(br>32) br-=32; else br+=32;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
361
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
362 sat = (equal.saturation + 1000) * 16 / 2000;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
363 if (sat < 0) sat = 0; if(sat > 31) sat = 31;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
364
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
365 protect=SRINB(0x11);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
366 SROUTB(0x11, 0x92);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
367
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
368 SROUTB(0xBC,cr);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
369 SROUTW(0xB0,(br<<10)|4);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
370
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
371 SROUTB(0x11, protect);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
372
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
373 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
374 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
375
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
376
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
377 static int YOffs,UOffs,VOffs;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
378
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
379 int vixConfigPlayback(vidix_playback_t *info)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
380 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
381 int shrink, zoom;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
382 int src_w, drw_w;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
383 int src_h, drw_h;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
384 int hscale,vscale;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
385 long base0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
386 int y_pitch, uv_pitch;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
387 int protect=0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
388 int layout=0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
389 unsigned int i;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
390
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
391 if(!is_supported_fourcc(info->fourcc))
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
392 return -1;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
393
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
394 src_w = info->src.w;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
395 src_h = info->src.h;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
396
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
397 drw_w = info->dest.w;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
398 drw_h = info->dest.h;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
399
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
400 switch(info->fourcc)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
401 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
402 case IMGFMT_YUY2:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
403 case IMGFMT_BGR16:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
404 y_pitch = (src_w*2 + 15) & ~15;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
405 uv_pitch = 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
406 YOffs=VOffs=UOffs=info->offset.y = info->offset.v = info->offset.u = 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
407 info->frame_size = y_pitch*src_h;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
408 layout=0x0; /* packed */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
409 break;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
410 case IMGFMT_YV12:
13656
99b443dd45a8 I420 support patch by Benjamin Zores <ben@tutuxclan.org>
faust3
parents: 13604
diff changeset
411 case IMGFMT_I420:
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
412 y_pitch = (src_w+15) & ~15;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
413 uv_pitch = ((src_w/2)+7) & ~7;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
414 YOffs=info->offset.y = 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
415 VOffs=info->offset.v = y_pitch*src_h;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
416 UOffs=info->offset.u = info->offset.v+(uv_pitch)*(src_h/2);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
417 info->frame_size = y_pitch*src_h + 2*uv_pitch*(src_h/2);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
418 layout=0x1; /* planar, 4:1:1 */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
419 break;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
420 case IMGFMT_YVU9:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
421 y_pitch = (src_w+15) & ~15;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
422 uv_pitch = ((src_w/4)+3) & ~3;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
423 YOffs=info->offset.y = 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
424 VOffs=info->offset.v = y_pitch*src_h;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
425 UOffs=info->offset.u = info->offset.v+(uv_pitch)*(src_h/4);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
426 info->frame_size = y_pitch*src_h + 2*uv_pitch*(src_h/4);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
427 layout=0x51; /* planar, 16:1:1 */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
428 break;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
429 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
430
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
431 /* Assume we have 2 MB to play with */
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
432 info->num_frames = 0x200000 / info->frame_size;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
433 if(info->num_frames > VID_PLAY_MAXFRAMES)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
434 info->num_frames = VID_PLAY_MAXFRAMES;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
435
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
436 /* Start at 6 MB. Let's hope it's not in use. */
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
437 base0 = 0x600000;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
438 info->dga_addr = cyberblade_mem + base0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
439
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
440 info->dest.pitch.y = 16;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
441 info->dest.pitch.u = 16;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
442 info->dest.pitch.v = 16;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
443
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
444 for(i = 0; i < info->num_frames; i++)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
445 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
446 info->offsets[i] = info->frame_size * i;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
447 frames[i] = base0+info->offsets[i];
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
448 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
449
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
450 OUTPORT8(0x3d4,0x39);
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
451 OUTPORT8(0x3d5,INPORT(0x3d5)|1);
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
452
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
453 SRINB(0x0b); /* Select new mode */
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
454
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
455 /* Unprotect hardware registers... */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
456 protect=SRINB(0x11);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
457 SROUTB(0x11, 0x92);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
458
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
459 SROUTB(0x57, 0xc0); /* Playback key function */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
460 SROUTB(0x21, 0x34); /* Signature control */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
461 SROUTB(0x37, 0x30); /* Video key mode */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
462
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
463 vixSetGrKeys(&cyberblade_grkey);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
464
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
465 /* compute_scale_factor(&src_w, &drw_w, &shrink, &zoom); */
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
466 {
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
467 int HTotal,VTotal,HSync,VSync,Overflow,HDisp,VDisp;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
468 int HWinStart,VWinStart;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
469 int tx1,ty1,tx2,ty2;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
470
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
471 HTotal=CRINB(0x00);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
472 HSync=CRINB(0x04);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
473 VTotal=CRINB(0x06);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
474 VSync=CRINB(0x10);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
475 Overflow=CRINB(0x07);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
476 HTotal <<=3;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
477 HSync <<=3;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
478 VTotal |= (Overflow & 1) <<8;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
479 VTotal |= (Overflow & 0x20) <<4;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
480 VTotal +=4;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
481 VSync |= (Overflow & 4) <<6;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
482 VSync |= (Overflow & 0x80) <<2;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
483
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
484 if(CRINB(0xd1)&0x80)
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
485 {
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
486 int hcorr,vcorr;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
487 int TVHTotal,TVVTotal,TVHSyncStart,TVVSyncStart,TVOverflow;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
488 LOGWRITE("[cyberblade] Using TV-CRTC\n");
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
489
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
490 HDisp=(1+CRINB(0x01))*8;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
491 VDisp=1+CRINB(0x12);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
492 Overflow=CRINB(0x07);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
493 VDisp |= (Overflow & 2) <<7;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
494 VDisp |= (Overflow & 0x40) << 3;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
495
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
496 TVHTotal=CRINB(0xe0)*8;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
497 TVVTotal=CRINB(0xe6);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
498 TVOverflow=CRINB(0xe7);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
499 if(TVOverflow&0x20) TVVTotal|=512;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
500 if(TVOverflow&0x01) TVVTotal|=256;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
501 TVHTotal+=40; TVVTotal+=2;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
502
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
503 TVHSyncStart=CRINB(0xe4)*8;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
504 TVVSyncStart=CRINB(0xf0);
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
505 if(TVOverflow&0x80) TVVSyncStart|=512;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
506 if(TVOverflow&0x04) TVVSyncStart|=256;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
507
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
508 HWinStart=(TVHTotal-HDisp)&15;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
509 HWinStart|=(HTotal-HDisp)&15;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
510 HWinStart+=(TVHTotal-TVHSyncStart)-49;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
511 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
512 else
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
513 {
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
514 LOGWRITE("[cyberblade] Using Standard CRTC\n");
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
515 HWinStart=(HTotal-HSync)+15;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
516 }
13604
6d2a63a93190 fix Cyberblade VidiX driver TVOUT patch by Benjamin Zores <ben@tutuxclan.org>
faust3
parents: 11678
diff changeset
517 VWinStart=(VTotal-VSync)-8;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
518
8513
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
519 printf("[cyberblade] HTotal: 0x%x, HSStart: 0x%x\n",HTotal,HSync);
679abb24a76e more safer version by the author
alex
parents: 8505
diff changeset
520 printf(" VTotal: 0x%x, VStart: 0x%x\n",VTotal,VSync);
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
521 tx1=HWinStart+info->dest.x;
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
522 ty1=VWinStart+info->dest.y;
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
523 tx2=tx1+info->dest.w;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
524 ty2=ty1+info->dest.h;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
525
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
526 CROUTW(0x86,tx1);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
527 CROUTW(0x88,ty1);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
528 CROUTW(0x8a,tx2);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
529 CROUTW(0x8c,ty2+3);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
530 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
531
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
532 if(src_w==drw_w)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
533 hscale=0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
534 else if(src_w<drw_w)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
535 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
536 hscale=((src_w<<10)/(drw_w-2)) & 0x1fff;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
537 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
538 else
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
539 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
540 hscale=0x8000 | ((((src_w/drw_w)-1)&7)<<10) | (((drw_w<<10)/src_w) & 0x3ff);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
541 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
542
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
543 vscale=(src_h<<10)/(drw_h);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
544 if(drw_h<src_h)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
545 vscale=0x8000|((drw_h<<10)/(src_h));
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
546
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
547 /* Write scale factors to hardware */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
548
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
549 CROUTW(0x80,hscale); /* Horizontal Scale */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
550 CROUTW(0x82,vscale); /* Vertical Scale */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
551
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
552 /* Now set the start address and data layout */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
553 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
554 int lb = (y_pitch+2) >> 2;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
555 CROUTB(0x95, ((lb & 0x100)>>1) | 0x08 ); /* Linebuffer level bit 8 & threshold */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
556 CROUTB(0x96, (lb & 0xFF)); /* Linebuffer level */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
557
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
558 CROUTB(0x97, 0x00); /* VDE Flags */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
559 CROUTB(0xBA, 0x00); /* Chroma key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
560 CROUTB(0xBB, 0x00); /* Chroma key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
561 CROUTB(0xBC, 0xFF); /* Chroma key */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
562 CROUTB(0xBD, 0xFF); /* Chroma key */
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
563 CROUTB(0xBE, 0x04); /* Capture control */
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
564
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
565 if(src_w > 384)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
566 layout|=4; /* 2x line buffers */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
567 SROUTB(0x97, layout);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
568
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
569 CROUTW(0x90,y_pitch); /* Y Bytes per row */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
570 SROUTW(0x9A,uv_pitch); /* UV Bytes per row */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
571
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
572 switch(info->fourcc)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
573 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
574 case IMGFMT_BGR16:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
575 CROUTB(0x8F, 0x24); /* VDE Flags - Edge Recovery & CSC Bypass */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
576 CROUTB(0xBF, 0x02); /* Video format - RGB16 */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
577 SROUTB(0xBE, 0x0); /* HSCB disabled */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
578 break;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
579 default:
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
580 CROUTB(0x8F, 0x20); /* VDE Flags - Edge Recovery */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
581 CROUTB(0xBF, 0x00); /* Video format - YUV */
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
582 SROUTB(0xBE, 0x00); /* HSCB disable - was 0x03*/
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
583 break;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
584 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
585
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
586 CROUTB(0x92, ((base0+info->offset.y) >> 3) &0xff); /* Lower 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
587 CROUTB(0x93, ((base0+info->offset.y) >> 11) &0xff); /* Mid 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
588 CROUTB(0x94, ((base0+info->offset.y) >> 19) &0xf); /* Upper 4 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
589 SROUTB(0x80, ((base0+info->offset.v) >> 3) &0xff); /* Lower 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
590 SROUTB(0x81, ((base0+info->offset.v) >> 11) &0xff); /* Mid 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
591 SROUTB(0x82, ((base0+info->offset.v) >> 19) &0xf); /* Upper 4 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
592 SROUTB(0x83, ((base0+info->offset.u) >> 3) &0xff); /* Lower 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
593 SROUTB(0x84, ((base0+info->offset.u) >> 11) &0xff); /* Mid 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
594 SROUTB(0x85, ((base0+info->offset.u) >> 19) &0xf); /* Upper 4 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
595 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
596
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
597 vixPlaybackSetEq(&equal);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
598
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
599 /* Protect hardware registers again */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
600 SROUTB(0x11, protect);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
601 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
602 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
603
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
604
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
605 int vixPlaybackOn(void)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
606 {
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
607 LOGWRITE("Enable overlay\n");
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
608 CROUTB(0x8E, 0xd4); /* VDE Flags*/
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
609
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
610 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
611 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
612
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
613
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
614 int vixPlaybackOff(void)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
615 {
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
616 LOGWRITE("Disable overlay\n");
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
617 CROUTB(0x8E, 0xc4); /* VDE Flags*/
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
618
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
619 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
620 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
621
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
622
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
623 int vixPlaybackFrameSelect(unsigned int frame)
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
624 {
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
625 int protect;
9023
e40760677a83 Updated to v0.1.4 by Alastair Robinson <blackfive@fakenhamweb.co.uk>
alex
parents: 8513
diff changeset
626 LOGWRITE("Frame select\n");
8505
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
627 protect=SRINB(0x11);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
628 SROUTB(0x11, 0x92);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
629 /* Set overlay address to that of selected frame */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
630 CROUTB(0x92, ((frames[frame]+YOffs) >> 3) &0xff); /* Lower 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
631 CROUTB(0x93, ((frames[frame]+YOffs) >> 11) &0xff); /* Mid 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
632 CROUTB(0x94, ((frames[frame]+YOffs) >> 19) &0xf); /* Upper 4 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
633 SROUTB(0x80, ((frames[frame]+VOffs) >> 3) &0xff); /* Lower 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
634 SROUTB(0x81, ((frames[frame]+VOffs) >> 11) &0xff); /* Mid 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
635 SROUTB(0x82, ((frames[frame]+VOffs) >> 19) &0xf); /* Upper 4 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
636 SROUTB(0x83, ((frames[frame]+UOffs) >> 3) &0xff); /* Lower 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
637 SROUTB(0x84, ((frames[frame]+UOffs) >> 11) &0xff); /* Mid 8 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
638 SROUTB(0x85, ((frames[frame]+UOffs) >> 19) &0xf); /* Upper 4 bits of start address */
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
639 SROUTB(0x11, protect);
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
640 return 0;
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
641 }
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
642
d794e866cf5f EPIA (CyberBlade/i1) driver by Alastair M. Robinson
alex
parents:
diff changeset
643