2 * VIDIX driver for Matrox chipsets.
4 * Copyright (C) 2002 Alex Beregszaszi
5 * Original sources from Aaron Holtzman (C) 1999.
6 * module skeleton based on gutted agpgart module by Jeff Hartmann
8 * YUY2 support and double buffering added by A'rpi/ESP-team
9 * brightness/contrast support by Nick Kurshev/Dariush Pietrzak (eyck)
11 * This file is part of MPlayer.
13 * MPlayer is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * MPlayer is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 * - fix memory size detection (current reading pci userconfig isn't
30 * working as requested - returns the max avail. ram on arch?)
31 * - translate all non-english comments to english
36 // Set this value, if autodetection fails! (video ram size in megabytes)
37 //#define MGA_MEMORY_SIZE 16
39 /* No irq support in userspace implemented yet, do not enable this! */
41 #define MGA_ALLOW_IRQ 0
43 #define MGA_VSYNC_POS 2
45 #undef MGA_PCICONFIG_MEMDETECT
47 #define MGA_DEFAULT_FRAMES 4
60 #include "pci_names.h"
66 #if !defined(ENOTSUP) && defined(EOPNOTSUPP)
67 #define ENOTSUP EOPNOTSUPP
71 #define GETREG(TYPE,PTR,OFFZ) (*((volatile TYPE*)((PTR)+(OFFZ))))
72 #define SETREG(TYPE,PTR,OFFZ,VAL) (*((volatile TYPE*)((PTR)+(OFFZ))))=VAL
74 #define readb(addr) GETREG(uint8_t,(uint32_t)(addr),0)
75 #define writeb(val,addr) SETREG(uint8_t,(uint32_t)(addr),0,val)
76 #define readl(addr) GETREG(uint32_t,(uint32_t)(addr),0)
77 #define writel(val,addr) SETREG(uint32_t,(uint32_t)(addr),0,val)
79 static int mga_verbose
= 0;
81 /* for device detection */
82 static int probed
= 0;
83 static pciinfo_t pci_info
;
85 /* internal booleans */
86 static int mga_vid_in_use
= 0;
87 static int is_g400
= 0;
88 static int vid_src_ready
= 0;
89 static int vid_overlay_on
= 0;
91 /* mapped physical addresses */
92 static uint8_t *mga_mmio_base
= 0;
93 static uint8_t *mga_mem_base
= 0;
95 static int mga_src_base
= 0; /* YUV buffer position in video memory */
97 static uint32_t mga_ram_size
= 0; /* how much megabytes videoram we have */
100 static vidix_grkey_t mga_grkey
;
102 static int colkey_saved
= 0;
103 static int colkey_on
= 0;
104 static unsigned char colkey_color
[4];
105 static unsigned char colkey_mask
[4];
108 static int mga_irq
= -1;
110 static int mga_next_frame
= 0;
112 static vidix_capability_t mga_cap
=
114 "Matrox MGA G200/G4x0/G5x0 YUV Video",
115 "Aaron Holtzman, Arpad Gereoffy, Alex Beregszaszi, Nick Kurshev",
123 FLAG_UPSCALER
| FLAG_DOWNSCALER
| FLAG_EQUALIZER
,
125 -1, /* will be set in vixProbe */
129 /* MATROX BES registers */
130 typedef struct bes_registers_s
136 //Luma control (brightness and contrast)
141 //Buffer A-1 Chroma 3 plane org
143 //Buffer A-1 Chroma org
145 //Buffer A-1 Luma org
148 //Buffer A-2 Chroma 3 plane org
150 //Buffer A-2 Chroma org
152 //Buffer A-2 Luma org
155 //Buffer B-1 Chroma 3 plane org
157 //Buffer B-1 Chroma org
159 //Buffer B-1 Luma org
162 //Buffer B-2 Chroma 3 plane org
164 //Buffer B-2 Chroma org
166 //Buffer B-2 Luma org
169 //BES Horizontal coord
171 //BES Horizontal inverse scaling [5.14]
173 //BES Horizontal source start [10.14] (for scaling)
175 //BES Horizontal source ending [10.14] (for scaling)
177 //BES Horizontal source last
183 //BES Vertical inverse scaling [5.14]
185 //BES Field 1 vertical source last position
186 uint32_t besv1srclst
;
187 //BES Field 1 weight start
189 //BES Field 2 vertical source last position
190 uint32_t besv2srclst
;
191 //BES Field 2 weight start
195 static bes_registers_t regs
;
198 typedef struct crtc2_registers_s
206 uint32_t c2pl2startadd0
;
207 uint32_t c2pl2startadd1
;
208 uint32_t c2pl3startadd0
;
209 uint32_t c2pl3startadd1
;
211 uint32_t c2spicstartadd0
;
212 uint32_t c2spicstartadd1
;
213 uint32_t c2startadd0
;
214 uint32_t c2startadd1
;
215 uint32_t c2subpiclut
;
220 static crtc2_registers_t cregs
;
223 //All register offsets are converted to word aligned offsets (32 bit)
224 //because we want all our register accesses to be 32 bits
225 #define VCOUNT 0x1e20
227 #define PALWTADD 0x3c00 // Index register for X_DATAREG port
228 #define X_DATAREG 0x3c0a
230 #define XMULCTRL 0x19
235 #define BPP_32_DIR 0x04
236 #define BPP_32_PAL 0x07
239 #define X_COLKEY 0x42
240 #define XKEYOPMODE 0x51
241 #define XCOLMSK0RED 0x52
242 #define XCOLMSK0GREEN 0x53
243 #define XCOLMSK0BLUE 0x54
244 #define XCOLKEY0RED 0x55
245 #define XCOLKEY0GREEN 0x56
246 #define XCOLKEY0BLUE 0x57
250 #define XMISCCTRL 0x1e
252 #define C2DATACTL 0x3c4c
253 #define C2MISC 0x3c44
254 #define C2HPARAM 0x3c14
255 #define C2HSYNC 0x3c18
256 #define C2OFFSET 0x3c40
257 #define C2PL2STARTADD0 0x3c30 // like BESA1CORG
258 #define C2PL2STARTADD1 0x3c34 // like BESA2CORG
259 #define C2PL3STARTADD0 0x3c38 // like BESA1C3ORG
260 #define C2PL3STARTADD1 0x3c3c // like BESA2C3ORG
261 #define C2PRELOAD 0x3c24
262 #define C2SPICSTARTADD0 0x3c54
263 #define C2SPICSTARTADD1 0x3c58
264 #define C2STARTADD0 0x3c28 // like BESA1ORG
265 #define C2STARTADD1 0x3c2c // like BESA2ORG
266 #define C2SUBPICLUT 0x3c50
267 #define C2VCOUNT 0x3c48
268 #define C2VPARAM 0x3c1c
269 #define C2VSYNC 0x3c20
272 // Backend Scaler registers
273 #define BESCTL 0x3d20
274 #define BESGLOBCTL 0x3dc0
275 #define BESLUMACTL 0x3d40
276 #define BESPITCH 0x3d24
278 #define BESA1C3ORG 0x3d60
279 #define BESA1CORG 0x3d10
280 #define BESA1ORG 0x3d00
282 #define BESA2C3ORG 0x3d64
283 #define BESA2CORG 0x3d14
284 #define BESA2ORG 0x3d04
286 #define BESB1C3ORG 0x3d68
287 #define BESB1CORG 0x3d18
288 #define BESB1ORG 0x3d08
290 #define BESB2C3ORG 0x3d6C
291 #define BESB2CORG 0x3d1C
292 #define BESB2ORG 0x3d0C
294 #define BESHCOORD 0x3d28
295 #define BESHISCAL 0x3d30
296 #define BESHSRCEND 0x3d3C
297 #define BESHSRCLST 0x3d50
298 #define BESHSRCST 0x3d38
299 #define BESV1WGHT 0x3d48
300 #define BESV2WGHT 0x3d4c
301 #define BESV1SRCLST 0x3d54
302 #define BESV2SRCLST 0x3d58
303 #define BESVISCAL 0x3d34
304 #define BESVCOORD 0x3d2c
305 #define BESSTATUS 0x3dc4
310 #define ICLEAR 0x1e18
311 #define STATUS 0x1e14
315 static void crtc2_frame_sel(int frame
)
319 cregs
.c2pl2startadd0
=regs
.besa1corg
;
320 cregs
.c2pl3startadd0
=regs
.besa1c3org
;
321 cregs
.c2startadd0
=regs
.besa1org
;
324 cregs
.c2pl2startadd0
=regs
.besa2corg
;
325 cregs
.c2pl3startadd0
=regs
.besa2c3org
;
326 cregs
.c2startadd0
=regs
.besa2org
;
329 cregs
.c2pl2startadd0
=regs
.besb1corg
;
330 cregs
.c2pl3startadd0
=regs
.besb1c3org
;
331 cregs
.c2startadd0
=regs
.besb1org
;
334 cregs
.c2pl2startadd0
=regs
.besb2corg
;
335 cregs
.c2pl3startadd0
=regs
.besb2c3org
;
336 cregs
.c2startadd0
=regs
.besb2org
;
339 writel(cregs
.c2startadd0
, mga_mmio_base
+ C2STARTADD0
);
340 writel(cregs
.c2pl2startadd0
, mga_mmio_base
+ C2PL2STARTADD0
);
341 writel(cregs
.c2pl3startadd0
, mga_mmio_base
+ C2PL3STARTADD0
);
345 static int mga_frame_select(unsigned int frame
)
347 mga_next_frame
= frame
;
348 if (mga_verbose
>1) printf("[mga] frameselect: %d\n", mga_next_frame
);
353 //we don't need the vcount protection as we're only hitting
354 //one register (and it doesn't seem to be double buffered)
355 regs
.besctl
= (regs
.besctl
& ~0x07000000) + (mga_next_frame
<< 25);
356 writel( regs
.besctl
, mga_mmio_base
+ BESCTL
);
358 // writel( regs.besglobctl + ((readl(mga_mmio_base + VCOUNT)+2)<<16),
359 writel( regs
.besglobctl
+ (MGA_VSYNC_POS
<<16),
360 mga_mmio_base
+ BESGLOBCTL
);
362 crtc2_frame_sel(mga_next_frame
);
370 static void mga_vid_write_regs(int restore
)
372 //Make sure internal registers don't get updated until we're done
373 writel( (readl(mga_mmio_base
+ VCOUNT
)-1)<<16,
374 mga_mmio_base
+ BESGLOBCTL
);
376 // color or coordinate keying
378 if(restore
&& colkey_saved
){
382 // Set color key registers:
383 writeb( XKEYOPMODE
, mga_mmio_base
+ PALWTADD
);
384 writeb( colkey_on
, mga_mmio_base
+ X_DATAREG
);
386 writeb( XCOLKEY0RED
, mga_mmio_base
+ PALWTADD
);
387 writeb( colkey_color
[0], mga_mmio_base
+ X_DATAREG
);
388 writeb( XCOLKEY0GREEN
, mga_mmio_base
+ PALWTADD
);
389 writeb( colkey_color
[1], mga_mmio_base
+ X_DATAREG
);
390 writeb( XCOLKEY0BLUE
, mga_mmio_base
+ PALWTADD
);
391 writeb( colkey_color
[2], mga_mmio_base
+ X_DATAREG
);
392 writeb( X_COLKEY
, mga_mmio_base
+ PALWTADD
);
393 writeb( colkey_color
[3], mga_mmio_base
+ X_DATAREG
);
395 writeb( XCOLMSK0RED
, mga_mmio_base
+ PALWTADD
);
396 writeb( colkey_mask
[0], mga_mmio_base
+ X_DATAREG
);
397 writeb( XCOLMSK0GREEN
, mga_mmio_base
+ PALWTADD
);
398 writeb( colkey_mask
[1], mga_mmio_base
+ X_DATAREG
);
399 writeb( XCOLMSK0BLUE
, mga_mmio_base
+ PALWTADD
);
400 writeb( colkey_mask
[2], mga_mmio_base
+ X_DATAREG
);
401 writeb( XCOLMSK
, mga_mmio_base
+ PALWTADD
);
402 writeb( colkey_mask
[3], mga_mmio_base
+ X_DATAREG
);
404 } else if(!colkey_saved
){
407 // Get color key registers:
408 writeb( XKEYOPMODE
, mga_mmio_base
+ PALWTADD
);
409 colkey_on
=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
) & 1;
411 writeb( XCOLKEY0RED
, mga_mmio_base
+ PALWTADD
);
412 colkey_color
[0]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
413 writeb( XCOLKEY0GREEN
, mga_mmio_base
+ PALWTADD
);
414 colkey_color
[1]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
415 writeb( XCOLKEY0BLUE
, mga_mmio_base
+ PALWTADD
);
416 colkey_color
[2]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
417 writeb( X_COLKEY
, mga_mmio_base
+ PALWTADD
);
418 colkey_color
[3]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
420 writeb( XCOLMSK0RED
, mga_mmio_base
+ PALWTADD
);
421 colkey_mask
[0]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
422 writeb( XCOLMSK0GREEN
, mga_mmio_base
+ PALWTADD
);
423 colkey_mask
[1]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
424 writeb( XCOLMSK0BLUE
, mga_mmio_base
+ PALWTADD
);
425 colkey_mask
[2]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
426 writeb( XCOLMSK
, mga_mmio_base
+ PALWTADD
);
427 colkey_mask
[3]=(unsigned char)readb(mga_mmio_base
+ X_DATAREG
);
431 writeb( XKEYOPMODE
, mga_mmio_base
+ PALWTADD
);
432 writeb( mga_grkey
.ckey
.op
== CKEY_TRUE
, mga_mmio_base
+ X_DATAREG
);
433 if ( mga_grkey
.ckey
.op
== CKEY_TRUE
)
435 uint32_t r
=0, g
=0, b
=0;
437 writeb( XMULCTRL
, mga_mmio_base
+ PALWTADD
);
438 switch (readb (mga_mmio_base
+ X_DATAREG
))
441 /* Need to look up the color index, just using
446 r
= mga_grkey
.ckey
.red
>> 3;
447 g
= mga_grkey
.ckey
.green
>> 3;
448 b
= mga_grkey
.ckey
.blue
>> 3;
452 r
= mga_grkey
.ckey
.red
>> 3;
453 g
= mga_grkey
.ckey
.green
>> 2;
454 b
= mga_grkey
.ckey
.blue
>> 3;
460 r
= mga_grkey
.ckey
.red
;
461 g
= mga_grkey
.ckey
.green
;
462 b
= mga_grkey
.ckey
.blue
;
466 // Enable colorkeying
467 writeb( XKEYOPMODE
, mga_mmio_base
+ PALWTADD
);
468 writeb( 1, mga_mmio_base
+ X_DATAREG
);
470 // Disable color keying on alpha channel
471 writeb( XCOLMSK
, mga_mmio_base
+ PALWTADD
);
472 writeb( 0x00, mga_mmio_base
+ X_DATAREG
);
473 writeb( X_COLKEY
, mga_mmio_base
+ PALWTADD
);
474 writeb( 0x00, mga_mmio_base
+ X_DATAREG
);
477 // Set up color key registers
478 writeb( XCOLKEY0RED
, mga_mmio_base
+ PALWTADD
);
479 writeb( r
, mga_mmio_base
+ X_DATAREG
);
480 writeb( XCOLKEY0GREEN
, mga_mmio_base
+ PALWTADD
);
481 writeb( g
, mga_mmio_base
+ X_DATAREG
);
482 writeb( XCOLKEY0BLUE
, mga_mmio_base
+ PALWTADD
);
483 writeb( b
, mga_mmio_base
+ X_DATAREG
);
485 // Set up color key mask registers
486 writeb( XCOLMSK0RED
, mga_mmio_base
+ PALWTADD
);
487 writeb( 0xff, mga_mmio_base
+ X_DATAREG
);
488 writeb( XCOLMSK0GREEN
, mga_mmio_base
+ PALWTADD
);
489 writeb( 0xff, mga_mmio_base
+ X_DATAREG
);
490 writeb( XCOLMSK0BLUE
, mga_mmio_base
+ PALWTADD
);
491 writeb( 0xff, mga_mmio_base
+ X_DATAREG
);
495 // Disable colorkeying
496 writeb( XKEYOPMODE
, mga_mmio_base
+ PALWTADD
);
497 writeb( 0, mga_mmio_base
+ X_DATAREG
);
502 writel( regs
.besctl
, mga_mmio_base
+ BESCTL
);
504 writel( regs
.beslumactl
, mga_mmio_base
+ BESLUMACTL
);
505 writel( regs
.bespitch
, mga_mmio_base
+ BESPITCH
);
507 writel( regs
.besa1org
, mga_mmio_base
+ BESA1ORG
);
508 writel( regs
.besa1corg
, mga_mmio_base
+ BESA1CORG
);
509 writel( regs
.besa2org
, mga_mmio_base
+ BESA2ORG
);
510 writel( regs
.besa2corg
, mga_mmio_base
+ BESA2CORG
);
511 writel( regs
.besb1org
, mga_mmio_base
+ BESB1ORG
);
512 writel( regs
.besb1corg
, mga_mmio_base
+ BESB1CORG
);
513 writel( regs
.besb2org
, mga_mmio_base
+ BESB2ORG
);
514 writel( regs
.besb2corg
, mga_mmio_base
+ BESB2CORG
);
517 writel( regs
.besa1c3org
, mga_mmio_base
+ BESA1C3ORG
);
518 writel( regs
.besa2c3org
, mga_mmio_base
+ BESA2C3ORG
);
519 writel( regs
.besb1c3org
, mga_mmio_base
+ BESB1C3ORG
);
520 writel( regs
.besb2c3org
, mga_mmio_base
+ BESB2C3ORG
);
523 writel( regs
.beshcoord
, mga_mmio_base
+ BESHCOORD
);
524 writel( regs
.beshiscal
, mga_mmio_base
+ BESHISCAL
);
525 writel( regs
.beshsrcst
, mga_mmio_base
+ BESHSRCST
);
526 writel( regs
.beshsrcend
, mga_mmio_base
+ BESHSRCEND
);
527 writel( regs
.beshsrclst
, mga_mmio_base
+ BESHSRCLST
);
529 writel( regs
.besvcoord
, mga_mmio_base
+ BESVCOORD
);
530 writel( regs
.besviscal
, mga_mmio_base
+ BESVISCAL
);
532 writel( regs
.besv1srclst
, mga_mmio_base
+ BESV1SRCLST
);
533 writel( regs
.besv1wght
, mga_mmio_base
+ BESV1WGHT
);
534 writel( regs
.besv2srclst
, mga_mmio_base
+ BESV2SRCLST
);
535 writel( regs
.besv2wght
, mga_mmio_base
+ BESV2WGHT
);
537 //update the registers somewhere between 1 and 2 frames from now.
538 writel( regs
.besglobctl
+ ((readl(mga_mmio_base
+ VCOUNT
)+2)<<16),
539 mga_mmio_base
+ BESGLOBCTL
);
543 printf("[mga] wrote BES registers\n");
544 printf("[mga] BESCTL = 0x%08x\n",
545 readl(mga_mmio_base
+ BESCTL
));
546 printf("[mga] BESGLOBCTL = 0x%08x\n",
547 readl(mga_mmio_base
+ BESGLOBCTL
));
548 printf("[mga] BESSTATUS= 0x%08x\n",
549 readl(mga_mmio_base
+ BESSTATUS
));
552 writel(((readl(mga_mmio_base
+ C2CTL
) & ~0x03e00000) + (cregs
.c2ctl
& 0x03e00000)), mga_mmio_base
+ C2CTL
);
553 writel(((readl(mga_mmio_base
+ C2DATACTL
) & ~0x000000ff) + (cregs
.c2datactl
& 0x000000ff)), mga_mmio_base
+ C2DATACTL
);
555 // disable CRTC2 acording to specs
556 writel(cregs
.c2misc
, mga_mmio_base
+ C2MISC
);
558 if (mga_verbose
> 1) printf("[mga] c2offset = %d\n",cregs
.c2offset
);
560 writel(cregs
.c2offset
, mga_mmio_base
+ C2OFFSET
);
561 writel(cregs
.c2startadd0
, mga_mmio_base
+ C2STARTADD0
);
562 writel(cregs
.c2pl2startadd0
, mga_mmio_base
+ C2PL2STARTADD0
);
563 writel(cregs
.c2pl3startadd0
, mga_mmio_base
+ C2PL3STARTADD0
);
564 writel(cregs
.c2spicstartadd0
, mga_mmio_base
+ C2SPICSTARTADD0
);
569 static void enable_irq(void)
573 cc
= readl(mga_mmio_base
+ IEN
);
575 writeb( 0x11, mga_mmio_base
+ CRTCX
);
577 writeb(0x20, mga_mmio_base
+ CRTCD
); /* clear 0, enable off */
578 writeb(0x00, mga_mmio_base
+ CRTCD
); /* enable on */
579 writeb(0x10, mga_mmio_base
+ CRTCD
); /* clear = 1 */
581 writel( regs
.besglobctl
, mga_mmio_base
+ BESGLOBCTL
);
586 static void disable_irq(void)
588 writeb( 0x11, mga_mmio_base
+ CRTCX
);
589 writeb(0x20, mga_mmio_base
+ CRTCD
); /* clear 0, enable off */
594 void mga_handle_irq(int irq
, void *dev_id
/*, struct pt_regs *pregs*/) {
599 cc
= readl(mga_mmio_base
+ STATUS
);
600 if ( ! (cc
& 0x10) ) return; /* vsyncpen */
603 regs
.besctl
= (regs
.besctl
& ~0x07000000) + (mga_next_frame
<< 25);
604 writel( regs
.besctl
, mga_mmio_base
+ BESCTL
);
607 // sem pridat vyber obrazku !!!!
608 crtc2_frame_sel(mga_next_frame
);
612 writeb( 0x11, mga_mmio_base
+ CRTCX
);
613 writeb( 0, mga_mmio_base
+ CRTCD
);
614 writeb( 0x10, mga_mmio_base
+ CRTCD
);
620 #endif /* MGA_ALLOW_IRQ */
622 static int mga_config_playback(vidix_playback_t
*config
)
625 int x
, y
, sw
, sh
, dw
, dh
;
626 int besleft
, bestop
, ifactor
, ofsleft
, ofstop
, baseadrofs
, weight
, weights
;
628 #define right_margin 0
629 #define left_margin 18
631 #define lower_margin 10
633 #define upper_margin 39
635 unsigned int hdispend
= (config
->src
.w
+ 31) & ~31;
636 unsigned int hsyncstart
= hdispend
+ (right_margin
& ~7);
637 unsigned int hsyncend
= hsyncstart
+ (hsync_len
& ~7);
638 unsigned int htotal
= hsyncend
+ (left_margin
& ~7);
639 unsigned int vdispend
= config
->src
.h
;
640 unsigned int vsyncstart
= vdispend
+ lower_margin
;
641 unsigned int vsyncend
= vsyncstart
+ vsync_len
;
642 unsigned int vtotal
= vsyncend
+ upper_margin
;
645 if ((config
->num_frames
< 1) || (config
->num_frames
> 4))
647 printf("[mga] illegal num_frames: %d, setting to %d\n",
648 config
->num_frames
, MGA_DEFAULT_FRAMES
);
649 config
->num_frames
= MGA_DEFAULT_FRAMES
;
659 config
->dest
.pitch
.y
=32;
660 config
->dest
.pitch
.u
=config
->dest
.pitch
.v
=32;
662 if (mga_verbose
) printf("[mga] Setting up a %dx%d-%dx%d video window (src %dx%d) format %X\n",
663 dw
, dh
, x
, y
, sw
, sh
, config
->fourcc
);
665 if ((sw
< 4) || (sh
< 4) || (dw
< 4) || (dh
< 4))
667 printf("[mga] Invalid src/dest dimensions\n");
671 //FIXME check that window is valid and inside desktop
674 switch(config
->fourcc
)
680 config
->frame_size
= ((sw
+ 31) & ~31) * sh
+ (((sw
+ 31) & ~31) * sh
) / 2;
684 config
->frame_size
= ((sw
+ 31) & ~31) * sh
* 2;
687 printf("[mga] Unsupported pixel format: %x\n", config
->fourcc
);
691 config
->offsets
[0] = 0;
692 for (i
= 1; i
< config
->num_frames
+1; i
++)
693 config
->offsets
[i
] = i
*config
->frame_size
;
696 if(config
->fourcc
== IMGFMT_I420
|| config
->fourcc
== IMGFMT_IYUV
)
698 config
->offset
.u
=((sw
+ 31) & ~31) * sh
;
699 config
->offset
.v
=config
->offset
.u
+((sw
+ 31) & ~31) * sh
/4;
702 config
->offset
.v
=((sw
+ 31) & ~31) * sh
;
703 config
->offset
.u
=config
->offset
.v
+((sw
+ 31) & ~31) * sh
/4;
706 mga_src_base
= (mga_ram_size
*0x100000-config
->num_frames
*config
->frame_size
);
707 if (mga_src_base
< 0)
709 printf("[mga] not enough memory for frames!\n");
712 mga_src_base
&= (~0xFFFF); /* 64k boundary */
713 if (mga_verbose
> 1) printf("[mga] YUV buffer base: %#x\n", mga_src_base
);
715 config
->dga_addr
= mga_mem_base
+ mga_src_base
;
717 /* for G200 set Interleaved UV planes */
719 config
->flags
= VID_PLAY_INTERLEAVED_UV
| INTERLEAVING_UV
;
721 //Setup the BES registers for a three plane 4:2:0 video source
725 switch(config
->fourcc
)
730 regs
.besctl
= 1 // BES enabled
731 + (0<<6) // even start polarity
732 + (1<<10) // x filtering enabled
733 + (1<<11) // y filtering enabled
734 + (1<<16) // chroma upsampling
735 + (1<<17) // 4:2:0 mode
736 + (1<<18); // dither enabled
740 regs
.besctl
= 1 // BES enabled
741 + (0<<6) // even start polarity
742 + (1<<10) // x filtering enabled
743 + (1<<11) // y filtering enabled
744 + (1<<16) // chroma upsampling
745 + (0<<17) // 4:2:2 mode
746 + (1<<18); // dither enabled
748 regs
.besglobctl
= 0; // YUY2 format selected
752 regs
.besctl
= 1 // BES enabled
753 + (0<<6) // even start polarity
754 + (1<<10) // x filtering enabled
755 + (1<<11) // y filtering enabled
756 + (1<<16) // chroma upsampling
757 + (0<<17) // 4:2:2 mode
758 + (1<<18); // dither enabled
760 regs
.besglobctl
= 1<<6; // UYVY format selected
765 //Disable contrast and brightness control
766 regs
.besglobctl
|= (1<<5) + (1<<7);
767 regs
.beslumactl
= (0x7f << 16) + (0x80<<0);
768 regs
.beslumactl
= 0x80<<0;
770 //Setup destination window boundaries
771 besleft
= x
> 0 ? x
: 0;
772 bestop
= y
> 0 ? y
: 0;
773 regs
.beshcoord
= (besleft
<<16) + (x
+ dw
-1);
774 regs
.besvcoord
= (bestop
<<16) + (y
+ dh
-1);
776 //Setup source dimensions
777 regs
.beshsrclst
= (sw
- 1) << 16;
778 regs
.bespitch
= (sw
+ 31) & ~31 ;
780 //Setup horizontal scaling
781 ifactor
= ((sw
-1)<<14)/(dw
-1);
782 ofsleft
= besleft
- x
;
784 regs
.beshiscal
= ifactor
<<2;
785 regs
.beshsrcst
= (ofsleft
*ifactor
)<<2;
786 regs
.beshsrcend
= regs
.beshsrcst
+ (((dw
- ofsleft
- 1) * ifactor
) << 2);
788 //Setup vertical scaling
789 ifactor
= ((sh
-1)<<14)/(dh
-1);
792 regs
.besviscal
= ifactor
<<2;
794 baseadrofs
= ((ofstop
*regs
.besviscal
)>>16)*regs
.bespitch
;
795 regs
.besa1org
= (uint32_t) mga_src_base
+ baseadrofs
;
796 regs
.besa2org
= (uint32_t) mga_src_base
+ baseadrofs
+ 1*config
->frame_size
;
797 regs
.besb1org
= (uint32_t) mga_src_base
+ baseadrofs
+ 2*config
->frame_size
;
798 regs
.besb2org
= (uint32_t) mga_src_base
+ baseadrofs
+ 3*config
->frame_size
;
800 if(config
->fourcc
==IMGFMT_YV12
801 ||config
->fourcc
==IMGFMT_IYUV
802 ||config
->fourcc
==IMGFMT_I420
804 // planar YUV frames:
806 baseadrofs
= (((ofstop
*regs
.besviscal
)/4)>>16)*regs
.bespitch
;
808 baseadrofs
= (((ofstop
*regs
.besviscal
)/2)>>16)*regs
.bespitch
;
810 if(config
->fourcc
==IMGFMT_YV12
){
811 regs
.besa1corg
= (uint32_t) mga_src_base
+ baseadrofs
+ regs
.bespitch
* sh
;
812 regs
.besa2corg
= (uint32_t) mga_src_base
+ baseadrofs
+ 1*config
->frame_size
+ regs
.bespitch
* sh
;
813 regs
.besb1corg
= (uint32_t) mga_src_base
+ baseadrofs
+ 2*config
->frame_size
+ regs
.bespitch
* sh
;
814 regs
.besb2corg
= (uint32_t) mga_src_base
+ baseadrofs
+ 3*config
->frame_size
+ regs
.bespitch
* sh
;
815 regs
.besa1c3org
= regs
.besa1corg
+ ((regs
.bespitch
* sh
) / 4);
816 regs
.besa2c3org
= regs
.besa2corg
+ ((regs
.bespitch
* sh
) / 4);
817 regs
.besb1c3org
= regs
.besb1corg
+ ((regs
.bespitch
* sh
) / 4);
818 regs
.besb2c3org
= regs
.besb2corg
+ ((regs
.bespitch
* sh
) / 4);
820 regs
.besa1c3org
= (uint32_t) mga_src_base
+ baseadrofs
+ regs
.bespitch
* sh
;
821 regs
.besa2c3org
= (uint32_t) mga_src_base
+ baseadrofs
+ 1*config
->frame_size
+ regs
.bespitch
* sh
;
822 regs
.besb1c3org
= (uint32_t) mga_src_base
+ baseadrofs
+ 2*config
->frame_size
+ regs
.bespitch
* sh
;
823 regs
.besb2c3org
= (uint32_t) mga_src_base
+ baseadrofs
+ 3*config
->frame_size
+ regs
.bespitch
* sh
;
824 regs
.besa1corg
= regs
.besa1c3org
+ ((regs
.bespitch
* sh
) / 4);
825 regs
.besa2corg
= regs
.besa2c3org
+ ((regs
.bespitch
* sh
) / 4);
826 regs
.besb1corg
= regs
.besb1c3org
+ ((regs
.bespitch
* sh
) / 4);
827 regs
.besb2corg
= regs
.besb2c3org
+ ((regs
.bespitch
* sh
) / 4);
832 weight
= ofstop
* (regs
.besviscal
>> 2);
833 weights
= weight
< 0 ? 1 : 0;
834 regs
.besv2wght
= regs
.besv1wght
= (weights
<< 16) + ((weight
& 0x3FFF) << 2);
835 regs
.besv2srclst
= regs
.besv1srclst
= sh
- 1 - (((ofstop
* regs
.besviscal
) >> 16) & 0x03FF);
838 // pridat hlavni registry - tj. casovani ...
841 switch(config
->fourcc
){
845 cregs
.c2ctl
= 1 // CRTC2 enabled
846 + (1<<1) // external clock
847 + (0<<2) // external clock
848 + (1<<3) // pixel clock enable - not needed ???
849 + (0<<4) // high prioryty req
850 + (1<<5) // high prioryty req
851 + (0<<6) // high prioryty req
852 + (1<<8) // high prioryty req max
853 + (0<<9) // high prioryty req max
854 + (0<<10) // high prioryty req max
855 + (0<<20) // CRTC1 to DAC
856 + (1<<21) // 420 mode
857 + (1<<22) // 420 mode
858 + (1<<23) // 420 mode
859 + (0<<24) // single chroma line for 420 mode - need to be corrected
860 + (0<<25) /*/ interlace mode - need to be corrected*/
861 + (0<<26) // field legth polariry
862 + (0<<27) // field identification polariry
863 + (1<<28) // VIDRST detection mode
864 + (0<<29) // VIDRST detection mode
865 + (1<<30) // Horizontal counter preload
866 + (1<<31) // Vertical counter preload
868 cregs
.c2datactl
= 1 // disable dither - propably not needed, we are already in YUV mode
869 + (1<<1) // Y filter enable
870 + (1<<2) // CbCr filter enable
871 + (0<<3) // subpicture enable (disabled)
872 + (0<<4) // NTSC enable (disabled - PAL)
873 + (0<<5) // C2 static subpicture enable (disabled)
874 + (0<<6) // C2 subpicture offset division (disabled)
875 + (0<<7) // 422 subformat selection !
876 /* + (0<<8) // 15 bpp high alpha
877 + (0<<9) // 15 bpp high alpha
878 + (0<<10) // 15 bpp high alpha
879 + (0<<11) // 15 bpp high alpha
880 + (0<<12) // 15 bpp high alpha
881 + (0<<13) // 15 bpp high alpha
882 + (0<<14) // 15 bpp high alpha
883 + (0<<15) // 15 bpp high alpha
884 + (0<<16) // 15 bpp low alpha
885 + (0<<17) // 15 bpp low alpha
886 + (0<<18) // 15 bpp low alpha
887 + (0<<19) // 15 bpp low alpha
888 + (0<<20) // 15 bpp low alpha
889 + (0<<21) // 15 bpp low alpha
890 + (0<<22) // 15 bpp low alpha
891 + (0<<23) // 15 bpp low alpha
892 + (0<<24) // static subpicture key
893 + (0<<25) // static subpicture key
894 + (0<<26) // static subpicture key
895 + (0<<27) // static subpicture key
896 + (0<<28) // static subpicture key
901 cregs
.c2ctl
= 1 // CRTC2 enabled
902 + (1<<1) // external clock
903 + (0<<2) // external clock
904 + (1<<3) // pixel clock enable - not needed ???
905 + (0<<4) // high prioryty req - acc to spec
906 + (1<<5) // high prioryty req
907 + (0<<6) // high prioryty req
909 + (1<<8) // high prioryty req max
910 + (0<<9) // high prioryty req max
911 + (0<<10) // high prioryty req max
913 + (0<<20) // CRTC1 to DAC
914 + (1<<21) // 422 mode
915 + (0<<22) // 422 mode
916 + (1<<23) // 422 mode
917 + (0<<24) // single chroma line for 420 mode - need to be corrected
918 + (0<<25) /*/ interlace mode - need to be corrected*/
919 + (0<<26) // field legth polariry
920 + (0<<27) // field identification polariry
921 + (1<<28) // VIDRST detection mode
922 + (0<<29) // VIDRST detection mode
923 + (1<<30) // Horizontal counter preload
924 + (1<<31) // Vertical counter preload
926 cregs
.c2datactl
= 1 // disable dither - propably not needed, we are already in YUV mode
927 + (1<<1) // Y filter enable
928 + (1<<2) // CbCr filter enable
929 + (0<<3) // subpicture enable (disabled)
930 + (0<<4) // NTSC enable (disabled - PAL)
931 + (0<<5) // C2 static subpicture enable (disabled)
932 + (0<<6) // C2 subpicture offset division (disabled)
933 + (0<<7) // 422 subformat selection !
934 /* + (0<<8) // 15 bpp high alpha
935 + (0<<9) // 15 bpp high alpha
936 + (0<<10) // 15 bpp high alpha
937 + (0<<11) // 15 bpp high alpha
938 + (0<<12) // 15 bpp high alpha
939 + (0<<13) // 15 bpp high alpha
940 + (0<<14) // 15 bpp high alpha
941 + (0<<15) // 15 bpp high alpha
942 + (0<<16) // 15 bpp low alpha
943 + (0<<17) // 15 bpp low alpha
944 + (0<<18) // 15 bpp low alpha
945 + (0<<19) // 15 bpp low alpha
946 + (0<<20) // 15 bpp low alpha
947 + (0<<21) // 15 bpp low alpha
948 + (0<<22) // 15 bpp low alpha
949 + (0<<23) // 15 bpp low alpha
950 + (0<<24) // static subpicture key
951 + (0<<25) // static subpicture key
952 + (0<<26) // static subpicture key
953 + (0<<27) // static subpicture key
954 + (0<<28) // static subpicture key
959 cregs
.c2ctl
= 1 // CRTC2 enabled
960 + (1<<1) // external clock
961 + (0<<2) // external clock
962 + (1<<3) // pixel clock enable - not needed ???
963 + (0<<4) // high prioryty req
964 + (1<<5) // high prioryty req
965 + (0<<6) // high prioryty req
966 + (1<<8) // high prioryty req max
967 + (0<<9) // high prioryty req max
968 + (0<<10) // high prioryty req max
969 + (0<<20) // CRTC1 to DAC
970 + (1<<21) // 422 mode
971 + (0<<22) // 422 mode
972 + (1<<23) // 422 mode
973 + (1<<24) // single chroma line for 420 mode - need to be corrected
974 + (1<<25) /*/ interlace mode - need to be corrected*/
975 + (0<<26) // field legth polariry
976 + (0<<27) // field identification polariry
977 + (1<<28) // VIDRST detection mode
978 + (0<<29) // VIDRST detection mode
979 + (1<<30) // Horizontal counter preload
980 + (1<<31) // Vertical counter preload
982 cregs
.c2datactl
= 0 // enable dither - propably not needed, we are already in YUV mode
983 + (1<<1) // Y filter enable
984 + (1<<2) // CbCr filter enable
985 + (0<<3) // subpicture enable (disabled)
986 + (0<<4) // NTSC enable (disabled - PAL)
987 + (0<<5) // C2 static subpicture enable (disabled)
988 + (0<<6) // C2 subpicture offset division (disabled)
989 + (1<<7) // 422 subformat selection !
990 /* + (0<<8) // 15 bpp high alpha
991 + (0<<9) // 15 bpp high alpha
992 + (0<<10) // 15 bpp high alpha
993 + (0<<11) // 15 bpp high alpha
994 + (0<<12) // 15 bpp high alpha
995 + (0<<13) // 15 bpp high alpha
996 + (0<<14) // 15 bpp high alpha
997 + (0<<15) // 15 bpp high alpha
998 + (0<<16) // 15 bpp low alpha
999 + (0<<17) // 15 bpp low alpha
1000 + (0<<18) // 15 bpp low alpha
1001 + (0<<19) // 15 bpp low alpha
1002 + (0<<20) // 15 bpp low alpha
1003 + (0<<21) // 15 bpp low alpha
1004 + (0<<22) // 15 bpp low alpha
1005 + (0<<23) // 15 bpp low alpha
1006 + (0<<24) // static subpicture key
1007 + (0<<25) // static subpicture key
1008 + (0<<26) // static subpicture key
1009 + (0<<27) // static subpicture key
1010 + (0<<28) // static subpicture key
1015 cregs
.c2hparam
=((hdispend
- 8) << 16) | (htotal
- 8);
1016 cregs
.c2hsync
=((hsyncend
- 8) << 16) | (hsyncstart
- 8);
1018 cregs
.c2misc
=0 // CRTCV2 656 togg f0
1019 +(0<<1) // CRTCV2 656 togg f0
1020 +(0<<2) // CRTCV2 656 togg f0
1021 +(0<<4) // CRTCV2 656 togg f1
1022 +(0<<5) // CRTCV2 656 togg f1
1023 +(0<<6) // CRTCV2 656 togg f1
1024 +(0<<8) // Hsync active high
1025 +(0<<9) // Vsync active high
1026 // 16-27 c2vlinecomp - nevim co tam dat
1028 cregs
.c2offset
=(regs
.bespitch
<< 1);
1030 cregs
.c2pl2startadd0
=regs
.besa1corg
;
1031 cregs
.c2pl3startadd0
=regs
.besa1c3org
;
1033 cregs
.c2preload
=(vsyncstart
<< 16) | (hsyncstart
); // from
1035 cregs
.c2spicstartadd0
=0; // not used
1037 cregs
.c2startadd0
=regs
.besa1org
;
1039 cregs
.c2subpiclut
=0; //not used
1041 cregs
.c2vparam
=((vdispend
- 1) << 16) | (vtotal
- 1);
1042 cregs
.c2vsync
=((vsyncend
- 1) << 16) | (vsyncstart
- 1);
1045 mga_vid_write_regs(0);
1049 static int mga_playback_on(void)
1051 if (mga_verbose
) printf("[mga] playback on\n");
1057 mga_vid_write_regs(0);
1068 static int mga_playback_off(void)
1070 if (mga_verbose
) printf("[mga] playback off\n");
1078 regs
.besglobctl
&= ~(1<<6); /* UYVY format selected */
1079 mga_vid_write_regs(0);
1084 static int mga_probe(int verbose
,int force
)
1086 pciinfo_t lst
[MAX_PCI_DEVICES
];
1087 unsigned int i
, num_pci
;
1090 if (verbose
) printf("[mga] probe\n");
1092 mga_verbose
= verbose
;
1096 err
= pci_scan(lst
, &num_pci
);
1099 printf("[mga] Error occurred during pci scan: %s\n", strerror(err
));
1104 printf("[mga] found %d pci devices\n", num_pci
);
1106 for (i
= 0; i
< num_pci
; i
++)
1108 if (mga_verbose
> 1)
1109 printf("[mga] pci[%d] vendor: %d device: %d\n",
1110 i
, lst
[i
].vendor
, lst
[i
].device
);
1111 if (lst
[i
].vendor
== VENDOR_MATROX
)
1114 if ((lst
[i
].command
& PCI_COMMAND_IO
) == 0)
1116 printf("[mga] Device is disabled, ignoring\n");
1120 switch(lst
[i
].device
)
1122 case DEVICE_MATROX_MGA_G550_AGP
:
1123 printf("[mga] Found MGA G550\n");
1126 case DEVICE_MATROX_MGA_G400_G450
:
1127 printf("[mga] Found MGA G400/G450\n");
1130 case DEVICE_MATROX_MGA_G200_AGP
:
1131 printf("[mga] Found MGA G200 AGP\n");
1134 case DEVICE_MATROX_MGA_G200
:
1135 printf("[mga] Found MGA G200 PCI\n");
1144 if (verbose
) printf("[mga] Can't find chip\n");
1150 memcpy(&pci_info
, &lst
[i
], sizeof(pciinfo_t
));
1152 mga_cap
.device_id
= pci_info
.device
; /* set device id in capabilites */
1157 static int mga_init(void)
1159 unsigned int card_option
= 0;
1162 if (mga_verbose
) printf("[mga] init\n");
1166 printf("Matrox MGA G200/G400/G450 YUV Video interface v2.01 (c) Aaron Holtzman & A'rpi\n");
1168 printf("Driver compiled with TV-out (second-head) support\n");
1173 printf("[mga] driver was not probed but is being initializing\n");
1177 #ifdef MGA_PCICONFIG_MEMDETECT
1178 pci_config_read(pci_info
.bus
, pci_info
.card
, pci_info
.func
,
1179 0x40, 4, &card_option
);
1180 if (mga_verbose
> 1) printf("[mga] OPTION word: 0x%08X mem: 0x%02X %s\n", card_option
,
1181 (card_option
>>10)&0x17, ((card_option
>>14)&1)?"SGRAM":"SDRAM");
1186 printf("[mga] RAMSIZE forced to %d MB\n", mga_ram_size
);
1190 #ifdef MGA_MEMORY_SIZE
1191 mga_ram_size
= MGA_MEMORY_SIZE
;
1192 printf("[mga] hard-coded RAMSIZE is %d MB\n", (unsigned int) mga_ram_size
);
1196 switch((card_option
>>10)&0x17)
1200 case 0x04: mga_ram_size
= 16; break;
1201 case 0x03: mga_ram_size
= 32; break;
1204 case 0x14: mga_ram_size
= 32; break;
1206 case 0x12: mga_ram_size
= 16; break;
1209 printf("[mga] Couldn't detect RAMSIZE, assuming 16MB!\n");
1214 switch((card_option
>>10)&0x17)
1216 default: mga_ram_size
= 8;
1220 printf("[mga] detected RAMSIZE is %d MB\n", (unsigned int) mga_ram_size
);
1226 if ((mga_ram_size
< 4) || (mga_ram_size
> 64))
1228 printf("[mga] invalid RAMSIZE: %d MB\n", mga_ram_size
);
1233 if (mga_verbose
> 1) printf("[mga] hardware addresses: mmio: %#x, framebuffer: %#x\n",
1234 pci_info
.base1
, pci_info
.base0
);
1236 mga_mmio_base
= map_phys_mem(pci_info
.base1
,0x4000);
1237 mga_mem_base
= map_phys_mem(pci_info
.base0
,mga_ram_size
*1024*1024);
1239 if (mga_verbose
> 1) printf("[mga] MMIO at %p, IRQ: %d, framebuffer: %p\n",
1240 mga_mmio_base
, mga_irq
, mga_mem_base
);
1241 err
= mtrr_set_type(pci_info
.base0
,mga_ram_size
*1024*1024,MTRR_TYPE_WRCOMB
);
1242 if(!err
) printf("[mga] Set write-combining type of video memory\n");
1246 int tmp
= request_irq(mga_irq
, mga_handle_irq
, SA_INTERRUPT
| SA_SHIRQ
, "Syncfb Time Base", &mga_irq
);
1249 printf("syncfb (mga): cannot register irq %d (Err: %d)\n", mga_irq
, tmp
);
1254 printf("syncfb (mga): registered irq %d\n", mga_irq
);
1259 printf("syncfb (mga): No valid irq was found\n");
1263 printf("syncfb (mga): IRQ disabled in mga_vid.c\n");
1270 static void mga_destroy(void)
1272 if (mga_verbose
) printf("[mga] destroy\n");
1274 /* FIXME turn off BES */
1277 regs
.besglobctl
&= ~(1<<6); // UYVY format selected
1278 mga_vid_write_regs(1);
1283 free_irq(mga_irq
, &mga_irq
);
1287 unmap_phys_mem(mga_mmio_base
, 0x4000);
1289 unmap_phys_mem(mga_mem_base
, mga_ram_size
);
1293 static int mga_query_fourcc(vidix_fourcc_t
*to
)
1295 if (mga_verbose
) printf("[mga] query fourcc (%x)\n", to
->fourcc
);
1306 to
->depth
= to
->flags
= 0;
1310 to
->depth
= VID_DEPTH_12BPP
|
1311 VID_DEPTH_15BPP
| VID_DEPTH_16BPP
|
1312 VID_DEPTH_24BPP
| VID_DEPTH_32BPP
;
1313 to
->flags
= VID_CAP_EXPAND
| VID_CAP_SHRINK
| VID_CAP_COLORKEY
;
1317 static int mga_get_caps(vidix_capability_t
*to
)
1319 memcpy(to
, &mga_cap
, sizeof(vidix_capability_t
));
1323 static int mga_get_gkeys(vidix_grkey_t
*grkey
)
1325 memcpy(grkey
, &mga_grkey
, sizeof(vidix_grkey_t
));
1329 static int mga_set_gkeys(const vidix_grkey_t
*grkey
)
1331 memcpy(&mga_grkey
, grkey
, sizeof(vidix_grkey_t
));
1332 mga_vid_write_regs(0);
1336 static int mga_set_eq( const vidix_video_eq_t
* eq
)
1338 /* contrast and brightness control isn't supported on G200 - alex */
1341 if (mga_verbose
) printf("[mga] equalizer isn't supported with G200\n");
1345 // only brightness&contrast are supported:
1346 if(!(eq
->cap
& (VEQ_CAP_BRIGHTNESS
|VEQ_CAP_CONTRAST
)))
1349 //regs.beslumactl = readl(mga_mmio_base + BESLUMACTL);
1350 if (eq
->cap
& VEQ_CAP_BRIGHTNESS
) {
1351 regs
.beslumactl
&= 0xFFFF;
1352 regs
.beslumactl
|= (eq
->brightness
*255/2000)<<16;
1354 if (eq
->cap
& VEQ_CAP_CONTRAST
) {
1355 regs
.beslumactl
&= 0xFFFF0000;
1356 regs
.beslumactl
|= (128+eq
->contrast
*255/2000)&0xFFFF;
1358 writel(regs
.beslumactl
,mga_mmio_base
+ BESLUMACTL
);
1363 static int mga_get_eq( vidix_video_eq_t
* eq
)
1365 /* contrast and brightness control isn't supported on G200 - alex */
1368 if (mga_verbose
) printf("[mga] equalizer isn't supported with G200\n");
1372 eq
->brightness
= (signed short int)(regs
.beslumactl
>> 16) * 1000 / 128;
1373 eq
->contrast
= (signed short int)(regs
.beslumactl
& 0xFFFF) * 1000 / 128 - 1000;
1374 eq
->cap
= VEQ_CAP_BRIGHTNESS
| VEQ_CAP_CONTRAST
;
1376 printf("MGA GET_EQ: br=%d c=%d \n",eq
->brightness
,eq
->contrast
);
1382 VDXDriver mga_drv
= {
1385 VDXDriver mga_crtc2_drv
= {
1391 .get_caps
= mga_get_caps
,
1392 .query_fourcc
= mga_query_fourcc
,
1394 .destroy
= mga_destroy
,
1395 .config_playback
= mga_config_playback
,
1396 .playback_on
= mga_playback_on
,
1397 .playback_off
= mga_playback_off
,
1398 .frame_sel
= mga_frame_select
,
1399 .get_eq
= mga_get_eq
,
1400 .set_eq
= mga_set_eq
,
1401 .get_gkey
= mga_get_gkeys
,
1402 .set_gkey
= mga_set_gkeys
,