annotate vidix/drivers/mach64_vid.c @ 4872:995ee733e8d4

YVU9 support fixing framesize & alignment setting colorkey at a more correct place
author michael
date Tue, 26 Feb 2002 22:15:08 +0000
parents 550e86ba0390
children 5320e2e683e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
1 /*
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
2 mach64_vid - VIDIX based video driver for Mach64 and 3DRage chips
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
3 Copyrights 2002 Nick Kurshev. This file is based on sources from
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
4 GATOS (gatos.sf.net) and X11 (www.xfree86.org)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
5 Licence: GPL
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
6 WARNING: THIS DRIVER IS IN BETTA STAGE
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
7 */
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
8 #include <errno.h>
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
9 #include <stdio.h>
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
10 #include <stdlib.h>
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
11 #include <string.h>
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
12 #include <math.h>
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
13 #include <inttypes.h>
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
14 #include <fcntl.h>
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
15
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
16 #include "../vidix.h"
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
17 #include "../fourcc.h"
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
18 #include "../../libdha/libdha.h"
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
19 #include "../../libdha/pci_ids.h"
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
20 #include "../../libdha/pci_names.h"
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
21
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
22 #include "mach64.h"
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
23
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
24 #define UNUSED(x) ((void)(x)) /**< Removes warning about unused arguments */
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
25
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
26 static void *mach64_mmio_base = 0;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
27 static void *mach64_mem_base = 0;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
28 static int32_t mach64_overlay_offset = 0;
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
29 static uint32_t mach64_ram_size = 0;
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
30 static uint32_t mach64_buffer_base[10][3];
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
31 static int num_mach64_buffers=-1;
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
32
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
33 pciinfo_t pci_info;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
34 static int probed = 0;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
35 static int __verbose = 0;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
36
4758
nick
parents: 4751
diff changeset
37 #define VERBOSE_LEVEL 1
nick
parents: 4751
diff changeset
38
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
39 typedef struct bes_registers_s
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
40 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
41 /* base address of yuv framebuffer */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
42 uint32_t yuv_base;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
43 uint32_t fourcc;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
44 /* YUV BES registers */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
45 uint32_t reg_load_cntl;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
46 uint32_t scale_inc;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
47 uint32_t y_x_start;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
48 uint32_t y_x_end;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
49 uint32_t vid_buf_pitch;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
50 uint32_t height_width;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
51
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
52 uint32_t scale_cntl;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
53 uint32_t exclusive_horz;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
54 uint32_t auto_flip_cntl;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
55 uint32_t filter_cntl;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
56 uint32_t key_cntl;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
57 uint32_t test;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
58 /* Configurable stuff */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
59
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
60 int brightness;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
61 int saturation;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
62
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
63 int ckey_on;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
64 uint32_t graphics_key_clr;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
65 uint32_t graphics_key_msk;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
66
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
67 int deinterlace_on;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
68 uint32_t deinterlace_pattern;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
69
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
70 } bes_registers_t;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
71
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
72 static bes_registers_t besr;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
73
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
74 typedef struct video_registers_s
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
75 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
76 const char * sname;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
77 uint32_t name;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
78 uint32_t value;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
79 }video_registers_t;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
80
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
81 static bes_registers_t besr;
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
82
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
83 /* Graphic keys */
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
84 static vidix_grkey_t mach64_grkey;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
85
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
86 #define DECLARE_VREG(name) { #name, name, 0 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
87 static video_registers_t vregs[] =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
88 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
89 DECLARE_VREG(OVERLAY_SCALE_INC),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
90 DECLARE_VREG(OVERLAY_Y_X_START),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
91 DECLARE_VREG(OVERLAY_Y_X_END),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
92 DECLARE_VREG(OVERLAY_SCALE_CNTL),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
93 DECLARE_VREG(OVERLAY_EXCLUSIVE_HORZ),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
94 DECLARE_VREG(OVERLAY_EXCLUSIVE_VERT),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
95 DECLARE_VREG(OVERLAY_TEST),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
96 DECLARE_VREG(SCALER_BUF_PITCH),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
97 DECLARE_VREG(SCALER_HEIGHT_WIDTH),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
98 DECLARE_VREG(SCALER_BUF0_OFFSET),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
99 DECLARE_VREG(SCALER_BUF0_OFFSET_U),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
100 DECLARE_VREG(SCALER_BUF0_OFFSET_V),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
101 DECLARE_VREG(SCALER_BUF1_OFFSET),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
102 DECLARE_VREG(SCALER_BUF1_OFFSET_U),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
103 DECLARE_VREG(SCALER_BUF1_OFFSET_V),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
104 DECLARE_VREG(SCALER_H_COEFF0),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
105 DECLARE_VREG(SCALER_H_COEFF1),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
106 DECLARE_VREG(SCALER_H_COEFF2),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
107 DECLARE_VREG(SCALER_H_COEFF3),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
108 DECLARE_VREG(SCALER_H_COEFF4),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
109 DECLARE_VREG(SCALER_COLOUR_CNTL),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
110 DECLARE_VREG(SCALER_THRESHOLD),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
111 DECLARE_VREG(VIDEO_FORMAT),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
112 DECLARE_VREG(VIDEO_CONFIG),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
113 DECLARE_VREG(VIDEO_SYNC_TEST),
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
114 DECLARE_VREG(VIDEO_SYNC_TEST_B)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
115 };
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
116
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
117 /* VIDIX exports */
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
118
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
119 /* MMIO space*/
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
120 #define GETREG(TYPE,PTR,OFFZ) (*((volatile TYPE*)((PTR)+(OFFZ))))
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
121 #define SETREG(TYPE,PTR,OFFZ,VAL) (*((volatile TYPE*)((PTR)+(OFFZ))))=VAL
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
122
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
123 #define INREG8(addr) GETREG(uint8_t,(uint32_t)mach64_mmio_base,((addr)^0x100)<<2)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
124 #define OUTREG8(addr,val) SETREG(uint8_t,(uint32_t)mach64_mmio_base,((addr)^0x100)<<2,val)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
125 #define INREG(addr) GETREG(uint32_t,(uint32_t)mach64_mmio_base,((addr)^0x100)<<2)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
126 #define OUTREG(addr,val) SETREG(uint32_t,(uint32_t)mach64_mmio_base,((addr)^0x100)<<2,val)
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
127
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
128 #define OUTREGP(addr,val,mask) \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
129 do { \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
130 unsigned int _tmp = INREG(addr); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
131 _tmp &= (mask); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
132 _tmp |= (val); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
133 OUTREG(addr, _tmp); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
134 } while (0)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
135
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
136 static __inline__ int ATIGetMach64LCDReg(int _Index)
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
137 {
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
138 OUTREG8(LCD_INDEX, _Index);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
139 return INREG(LCD_DATA);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
140 }
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
141
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
142 static __inline__ uint32_t INPLL(uint32_t addr)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
143 {
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
144 uint32_t res;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
145
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
146 /* write addr byte */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
147 OUTREG8(CLOCK_CNTL + 1, (addr << 2));
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
148 /* read the register value */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
149 res = INREG(CLOCK_CNTL + 2);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
150 return res;
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
151 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
152
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
153 static __inline__ void OUTPLL(uint32_t addr,uint32_t val)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
154 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
155 /* write addr byte */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
156 OUTREG8(CLOCK_CNTL + 1, (addr << 2) | PLL_WR_EN);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
157 /* write the register value */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
158 OUTREG(CLOCK_CNTL + 2, val);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
159 OUTREG8(CLOCK_CNTL + 1, (addr << 2) & ~PLL_WR_EN);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
160 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
161
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
162 #define OUTPLLP(addr,val,mask) \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
163 do { \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
164 unsigned int _tmp = INPLL(addr); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
165 _tmp &= (mask); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
166 _tmp |= (val); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
167 OUTPLL(addr, _tmp); \
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
168 } while (0)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
169
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
170 static void mach64_fifo_wait(unsigned n)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
171 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
172 while ((INREG(FIFO_STAT) & 0xffff) > ((uint32_t)(0x8000 >> n)));
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
173 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
174
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
175 static void mach64_wait_for_idle( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
176 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
177 mach64_fifo_wait(16);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
178 while ((INREG(GUI_STAT) & 1)!= 0);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
179 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
180
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
181 static vidix_capability_t mach64_cap =
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
182 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
183 "BES driver for Mach64/3DRage cards",
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
184 "Nick Kurshev and Michael Niedermayer",
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
185 TYPE_OUTPUT,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
186 { 0, 0, 0, 0 },
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
187 2048,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
188 2048,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
189 4,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
190 4,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
191 -1,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
192 FLAG_UPSCALER|FLAG_DOWNSCALER,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
193 VENDOR_ATI,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
194 -1,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
195 { 0, 0, 0, 0 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
196 };
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
197
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
198 static uint32_t mach64_vid_get_dbpp( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
199 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
200 uint32_t dbpp,retval;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
201 dbpp = (INREG(CRTC_GEN_CNTL)>>8)& 0x7;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
202 switch(dbpp)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
203 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
204 case 1: retval = 4; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
205 case 2: retval = 8; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
206 case 3: retval = 15; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
207 case 4: retval = 16; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
208 case 5: retval = 24; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
209 default: retval=32; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
210 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
211 return retval;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
212 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
213
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
214 static int mach64_is_dbl_scan( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
215 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
216 return INREG(CRTC_GEN_CNTL) & CRTC_DBL_SCAN_EN;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
217 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
218
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
219 static int mach64_is_interlace( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
220 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
221 return INREG(CRTC_GEN_CNTL) & CRTC_INTERLACE_EN;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
222 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
223
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
224 static uint32_t mach64_get_xres( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
225 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
226 /* FIXME: currently we extract that from CRTC!!!*/
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
227 uint32_t xres,h_total;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
228 h_total = INREG(CRTC_H_TOTAL_DISP);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
229 xres = (h_total >> 16) & 0xffff;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
230 return (xres + 1)*8;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
231 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
232
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
233 static uint32_t mach64_get_yres( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
234 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
235 /* FIXME: currently we extract that from CRTC!!!*/
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
236 uint32_t yres,v_total;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
237 v_total = INREG(CRTC_V_TOTAL_DISP);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
238 yres = (v_total >> 16) & 0xffff;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
239 return yres + 1;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
240 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
241
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
242 // returns the verical stretch factor in 16.16
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
243 static int mach64_get_vert_stretch(void)
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
244 {
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
245 int lcd_index;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
246 int lcd_gen_ctrl;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
247 int vert_stretching;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
248 int ext_vert_stretch;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
249 int ret;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
250 int yres= mach64_get_yres();
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
251
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
252 //FIXME check for mobility & co
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
253
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
254 lcd_index= INREG(LCD_INDEX);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
255
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
256 vert_stretching= ATIGetMach64LCDReg(LCD_VERT_STRETCHING);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
257 if(!(vert_stretching&VERT_STRETCH_EN)) ret= 1<<16;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
258 else
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
259 {
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
260 int panel_size;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
261
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
262 ext_vert_stretch= ATIGetMach64LCDReg(LCD_EXT_VERT_STRETCH);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
263 panel_size= (ext_vert_stretch&VERT_PANEL_SIZE)>>11;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
264 panel_size++;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
265
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
266 ret= ((yres<<16) + (panel_size>>1))/panel_size;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
267 }
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
268
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
269 // lcd_gen_ctrl = ATIGetMach64LCDReg(LCD_GEN_CNTL);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
270
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
271 OUTREG(LCD_INDEX, lcd_index);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
272
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
273 if(__verbose>VERBOSE_LEVEL) printf("[mach64] vertical stretching factor= %d\n", ret);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
274
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
275 return ret;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
276 }
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
277
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
278 static void mach64_vid_make_default()
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
279 {
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
280 mach64_fifo_wait(5);
4761
bc69f5fc18fe zero saturation / grayscale bugfix
michael
parents: 4760
diff changeset
281 OUTREG(SCALER_COLOUR_CNTL,0x00101000);
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
282
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
283 besr.ckey_on=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
284 besr.graphics_key_msk=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
285 besr.graphics_key_clr=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
286
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
287 OUTREG(OVERLAY_GRAPHICS_KEY_MSK, besr.graphics_key_msk);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
288 OUTREG(OVERLAY_GRAPHICS_KEY_CLR, besr.graphics_key_clr);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
289 OUTREG(OVERLAY_KEY_CNTL,VIDEO_KEY_FN_TRUE|GRAPHIC_KEY_FN_EQ|CMP_MIX_AND);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
290
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
291 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
292
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
293 static void mach64_vid_dump_regs( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
294 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
295 size_t i;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
296 printf("[mach64] *** Begin of DRIVER variables dump ***\n");
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
297 printf("[mach64] mach64_mmio_base=%p\n",mach64_mmio_base);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
298 printf("[mach64] mach64_mem_base=%p\n",mach64_mem_base);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
299 printf("[mach64] mach64_overlay_off=%08X\n",mach64_overlay_offset);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
300 printf("[mach64] mach64_ram_size=%08X\n",mach64_ram_size);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
301 printf("[mach64] video mode: %ux%u@%u\n",mach64_get_xres(),mach64_get_yres(),mach64_vid_get_dbpp());
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
302 printf("[mach64] *** Begin of OV0 registers dump ***\n");
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
303 for(i=0;i<sizeof(vregs)/sizeof(video_registers_t);i++)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
304 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
305 mach64_wait_for_idle();
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
306 printf("[mach64] %s = %08X\n",vregs[i].sname,INREG(vregs[i].name));
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
307 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
308 printf("[mach64] *** End of OV0 registers dump ***\n");
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
309 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
310
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
311
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
312 unsigned int vixGetVersion(void)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
313 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
314 return(VIDIX_VERSION);
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
315 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
316
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
317 static unsigned short ati_card_ids[] =
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
318 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
319 DEVICE_ATI_215CT_MACH64_CT,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
320 DEVICE_ATI_210888CX_MACH64_CX,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
321 DEVICE_ATI_210888ET_MACH64_ET,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
322 DEVICE_ATI_MACH64_VT,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
323 DEVICE_ATI_210888GX_MACH64_GX,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
324 DEVICE_ATI_264LT_MACH64_LT,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
325 DEVICE_ATI_264VT_MACH64_VT,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
326 DEVICE_ATI_264VT3_MACH64_VT3,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
327 DEVICE_ATI_264VT4_MACH64_VT4,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
328 /**/
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
329 DEVICE_ATI_3D_RAGE_PRO,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
330 DEVICE_ATI_3D_RAGE_PRO2,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
331 DEVICE_ATI_3D_RAGE_PRO3,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
332 DEVICE_ATI_3D_RAGE_PRO4,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
333 DEVICE_ATI_RAGE_XC,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
334 DEVICE_ATI_RAGE_XL_AGP,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
335 DEVICE_ATI_RAGE_XC_AGP,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
336 DEVICE_ATI_RAGE_XL,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
337 DEVICE_ATI_3D_RAGE_PRO5,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
338 DEVICE_ATI_3D_RAGE_PRO6,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
339 DEVICE_ATI_RAGE_XL2,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
340 DEVICE_ATI_RAGE_XC2,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
341 DEVICE_ATI_3D_RAGE_I_II,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
342 DEVICE_ATI_3D_RAGE_II,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
343 DEVICE_ATI_3D_RAGE_IIC,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
344 DEVICE_ATI_3D_RAGE_IIC2,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
345 DEVICE_ATI_3D_RAGE_IIC3,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
346 DEVICE_ATI_3D_RAGE_IIC4,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
347 DEVICE_ATI_3D_RAGE_LT,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
348 DEVICE_ATI_3D_RAGE_LT2,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
349 DEVICE_ATI_RAGE_MOBILITY_M3,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
350 DEVICE_ATI_RAGE_MOBILITY_M32,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
351 DEVICE_ATI_3D_RAGE_LT_G,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
352 DEVICE_ATI_3D_RAGE_LT3,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
353 DEVICE_ATI_RAGE_MOBILITY_P_M,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
354 DEVICE_ATI_RAGE_MOBILITY_L,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
355 DEVICE_ATI_3D_RAGE_LT4,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
356 DEVICE_ATI_3D_RAGE_LT5,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
357 DEVICE_ATI_RAGE_MOBILITY_P_M2,
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
358 DEVICE_ATI_RAGE_MOBILITY_L2
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
359 };
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
360
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
361 static int find_chip(unsigned chip_id)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
362 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
363 unsigned i;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
364 for(i = 0;i < sizeof(ati_card_ids)/sizeof(unsigned short);i++)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
365 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
366 if(chip_id == ati_card_ids[i]) return i;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
367 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
368 return -1;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
369 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
370
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
371 int vixProbe(int verbose,int force)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
372 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
373 pciinfo_t lst[MAX_PCI_DEVICES];
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
374 unsigned i,num_pci;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
375 int err;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
376 __verbose = verbose;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
377 err = pci_scan(lst,&num_pci);
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
378 if(err)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
379 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
380 printf("[mach64] Error occured during pci scan: %s\n",strerror(err));
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
381 return err;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
382 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
383 else
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
384 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
385 err = ENXIO;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
386 for(i=0;i<num_pci;i++)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
387 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
388 if(lst[i].vendor == VENDOR_ATI)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
389 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
390 int idx;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
391 const char *dname;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
392 idx = find_chip(lst[i].device);
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
393 if(idx == -1 && force == PROBE_NORMAL) continue;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
394 dname = pci_device_name(VENDOR_ATI,lst[i].device);
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
395 dname = dname ? dname : "Unknown chip";
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
396 printf("[mach64] Found chip: %s\n",dname);
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
397 if(force > PROBE_NORMAL)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
398 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
399 printf("[mach64] Driver was forced. Was found %sknown chip\n",idx == -1 ? "un" : "");
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
400 if(idx == -1)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
401 printf("[mach64] Assuming it as Mach64\n");
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
402 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
403 mach64_cap.device_id = lst[i].device;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
404 err = 0;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
405 memcpy(&pci_info,&lst[i],sizeof(pciinfo_t));
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
406 probed=1;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
407 break;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
408 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
409 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
410 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
411 if(err && verbose) printf("[mach64] Can't find chip\n");
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
412 return err;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
413 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
414
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
415 static void reset_regs( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
416 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
417 size_t i;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
418 for(i=0;i<sizeof(vregs)/sizeof(video_registers_t);i++)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
419 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
420 mach64_fifo_wait(2);
4758
nick
parents: 4751
diff changeset
421 OUTREG(vregs[i].name,0);
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
422 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
423 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
424
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
425
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
426 int vixInit(void)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
427 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
428 int err;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
429 if(!probed)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
430 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
431 printf("[mach64] Driver was not probed but is being initializing\n");
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
432 return EINTR;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
433 }
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
434 if((mach64_mmio_base = map_phys_mem(pci_info.base2,0x4000))==(void *)-1) return ENOMEM;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
435 mach64_wait_for_idle();
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
436 mach64_ram_size = INREG(MEM_CNTL) & CTL_MEM_SIZEB;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
437 if (mach64_ram_size < 8) mach64_ram_size = (mach64_ram_size + 1) * 512;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
438 else if (mach64_ram_size < 12) mach64_ram_size = (mach64_ram_size - 3) * 1024;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
439 else mach64_ram_size = (mach64_ram_size - 7) * 2048;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
440 mach64_ram_size *= 0x400; /* KB -> bytes */
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
441 if((mach64_mem_base = map_phys_mem(pci_info.base0,mach64_ram_size))==(void *)-1) return ENOMEM;
4758
nick
parents: 4751
diff changeset
442 memset(&besr,0,sizeof(bes_registers_t));
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
443 printf("[mach64] Video memory = %uMb\n",mach64_ram_size/0x100000);
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
444 err = mtrr_set_type(pci_info.base0,mach64_ram_size,MTRR_TYPE_WRCOMB);
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
445 if(!err) printf("[mach64] Set write-combining type of video memory\n");
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
446 reset_regs();
4761
bc69f5fc18fe zero saturation / grayscale bugfix
michael
parents: 4760
diff changeset
447 mach64_vid_make_default();
4758
nick
parents: 4751
diff changeset
448 if(__verbose > VERBOSE_LEVEL) mach64_vid_dump_regs();
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
449 return 0;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
450 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
451
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
452 void vixDestroy(void)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
453 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
454 unmap_phys_mem(mach64_mem_base,mach64_ram_size);
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
455 unmap_phys_mem(mach64_mmio_base,0x4000);
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
456 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
457
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
458 int vixGetCapability(vidix_capability_t *to)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
459 {
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
460 memcpy(to, &mach64_cap, sizeof(vidix_capability_t));
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
461 return 0;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
462 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
463
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
464 static unsigned mach64_query_pitch(unsigned fourcc,const vidix_yuv_t *spitch)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
465 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
466 unsigned pitch,spy,spv,spu;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
467 spy = spv = spu = 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
468 switch(spitch->y)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
469 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
470 case 16:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
471 case 32:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
472 case 64:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
473 case 128:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
474 case 256: spy = spitch->y; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
475 default: break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
476 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
477 switch(spitch->u)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
478 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
479 case 16:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
480 case 32:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
481 case 64:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
482 case 128:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
483 case 256: spu = spitch->u; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
484 default: break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
485 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
486 switch(spitch->v)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
487 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
488 case 16:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
489 case 32:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
490 case 64:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
491 case 128:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
492 case 256: spv = spitch->v; break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
493 default: break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
494 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
495 switch(fourcc)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
496 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
497 /* 4:2:0 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
498 case IMGFMT_IYUV:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
499 case IMGFMT_YV12:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
500 case IMGFMT_I420:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
501 if(spy > 16 && spu == spy/2 && spv == spy/2) pitch = spy;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
502 else pitch = 32;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
503 break;
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
504 case IMGFMT_YVU9:
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
505 if(spy > 32 && spu == spy/4 && spv == spy/4) pitch = spy;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
506 else pitch = 64;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
507 break;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
508 default:
4722
39f3bfae472c Direct rendering with dshow codecs support. (Was untested but should work)
nick
parents: 4721
diff changeset
509 if(spy >= 16) pitch = spy;
39f3bfae472c Direct rendering with dshow codecs support. (Was untested but should work)
nick
parents: 4721
diff changeset
510 else pitch = 16;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
511 break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
512 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
513 return pitch;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
514 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
515
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
516 static void mach64_compute_framesize(vidix_playback_t *info)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
517 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
518 unsigned pitch,awidth;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
519 pitch = mach64_query_pitch(info->fourcc,&info->src.pitch);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
520 switch(info->fourcc)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
521 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
522 case IMGFMT_I420:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
523 case IMGFMT_YV12:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
524 case IMGFMT_IYUV:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
525 awidth = (info->src.w + (pitch-1)) & ~(pitch-1);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
526 info->frame_size = awidth*(info->src.h+info->src.h/2);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
527 break;
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
528 case IMGFMT_YVU9:
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
529 awidth = (info->src.w + (pitch-1)) & ~(pitch-1);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
530 info->frame_size = awidth*(info->src.h+info->src.h/8);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
531 break;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
532 // case IMGFMT_RGB32:
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
533 case IMGFMT_BGR32:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
534 awidth = (info->src.w*4 + (pitch-1)) & ~(pitch-1);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
535 info->frame_size = (awidth*info->src.h);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
536 break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
537 /* YUY2 YVYU, RGB15, RGB16 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
538 default:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
539 awidth = (info->src.w*2 + (pitch-1)) & ~(pitch-1);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
540 info->frame_size = (awidth*info->src.h);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
541 break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
542 }
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
543 info->frame_size+=256; // so we have some space for alignment & such
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
544 info->frame_size&=~16;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
545 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
546
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
547 static void mach64_vid_stop_video( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
548 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
549 mach64_fifo_wait(14);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
550 OUTREG(OVERLAY_SCALE_CNTL, 0x80000000);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
551 OUTREG(OVERLAY_EXCLUSIVE_HORZ, 0);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
552 OUTREG(OVERLAY_EXCLUSIVE_VERT, 0);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
553 OUTREG(SCALER_H_COEFF0, 0x00002000);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
554 OUTREG(SCALER_H_COEFF1, 0x0D06200D);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
555 OUTREG(SCALER_H_COEFF2, 0x0D0A1C0D);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
556 OUTREG(SCALER_H_COEFF3, 0x0C0E1A0C);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
557 OUTREG(SCALER_H_COEFF4, 0x0C14140C);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
558 OUTREG(VIDEO_FORMAT, 0xB000B);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
559 OUTREG(OVERLAY_TEST, 0x0);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
560 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
561
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
562 static void mach64_vid_display_video( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
563 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
564 uint32_t vf;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
565 mach64_fifo_wait(14);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
566
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
567 OUTREG(OVERLAY_Y_X_START, besr.y_x_start);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
568 OUTREG(OVERLAY_Y_X_END, besr.y_x_end);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
569 OUTREG(OVERLAY_SCALE_INC, besr.scale_inc);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
570 OUTREG(SCALER_BUF_PITCH, besr.vid_buf_pitch);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
571 OUTREG(SCALER_HEIGHT_WIDTH, besr.height_width);
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
572 OUTREG(SCALER_BUF0_OFFSET, mach64_buffer_base[0][0]);
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
573 OUTREG(SCALER_BUF0_OFFSET_U, mach64_buffer_base[0][1]);
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
574 OUTREG(SCALER_BUF0_OFFSET_V, mach64_buffer_base[0][2]);
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
575 OUTREG(SCALER_BUF1_OFFSET, mach64_buffer_base[0][0]);
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
576 OUTREG(SCALER_BUF1_OFFSET_U, mach64_buffer_base[0][1]);
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
577 OUTREG(SCALER_BUF1_OFFSET_V, mach64_buffer_base[0][2]);
4758
nick
parents: 4751
diff changeset
578 OUTREG(OVERLAY_SCALE_CNTL, 0xC4000003);
4760
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
579 // OVERLAY_SCALE_CNTL bits & what they seem to affect
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
580 // bit 0 no effect
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
581 // bit 1 yuv2rgb coeff related
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
582 // bit 2 horizontal interpolation if 0
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
583 // bit 3 vertical interpolation if 0
4847
michael
parents: 4769
diff changeset
584 // bit 4 chroma encoding (0-> 128=neutral / 1-> 0->neutral)
4760
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
585 // bit 5-6 gamma correction
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
586 // bit 7 nothing visible if set
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
587 // bit 8-27 no effect
34573271ffb2 meaning of some bits figured out
michael
parents: 4759
diff changeset
588 // bit 28-31 nothing interresting just crashed my system when i played with them :(
4847
michael
parents: 4769
diff changeset
589
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
590 mach64_wait_for_idle();
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
591 vf = INREG(VIDEO_FORMAT);
4751
412a67a4bf68 fixed planar yuv formats
michael
parents: 4722
diff changeset
592
412a67a4bf68 fixed planar yuv formats
michael
parents: 4722
diff changeset
593 // Bits 16-19 seem to select the format
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
594 // 0x0 dunno behaves strange
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
595 // 0x1 dunno behaves strange
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
596 // 0x2 dunno behaves strange
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
597 // 0x3 BGR15
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
598 // 0x4 BGR16
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
599 // 0x5 BGR16 (hmm, that need investigation, 2 BGR16 formats, i guess 1 will have only 5bits for green)
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
600 // 0x6 BGR32
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
601 // 0x7 BGR32 with somehow mixed even / odd pixels ?
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
602 // 0x8 YYYYUVUV
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
603 // 0x9 YVU9
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
604 // 0xA YV12
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
605 // 0xB YUY2
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
606 // 0xC UYVY
4847
michael
parents: 4769
diff changeset
607 // 0xD UYVY (no difference is visible if i switch between C/D for every even/odd frame)
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
608 // 0xE dunno behaves strange
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
609 // 0xF dunno behaves strange
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
610 // Bit 28 all values are assumed to be 7 bit with chroma=64 for black (tested with YV12 & YUY2)
4751
412a67a4bf68 fixed planar yuv formats
michael
parents: 4722
diff changeset
611 // the remaining bits seem to have no effect
412a67a4bf68 fixed planar yuv formats
michael
parents: 4722
diff changeset
612
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
613
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
614 switch(besr.fourcc)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
615 {
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
616 /* BGR formats */
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
617 case IMGFMT_BGR15: OUTREG(VIDEO_FORMAT, 0x00030000); break;
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
618 case IMGFMT_BGR16: OUTREG(VIDEO_FORMAT, 0x00040000); break;
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
619 case IMGFMT_BGR32: OUTREG(VIDEO_FORMAT, 0x00060000); break;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
620 /* 4:2:0 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
621 case IMGFMT_IYUV:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
622 case IMGFMT_I420:
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
623 case IMGFMT_YV12: OUTREG(VIDEO_FORMAT, 0x000A0000); break;
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
624
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
625 case IMGFMT_YVU9: OUTREG(VIDEO_FORMAT, 0x00090000); break;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
626 /* 4:2:2 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
627 case IMGFMT_YVYU:
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
628 case IMGFMT_UYVY: OUTREG(VIDEO_FORMAT, 0x000C0000); break;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
629 case IMGFMT_YUY2:
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
630 default: OUTREG(VIDEO_FORMAT, 0x000B0000); break;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
631 }
4758
nick
parents: 4751
diff changeset
632 if(__verbose > VERBOSE_LEVEL) mach64_vid_dump_regs();
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
633 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
634
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
635 static int mach64_vid_init_video( vidix_playback_t *config )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
636 {
4758
nick
parents: 4751
diff changeset
637 uint32_t src_w,src_h,dest_w,dest_h,pitch,h_inc,v_inc,left,leftUV,top,ecp,y_pos;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
638 int is_420,best_pitch,mpitch;
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
639 int src_offset_y, src_offset_u, src_offset_v;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
640 unsigned int i;
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
641
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
642 mach64_vid_stop_video();
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
643 /* warning, if left or top are != 0 this will fail, as the framesize is too small then */
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
644 left = config->src.x;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
645 top = config->src.y;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
646 src_h = config->src.h;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
647 src_w = config->src.w;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
648 is_420 = 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
649 if(config->fourcc == IMGFMT_YV12 ||
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
650 config->fourcc == IMGFMT_I420 ||
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
651 config->fourcc == IMGFMT_IYUV) is_420 = 1;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
652 best_pitch = mach64_query_pitch(config->fourcc,&config->src.pitch);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
653 mpitch = best_pitch-1;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
654 switch(config->fourcc)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
655 {
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
656 case IMGFMT_YVU9:
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
657 /* 4:2:0 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
658 case IMGFMT_IYUV:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
659 case IMGFMT_YV12:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
660 case IMGFMT_I420: pitch = (src_w + mpitch) & ~mpitch;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
661 config->dest.pitch.y =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
662 config->dest.pitch.u =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
663 config->dest.pitch.v = best_pitch;
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
664 besr.vid_buf_pitch= pitch;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
665 break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
666 /* RGB 4:4:4:4 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
667 case IMGFMT_RGB32:
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
668 case IMGFMT_BGR32: pitch = (src_w*4 + mpitch) & ~mpitch;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
669 config->dest.pitch.y =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
670 config->dest.pitch.u =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
671 config->dest.pitch.v = best_pitch;
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
672 besr.vid_buf_pitch= pitch>>2;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
673 break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
674 /* 4:2:2 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
675 default: /* RGB15, RGB16, YVYU, UYVY, YUY2 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
676 pitch = ((src_w*2) + mpitch) & ~mpitch;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
677 config->dest.pitch.y =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
678 config->dest.pitch.u =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
679 config->dest.pitch.v = best_pitch;
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
680 besr.vid_buf_pitch= pitch>>1;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
681 break;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
682 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
683 dest_w = config->dest.w;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
684 dest_h = config->dest.h;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
685 besr.fourcc = config->fourcc;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
686 ecp = (INPLL(PLL_VCLK_CNTL) & PLL_ECP_DIV) >> 4;
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
687 v_inc = src_h * mach64_get_vert_stretch();
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
688
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
689 if(mach64_is_interlace()) v_inc<<=1;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
690 if(mach64_is_dbl_scan() ) v_inc>>=1;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
691 v_inc>>=4; // convert 16.16 -> 20.12
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
692 v_inc/= dest_h;
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
693
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
694 h_inc = (src_w << (12+ecp)) / dest_w;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
695 /* keep everything in 16.16 */
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
696 config->offsets[0] = 0;
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
697 for(i=1; i<config->num_frames; i++)
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
698 config->offsets[i] = config->offsets[i-1] + config->frame_size;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
699
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
700 /*FIXME the left / top stuff is broken (= zoom a src rectangle from a larger one)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
701 1. the framesize isnt known as the outer src rectangle dimensions arent known
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
702 2. the mach64 needs aligned addresses so it cant work anyway
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
703 -> so we could shift the outer buffer to compensate that but that would mean
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
704 alignment problems for the code which writes into it
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
705 */
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
706
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
707 if(is_420)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
708 {
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
709 config->offset.y= 0;
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
710 config->offset.u= (pitch*src_h + 15)&~15;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
711 config->offset.v= (config->offset.u + (pitch*src_h>>2) + 15)&~15;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
712
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
713 src_offset_y= config->offset.y + top*pitch + left;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
714 src_offset_u= config->offset.u + (top*pitch>>2) + (left>>1);
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
715 src_offset_v= config->offset.v + (top*pitch>>2) + (left>>1);
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
716
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
717 if(besr.fourcc == IMGFMT_I420 || besr.fourcc == IMGFMT_IYUV)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
718 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
719 uint32_t tmp;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
720 tmp = config->offset.u;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
721 config->offset.u = config->offset.v;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
722 config->offset.v = tmp;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
723 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
724 }
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
725 else if(besr.fourcc == IMGFMT_YVU9)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
726 {
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
727 config->offset.y= 0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
728 config->offset.u= (pitch*src_h + 15)&~15;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
729 config->offset.v= (config->offset.u + (pitch*src_h>>4) + 15)&~15;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
730
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
731 src_offset_y= config->offset.y + top*pitch + left;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
732 src_offset_u= config->offset.u + (top*pitch>>4) + (left>>1);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
733 src_offset_v= config->offset.v + (top*pitch>>4) + (left>>1);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
734 }
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
735 else if(besr.fourcc == IMGFMT_BGR32)
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
736 {
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
737 config->offset.y = config->offset.u = config->offset.v = 0;
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
738 src_offset_y= src_offset_u= src_offset_v= top*pitch + (left << 2);
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
739 }
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
740 else
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
741 {
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
742 config->offset.y = config->offset.u = config->offset.v = 0;
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
743 src_offset_y= src_offset_u= src_offset_v= top*pitch + (left << 1);
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
744 }
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
745
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
746 num_mach64_buffers= config->num_frames;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
747 for(i=0; i<config->num_frames; i++)
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
748 {
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
749 mach64_buffer_base[i][0]= (mach64_overlay_offset + config->offsets[i] + src_offset_y)&~15;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
750 mach64_buffer_base[i][1]= (mach64_overlay_offset + config->offsets[i] + src_offset_u)&~15;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
751 mach64_buffer_base[i][2]= (mach64_overlay_offset + config->offsets[i] + src_offset_v)&~15;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
752 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
753
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
754 leftUV = (left >> 17) & 15;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
755 left = (left >> 16) & 15;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
756 besr.scale_inc = ( h_inc << 16 ) | v_inc;
4758
nick
parents: 4751
diff changeset
757 y_pos = config->dest.y;
nick
parents: 4751
diff changeset
758 if(mach64_is_dbl_scan()) y_pos*=2;
nick
parents: 4751
diff changeset
759 else
nick
parents: 4751
diff changeset
760 if(mach64_is_interlace()) y_pos/=2;
nick
parents: 4751
diff changeset
761 besr.y_x_start = y_pos | (config->dest.x << 16);
nick
parents: 4751
diff changeset
762 y_pos =config->dest.y + dest_h;
nick
parents: 4751
diff changeset
763 if(mach64_is_dbl_scan()) y_pos*=2;
nick
parents: 4751
diff changeset
764 else
nick
parents: 4751
diff changeset
765 if(mach64_is_interlace()) y_pos/=2;
nick
parents: 4751
diff changeset
766 besr.y_x_end = y_pos | ((config->dest.x + dest_w) << 16);
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
767 besr.height_width = ((src_w - left)<<16) | (src_h - top);
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
768
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
769 return 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
770 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
771
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
772
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
773 uint32_t supported_fourcc[] =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
774 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
775 IMGFMT_YV12, IMGFMT_I420, IMGFMT_IYUV,
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
776 IMGFMT_YVU9,
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
777 IMGFMT_UYVY, IMGFMT_YUY2,
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
778 IMGFMT_BGR15,IMGFMT_BGR16,IMGFMT_BGR32
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
779 };
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
780
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
781 __inline__ static int is_supported_fourcc(uint32_t fourcc)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
782 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
783 unsigned i;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
784 for(i=0;i<sizeof(supported_fourcc)/sizeof(uint32_t);i++)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
785 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
786 if(fourcc==supported_fourcc[i]) return 1;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
787 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
788 return 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
789 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
790
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
791 int vixQueryFourcc(vidix_fourcc_t *to)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
792 {
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
793 if(is_supported_fourcc(to->fourcc))
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
794 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
795 to->depth = VID_DEPTH_1BPP | VID_DEPTH_2BPP |
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
796 VID_DEPTH_4BPP | VID_DEPTH_8BPP |
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
797 VID_DEPTH_12BPP| VID_DEPTH_15BPP|
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
798 VID_DEPTH_16BPP| VID_DEPTH_24BPP|
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
799 VID_DEPTH_32BPP;
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
800 to->flags = VID_CAP_EXPAND | VID_CAP_SHRINK | VID_CAP_COLORKEY;
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
801 return 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
802 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
803 else to->depth = to->flags = 0;
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
804 return ENOSYS;
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
805 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
806
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
807 int vixConfigPlayback(vidix_playback_t *info)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
808 {
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
809 if(!is_supported_fourcc(info->fourcc)) return ENOSYS;
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
810 if(info->num_frames>3) info->num_frames=3; //more than 3 make no sense at the moment but they do work
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
811
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
812 mach64_compute_framesize(info);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
813 mach64_overlay_offset = mach64_ram_size - info->frame_size*info->num_frames;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
814 mach64_overlay_offset &= 0xffff0000;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
815 if(mach64_overlay_offset < 0) return EINVAL;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
816 info->dga_addr = (char *)mach64_mem_base + mach64_overlay_offset;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
817 mach64_vid_init_video(info);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
818 return 0;
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
819 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
820
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
821 int vixPlaybackOn(void)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
822 {
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
823 mach64_vid_display_video();
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
824 return 0;
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
825 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
826
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
827 int vixPlaybackOff(void)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
828 {
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
829 mach64_vid_stop_video();
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
830 return 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
831 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
832
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
833 static void mach64_wait_vsync( void )
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
834 {
4847
michael
parents: 4769
diff changeset
835 int i;
michael
parents: 4769
diff changeset
836
michael
parents: 4769
diff changeset
837 for(i=0; i<2000000; i++)
michael
parents: 4769
diff changeset
838 if( (INREG(CRTC_INT_CNTL)&CRTC_VBLANK)==0 ) break;
michael
parents: 4769
diff changeset
839 for(i=0; i<2000000; i++)
michael
parents: 4769
diff changeset
840 if( (INREG(CRTC_INT_CNTL)&CRTC_VBLANK) ) break;
michael
parents: 4769
diff changeset
841
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
842 }
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
843
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
844 int vixPlaybackFrameSelect(unsigned int frame)
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
845 {
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
846 uint32_t off[6];
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
847 int i;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
848 int last_frame= (frame-1+num_mach64_buffers) % num_mach64_buffers;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
849 //printf("Selecting frame %d\n", frame);
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
850 /*
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
851 buf3-5 always should point onto second buffer for better
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
852 deinterlacing and TV-in
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
853 */
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
854 if(num_mach64_buffers==1) return 0;
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
855
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
856 for(i=0; i<3; i++)
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
857 {
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
858 off[i] = mach64_buffer_base[frame][i];
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
859 off[i+3]= mach64_buffer_base[last_frame][i];
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
860 }
4769
75a701b39d61 BGR15, BGR16, BGR32 support
michael
parents: 4761
diff changeset
861
4847
michael
parents: 4769
diff changeset
862 #if 0 // delay routine so the individual frames can be ssen better
michael
parents: 4769
diff changeset
863 {
michael
parents: 4769
diff changeset
864 volatile int i=0;
michael
parents: 4769
diff changeset
865 for(i=0; i<10000000; i++);
michael
parents: 4769
diff changeset
866 }
michael
parents: 4769
diff changeset
867 #endif
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
868
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
869 mach64_wait_for_idle();
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
870 mach64_fifo_wait(7);
4847
michael
parents: 4769
diff changeset
871
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
872 OUTREG(SCALER_BUF0_OFFSET, off[0]);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
873 OUTREG(SCALER_BUF0_OFFSET_U, off[1]);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
874 OUTREG(SCALER_BUF0_OFFSET_V, off[2]);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
875 OUTREG(SCALER_BUF1_OFFSET, off[3]);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
876 OUTREG(SCALER_BUF1_OFFSET_U, off[4]);
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
877 OUTREG(SCALER_BUF1_OFFSET_V, off[5]);
4866
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
878 if(num_mach64_buffers==2) mach64_wait_vsync(); //only wait for vsync if we do double buffering
550e86ba0390 triple buffering
michael
parents: 4865
diff changeset
879
4758
nick
parents: 4751
diff changeset
880 if(__verbose > VERBOSE_LEVEL) mach64_vid_dump_regs();
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
881 return 0;
4691
9c23a7497a6d Scratch for volunteers
nick
parents:
diff changeset
882 }
4721
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
883
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
884 vidix_video_eq_t equal =
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
885 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
886 VEQ_CAP_BRIGHTNESS | VEQ_CAP_SATURATION
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
887 ,
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
888 0, 0, 0, 0, 0, 0, 0, 0 };
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
889
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
890 int vixPlaybackGetEq( vidix_video_eq_t * eq)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
891 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
892 memcpy(eq,&equal,sizeof(vidix_video_eq_t));
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
893 return 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
894 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
895
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
896 int vixPlaybackSetEq( const vidix_video_eq_t * eq)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
897 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
898 int br,sat;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
899 if(eq->cap & VEQ_CAP_BRIGHTNESS) equal.brightness = eq->brightness;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
900 if(eq->cap & VEQ_CAP_CONTRAST) equal.contrast = eq->contrast;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
901 if(eq->cap & VEQ_CAP_SATURATION) equal.saturation = eq->saturation;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
902 if(eq->cap & VEQ_CAP_HUE) equal.hue = eq->hue;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
903 if(eq->cap & VEQ_CAP_RGB_INTENSITY)
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
904 {
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
905 equal.red_intensity = eq->red_intensity;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
906 equal.green_intensity = eq->green_intensity;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
907 equal.blue_intensity = eq->blue_intensity;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
908 }
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
909 equal.flags = eq->flags;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
910 br = equal.brightness * 64 / 1000;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
911 if(br < -64) br = -64; if(br > 63) br = 63;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
912 sat = (equal.saturation + 1000) * 16 / 1000;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
913 if(sat < 0) sat = 0; if(sat > 31) sat = 31;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
914 OUTREG(SCALER_COLOUR_CNTL, (br & 0x7f) | (sat << 8) | (sat << 16));
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
915 return 0;
e441ca06638d Works with YUY2 fourcc
nick
parents: 4691
diff changeset
916 }
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
917
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
918 int vixGetGrKeys(vidix_grkey_t *grkey)
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
919 {
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
920 memcpy(grkey, &mach64_grkey, sizeof(vidix_grkey_t));
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
921 return(0);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
922 }
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
923
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
924 int vixSetGrKeys(const vidix_grkey_t *grkey)
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
925 {
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
926 memcpy(&mach64_grkey, grkey, sizeof(vidix_grkey_t));
4872
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
927
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
928 if(mach64_grkey.ckey.op == CKEY_TRUE)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
929 {
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
930 besr.ckey_on=1;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
931
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
932 switch(mach64_vid_get_dbpp())
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
933 {
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
934 case 15:
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
935 besr.graphics_key_msk=0x7FFF;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
936 besr.graphics_key_clr=
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
937 ((mach64_grkey.ckey.blue &0xF8)>>3)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
938 | ((mach64_grkey.ckey.green&0xF8)<<2)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
939 | ((mach64_grkey.ckey.red &0xF8)<<7);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
940 break;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
941 case 16:
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
942 besr.graphics_key_msk=0xFFFF;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
943 besr.graphics_key_clr=
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
944 ((mach64_grkey.ckey.blue &0xF8)>>3)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
945 | ((mach64_grkey.ckey.green&0xFC)<<3)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
946 | ((mach64_grkey.ckey.red &0xF8)<<8);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
947 break;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
948 case 24:
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
949 besr.graphics_key_msk=0xFFFFFF;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
950 besr.graphics_key_clr=
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
951 ((mach64_grkey.ckey.blue &0xFF))
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
952 | ((mach64_grkey.ckey.green&0xFF)<<8)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
953 | ((mach64_grkey.ckey.red &0xFF)<<16);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
954 break;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
955 case 32:
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
956 besr.graphics_key_msk=0xFFFFFF;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
957 besr.graphics_key_clr=
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
958 ((mach64_grkey.ckey.blue &0xFF))
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
959 | ((mach64_grkey.ckey.green&0xFF)<<8)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
960 | ((mach64_grkey.ckey.red &0xFF)<<16);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
961 break;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
962 default:
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
963 besr.ckey_on=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
964 besr.graphics_key_msk=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
965 besr.graphics_key_clr=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
966 }
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
967 }
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
968 else
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
969 {
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
970 besr.ckey_on=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
971 besr.graphics_key_msk=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
972 besr.graphics_key_clr=0;
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
973 }
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
974
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
975 mach64_fifo_wait(4);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
976 OUTREG(OVERLAY_GRAPHICS_KEY_MSK, besr.graphics_key_msk);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
977 OUTREG(OVERLAY_GRAPHICS_KEY_CLR, besr.graphics_key_clr);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
978 // OUTREG(OVERLAY_VIDEO_KEY_MSK, 0);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
979 // OUTREG(OVERLAY_VIDEO_KEY_CLR, 0);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
980 if(besr.ckey_on)
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
981 OUTREG(OVERLAY_KEY_CNTL,VIDEO_KEY_FN_TRUE|GRAPHIC_KEY_FN_EQ|CMP_MIX_AND);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
982 else
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
983 OUTREG(OVERLAY_KEY_CNTL,VIDEO_KEY_FN_TRUE|GRAPHIC_KEY_FN_TRUE|CMP_MIX_AND);
995ee733e8d4 YVU9 support
michael
parents: 4866
diff changeset
984
4861
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
985 return(0);
601e8a796c38 colorkey support fixed (thanks to nick for the mga_vid tip ... i should RTFS more)
michael
parents: 4853
diff changeset
986 }