annotate vidix/drivers/mach64_vid.c @ 20300:30b75e573d5c

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