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