Mercurial > mplayer.hg
annotate vidix/drivers/nvidia_vid.c @ 22356:37248dbbf6ff
remove C99-ism (mixed declaration and code),
10l to Uoti Urpala for breaking GCC-2.95 support yet again even though any post-2.95 GCC version print a clear warning about it
Patch by Carl Eugen Hoyos % cehoyos A ag P or P at %
author | gpoirier |
---|---|
date | Wed, 28 Feb 2007 09:18:42 +0000 |
parents | fa99b3d31d13 |
children |
rev | line source |
---|---|
10954 | 1 /* |
2 nvidia_vid - VIDIX based video driver for NVIDIA chips | |
11902 | 3 Copyrights 2003 - 2004 Sascha Sommer. This file is based on sources from |
10954 | 4 RIVATV (rivatv.sf.net) |
5 Licence: GPL | |
11159 | 6 WARNING: THIS DRIVER IS IN BETA STAGE |
10954 | 7 |
11086 | 8 multi buffer support and TNT2 fixes by Dmitry Baryshkov |
10954 | 9 */ |
10 | |
11 | |
12 #include <errno.h> | |
13 #include <stdio.h> | |
14 #include <stdlib.h> | |
15 #include <string.h> | |
16380 | 16 #include <math.h> |
10954 | 17 #include <inttypes.h> |
18 #include <unistd.h> | |
19 | |
20 | |
21 #include "../vidix.h" | |
22 #include "../fourcc.h" | |
23 #include "../../libdha/libdha.h" | |
24 #include "../../libdha/pci_ids.h" | |
25 #include "../../libdha/pci_names.h" | |
26 #include "../../config.h" | |
21372 | 27 #include "../../libavutil/common.h" |
21507
fa99b3d31d13
Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
21372
diff
changeset
|
28 #include "../../mpbswap.h" |
10954 | 29 |
30 | |
31 pciinfo_t pci_info; | |
32 | |
33 | |
34 #define MAX_FRAMES 3 | |
35 #define NV04_BES_SIZE 1024*2000*4 | |
36 | |
37 | |
38 static vidix_capability_t nvidia_cap = { | |
39 "NVIDIA RIVA OVERLAY DRIVER", | |
40 "Sascha Sommer <saschasommer@freenet.de>", | |
41 TYPE_OUTPUT, | |
42 { 0, 0, 0, 0 }, | |
10957
4d4d0c1c7142
according to xfree cvs maximum overlay size is only 2046x2046
atmos4
parents:
10954
diff
changeset
|
43 2046, |
4d4d0c1c7142
according to xfree cvs maximum overlay size is only 2046x2046
atmos4
parents:
10954
diff
changeset
|
44 2046, |
10954 | 45 4, |
46 4, | |
47 -1, | |
48 FLAG_UPSCALER|FLAG_DOWNSCALER, | |
49 VENDOR_NVIDIA2, | |
50 -1, | |
51 { 0, 0, 0, 0 } | |
52 }; | |
53 | |
54 | |
55 unsigned int vixGetVersion(void){ | |
56 return(VIDIX_VERSION); | |
57 } | |
58 | |
59 | |
60 #define NV_ARCH_03 0x03 | |
61 #define NV_ARCH_04 0x04 | |
62 #define NV_ARCH_10 0x10 | |
63 #define NV_ARCH_20 0x20 | |
64 #define NV_ARCH_30 0x30 | |
65 | |
16380 | 66 // since no useful information whatsoever is passed |
67 // to the equalizer functions we need this | |
68 static struct { | |
69 uint32_t lum; // luminance (brightness + contrast) | |
70 uint32_t chrom; // chrominance (saturation + hue) | |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
71 uint8_t red_off; // for NV03/NV04 |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
72 uint8_t green_off; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
73 uint8_t blue_off; |
16380 | 74 vidix_video_eq_t vals; |
75 } eq; | |
76 | |
10954 | 77 struct nvidia_cards { |
78 unsigned short chip_id; | |
79 unsigned short arch; | |
80 }; | |
81 | |
82 | |
83 static struct nvidia_cards nvidia_card_ids[] = { | |
11073 | 84 /*NV03*/ |
10954 | 85 {DEVICE_NVIDIA2_RIVA128, NV_ARCH_03}, |
11073 | 86 {DEVICE_NVIDIA2_RIVA128ZX,NV_ARCH_03}, |
87 /*NV04*/ | |
88 {DEVICE_NVIDIA_NV4_RIVA_TNT,NV_ARCH_04}, | |
89 {DEVICE_NVIDIA_NV5_RIVA_TNT2,NV_ARCH_04}, | |
90 {DEVICE_NVIDIA_NV5_RIVA_TNT22,NV_ARCH_04}, | |
91 {DEVICE_NVIDIA_NV5_RIVA_TNT23,NV_ARCH_04}, | |
92 {DEVICE_NVIDIA_NV5_RIVA_TNT24,NV_ARCH_04}, | |
93 {DEVICE_NVIDIA_NV6_VANTA,NV_ARCH_04}, | |
10954 | 94 {DEVICE_NVIDIA_RIVA_TNT2_MODEL,NV_ARCH_04}, |
11073 | 95 {DEVICE_NVIDIA_NV6_VANTA2,NV_ARCH_04}, |
96 {DEVICE_NVIDIA_NV6_VANTA3,NV_ARCH_04}, | |
97 {DEVICE_NVIDIA_NV5_RIVA_TNT25,NV_ARCH_04}, | |
10954 | 98 {DEVICE_NVIDIA2_TNT,NV_ARCH_04}, |
11073 | 99 {DEVICE_NVIDIA2_TNT2,NV_ARCH_04}, |
100 {DEVICE_NVIDIA2_VTNT2,NV_ARCH_04}, | |
10954 | 101 {DEVICE_NVIDIA2_UTNT2 ,NV_ARCH_04}, |
102 {DEVICE_NVIDIA2_ITNT2,NV_ARCH_04}, | |
11073 | 103 /*NV10*/ |
104 {DEVICE_NVIDIA_NV10_GEFORCE_256,NV_ARCH_10}, | |
105 {DEVICE_NVIDIA_NV10_GEFORCE_2562,NV_ARCH_10}, | |
106 {DEVICE_NVIDIA_NV11_GEFORCE2_MX,NV_ARCH_10}, | |
107 {DEVICE_NVIDIA_NV11_GEFORCE2_MX2,NV_ARCH_10}, | |
108 {DEVICE_NVIDIA_NV11_GEFORCE2_GO,NV_ARCH_10}, | |
109 {DEVICE_NVIDIA_NV11_GEFORCE2_MXR ,NV_ARCH_10}, | |
110 {DEVICE_NVIDIA_NV15_GEFORCE2_GTS,NV_ARCH_10}, | |
111 {DEVICE_NVIDIA_NV15_GEFORCE2_TI,NV_ARCH_10}, | |
112 {DEVICE_NVIDIA_NV15_GEFORCE2_ULTRA,NV_ARCH_10}, | |
113 {DEVICE_NVIDIA_NV17_GEFORCE4_MX460,NV_ARCH_10}, | |
114 {DEVICE_NVIDIA_NV17_GEFORCE4_MX440,NV_ARCH_10}, | |
115 {DEVICE_NVIDIA_NV17_GEFORCE4_MX420,NV_ARCH_10}, | |
116 {DEVICE_NVIDIA_NV17_GEFORCE4_440,NV_ARCH_10}, | |
117 {DEVICE_NVIDIA_NV17_GEFORCE4_420,NV_ARCH_10}, | |
118 {DEVICE_NVIDIA_NV17_GEFORCE4_4202,NV_ARCH_10}, | |
119 {DEVICE_NVIDIA_NV17_GEFORCE4_4402,NV_ARCH_10}, | |
120 {DEVICE_NVIDIA_NV18_GEFORCE4_MX440,NV_ARCH_10}, | |
121 {DEVICE_NVIDIA_NV15_GEFORCE2,NV_ARCH_10}, | |
122 /*NV20*/ | |
123 {DEVICE_NVIDIA_NV20_GEFORCE3,NV_ARCH_20}, | |
124 {DEVICE_NVIDIA_NV20_GEFORCE3_TI200,NV_ARCH_20}, | |
125 {DEVICE_NVIDIA_NV20_GEFORCE3_TI500,NV_ARCH_20}, | |
126 {DEVICE_NVIDIA_NV25_GEFORCE4_TI4600,NV_ARCH_20}, | |
127 {DEVICE_NVIDIA_NV25_GEFORCE4_TI4400,NV_ARCH_20}, | |
128 {DEVICE_NVIDIA_NV25_GEFORCE4_TI4200,NV_ARCH_20}, | |
11895
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
129 {DEVICE_NVIDIA_QUADRO4_900XGL,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
130 {DEVICE_NVIDIA_QUADRO4_750XGL,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
131 {DEVICE_NVIDIA_QUADRO4_700XGL,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
132 {DEVICE_NVIDIA_NV28_GEFORCE4_TI,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
133 {DEVICE_NVIDIA_NV28_GEFORCE4_TI2,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
134 {DEVICE_NVIDIA_NV28_GEFORCE4_TI3,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
135 {DEVICE_NVIDIA_NV28_GEFORCE4_TI4,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
136 {DEVICE_NVIDIA_NV28GL_QUADRO4_980,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
137 {DEVICE_NVIDIA_NV28GL_QUADRO4_780,NV_ARCH_20}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
138 /*NV30*/ |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
139 {DEVICE_NVIDIA_NV30_GEFORCE_FX,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
140 {DEVICE_NVIDIA_NV30_GEFORCE_FX2,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
141 {DEVICE_NVIDIA_NV30_GEFORCE_FX3,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
142 {DEVICE_NVIDIA_NV30GL_QUADRO_FX,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
143 {DEVICE_NVIDIA_NV30GL_QUADRO_FX2,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
144 {DEVICE_NVIDIA_NV31_GEFORCE_FX,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
145 {DEVICE_NVIDIA_NV31_GEFORCE_FX2,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
146 {DEVICE_NVIDIA_NV34_GEFORCE_FX,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
147 {DEVICE_NVIDIA_NV34_GEFORCE_FX2,NV_ARCH_30}, |
17568
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
148 {DEVICE_NVIDIA_NV34_GEFORCE_FX3,NV_ARCH_30}, |
16416
42ad241f6e8c
support for GeForce FX Go5200 (newer Apple PowerBooks)
diego
parents:
16408
diff
changeset
|
149 {DEVICE_NVIDIA_NV34M_GEFORCE_FX,NV_ARCH_30}, |
11895
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
150 {DEVICE_NVIDIA_NV34GL_QUADRO_FX,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
151 {DEVICE_NVIDIA_NV35_GEFORCE_FX,NV_ARCH_30}, |
d9489d5581d0
a few more nvidia cards (only tested card is GeForceFX 5200)
faust3
parents:
11783
diff
changeset
|
152 {DEVICE_NVIDIA_NV35_GEFORCE_FX2,NV_ARCH_30}, |
16376 | 153 {DEVICE_NVIDIA_NV35GL_QUADRO_FX,NV_ARCH_30}, |
154 {DEVICE_NVIDIA_NV36_GEFORCE_FX,NV_ARCH_30}, | |
10954 | 155 }; |
156 | |
157 | |
158 static int find_chip(unsigned chip_id){ | |
159 unsigned i; | |
160 for(i = 0;i < sizeof(nvidia_card_ids)/sizeof(struct nvidia_cards);i++) | |
161 { | |
162 if(chip_id == nvidia_card_ids[i].chip_id)return i; | |
163 } | |
164 return -1; | |
165 } | |
166 | |
167 int vixProbe(int verbose, int force){ | |
168 pciinfo_t lst[MAX_PCI_DEVICES]; | |
169 unsigned i,num_pci; | |
170 int err; | |
171 | |
172 if (force) | |
173 printf("[nvidia_vid]: warning: forcing not supported yet!\n"); | |
174 err = pci_scan(lst,&num_pci); | |
175 if(err){ | |
11678
972d1998bde9
occured --> occurred typo patch by Clinton Roy <croy@dstc.edu.au>
diego
parents:
11233
diff
changeset
|
176 printf("[nvidia_vid] Error occurred during pci scan: %s\n",strerror(err)); |
10954 | 177 return err; |
178 } | |
179 else { | |
180 err = ENXIO; | |
181 for(i=0; i < num_pci; i++){ | |
182 if(lst[i].vendor == VENDOR_NVIDIA2 || lst[i].vendor == VENDOR_NVIDIA){ | |
183 int idx; | |
184 const char *dname; | |
185 idx = find_chip(lst[i].device); | |
186 if(idx == -1) | |
187 continue; | |
188 dname = pci_device_name(lst[i].vendor, lst[i].device); | |
189 dname = dname ? dname : "Unknown chip"; | |
190 printf("[nvidia_vid] Found chip: %s\n", dname); | |
191 if ((lst[i].command & PCI_COMMAND_IO) == 0){ | |
192 printf("[nvidia_vid] Device is disabled, ignoring\n"); | |
193 continue; | |
194 } | |
195 nvidia_cap.device_id = lst[i].device; | |
196 err = 0; | |
197 memcpy(&pci_info, &lst[i], sizeof(pciinfo_t)); | |
198 break; | |
199 } | |
200 } | |
201 } | |
202 if(err && verbose) printf("[nvidia_vid] Can't find chip\n"); | |
203 return err; | |
204 } | |
205 | |
206 | |
207 | |
208 | |
209 /* | |
210 * PCI-Memory IO access macros. | |
211 */ | |
212 | |
213 #define MEM_BARRIER() __asm__ __volatile__ ("" : : : "memory") | |
214 | |
215 #undef VID_WR08 | |
216 #define VID_WR08(p,i,val) ({ MEM_BARRIER(); ((uint8_t *)(p))[(i)]=(val); }) | |
217 #undef VID_RD08 | |
218 #define VID_RD08(p,i) ({ MEM_BARRIER(); ((uint8_t *)(p))[(i)]; }) | |
219 | |
220 #undef VID_WR32 | |
18318 | 221 #define VID_WR32(p,i,val) ({ MEM_BARRIER(); ((uint32_t *)(p))[(i)/4]=val; }) |
10954 | 222 #undef VID_RD32 |
18318 | 223 #define VID_RD32(p,i) ({ MEM_BARRIER(); ((uint32_t *)(p))[(i)/4]; }) |
10954 | 224 |
225 #define VID_AND32(p,i,val) VID_WR32(p,i,VID_RD32(p,i)&(val)) | |
226 #define VID_OR32(p,i,val) VID_WR32(p,i,VID_RD32(p,i)|(val)) | |
227 #define VID_XOR32(p,i,val) VID_WR32(p,i,VID_RD32(p,i)^(val)) | |
228 | |
229 | |
230 | |
231 | |
232 | |
233 | |
234 struct rivatv_chip { | |
235 volatile uint32_t *PMC; /* general control */ | |
236 volatile uint32_t *PME; /* multimedia port */ | |
237 volatile uint32_t *PFB; /* framebuffer control */ | |
238 volatile uint32_t *PVIDEO; /* overlay control */ | |
239 volatile uint8_t *PCIO; /* SVGA (CRTC, ATTR) registers */ | |
240 volatile uint8_t *PVIO; /* SVGA (MISC, GRAPH, SEQ) registers */ | |
241 volatile uint32_t *PRAMIN; /* instance memory */ | |
242 volatile uint32_t *PRAMHT; /* hash table */ | |
243 volatile uint32_t *PRAMFC; /* fifo context table */ | |
244 volatile uint32_t *PRAMRO; /* fifo runout table */ | |
245 volatile uint32_t *PFIFO; /* fifo control region */ | |
246 volatile uint32_t *FIFO; /* fifo channels (USER) */ | |
247 volatile uint32_t *PGRAPH; /* graphics engine */ | |
248 | |
249 unsigned long fbsize; /* framebuffer size */ | |
250 int arch; /* compatible NV_ARCH_XX define */ | |
251 int realarch; /* real architecture */ | |
252 void (* lock) (struct rivatv_chip *, int); | |
253 }; | |
254 typedef struct rivatv_chip rivatv_chip; | |
255 | |
256 | |
11086 | 257 struct rivatv_info { |
258 unsigned int use_colorkey; | |
10954 | 259 unsigned int colorkey; /* saved xv colorkey*/ |
260 unsigned int vidixcolorkey; /*currently used colorkey*/ | |
261 unsigned int depth; | |
262 unsigned int format; | |
263 unsigned int pitch; | |
264 unsigned int width,height; | |
265 unsigned int d_width,d_height; /*scaled width && height*/ | |
266 unsigned int wx,wy; /*window x && y*/ | |
267 unsigned int screen_x; /*screen width*/ | |
11085 | 268 unsigned int screen_y; /*screen height*/ |
10954 | 269 unsigned long buffer_size; /* size of the image buffer */ |
270 struct rivatv_chip chip; /* NV architecture structure */ | |
271 void* video_base; /* virtual address of control region */ | |
272 void* control_base; /* virtual address of fb region */ | |
16378 | 273 void* picture_base; /* direct pointer to video picture */ |
10954 | 274 unsigned long picture_offset; /* offset of video picture in frame buffer */ |
275 // struct rivatv_dma dma; /* DMA structure */ | |
11783 | 276 unsigned int cur_frame; |
10954 | 277 unsigned int num_frames; /* number of buffers */ |
11783 | 278 int bps; /* bytes per line */ |
10954 | 279 }; |
280 typedef struct rivatv_info rivatv_info; | |
281 | |
282 //framebuffer size funcs | |
283 static unsigned long rivatv_fbsize_nv03 (struct rivatv_chip *chip){ | |
284 if (VID_RD32 (chip->PFB, 0) & 0x00000020) { | |
285 if (((VID_RD32 (chip->PMC, 0) & 0xF0) == 0x20) | |
286 && ((VID_RD32 (chip->PMC, 0) & 0x0F) >= 0x02)) { | |
287 /* SDRAM 128 ZX. */ | |
288 return ((1 << (VID_RD32 (chip->PFB, 0) & 0x03)) * 1024 * 1024); | |
289 } | |
290 else { | |
291 return 1024 * 1024 * 8; | |
292 } | |
293 } | |
294 else { | |
295 /* SGRAM 128. */ | |
16371 | 296 switch (VID_RD32(chip->PFB, 0) & 0x00000003) { |
10954 | 297 case 0: |
298 return 1024 * 1024 * 8; | |
299 break; | |
300 case 2: | |
301 return 1024 * 1024 * 4; | |
302 break; | |
303 default: | |
304 return 1024 * 1024 * 2; | |
305 break; | |
306 } | |
307 } | |
308 } | |
309 static unsigned long rivatv_fbsize_nv04 (struct rivatv_chip *chip){ | |
310 if (VID_RD32 (chip->PFB, 0) & 0x00000100) { | |
311 return ((VID_RD32 (chip->PFB, 0) >> 12) & 0x0F) * 1024 * 1024 * 2 | |
312 + 1024 * 1024 * 2; | |
313 } else { | |
314 switch (VID_RD32 (chip->PFB, 0) & 0x00000003) { | |
315 case 0: | |
316 return 1024 * 1024 * 32; | |
317 break; | |
318 case 1: | |
319 return 1024 * 1024 * 4; | |
320 break; | |
321 case 2: | |
322 return 1024 * 1024 * 8; | |
323 break; | |
324 case 3: | |
325 default: | |
326 return 1024 * 1024 * 16; | |
327 break; | |
328 } | |
329 } | |
330 } | |
331 | |
332 static unsigned long rivatv_fbsize_nv10 (struct rivatv_chip *chip){ | |
17568
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
333 return VID_RD32 (chip->PFB, 0x20C) & 0xFFF00000; |
10954 | 334 } |
335 | |
336 //lock funcs | |
337 static void rivatv_lock_nv03 (struct rivatv_chip *chip, int LockUnlock){ | |
338 VID_WR08 (chip->PVIO, 0x3C4, 0x06); | |
339 VID_WR08 (chip->PVIO, 0x3C5, LockUnlock ? 0x99 : 0x57); | |
340 } | |
341 | |
342 static void rivatv_lock_nv04 (struct rivatv_chip *chip, int LockUnlock){ | |
343 VID_WR08 (chip->PCIO, 0x3C4, 0x06); | |
344 VID_WR08 (chip->PCIO, 0x3C5, LockUnlock ? 0x99 : 0x57); | |
345 VID_WR08 (chip->PCIO, 0x3D4, 0x1F); | |
346 VID_WR08 (chip->PCIO, 0x3D5, LockUnlock ? 0x99 : 0x57); | |
347 } | |
348 | |
349 | |
350 | |
351 | |
352 /* Enable PFB (Framebuffer), PVIDEO (Overlay unit) and PME (Mediaport) if neccessary. */ | |
353 static void rivatv_enable_PMEDIA (struct rivatv_info *info){ | |
354 uint32_t reg; | |
355 | |
356 /* switch off interrupts once for a while */ | |
357 // VID_WR32 (info->chip.PME, 0x200140, 0x00); | |
358 // VID_WR32 (info->chip.PMC, 0x000140, 0x00); | |
359 | |
360 reg = VID_RD32 (info->chip.PMC, 0x000200); | |
361 | |
362 /* NV3 (0x10100010): NV03_PMC_ENABLE_PMEDIA, NV03_PMC_ENABLE_PFB, NV03_PMC_ENABLE_PVIDEO */ | |
363 | |
364 if ((reg & 0x10100010) != 0x10100010) { | |
365 printf("PVIDEO and PFB disabled, enabling...\n"); | |
366 VID_OR32 (info->chip.PMC, 0x000200, 0x10100010); | |
367 } | |
368 | |
369 /* save the current colorkey */ | |
370 switch (info->chip.arch ) { | |
371 case NV_ARCH_10: | |
372 case NV_ARCH_20: | |
373 case NV_ARCH_30: | |
374 /* NV_PVIDEO_COLOR_KEY */ | |
375 info->colorkey = VID_RD32 (info->chip.PVIDEO, 0xB00); | |
376 break; | |
377 case NV_ARCH_03: | |
378 case NV_ARCH_04: | |
379 /* NV_PVIDEO_KEY */ | |
380 info->colorkey = VID_RD32 (info->chip.PVIDEO, 0x240); | |
381 break; | |
382 } | |
383 | |
384 | |
385 /* re-enable interrupts again */ | |
386 // VID_WR32 (info->chip.PMC, 0x000140, 0x01); | |
387 // VID_WR32 (info->chip.PME, 0x200140, 0x01); | |
388 } | |
389 | |
390 /* Stop overlay video. */ | |
19066
26a30496ec96
marks several function without a prototype which arent used outside its sourcefile as static, Patch by Stefan Huehner - stefan AT huehner-org
reynaldo
parents:
18318
diff
changeset
|
391 static void rivatv_overlay_stop (struct rivatv_info *info) { |
10954 | 392 switch (info->chip.arch ) { |
393 case NV_ARCH_10: | |
394 case NV_ARCH_20: | |
395 case NV_ARCH_30: | |
396 /* NV_PVIDEO_COLOR_KEY */ | |
397 /* Xv-Extension-Hack: Restore previously saved value. */ | |
398 VID_WR32 (info->chip.PVIDEO, 0xB00, info->colorkey); | |
399 /* NV_PVIDEO_STOP */ | |
400 VID_OR32 (info->chip.PVIDEO, 0x704, 0x11); | |
401 /* NV_PVIDEO_BUFFER */ | |
402 VID_AND32 (info->chip.PVIDEO, 0x700, ~0x11); | |
403 /* NV_PVIDEO_INTR_EN_BUFFER */ | |
11086 | 404 // VID_AND32 (info->chip.PVIDEO, 0x140, ~0x11); |
10954 | 405 break; |
406 case NV_ARCH_03: | |
407 case NV_ARCH_04: | |
408 /* NV_PVIDEO_KEY */ | |
409 VID_WR32 (info->chip.PVIDEO, 0x240, info->colorkey); | |
410 /* NV_PVIDEO_OVERLAY_VIDEO_OFF */ | |
411 VID_AND32 (info->chip.PVIDEO, 0x244, ~0x01); | |
412 /* NV_PVIDEO_INTR_EN_0_NOTIFY */ | |
11086 | 413 // VID_AND32 (info->chip.PVIDEO, 0x140, ~0x01); |
10954 | 414 /* NV_PVIDEO_OE_STATE */ |
415 VID_WR32 (info->chip.PVIDEO, 0x224, 0); | |
416 /* NV_PVIDEO_SU_STATE */ | |
417 VID_WR32 (info->chip.PVIDEO, 0x228, 0); | |
418 /* NV_PVIDEO_RM_STATE */ | |
419 VID_WR32 (info->chip.PVIDEO, 0x22C, 0); | |
420 break; | |
421 } | |
422 } | |
423 | |
424 /* Get pan offset of the physical screen. */ | |
425 static uint32_t rivatv_overlay_pan (struct rivatv_info *info){ | |
426 uint32_t pan; | |
427 info->chip.lock (&info->chip, 0); | |
428 VID_WR08 (info->chip.PCIO, 0x3D4, 0x0D); | |
429 pan = VID_RD08 (info->chip.PCIO, 0x3D5); | |
430 VID_WR08 (info->chip.PCIO, 0x3D4, 0x0C); | |
431 pan |= VID_RD08 (info->chip.PCIO, 0x3D5) << 8; | |
432 VID_WR08 (info->chip.PCIO, 0x3D4, 0x19); | |
433 pan |= (VID_RD08 (info->chip.PCIO, 0x3D5) & 0x1F) << 16; | |
434 VID_WR08 (info->chip.PCIO, 0x3D4, 0x2D); | |
435 pan |= (VID_RD08 (info->chip.PCIO, 0x3D5) & 0x60) << 16; | |
436 return pan << 2; | |
437 } | |
438 | |
439 /* Compute and set colorkey depending on the colour depth. */ | |
440 static void rivatv_overlay_colorkey (rivatv_info* info, unsigned int chromakey){ | |
441 uint32_t r, g, b, key = 0; | |
11159 | 442 |
10954 | 443 r = (chromakey & 0x00FF0000) >> 16; |
444 g = (chromakey & 0x0000FF00) >> 8; | |
445 b = chromakey & 0x000000FF; | |
446 switch (info->depth) { | |
447 case 15: | |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
448 key = ((r >> 3) << 10) | ((g >> 3) << 5) | ((b >> 3)); |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
449 #ifndef WIN32 |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
450 key = key | 0x00008000; |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
451 #endif |
10954 | 452 break; |
11118
344052fdfc4a
Fix colorkey for xvidix, tested on Riva128 4MB X@15/16/24bpp (aka 15/15/32 in nvidia_vid)
atmos4
parents:
11086
diff
changeset
|
453 case 16: // XXX unchecked |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
454 key = ((r >> 3) << 11) | ((g >> 2) << 5) | ((b >> 3)); |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
455 #ifndef WIN32 |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
456 key = key | 0x00008000; |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
457 #endif |
10954 | 458 break; |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
459 case 24: // XXX unchecked, maybe swap order of masking - FIXME Can the card be in 24 bit mode anyway? |
11118
344052fdfc4a
Fix colorkey for xvidix, tested on Riva128 4MB X@15/16/24bpp (aka 15/15/32 in nvidia_vid)
atmos4
parents:
11086
diff
changeset
|
460 key = (chromakey & 0x00FFFFFF) | 0x00800000; |
10954 | 461 break; |
462 case 32: | |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
463 key = chromakey; |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
464 #ifndef WIN32 |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
465 key = key | 0x80000000; |
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
466 #endif |
10954 | 467 break; |
468 } | |
11118
344052fdfc4a
Fix colorkey for xvidix, tested on Riva128 4MB X@15/16/24bpp (aka 15/15/32 in nvidia_vid)
atmos4
parents:
11086
diff
changeset
|
469 //printf("[nvidia_vid] depth=%d %08X \n", info->depth, chromakey); |
10954 | 470 switch (info->chip.arch) { |
471 case NV_ARCH_10: | |
472 case NV_ARCH_20: | |
473 case NV_ARCH_30: | |
474 VID_WR32 (info->chip.PVIDEO, 0xB00, key); | |
475 break; | |
476 case NV_ARCH_03: | |
477 case NV_ARCH_04: | |
478 VID_WR32 (info->chip.PVIDEO, 0x240, key); | |
479 break; | |
480 } | |
481 } | |
482 | |
11085 | 483 static void nv_getscreenproperties(struct rivatv_info *info){ |
17568
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
484 uint32_t bpp=0,x; |
11085 | 485 info->chip.lock(&info->chip, 0); |
486 /*get screen depth*/ | |
487 VID_WR08(info->chip.PCIO, 0x03D4,0x28); | |
11783 | 488 bpp = VID_RD08(info->chip.PCIO,0x03D5)&0x3; |
16371 | 489 if((bpp == 2) && (VID_RD32(info->chip.PVIDEO,0x600) & 0x00001000) == 0x0)info->depth=15; |
17568
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
490 else info->depth = 0x04 << bpp; |
11085 | 491 /*get screen width*/ |
492 VID_WR08(info->chip.PCIO, 0x03D4, 0x1); | |
493 info->screen_x = (1 + VID_RD08(info->chip.PCIO, 0x3D5)) * 8; | |
494 /*get screen height*/ | |
495 /* get first 8 bits in VT_DISPLAY_END*/ | |
496 VID_WR08(info->chip.PCIO, 0x03D4, 0x12); | |
497 info->screen_y = VID_RD08(info->chip.PCIO,0x03D5); | |
498 VID_WR08(info->chip.PCIO,0x03D4,0x07); | |
499 /* get 9th bit in CRTC_OVERFLOW*/ | |
500 info->screen_y |= (VID_RD08(info->chip.PCIO,0x03D5) &0x02)<<7; | |
501 /* and the 10th in CRTC_OVERFLOW*/ | |
502 info->screen_y |=(VID_RD08(info->chip.PCIO,0x03D5) &0x40)<<3; | |
503 ++info->screen_y; | |
17568
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
504 |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
505 /* NV_PCRTC_OFFSET */ |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
506 VID_WR08 (info->chip.PCIO, 0x3D4, 0x13); |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
507 x = VID_RD08 (info->chip.PCIO, 0x3D5); |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
508 /* NV_PCRTC_REPAINT0_OFFSET_10_8 */ |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
509 VID_WR08 (info->chip.PCIO, 0x3D4, 0x19); |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
510 x |= (VID_RD08 (info->chip.PCIO, 0x3D5) & 0xE0) << 3; |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
511 /* NV_PCRTC_EXTRA_OFFSET_11 */ |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
512 VID_WR08 (info->chip.PCIO, 0x3D4, 0x25); |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
513 x |= (VID_RD08 (info->chip.PCIO, 0x3D5) & 0x20) << 6; x <<= 3; |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
514 info->bps = x * bpp; |
11085 | 515 } |
516 | |
517 | |
518 | |
10954 | 519 |
520 /* Start overlay video. */ | |
19066
26a30496ec96
marks several function without a prototype which arent used outside its sourcefile as static, Patch by Stefan Huehner - stefan AT huehner-org
reynaldo
parents:
18318
diff
changeset
|
521 static void rivatv_overlay_start (struct rivatv_info *info,int bufno){ |
11085 | 522 uint32_t base, size, offset, xscale, yscale, pan; |
11086 | 523 uint32_t value; |
16367 | 524 int x=info->wx, y=info->wy; |
10954 | 525 int lwidth=info->d_width, lheight=info->d_height; |
526 | |
10977
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
527 size = info->buffer_size; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
528 base = info->picture_offset; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
529 offset = bufno*size; |
10954 | 530 /*update depth & dimensions here because it may change with vo vesa or vo fbdev*/ |
11085 | 531 nv_getscreenproperties(info); |
532 | |
533 if(info->depth){ | |
10977
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
534 /* get pan offset of the physical screen */ |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
535 pan = rivatv_overlay_pan (info); |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
536 /* adjust window position depending on the pan offset */ |
16370 | 537 if (info->bps != 0) |
11783 | 538 { |
16370 | 539 x = info->wx - (pan % info->bps) * 8 / info->depth; |
540 y = info->wy - (pan / info->bps); | |
11783 | 541 } |
16367 | 542 } else { |
543 // we can't adjust the window position correctly in textmode | |
544 // setting y to 8 seems to work ok, though | |
16408
288a27e39393
Only older card version seem to make problems with y < 8 in text mode.
reimar
parents:
16389
diff
changeset
|
545 if(info->chip.arch < NV_ARCH_10 && y < 8) y = 8; |
11783 | 546 } |
547 | |
10977
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
548 /* adjust negative output window variables */ |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
549 if (x < 0) { |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
550 lwidth = info->d_width + x; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
551 offset += (-x * info->width / info->d_width) << 1; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
552 // offset += (-window->x * port->vld_width / window->width) << 1; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
553 x = 0; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
554 } |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
555 if (y < 0) { |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
556 lheight = info->d_height + y; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
557 offset += (-y * info->height / info->d_height * info->width) << 1; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
558 // offset += (-window->y * port->vld_height / window->height * port->org_width) << 1; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
559 y = 0; |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
560 } |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
561 |
10954 | 562 switch (info->chip.arch) { |
563 case NV_ARCH_10: | |
564 case NV_ARCH_20: | |
565 case NV_ARCH_30: | |
566 | |
567 /* NV_PVIDEO_BASE */ | |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
568 VID_WR32 (info->chip.PVIDEO, 0x900 + 0, base + offset); |
10954 | 569 //VID_WR32 (info->chip.PVIDEO, 0x900 + 4, base); |
570 /* NV_PVIDEO_LIMIT */ | |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
571 VID_WR32 (info->chip.PVIDEO, 0x908 + 0, base + offset + size - 1); |
10954 | 572 //VID_WR32 (info->chip.PVIDEO, 0x908 + 4, base + size - 1); |
573 | |
574 /* extra code for NV20 && NV30 architectures */ | |
575 if (info->chip.arch == NV_ARCH_20 || info->chip.arch == NV_ARCH_30) { | |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
576 VID_WR32 (info->chip.PVIDEO, 0x800 + 0, base + offset); |
10954 | 577 //VID_WR32 (info->chip.PVIDEO, 0x800 + 4, base); |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
578 VID_WR32 (info->chip.PVIDEO, 0x808 + 0, base + offset + size - 1); |
10954 | 579 //VID_WR32 (info->chip.PVIDEO, 0x808 + 4, base + size - 1); |
580 } | |
581 | |
582 /* NV_PVIDEO_LUMINANCE */ | |
16380 | 583 VID_WR32 (info->chip.PVIDEO, 0x910 + 0, eq.lum); |
10954 | 584 //VID_WR32 (info->chip.PVIDEO, 0x910 + 4, 0x00001000); |
585 /* NV_PVIDEO_CHROMINANCE */ | |
16380 | 586 VID_WR32 (info->chip.PVIDEO, 0x918 + 0, eq.chrom); |
10954 | 587 //VID_WR32 (info->chip.PVIDEO, 0x918 + 4, 0x00001000); |
588 | |
589 /* NV_PVIDEO_OFFSET */ | |
11160
b5a3ef555164
double buffering fix for cards > NV04 && windows colorkeying fix
faust3
parents:
11159
diff
changeset
|
590 VID_WR32 (info->chip.PVIDEO, 0x920 + 0, 0x0); |
10954 | 591 //VID_WR32 (info->chip.PVIDEO, 0x920 + 4, offset + pitch); |
592 /* NV_PVIDEO_SIZE_IN */ | |
593 VID_WR32 (info->chip.PVIDEO, 0x928 + 0, ((info->height) << 16) | info->width); | |
594 //VID_WR32 (info->chip.PVIDEO, 0x928 + 4, ((port->org_height/2) << 16) | port->org_width); | |
595 /* NV_PVIDEO_POINT_IN */ | |
596 VID_WR32 (info->chip.PVIDEO, 0x930 + 0, 0x00000000); | |
597 //VID_WR32 (info->chip.PVIDEO, 0x930 + 4, 0x00000000); | |
598 /* NV_PVIDEO_DS_DX_RATIO */ | |
599 VID_WR32 (info->chip.PVIDEO, 0x938 + 0, (info->width << 20) / info->d_width); | |
600 //VID_WR32 (info->chip.PVIDEO, 0x938 + 4, (port->org_width << 20) / window->width); | |
601 /* NV_PVIDEO_DT_DY_RATIO */ | |
602 VID_WR32 (info->chip.PVIDEO, 0x940 + 0, ((info->height) << 20) / info->d_height); | |
603 //VID_WR32 (info->chip.PVIDEO, 0x940 + 4, ((port->org_height/2) << 20) / window->height); | |
604 | |
605 /* NV_PVIDEO_POINT_OUT */ | |
606 VID_WR32 (info->chip.PVIDEO, 0x948 + 0, ((y + 0) << 16) | x); | |
607 //VID_WR32 (info->chip.PVIDEO, 0x948 + 4, ((y + 0) << 16) | x); | |
608 /* NV_PVIDEO_SIZE_OUT */ | |
609 VID_WR32 (info->chip.PVIDEO, 0x950 + 0, (lheight << 16) | lwidth); | |
610 //VID_WR32 (info->chip.PVIDEO, 0x950 + 4, (height << 16) | width); | |
611 | |
612 /* NV_PVIDEO_FORMAT */ | |
11086 | 613 value = info->pitch; |
614 if(info->use_colorkey)value |= 1 << 20; | |
615 if(info->format == IMGFMT_YUY2)value |= 1 << 16; | |
616 VID_WR32 (info->chip.PVIDEO, 0x958 + 0, value); | |
617 //VID_WR32 (info->chip.PVIDEO, 0x958 + 4, (pitch << 1) | 0x00100000); | |
10954 | 618 |
619 /* NV_PVIDEO_INTR_EN_BUFFER */ | |
11086 | 620 // VID_OR32 (info->chip.PVIDEO, 0x140, 0x01/*0x11*/); |
10954 | 621 /* NV_PVIDEO_STOP */ |
11086 | 622 VID_WR32 (info->chip.PVIDEO, 0x704,0x0); |
10954 | 623 /* NV_PVIDEO_BUFFER */ |
11086 | 624 VID_WR32 (info->chip.PVIDEO, 0x700, 0x01/*0x11*/); |
10954 | 625 break; |
626 | |
627 case NV_ARCH_03: | |
628 case NV_ARCH_04: | |
629 | |
630 | |
631 /* NV_PVIDEO_OE_STATE */ | |
632 VID_WR32 (info->chip.PVIDEO, 0x224, 0); | |
633 /* NV_PVIDEO_SU_STATE */ | |
634 VID_WR32 (info->chip.PVIDEO, 0x228, 0); | |
635 /* NV_PVIDEO_RM_STATE */ | |
636 VID_WR32 (info->chip.PVIDEO, 0x22C, 0); | |
637 | |
638 /* NV_PVIDEO_BUFF0_START_ADDRESS */ | |
639 VID_WR32 (info->chip.PVIDEO, 0x20C + 0, base + offset + 0); | |
640 VID_WR32 (info->chip.PVIDEO, 0x20C + 4, base + offset + 0); | |
641 /* NV_PVIDEO_BUFF0_PITCH_LENGTH */ | |
642 VID_WR32 (info->chip.PVIDEO, 0x214 + 0, info->pitch); | |
643 VID_WR32 (info->chip.PVIDEO, 0x214 + 4, info->pitch); | |
644 | |
645 /* NV_PVIDEO_WINDOW_START */ | |
646 VID_WR32 (info->chip.PVIDEO, 0x230, (y << 16) | x); | |
647 /* NV_PVIDEO_WINDOW_SIZE */ | |
648 VID_WR32 (info->chip.PVIDEO, 0x234, (lheight << 16) | lwidth); | |
649 /* NV_PVIDEO_STEP_SIZE */ | |
650 yscale = ((info->height - 1) << 11) / (info->d_height - 1); | |
651 xscale = ((info->width - 1) << 11) / (info->d_width - 1); | |
652 VID_WR32 (info->chip.PVIDEO, 0x200, (yscale << 16) | xscale); | |
653 | |
654 /* NV_PVIDEO_RED_CSC_OFFSET */ | |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
655 VID_WR32 (info->chip.PVIDEO, 0x280, eq.red_off); |
10954 | 656 /* NV_PVIDEO_GREEN_CSC_OFFSET */ |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
657 VID_WR32 (info->chip.PVIDEO, 0x284, eq.green_off); |
10954 | 658 /* NV_PVIDEO_BLUE_CSC_OFFSET */ |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
659 VID_WR32 (info->chip.PVIDEO, 0x288, eq.blue_off); |
10954 | 660 /* NV_PVIDEO_CSC_ADJUST */ |
661 VID_WR32 (info->chip.PVIDEO, 0x28C, 0x00000); /* No colour correction! */ | |
662 | |
663 /* NV_PVIDEO_CONTROL_Y (BLUR_ON, LINE_HALF) */ | |
664 VID_WR32 (info->chip.PVIDEO, 0x204, 0x001); | |
665 /* NV_PVIDEO_CONTROL_X (WEIGHT_HEAVY, SHARPENING_ON, SMOOTHING_ON) */ | |
11086 | 666 VID_WR32 (info->chip.PVIDEO, 0x208, 0x111); /*directx overlay 0x110 */ |
10954 | 667 |
668 /* NV_PVIDEO_FIFO_BURST_LENGTH */ | |
669 VID_WR32 (info->chip.PVIDEO, 0x23C, 0x03); | |
670 /* NV_PVIDEO_FIFO_THRES_SIZE */ | |
671 VID_WR32 (info->chip.PVIDEO, 0x238, 0x38); /*windows uses 0x40*/ | |
672 | |
673 /* NV_PVIDEO_BUFF0_OFFSET */ | |
674 VID_WR32 (info->chip.PVIDEO, 0x21C + 0, 0); | |
675 VID_WR32 (info->chip.PVIDEO, 0x21C + 4, 0); | |
676 | |
677 /* NV_PVIDEO_INTR_EN_0_NOTIFY_ENABLED */ | |
678 // VID_OR32 (info->chip.PVIDEO, 0x140, 0x01); | |
11086 | 679 |
10954 | 680 /* NV_PVIDEO_OVERLAY (KEY_ON, VIDEO_ON, FORMAT_CCIR) */ |
11086 | 681 value = 0x1; /*video on*/ |
682 if(info->format==IMGFMT_YUY2)value |= 0x100; | |
683 if(info->use_colorkey)value |=0x10; | |
684 VID_WR32 (info->chip.PVIDEO, 0x244, value); | |
685 | |
10954 | 686 /* NV_PVIDEO_SU_STATE */ |
687 VID_XOR32 (info->chip.PVIDEO, 0x228, 1 << 16); | |
688 break; | |
689 } | |
690 /*set colorkey*/ | |
691 rivatv_overlay_colorkey(info,info->vidixcolorkey); | |
692 | |
693 } | |
694 | |
695 | |
10977
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
696 |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
697 |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
698 |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
699 |
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
700 |
10954 | 701 static rivatv_info* info; |
702 | |
703 | |
704 | |
705 | |
706 int vixInit(void){ | |
707 int mtrr; | |
19068
59d10ceb72c8
drops casts from void * on malloc/calloc from vidix/
reynaldo
parents:
19066
diff
changeset
|
708 info = calloc(1,sizeof(rivatv_info)); |
10954 | 709 info->control_base = map_phys_mem(pci_info.base0, 0x00C00000 + 0x00008000); |
710 info->chip.arch = nvidia_card_ids[find_chip(pci_info.device)].arch; | |
16378 | 711 printf("[nvidia_vid] arch %x register base %p\n",info->chip.arch,info->control_base); |
10954 | 712 info->chip.PFIFO = (uint32_t *) (info->control_base + 0x00002000); |
713 info->chip.FIFO = (uint32_t *) (info->control_base + 0x00800000); | |
714 info->chip.PMC = (uint32_t *) (info->control_base + 0x00000000); | |
715 info->chip.PFB = (uint32_t *) (info->control_base + 0x00100000); | |
716 info->chip.PME = (uint32_t *) (info->control_base + 0x00000000); | |
717 info->chip.PCIO = (uint8_t *) (info->control_base + 0x00601000); | |
718 info->chip.PVIO = (uint8_t *) (info->control_base + 0x000C0000); | |
719 info->chip.PGRAPH = (uint32_t *) (info->control_base + 0x00400000); | |
720 /* setup chip specific functions */ | |
721 switch (info->chip.arch) { | |
722 case NV_ARCH_03: | |
723 info->chip.lock = rivatv_lock_nv03; | |
724 info->chip.fbsize = rivatv_fbsize_nv03 (&info->chip); | |
725 info->chip.PVIDEO = (uint32_t *) (info->control_base + 0x00680000); | |
726 break; | |
727 case NV_ARCH_04: | |
728 info->chip.lock = rivatv_lock_nv04; | |
729 info->chip.fbsize = rivatv_fbsize_nv04 (&info->chip); | |
730 info->chip.PRAMIN = (uint32_t *) (info->control_base + 0x00700000); | |
731 info->chip.PVIDEO = (uint32_t *) (info->control_base + 0x00680000); | |
732 break; | |
733 case NV_ARCH_10: | |
734 case NV_ARCH_20: | |
735 case NV_ARCH_30: | |
736 info->chip.lock = rivatv_lock_nv04; | |
737 info->chip.fbsize = rivatv_fbsize_nv10 (&info->chip); | |
738 info->chip.PRAMIN = (uint32_t *) (info->control_base + 0x00700000); | |
739 info->chip.PVIDEO = (uint32_t *) (info->control_base + 0x00008000); | |
740 break; | |
741 } | |
742 switch (info->chip.arch) { | |
743 case NV_ARCH_03: | |
744 { | |
745 /* This maps framebuffer @6MB, thus 2MB are left for video. */ | |
746 info->video_base = map_phys_mem(pci_info.base1, info->chip.fbsize); | |
747 /* This may trash your screen for resolutions greater than 1024x768, sorry. */ | |
10977
3da6b1de1c33
make it work in textmode again && support for nv03 with 4MB RAM
faust3
parents:
10970
diff
changeset
|
748 info->picture_offset = 1024*768* 4 * ((info->chip.fbsize > 4194304)?2:1); |
16378 | 749 info->picture_base = info->video_base + info->picture_offset; |
10954 | 750 info->chip.PRAMIN = (uint32_t *) (info->video_base + 0x00C00000); |
751 break; | |
752 } | |
753 case NV_ARCH_04: | |
754 case NV_ARCH_10: | |
755 case NV_ARCH_20: | |
756 case NV_ARCH_30: | |
757 { | |
758 info->video_base = map_phys_mem(pci_info.base1, info->chip.fbsize); | |
759 info->picture_offset = info->chip.fbsize - NV04_BES_SIZE; | |
17568
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
760 if(info->chip.fbsize > 16*1024*1024) |
2275417ad349
support for Geforce FX5500 based on patch by Pascal Yu <yu_pascal at hotmail.com>
faust3
parents:
16953
diff
changeset
|
761 info->picture_offset -= NV04_BES_SIZE; |
10954 | 762 // info->picture_base = (unsigned long)map_phys_mem(pci_info.base1+info->picture_offset,NV04_BES_SIZE); |
16378 | 763 info->picture_base = info->video_base + info->picture_offset; |
10954 | 764 break; |
765 } | |
766 } | |
767 | |
768 printf("[nvidia_vid] detected memory size %u MB\n",(uint32_t)(info->chip.fbsize /1024/1024)); | |
769 | |
770 if ((mtrr = mtrr_set_type(pci_info.base1, info->chip.fbsize, MTRR_TYPE_WRCOMB))!= 0) | |
11085 | 771 printf("[nvidia_vid] unable to setup MTRR: %s\n", strerror(mtrr)); |
10954 | 772 else |
11085 | 773 printf("[nvidia_vid] MTRR set up\n"); |
10954 | 774 |
11085 | 775 nv_getscreenproperties(info); |
776 if(!info->depth)printf("[nvidia_vid] text mode: %ux%u\n",info->screen_x,info->screen_y); | |
777 else printf("[nvidia_vid] video mode: %ux%u@%u\n",info->screen_x,info->screen_y, info->depth); | |
778 | |
10954 | 779 |
780 rivatv_enable_PMEDIA(info); | |
11783 | 781 info->cur_frame = 0; |
11159 | 782 info->use_colorkey = 0; |
11783 | 783 |
16380 | 784 eq.lum = 0x00001000; |
785 eq.chrom = 0x00001000; | |
786 memset(&eq.vals, 0, sizeof(vidix_video_eq_t)); | |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
787 eq.vals.cap = VEQ_CAP_BRIGHTNESS; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
788 if (info->chip.arch > NV_ARCH_04) |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
789 eq.vals.cap |= VEQ_CAP_CONTRAST | VEQ_CAP_SATURATION | VEQ_CAP_HUE; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
790 eq.red_off = 0x69; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
791 eq.green_off = 0x3e; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
792 eq.blue_off = 0x89; |
10954 | 793 return 0; |
794 } | |
795 | |
796 void vixDestroy(void){ | |
797 unmap_phys_mem(info->control_base ,0x00C00000 + 0x00008000); | |
798 unmap_phys_mem(info->video_base, info->chip.fbsize); | |
799 free(info); | |
800 } | |
801 | |
802 int vixGetCapability(vidix_capability_t *to){ | |
803 memcpy(to, &nvidia_cap, sizeof(vidix_capability_t)); | |
804 return 0; | |
805 } | |
806 | |
807 inline static int is_supported_fourcc(uint32_t fourcc) | |
808 { | |
11086 | 809 if (fourcc == IMGFMT_UYVY || fourcc == IMGFMT_YUY2) |
10954 | 810 return 1; |
811 else | |
812 return 0; | |
813 } | |
814 | |
815 int vixQueryFourcc(vidix_fourcc_t *to){ | |
816 if(is_supported_fourcc(to->fourcc)){ | |
817 to->depth = VID_DEPTH_1BPP | VID_DEPTH_2BPP | | |
818 VID_DEPTH_4BPP | VID_DEPTH_8BPP | | |
819 VID_DEPTH_12BPP| VID_DEPTH_15BPP| | |
820 VID_DEPTH_16BPP| VID_DEPTH_24BPP| | |
821 VID_DEPTH_32BPP; | |
822 to->flags = VID_CAP_EXPAND | VID_CAP_SHRINK | VID_CAP_COLORKEY; | |
823 return 0; | |
824 } | |
825 else to->depth = to->flags = 0; | |
826 return ENOSYS; | |
827 } | |
828 | |
829 int vixConfigPlayback(vidix_playback_t *vinfo){ | |
830 uint32_t i; | |
831 printf("called %s\n", __FUNCTION__); | |
832 if (! is_supported_fourcc(vinfo->fourcc)) | |
833 return ENOSYS; | |
834 | |
835 info->width = vinfo->src.w; | |
836 info->height = vinfo->src.h; | |
837 | |
838 info->d_width = vinfo->dest.w; | |
839 info->d_height = vinfo->dest.h; | |
840 info->wx = vinfo->dest.x; | |
841 info->wy = vinfo->dest.y; | |
842 info->format = vinfo->fourcc; | |
843 | |
844 printf("[nvidia_vid] setting up a %dx%d-%dx%d video window (src %dx%d), format 0x%X\n", | |
845 info->d_width, info->d_height, info->wx, info->wy, info->width, info->height, vinfo->fourcc); | |
846 | |
847 | |
16378 | 848 vinfo->dga_addr=info->picture_base; |
10954 | 849 |
850 switch (vinfo->fourcc) | |
851 { | |
852 case IMGFMT_YUY2: | |
853 case IMGFMT_UYVY: | |
854 | |
16953
2363eb5b90e2
it looks like width needs to be a multiple of 64 for newer cards
faust3
parents:
16416
diff
changeset
|
855 vinfo->dest.pitch.y = 64; |
10954 | 856 vinfo->dest.pitch.u = 0; |
857 vinfo->dest.pitch.v = 0; | |
858 | |
859 vinfo->offset.y = 0; | |
860 vinfo->offset.v = 0; | |
861 vinfo->offset.u = 0; | |
11902 | 862 info->pitch = ((info->width << 1) + (vinfo->dest.pitch.y-1)) & ~(vinfo->dest.pitch.y-1); |
10954 | 863 vinfo->frame_size = info->pitch * info->height; |
864 break; | |
865 } | |
866 info->buffer_size = vinfo->frame_size; | |
867 info->num_frames = vinfo->num_frames= (info->chip.fbsize - info->picture_offset)/vinfo->frame_size; | |
868 if(vinfo->num_frames > MAX_FRAMES)vinfo->num_frames = MAX_FRAMES; | |
869 // vinfo->num_frames = 1; | |
870 // printf("[nvidia_vid] Number of frames %i\n",vinfo->num_frames); | |
871 for(i=0;i <vinfo->num_frames;i++)vinfo->offsets[i] = vinfo->frame_size*i; | |
872 return 0; | |
873 } | |
874 | |
875 int vixPlaybackOn(void){ | |
11783 | 876 rivatv_overlay_start(info,info->cur_frame); |
10954 | 877 return 0; |
878 } | |
879 | |
880 int vixPlaybackOff(void){ | |
881 rivatv_overlay_stop(info); | |
882 return 0; | |
883 } | |
884 | |
885 int vixSetGrKeys( const vidix_grkey_t * grkey){ | |
11159 | 886 if (grkey->ckey.op == CKEY_FALSE) |
887 { | |
888 info->use_colorkey = 0; | |
889 printf("[nvidia_vid] colorkeying disabled\n"); | |
890 } | |
11165 | 891 else { |
11159 | 892 info->use_colorkey = 1; |
10954 | 893 info->vidixcolorkey = ((grkey->ckey.red<<16)|(grkey->ckey.green<<8)|grkey->ckey.blue); |
894 printf("[nvidia_vid] set colorkey 0x%x\n",info->vidixcolorkey); | |
11165 | 895 } |
11210 | 896 if(info->d_width && info->d_height)rivatv_overlay_start(info,0); |
10954 | 897 return 0; |
898 } | |
899 | |
900 int vixPlaybackFrameSelect(unsigned int frame){ | |
901 // printf("selecting buffer %d\n", frame); | |
902 rivatv_overlay_start(info, frame); | |
903 if (info->num_frames >= 1) | |
11783 | 904 info->cur_frame = frame/*(frame+1)%info->num_frames*/; |
10954 | 905 return 0; |
906 } | |
16380 | 907 |
908 int vixPlaybackSetEq(const vidix_video_eq_t *eq_parm) { | |
909 double angle; | |
910 int16_t chrom_cos, chrom_sin; | |
911 if (eq_parm->cap & VEQ_CAP_BRIGHTNESS) | |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
912 eq.vals.brightness = eq_parm->brightness; |
16380 | 913 if (eq_parm->cap & VEQ_CAP_CONTRAST) |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
914 eq.vals.contrast = eq_parm->contrast; |
16380 | 915 if (eq_parm->cap & VEQ_CAP_SATURATION) |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
916 eq.vals.saturation = eq_parm->saturation; |
16380 | 917 if (eq_parm->cap & VEQ_CAP_HUE) |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
918 eq.vals.hue = eq_parm->hue; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
919 eq.lum = (((eq.vals.brightness * 512 + 500) / 1000) << 16) | |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
920 ((((eq.vals.contrast + 1000) * 8191 + 1000) / 2000) & 0xffff); |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
921 angle = (double)eq.vals.hue / 1000.0 * 3.1415927; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
922 chrom_cos = ((eq.vals.saturation + 1000) * 8191 * cos(angle) + 1000) / 2000; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
923 chrom_sin = ((eq.vals.saturation + 1000) * 8191 * sin(angle) + 1000) / 2000; |
16380 | 924 eq.chrom = chrom_sin << 16 | chrom_cos; |
16389
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
925 eq.red_off = 0x69 - eq.vals.brightness * 62 / 1000; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
926 eq.green_off = 0x3e + eq.vals.brightness * 62 / 1000; |
fa804efbfaf6
equalizer fixes: changing one attribute reset the others,
reimar
parents:
16380
diff
changeset
|
927 eq.blue_off = 0x89 - eq.vals.brightness * 62 / 1000; |
16380 | 928 return 0; |
929 } | |
930 | |
931 int vixPlaybackGetEq(vidix_video_eq_t *eq_parm) { | |
932 memcpy(eq_parm, &eq.vals, sizeof(vidix_video_eq_t)); | |
933 return 0; | |
934 } | |
935 |