annotate vidix/drivers/mach64_vid.c @ 4861:601e8a796c38

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