annotate vidix/mach64_vid.c @ 37107:3c5c93a30fb7

vidix: Replace printf with mp_msg - Make MPlayer more quiet when requested (e.g. when using -really-quiet) - Additionally change some minor capitalization and "bla:" to "[bla]" Patch-by: Arne Bochem >arneb.mp ccan de< Patch-also-OKed-by: Reimar
author al
date Sat, 17 May 2014 01:38:00 +0000
parents 945eab072c9d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1 /*
23046
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
2 * VIDIX driver for ATI Mach64 and 3DRage chipsets.
26718
051b2632f121 consistency cosmetics: Move some parts of file headers around; typo fixes.
diego
parents: 25859
diff changeset
3 *
23046
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
4 * Copyright (C) 2002 Nick Kurshev
26718
051b2632f121 consistency cosmetics: Move some parts of file headers around; typo fixes.
diego
parents: 25859
diff changeset
5 * This file is based on sources from
051b2632f121 consistency cosmetics: Move some parts of file headers around; typo fixes.
diego
parents: 25859
diff changeset
6 * GATOS (gatos.sf.net) and X11 (www.xfree86.org)
23046
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
7 *
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
8 * This file is part of MPlayer.
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
9 *
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
10 * MPlayer is free software; you can redistribute it and/or modify
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
11 * it under the terms of the GNU General Public License as published by
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
12 * the Free Software Foundation; either version 2 of the License, or
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
13 * (at your option) any later version.
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
14 *
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
15 * MPlayer is distributed in the hope that it will be useful,
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
18 * GNU General Public License for more details.
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
19 *
26719
3abd1629658b Use standard license headers.
diego
parents: 26718
diff changeset
20 * You should have received a copy of the GNU General Public License along
3abd1629658b Use standard license headers.
diego
parents: 26718
diff changeset
21 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
3abd1629658b Use standard license headers.
diego
parents: 26718
diff changeset
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23046
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
23 */
82216ef041e0 updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents: 22905
diff changeset
24
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
25 #include <errno.h>
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
26 #include <stdio.h>
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
27 #include <stdlib.h>
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
28 #include <string.h>
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
29 #include <math.h>
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
30 #include <inttypes.h>
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
31 #include <fcntl.h>
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
32
22905
f34e5d778267 consistent include paths for config.h et al.
diego
parents: 22901
diff changeset
33 #include "config.h"
f34e5d778267 consistent include paths for config.h et al.
diego
parents: 22901
diff changeset
34 #include "libavutil/common.h"
f34e5d778267 consistent include paths for config.h et al.
diego
parents: 22901
diff changeset
35 #include "mpbswap.h"
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
36 #include "vidix.h"
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
37 #include "fourcc.h"
22901
a7605669b114 renamed libdha.[hc] to dha.[hc]
ben
parents: 22900
diff changeset
38 #include "dha.h"
22900
a9e111b88c4a merged libdha and libvidix, moved all files from libdha to vidix directory
ben
parents: 22858
diff changeset
39 #include "pci_ids.h"
a9e111b88c4a merged libdha and libvidix, moved all files from libdha to vidix directory
ben
parents: 22858
diff changeset
40 #include "pci_names.h"
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
41 #include "mp_msg.h"
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
42
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
43 #include "mach64.h"
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
44
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
45 #define UNUSED(x) ((void)(x)) /**< Removes warning about unused arguments */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
46
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
47 static void *mach64_mmio_base = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
48 static void *mach64_mem_base = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
49 static int32_t mach64_overlay_offset = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
50 static uint32_t mach64_ram_size = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
51 static uint32_t mach64_buffer_base[10][3];
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
52 static int num_mach64_buffers=-1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
53 static int supports_planar=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
54 static int supports_lcd_v_stretch=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
55
23053
a74bda857a3c declare variable as static
ben
parents: 23048
diff changeset
56 static pciinfo_t pci_info;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
57 static int probed = 0;
25859
e8af7338a462 Fix illegal identifiers, names starting with __ are reserved for the system.
diego
parents: 24126
diff changeset
58 static int verbosity = 0;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
59
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
60 #define VERBOSE_LEVEL 1
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
61
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
62 typedef struct bes_registers_s
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
63 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
64 /* base address of yuv framebuffer */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
65 uint32_t yuv_base;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
66 uint32_t fourcc;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
67 /* YUV BES registers */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
68 uint32_t reg_load_cntl;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
69 uint32_t scale_inc;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
70 uint32_t y_x_start;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
71 uint32_t y_x_end;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
72 uint32_t vid_buf_pitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
73 uint32_t height_width;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
74
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
75 uint32_t scale_cntl;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
76 uint32_t exclusive_horz;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
77 uint32_t auto_flip_cntl;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
78 uint32_t filter_cntl;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
79 uint32_t key_cntl;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
80 uint32_t test;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
81 /* Configurable stuff */
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
82
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
83 int brightness;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
84 int saturation;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
85
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
86 int ckey_on;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
87 uint32_t graphics_key_clr;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
88 uint32_t graphics_key_msk;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
89
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
90 int deinterlace_on;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
91 uint32_t deinterlace_pattern;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
92
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
93 } bes_registers_t;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
94
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
95 static bes_registers_t besr;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
96
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
97 typedef struct video_registers_s
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
98 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
99 const char * sname;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
100 uint32_t name;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
101 uint32_t value;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
102 }video_registers_t;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
103
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
104 /* Graphic keys */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
105 static vidix_grkey_t mach64_grkey;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
106
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
107 #define DECLARE_VREG(name) { #name, name, 0 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
108 static video_registers_t vregs[] =
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
109 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
110 DECLARE_VREG(OVERLAY_SCALE_INC),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
111 DECLARE_VREG(OVERLAY_Y_X_START),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
112 DECLARE_VREG(OVERLAY_Y_X_END),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
113 DECLARE_VREG(OVERLAY_SCALE_CNTL),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
114 DECLARE_VREG(OVERLAY_EXCLUSIVE_HORZ),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
115 DECLARE_VREG(OVERLAY_EXCLUSIVE_VERT),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
116 DECLARE_VREG(OVERLAY_TEST),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
117 DECLARE_VREG(SCALER_BUF_PITCH),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
118 DECLARE_VREG(SCALER_HEIGHT_WIDTH),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
119 DECLARE_VREG(SCALER_BUF0_OFFSET),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
120 DECLARE_VREG(SCALER_BUF0_OFFSET_U),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
121 DECLARE_VREG(SCALER_BUF0_OFFSET_V),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
122 DECLARE_VREG(SCALER_BUF1_OFFSET),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
123 DECLARE_VREG(SCALER_BUF1_OFFSET_U),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
124 DECLARE_VREG(SCALER_BUF1_OFFSET_V),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
125 DECLARE_VREG(SCALER_H_COEFF0),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
126 DECLARE_VREG(SCALER_H_COEFF1),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
127 DECLARE_VREG(SCALER_H_COEFF2),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
128 DECLARE_VREG(SCALER_H_COEFF3),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
129 DECLARE_VREG(SCALER_H_COEFF4),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
130 DECLARE_VREG(SCALER_COLOUR_CNTL),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
131 DECLARE_VREG(SCALER_THRESHOLD),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
132 DECLARE_VREG(VIDEO_FORMAT),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
133 DECLARE_VREG(VIDEO_CONFIG),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
134 DECLARE_VREG(VIDEO_SYNC_TEST),
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
135 DECLARE_VREG(VIDEO_SYNC_TEST_B)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
136 };
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
137
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
138 /* have to restore it on exit */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
139 static uint32_t SAVED_OVERLAY_GRAPHICS_KEY_CLR;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
140
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
141 /* VIDIX exports */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
142
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
143 /* MMIO space*/
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
144 #define GETREG(TYPE,PTR,OFFZ) (*((volatile TYPE*)((PTR)+(OFFZ))))
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
145 #define SETREG(TYPE,PTR,OFFZ,VAL) (*((volatile TYPE*)((PTR)+(OFFZ))))=VAL
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
146
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
147 #define INREG8(addr) GETREG(uint8_t,(uint8_t *)mach64_mmio_base,((addr)^0x100)<<2)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
148 #define OUTREG8(addr,val) SETREG(uint8_t,(uint8_t *)mach64_mmio_base,((addr)^0x100)<<2,val)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
149
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
150 static inline uint32_t INREG (uint32_t addr) {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
151 uint32_t tmp = GETREG(uint32_t,(uint8_t *)mach64_mmio_base,((addr)^0x100)<<2);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
152 return le2me_32(tmp);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
153 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
154 #define OUTREG(addr,val) SETREG(uint32_t,(uint8_t *)mach64_mmio_base,((addr)^0x100)<<2,le2me_32(val))
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
155
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
156 #define OUTREGP(addr,val,mask) \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
157 do { \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
158 unsigned int _tmp = INREG(addr); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
159 _tmp &= (mask); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
160 _tmp |= (val); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
161 OUTREG(addr, _tmp); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
162 } while (0)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
163
34653
958431e2cde0 Make inline keyword handling consistent.
diego
parents: 33323
diff changeset
164 static inline int ATIGetMach64LCDReg(int _Index)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
165 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
166 OUTREG8(LCD_INDEX, _Index);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
167 return INREG(LCD_DATA);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
168 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
169
34653
958431e2cde0 Make inline keyword handling consistent.
diego
parents: 33323
diff changeset
170 static inline uint32_t INPLL(uint32_t addr)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
171 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
172 uint32_t res;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
173 uint32_t in;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
174
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
175 in= INREG(CLOCK_CNTL);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
176 in &= ~((PLL_WR_EN | PLL_ADDR)); //clean some stuff
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
177 OUTREG(CLOCK_CNTL, in | (addr<<10));
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
178
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
179 /* read the register value */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
180 res = (INREG(CLOCK_CNTL)>>16)&0xFF;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
181 return res;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
182 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
183
34653
958431e2cde0 Make inline keyword handling consistent.
diego
parents: 33323
diff changeset
184 static inline void OUTPLL(uint32_t addr, uint32_t val)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
185 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
186 //FIXME buggy but its not used
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
187 /* write addr byte */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
188 OUTREG8(CLOCK_CNTL + 1, (addr << 2) | PLL_WR_EN);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
189 /* write the register value */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
190 OUTREG(CLOCK_CNTL + 2, val);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
191 OUTREG8(CLOCK_CNTL + 1, (addr << 2) & ~PLL_WR_EN);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
192 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
193
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
194 #define OUTPLLP(addr,val,mask) \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
195 do { \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
196 unsigned int _tmp = INPLL(addr); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
197 _tmp &= (mask); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
198 _tmp |= (val); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
199 OUTPLL(addr, _tmp); \
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
200 } while (0)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
201
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
202 static void mach64_fifo_wait(unsigned n)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
203 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
204 while ((INREG(FIFO_STAT) & 0xffff) > ((uint32_t)(0x8000 >> n)));
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
205 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
206
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
207 static void mach64_wait_for_idle( void )
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
208 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
209 mach64_fifo_wait(16);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
210 while ((INREG(GUI_STAT) & 1)!= 0);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
211 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
212
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
213 static void mach64_wait_vsync( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
214 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
215 int i;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
216
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
217 for(i=0; i<2000000; i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
218 if( (INREG(CRTC_INT_CNTL)&CRTC_VBLANK)==0 ) break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
219 for(i=0; i<2000000; i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
220 if( (INREG(CRTC_INT_CNTL)&CRTC_VBLANK) ) break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
221
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
222 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
223
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
224 static vidix_capability_t mach64_cap =
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
225 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
226 "BES driver for Mach64/3DRage cards",
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
227 "Nick Kurshev and Michael Niedermayer",
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
228 TYPE_OUTPUT,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
229 { 0, 0, 0, 0 },
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
230 2048,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
231 2048,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
232 4,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
233 4,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
234 -1,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
235 FLAG_UPSCALER|FLAG_DOWNSCALER,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
236 VENDOR_ATI,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
237 -1,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
238 { 0, 0, 0, 0 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
239 };
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
240
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
241 static uint32_t mach64_vid_get_dbpp( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
242 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
243 uint32_t dbpp,retval;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
244 dbpp = (INREG(CRTC_GEN_CNTL)>>8)& 0x7;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
245 switch(dbpp)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
246 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
247 case 1: retval = 4; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
248 case 2: retval = 8; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
249 case 3: retval = 15; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
250 case 4: retval = 16; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
251 case 5: retval = 24; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
252 default: retval=32; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
253 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
254 return retval;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
255 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
256
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
257 static int mach64_is_dbl_scan( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
258 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
259 return INREG(CRTC_GEN_CNTL) & CRTC_DBL_SCAN_EN;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
260 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
261
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
262 static int mach64_is_interlace( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
263 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
264 return INREG(CRTC_GEN_CNTL) & CRTC_INTERLACE_EN;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
265 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
266
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
267 static uint32_t mach64_get_xres( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
268 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
269 /* FIXME: currently we extract that from CRTC!!!*/
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
270 uint32_t xres,h_total;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
271 h_total = INREG(CRTC_H_TOTAL_DISP);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
272 xres = (h_total >> 16) & 0xffff;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
273 return (xres + 1)*8;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
274 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
275
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
276 static uint32_t mach64_get_yres( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
277 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
278 /* FIXME: currently we extract that from CRTC!!!*/
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
279 uint32_t yres,v_total;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
280 v_total = INREG(CRTC_V_TOTAL_DISP);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
281 yres = (v_total >> 16) & 0xffff;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
282 return yres + 1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
283 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
284
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
285 // returns the verical stretch factor in 16.16
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
286 static int mach64_get_vert_stretch(void)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
287 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
288 int lcd_index;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
289 int vert_stretching;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
290 int ext_vert_stretch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
291 int ret;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
292 int yres= mach64_get_yres();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
293
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
294 if(!supports_lcd_v_stretch){
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
295 if(verbosity > 0) mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] vertical stretching not supported\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
296 return 1<<16;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
297 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
298
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
299 lcd_index= INREG(LCD_INDEX);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
300
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
301 vert_stretching= ATIGetMach64LCDReg(LCD_VERT_STRETCHING);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
302 if(!(vert_stretching&VERT_STRETCH_EN)) ret= 1<<16;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
303 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
304 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
305 int panel_size;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
306
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
307 ext_vert_stretch= ATIGetMach64LCDReg(LCD_EXT_VERT_STRETCH);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
308 panel_size= (ext_vert_stretch&VERT_PANEL_SIZE)>>11;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
309 panel_size++;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
310
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
311 ret= ((yres<<16) + (panel_size>>1))/panel_size;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
312 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
313
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
314 // lcd_gen_ctrl = ATIGetMach64LCDReg(LCD_GEN_CNTL);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
315
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
316 OUTREG(LCD_INDEX, lcd_index);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
317
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
318 if(verbosity > 0) mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] vertical stretching factor= %d\n", ret);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
319
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
320 return ret;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
321 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
322
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
323 static void mach64_vid_make_default(void)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
324 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
325 mach64_fifo_wait(5);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
326 OUTREG(SCALER_COLOUR_CNTL,0x00101000);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
327
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
328 besr.ckey_on=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
329 besr.graphics_key_msk=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
330 besr.graphics_key_clr=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
331
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
332 OUTREG(OVERLAY_GRAPHICS_KEY_MSK, besr.graphics_key_msk);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
333 OUTREG(OVERLAY_GRAPHICS_KEY_CLR, besr.graphics_key_clr);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
334 OUTREG(OVERLAY_KEY_CNTL,VIDEO_KEY_FN_TRUE|GRAPHIC_KEY_FN_EQ|CMP_MIX_AND);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
335
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
336 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
337
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
338 static void mach64_vid_dump_regs( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
339 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
340 size_t i;
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
341 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] *** Begin of DRIVER variables dump ***\n");
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
342 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] mach64_mmio_base=%p\n",mach64_mmio_base);
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
343 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] mach64_mem_base=%p\n",mach64_mem_base);
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
344 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] mach64_overlay_off=%08X\n",mach64_overlay_offset);
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
345 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] mach64_ram_size=%08X\n",mach64_ram_size);
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
346 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] video mode: %ux%u@%u\n",mach64_get_xres(),mach64_get_yres(),mach64_vid_get_dbpp());
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
347 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] *** Begin of OV0 registers dump ***\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
348 for(i=0;i<sizeof(vregs)/sizeof(video_registers_t);i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
349 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
350 mach64_wait_for_idle();
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
351 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] %s = %08X\n",vregs[i].sname,INREG(vregs[i].name));
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
352 }
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
353 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] *** End of OV0 registers dump ***\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
354 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
355
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
356
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
357 static unsigned short ati_card_ids[] =
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
358 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
359 DEVICE_ATI_215CT_MACH64_CT,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
360 DEVICE_ATI_210888CX_MACH64_CX,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
361 DEVICE_ATI_210888ET_MACH64_ET,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
362 DEVICE_ATI_MACH64_VT,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
363 DEVICE_ATI_210888GX_MACH64_GX,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
364 DEVICE_ATI_264LT_MACH64_LT,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
365 DEVICE_ATI_264VT_MACH64_VT,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
366 DEVICE_ATI_264VT3_MACH64_VT3,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
367 DEVICE_ATI_264VT4_MACH64_VT4,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
368 /**/
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
369 DEVICE_ATI_3D_RAGE_PRO,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
370 DEVICE_ATI_3D_RAGE_PRO2,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
371 DEVICE_ATI_3D_RAGE_PRO3,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
372 DEVICE_ATI_3D_RAGE_PRO4,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
373 DEVICE_ATI_RAGE_XC,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
374 DEVICE_ATI_RAGE_XL_AGP,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
375 DEVICE_ATI_RAGE_XC_AGP,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
376 DEVICE_ATI_RAGE_XL,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
377 DEVICE_ATI_3D_RAGE_PRO5,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
378 DEVICE_ATI_3D_RAGE_PRO6,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
379 DEVICE_ATI_RAGE_XL2,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
380 DEVICE_ATI_RAGE_XC2,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
381 DEVICE_ATI_3D_RAGE_I_II,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
382 DEVICE_ATI_3D_RAGE_II,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
383 DEVICE_ATI_3D_RAGE_IIC,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
384 DEVICE_ATI_3D_RAGE_IIC2,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
385 DEVICE_ATI_3D_RAGE_IIC3,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
386 DEVICE_ATI_3D_RAGE_IIC4,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
387 DEVICE_ATI_3D_RAGE_LT,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
388 DEVICE_ATI_3D_RAGE_LT2,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
389 DEVICE_ATI_3D_RAGE_LT_G,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
390 DEVICE_ATI_3D_RAGE_LT3,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
391 DEVICE_ATI_RAGE_MOBILITY_P_M,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
392 DEVICE_ATI_RAGE_MOBILITY_L,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
393 DEVICE_ATI_3D_RAGE_LT4,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
394 DEVICE_ATI_3D_RAGE_LT5,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
395 DEVICE_ATI_RAGE_MOBILITY_P_M2,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
396 DEVICE_ATI_RAGE_MOBILITY_L2
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
397 };
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
398
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
399 static int find_chip(unsigned chip_id)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
400 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
401 unsigned i;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
402 for(i = 0;i < sizeof(ati_card_ids)/sizeof(unsigned short);i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
403 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
404 if(chip_id == ati_card_ids[i]) return i;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
405 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
406 return -1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
407 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
408
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
409 static int mach64_probe(int verbose,int force)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
410 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
411 pciinfo_t lst[MAX_PCI_DEVICES];
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
412 unsigned i,num_pci;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
413 int err;
25859
e8af7338a462 Fix illegal identifiers, names starting with __ are reserved for the system.
diego
parents: 24126
diff changeset
414 verbosity = verbose;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
415 err = pci_scan(lst,&num_pci);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
416 if(err)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
417 {
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
418 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Error occurred during pci scan: %s\n",strerror(err));
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
419 return err;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
420 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
421 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
422 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
423 err = ENXIO;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
424 for(i=0;i<num_pci;i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
425 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
426 if(lst[i].vendor == VENDOR_ATI)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
427 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
428 int idx;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
429 const char *dname;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
430 idx = find_chip(lst[i].device);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
431 if(idx == -1 && force == PROBE_NORMAL) continue;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
432 dname = pci_device_name(VENDOR_ATI,lst[i].device);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
433 dname = dname ? dname : "Unknown chip";
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
434 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Found chip: %s\n",dname);
23167
2ab3eac7f6da synced with upstream vidix, prevented some drivers to work on some configs/archs
ben
parents: 23060
diff changeset
435 #if 0
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
436 if ((lst[i].command & PCI_COMMAND_IO) == 0)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
437 {
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
438 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Device is disabled, ignoring\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
439 continue;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
440 }
23167
2ab3eac7f6da synced with upstream vidix, prevented some drivers to work on some configs/archs
ben
parents: 23060
diff changeset
441 #endif
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
442 if(force > PROBE_NORMAL)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
443 {
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
444 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Driver was forced. Was found %sknown chip\n",idx == -1 ? "un" : "");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
445 if(idx == -1)
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
446 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Assuming it as Mach64\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
447 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
448 mach64_cap.device_id = lst[i].device;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
449 err = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
450 memcpy(&pci_info,&lst[i],sizeof(pciinfo_t));
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
451 probed=1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
452 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
453 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
454 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
455 }
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
456 if(err && verbose) mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Can't find chip\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
457 return err;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
458 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
459
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
460 static void reset_regs( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
461 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
462 size_t i;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
463 for(i=0;i<sizeof(vregs)/sizeof(video_registers_t);i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
464 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
465 mach64_fifo_wait(2);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
466 OUTREG(vregs[i].name,0);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
467 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
468 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
469
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
470
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
471 static int mach64_init(void)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
472 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
473 int err;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
474 if(!probed)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
475 {
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
476 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Driver was not probed but is being initializing\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
477 return EINTR;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
478 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
479
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
480 if((mach64_mmio_base = map_phys_mem(pci_info.base2,0x1000))==(void *)-1) return ENOMEM;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
481 mach64_wait_for_idle();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
482 mach64_ram_size = INREG(MEM_CNTL) & CTL_MEM_SIZEB;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
483 if (mach64_ram_size < 8) mach64_ram_size = (mach64_ram_size + 1) * 512;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
484 else if (mach64_ram_size < 12) mach64_ram_size = (mach64_ram_size - 3) * 1024;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
485 else mach64_ram_size = (mach64_ram_size - 7) * 2048;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
486 mach64_ram_size *= 0x400; /* KB -> bytes */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
487 if((mach64_mem_base = map_phys_mem(pci_info.base0,mach64_ram_size))==(void *)-1) return ENOMEM;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
488 memset(&besr,0,sizeof(bes_registers_t));
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
489 mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Video memory = %uMb\n",mach64_ram_size/0x100000);
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
490 err = mtrr_set_type(pci_info.base0,mach64_ram_size,MTRR_TYPE_WRCOMB);
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
491 if(!err) mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Set write-combining type of video memory\n");
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
492
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
493 /* save this */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
494 mach64_wait_for_idle();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
495 SAVED_OVERLAY_GRAPHICS_KEY_CLR = INREG(OVERLAY_GRAPHICS_KEY_CLR);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
496
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
497 /* check if planar formats are supported */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
498 supports_planar=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
499 mach64_wait_for_idle();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
500 mach64_fifo_wait(2);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
501 if(INREG(SCALER_BUF0_OFFSET_U)) supports_planar=1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
502 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
503 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
504 OUTREG(SCALER_BUF0_OFFSET_U, -1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
505
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
506 mach64_wait_vsync();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
507 mach64_wait_for_idle();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
508 mach64_fifo_wait(2);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
509
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
510 if(INREG(SCALER_BUF0_OFFSET_U)) supports_planar=1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
511 }
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
512 if(supports_planar) mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Planar YUV formats are supported :)\n");
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
513 else mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] Planar YUV formats are not supported :(\n");
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
514
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
515 if( mach64_cap.device_id==DEVICE_ATI_RAGE_MOBILITY_P_M
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
516 || mach64_cap.device_id==DEVICE_ATI_RAGE_MOBILITY_P_M2
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
517 || mach64_cap.device_id==DEVICE_ATI_RAGE_MOBILITY_L
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
518 || mach64_cap.device_id==DEVICE_ATI_RAGE_MOBILITY_L2)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
519 supports_lcd_v_stretch=1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
520 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
521 supports_lcd_v_stretch=0;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
522
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
523 reset_regs();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
524 mach64_vid_make_default();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
525
25859
e8af7338a462 Fix illegal identifiers, names starting with __ are reserved for the system.
diego
parents: 24126
diff changeset
526 if(verbosity > VERBOSE_LEVEL) mach64_vid_dump_regs();
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
527 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
528 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
529
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
530 static void mach64_destroy(void)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
531 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
532 /*restore this*/
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
533 mach64_wait_for_idle();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
534 OUTREG(OVERLAY_GRAPHICS_KEY_CLR,SAVED_OVERLAY_GRAPHICS_KEY_CLR);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
535
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
536 unmap_phys_mem(mach64_mem_base,mach64_ram_size);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
537 unmap_phys_mem(mach64_mmio_base,0x1000);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
538 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
539
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
540 static int mach64_get_caps(vidix_capability_t *to)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
541 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
542 memcpy(to, &mach64_cap, sizeof(vidix_capability_t));
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
543 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
544 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
545
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
546 static unsigned mach64_query_pitch(unsigned fourcc,const vidix_yuv_t *spitch)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
547 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
548 unsigned pitch,spy,spv,spu;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
549 spy = spv = spu = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
550 switch(spitch->y)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
551 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
552 case 16:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
553 case 32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
554 case 64:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
555 case 128:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
556 case 256: spy = spitch->y; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
557 default: break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
558 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
559 switch(spitch->u)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
560 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
561 case 16:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
562 case 32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
563 case 64:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
564 case 128:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
565 case 256: spu = spitch->u; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
566 default: break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
567 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
568 switch(spitch->v)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
569 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
570 case 16:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
571 case 32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
572 case 64:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
573 case 128:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
574 case 256: spv = spitch->v; break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
575 default: break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
576 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
577 switch(fourcc)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
578 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
579 /* 4:2:0 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
580 case IMGFMT_IYUV:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
581 case IMGFMT_YV12:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
582 case IMGFMT_I420:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
583 if(spy > 16 && spu == spy/2 && spv == spy/2) pitch = spy;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
584 else pitch = 32;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
585 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
586 case IMGFMT_YVU9:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
587 if(spy > 32 && spu == spy/4 && spv == spy/4) pitch = spy;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
588 else pitch = 64;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
589 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
590 default:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
591 if(spy >= 16) pitch = spy;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
592 else pitch = 16;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
593 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
594 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
595 return pitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
596 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
597
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
598 static void mach64_compute_framesize(vidix_playback_t *info)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
599 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
600 unsigned pitch,awidth;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
601 pitch = mach64_query_pitch(info->fourcc,&info->src.pitch);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
602 switch(info->fourcc)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
603 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
604 case IMGFMT_I420:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
605 case IMGFMT_YV12:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
606 case IMGFMT_IYUV:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
607 awidth = (info->src.w + (pitch-1)) & ~(pitch-1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
608 info->frame_size = awidth*(info->src.h+info->src.h/2);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
609 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
610 case IMGFMT_YVU9:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
611 awidth = (info->src.w + (pitch-1)) & ~(pitch-1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
612 info->frame_size = awidth*(info->src.h+info->src.h/8);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
613 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
614 // case IMGFMT_RGB32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
615 case IMGFMT_BGR32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
616 awidth = (info->src.w*4 + (pitch-1)) & ~(pitch-1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
617 info->frame_size = (awidth*info->src.h);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
618 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
619 /* YUY2 YVYU, RGB15, RGB16 */
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
620 default:
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
621 awidth = (info->src.w*2 + (pitch-1)) & ~(pitch-1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
622 info->frame_size = (awidth*info->src.h);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
623 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
624 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
625 info->frame_size+=256; // so we have some space for alignment & such
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
626 info->frame_size&=~16;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
627 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
628
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
629 static void mach64_vid_stop_video( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
630 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
631 mach64_fifo_wait(14);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
632 OUTREG(OVERLAY_SCALE_CNTL, 0x80000000);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
633 OUTREG(OVERLAY_EXCLUSIVE_HORZ, 0);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
634 OUTREG(OVERLAY_EXCLUSIVE_VERT, 0);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
635 OUTREG(SCALER_H_COEFF0, 0x00002000);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
636 OUTREG(SCALER_H_COEFF1, 0x0D06200D);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
637 OUTREG(SCALER_H_COEFF2, 0x0D0A1C0D);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
638 OUTREG(SCALER_H_COEFF3, 0x0C0E1A0C);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
639 OUTREG(SCALER_H_COEFF4, 0x0C14140C);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
640 OUTREG(VIDEO_FORMAT, 0xB000B);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
641 OUTREG(OVERLAY_TEST, 0x0);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
642 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
643
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
644 static void mach64_vid_display_video( void )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
645 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
646 mach64_fifo_wait(14);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
647
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
648 OUTREG(OVERLAY_Y_X_START, besr.y_x_start);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
649 OUTREG(OVERLAY_Y_X_END, besr.y_x_end);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
650 OUTREG(OVERLAY_SCALE_INC, besr.scale_inc);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
651 OUTREG(SCALER_BUF_PITCH, besr.vid_buf_pitch);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
652 OUTREG(SCALER_HEIGHT_WIDTH, besr.height_width);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
653 OUTREG(SCALER_BUF0_OFFSET, mach64_buffer_base[0][0]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
654 OUTREG(SCALER_BUF0_OFFSET_U, mach64_buffer_base[0][1]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
655 OUTREG(SCALER_BUF0_OFFSET_V, mach64_buffer_base[0][2]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
656 OUTREG(SCALER_BUF1_OFFSET, mach64_buffer_base[0][0]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
657 OUTREG(SCALER_BUF1_OFFSET_U, mach64_buffer_base[0][1]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
658 OUTREG(SCALER_BUF1_OFFSET_V, mach64_buffer_base[0][2]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
659 mach64_wait_vsync();
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
660
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
661 mach64_fifo_wait(4);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
662 OUTREG(OVERLAY_SCALE_CNTL, 0xC4000003);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
663 // OVERLAY_SCALE_CNTL bits & what they seem to affect
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
664 // bit 0 no effect
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
665 // bit 1 yuv2rgb coeff related
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
666 // bit 2 horizontal interpolation if 0
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
667 // bit 3 vertical interpolation if 0
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
668 // bit 4 chroma encoding (0-> 128=neutral / 1-> 0->neutral)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
669 // bit 5-6 gamma correction
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
670 // bit 7 nothing visible if set
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
671 // bit 8-27 no effect
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
672 // bit 28-31 nothing interresting just crashed my system when i played with them :(
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
673
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
674 mach64_wait_for_idle();
33323
d4af28753ec8 Remove unused variables.
reimar
parents: 29263
diff changeset
675 INREG(VIDEO_FORMAT);
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
676
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
677 // Bits 16-19 seem to select the format
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
678 // 0x0 dunno behaves strange
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
679 // 0x1 dunno behaves strange
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
680 // 0x2 dunno behaves strange
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
681 // 0x3 BGR15
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
682 // 0x4 BGR16
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
683 // 0x5 BGR16 (hmm, that need investigation, 2 BGR16 formats, i guess 1 will have only 5bits for green)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
684 // 0x6 BGR32
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
685 // 0x7 BGR32 with somehow mixed even / odd pixels ?
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
686 // 0x8 YYYYUVUV
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
687 // 0x9 YVU9
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
688 // 0xA YV12
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
689 // 0xB YUY2
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
690 // 0xC UYVY
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
691 // 0xD UYVY (no difference is visible if i switch between C/D for every even/odd frame)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
692 // 0xE dunno behaves strange
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
693 // 0xF dunno behaves strange
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
694 // Bit 28 all values are assumed to be 7 bit with chroma=64 for black (tested with YV12 & YUY2)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
695 // the remaining bits seem to have no effect
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
696
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
697
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
698 switch(besr.fourcc)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
699 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
700 /* BGR formats */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
701 case IMGFMT_BGR15: OUTREG(VIDEO_FORMAT, 0x00030000); break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
702 case IMGFMT_BGR16: OUTREG(VIDEO_FORMAT, 0x00040000); break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
703 case IMGFMT_BGR32: OUTREG(VIDEO_FORMAT, 0x00060000); break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
704 /* 4:2:0 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
705 case IMGFMT_IYUV:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
706 case IMGFMT_I420:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
707 case IMGFMT_YV12: OUTREG(VIDEO_FORMAT, 0x000A0000); break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
708
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
709 case IMGFMT_YVU9: OUTREG(VIDEO_FORMAT, 0x00090000); break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
710 /* 4:2:2 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
711 case IMGFMT_YVYU:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
712 case IMGFMT_UYVY: OUTREG(VIDEO_FORMAT, 0x000C0000); break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
713 case IMGFMT_YUY2:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
714 default: OUTREG(VIDEO_FORMAT, 0x000B0000); break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
715 }
25859
e8af7338a462 Fix illegal identifiers, names starting with __ are reserved for the system.
diego
parents: 24126
diff changeset
716 if(verbosity > VERBOSE_LEVEL) mach64_vid_dump_regs();
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
717 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
718
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
719 static int mach64_vid_init_video( vidix_playback_t *config )
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
720 {
33323
d4af28753ec8 Remove unused variables.
reimar
parents: 29263
diff changeset
721 uint32_t src_w,src_h,dest_w,dest_h,pitch,h_inc,v_inc,left,top,ecp,y_pos;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
722 int is_420,best_pitch,mpitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
723 int src_offset_y, src_offset_u, src_offset_v;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
724 unsigned int i;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
725
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
726 mach64_vid_stop_video();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
727 /* warning, if left or top are != 0 this will fail, as the framesize is too small then */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
728 left = config->src.x;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
729 top = config->src.y;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
730 src_h = config->src.h;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
731 src_w = config->src.w;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
732 is_420 = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
733 if(config->fourcc == IMGFMT_YV12 ||
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
734 config->fourcc == IMGFMT_I420 ||
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
735 config->fourcc == IMGFMT_IYUV) is_420 = 1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
736 best_pitch = mach64_query_pitch(config->fourcc,&config->src.pitch);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
737 mpitch = best_pitch-1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
738 switch(config->fourcc)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
739 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
740 case IMGFMT_YVU9:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
741 /* 4:2:0 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
742 case IMGFMT_IYUV:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
743 case IMGFMT_YV12:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
744 case IMGFMT_I420: pitch = (src_w + mpitch) & ~mpitch;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
745 config->dest.pitch.y =
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
746 config->dest.pitch.u =
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
747 config->dest.pitch.v = best_pitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
748 besr.vid_buf_pitch= pitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
749 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
750 /* RGB 4:4:4:4 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
751 case IMGFMT_RGB32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
752 case IMGFMT_BGR32: pitch = (src_w*4 + mpitch) & ~mpitch;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
753 config->dest.pitch.y =
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
754 config->dest.pitch.u =
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
755 config->dest.pitch.v = best_pitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
756 besr.vid_buf_pitch= pitch>>2;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
757 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
758 /* 4:2:2 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
759 default: /* RGB15, RGB16, YVYU, UYVY, YUY2 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
760 pitch = ((src_w*2) + mpitch) & ~mpitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
761 config->dest.pitch.y =
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
762 config->dest.pitch.u =
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
763 config->dest.pitch.v = best_pitch;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
764 besr.vid_buf_pitch= pitch>>1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
765 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
766 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
767 dest_w = config->dest.w;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
768 dest_h = config->dest.h;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
769 besr.fourcc = config->fourcc;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
770 ecp = (INPLL(PLL_VCLK_CNTL) & PLL_ECP_DIV) >> 4;
23048
7973a6935234 removed useless code from vidix drivers
ben
parents: 23046
diff changeset
771
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
772 if(verbosity > 0) mp_msg(MSGT_VO, MSGL_STATUS, "[mach64] ecp: %d\n", ecp);
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
773 v_inc = src_h * mach64_get_vert_stretch();
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
774
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
775 if(mach64_is_interlace()) v_inc<<=1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
776 if(mach64_is_dbl_scan() ) v_inc>>=1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
777 v_inc>>=4; // convert 16.16 -> 20.12
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
778 v_inc/= dest_h;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
779
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
780 h_inc = (src_w << (12+ecp)) / dest_w;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
781 /* keep everything in 16.16 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
782 config->offsets[0] = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
783 for(i=1; i<config->num_frames; i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
784 config->offsets[i] = config->offsets[i-1] + config->frame_size;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
785
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
786 /*FIXME the left / top stuff is broken (= zoom a src rectangle from a larger one)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
787 1. the framesize isn't known as the outer src rectangle dimensions aren't known
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
788 2. the mach64 needs aligned addresses so it can't work anyway
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
789 -> so we could shift the outer buffer to compensate that but that would mean
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
790 alignment problems for the code which writes into it
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
791 */
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
792
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
793 if(is_420)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
794 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
795 config->offset.y= 0;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
796 config->offset.u= (pitch*src_h + 15)&~15;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
797 config->offset.v= (config->offset.u + (pitch*src_h>>2) + 15)&~15;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
798
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
799 if(besr.fourcc == IMGFMT_I420 || besr.fourcc == IMGFMT_IYUV)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
800 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
801 uint32_t tmp;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
802 tmp = config->offset.u;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
803 config->offset.u = config->offset.v;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
804 config->offset.v = tmp;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
805 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
806
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
807 src_offset_y= config->offset.y + top*pitch + left;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
808 src_offset_u= config->offset.u + (top*pitch>>2) + (left>>1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
809 src_offset_v= config->offset.v + (top*pitch>>2) + (left>>1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
810 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
811 else if(besr.fourcc == IMGFMT_YVU9)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
812 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
813 config->offset.y= 0;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
814 config->offset.u= (pitch*src_h + 15)&~15;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
815 config->offset.v= (config->offset.u + (pitch*src_h>>4) + 15)&~15;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
816
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
817 src_offset_y= config->offset.y + top*pitch + left;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
818 src_offset_u= config->offset.u + (top*pitch>>4) + (left>>1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
819 src_offset_v= config->offset.v + (top*pitch>>4) + (left>>1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
820 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
821 else if(besr.fourcc == IMGFMT_BGR32)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
822 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
823 config->offset.y = config->offset.u = config->offset.v = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
824 src_offset_y= src_offset_u= src_offset_v= top*pitch + (left << 2);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
825 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
826 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
827 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
828 config->offset.y = config->offset.u = config->offset.v = 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
829 src_offset_y= src_offset_u= src_offset_v= top*pitch + (left << 1);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
830 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
831
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
832 num_mach64_buffers= config->num_frames;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
833 for(i=0; i<config->num_frames; i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
834 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
835 mach64_buffer_base[i][0]= (mach64_overlay_offset + config->offsets[i] + src_offset_y)&~15;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
836 mach64_buffer_base[i][1]= (mach64_overlay_offset + config->offsets[i] + src_offset_u)&~15;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
837 mach64_buffer_base[i][2]= (mach64_overlay_offset + config->offsets[i] + src_offset_v)&~15;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
838 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
839
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
840 left = (left >> 16) & 15;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
841 besr.scale_inc = ( h_inc << 16 ) | v_inc;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
842 y_pos = config->dest.y;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
843 if(mach64_is_dbl_scan()) y_pos*=2;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
844 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
845 if(mach64_is_interlace()) y_pos/=2;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
846 besr.y_x_start = y_pos | (config->dest.x << 16);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
847 y_pos =config->dest.y + dest_h;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
848 if(mach64_is_dbl_scan()) y_pos*=2;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
849 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
850 if(mach64_is_interlace()) y_pos/=2;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
851 besr.y_x_end = y_pos | ((config->dest.x + dest_w) << 16);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
852 besr.height_width = ((src_w - left)<<16) | (src_h - top);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
853
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
854 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
855 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
856
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
857 static int is_supported_fourcc(uint32_t fourcc)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
858 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
859 switch(fourcc)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
860 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
861 case IMGFMT_YV12:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
862 case IMGFMT_I420:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
863 case IMGFMT_YVU9:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
864 case IMGFMT_IYUV:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
865 return supports_planar;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
866 case IMGFMT_YUY2:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
867 case IMGFMT_UYVY:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
868 case IMGFMT_BGR15:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
869 case IMGFMT_BGR16:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
870 case IMGFMT_BGR32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
871 return 1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
872 default:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
873 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
874 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
875 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
876
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
877 static int mach64_query_fourcc(vidix_fourcc_t *to)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
878 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
879 if(is_supported_fourcc(to->fourcc))
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
880 {
23060
91ad6d4d6a54 simplified depth definition
ben
parents: 23053
diff changeset
881 to->depth = VID_DEPTH_ALL;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
882 to->flags = VID_CAP_EXPAND | VID_CAP_SHRINK | VID_CAP_COLORKEY;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
883 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
884 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
885 return ENOSYS;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
886 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
887
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
888 static int mach64_config_playback(vidix_playback_t *info)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
889 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
890 if(!is_supported_fourcc(info->fourcc)) return ENOSYS;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
891
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
892 mach64_compute_framesize(info);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
893
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
894 if(info->num_frames>4) info->num_frames=4;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
895 for(;info->num_frames>0; info->num_frames--)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
896 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
897 mach64_overlay_offset = mach64_ram_size - info->frame_size*info->num_frames;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
898 mach64_overlay_offset &= 0xffff0000;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
899 if(mach64_overlay_offset>0) break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
900 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
901 if(info->num_frames <= 0) return EINVAL;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
902
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
903 info->dga_addr = (char *)mach64_mem_base + mach64_overlay_offset;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
904 mach64_vid_init_video(info);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
905 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
906 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
907
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
908 static int mach64_playback_on(void)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
909 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
910 mach64_vid_display_video();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
911 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
912 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
913
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
914 static int mach64_playback_off(void)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
915 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
916 mach64_vid_stop_video();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
917 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
918 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
919
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
920 static int mach64_frame_sel(unsigned int frame)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
921 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
922 uint32_t off[6];
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
923 int i;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
924 int last_frame= (frame-1+num_mach64_buffers) % num_mach64_buffers;
37107
3c5c93a30fb7 vidix: Replace printf with mp_msg
al
parents: 36634
diff changeset
925 //mp_msg(MSGT_VO, MSGL_STATUS, "Selecting frame %d\n", frame);
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
926 /*
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
927 buf3-5 always should point onto second buffer for better
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
928 deinterlacing and TV-in
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
929 */
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
930 if(num_mach64_buffers==1) return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
931
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
932 for(i=0; i<3; i++)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
933 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
934 off[i] = mach64_buffer_base[frame][i];
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
935 off[i+3]= mach64_buffer_base[last_frame][i];
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
936 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
937
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
938 mach64_wait_for_idle();
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
939 mach64_fifo_wait(7);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
940
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
941 OUTREG(SCALER_BUF0_OFFSET, off[0]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
942 OUTREG(SCALER_BUF0_OFFSET_U, off[1]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
943 OUTREG(SCALER_BUF0_OFFSET_V, off[2]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
944 OUTREG(SCALER_BUF1_OFFSET, off[3]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
945 OUTREG(SCALER_BUF1_OFFSET_U, off[4]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
946 OUTREG(SCALER_BUF1_OFFSET_V, off[5]);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
947 if(num_mach64_buffers==2) mach64_wait_vsync(); //only wait for vsync if we do double buffering
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 27079
diff changeset
948
25859
e8af7338a462 Fix illegal identifiers, names starting with __ are reserved for the system.
diego
parents: 24126
diff changeset
949 if(verbosity > VERBOSE_LEVEL) mach64_vid_dump_regs();
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
950 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
951 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
952
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
953 static vidix_video_eq_t equal =
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
954 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
955 VEQ_CAP_BRIGHTNESS | VEQ_CAP_SATURATION
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
956 ,
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
957 0, 0, 0, 0, 0, 0, 0, 0 };
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
958
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
959 static int mach64_get_eq( vidix_video_eq_t * eq)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
960 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
961 memcpy(eq,&equal,sizeof(vidix_video_eq_t));
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
962 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
963 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
964
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
965 static int mach64_set_eq( const vidix_video_eq_t * eq)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
966 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
967 int br,sat;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
968 if(eq->cap & VEQ_CAP_BRIGHTNESS) equal.brightness = eq->brightness;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
969 if(eq->cap & VEQ_CAP_CONTRAST) equal.contrast = eq->contrast;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
970 if(eq->cap & VEQ_CAP_SATURATION) equal.saturation = eq->saturation;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
971 if(eq->cap & VEQ_CAP_HUE) equal.hue = eq->hue;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
972 if(eq->cap & VEQ_CAP_RGB_INTENSITY)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
973 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
974 equal.red_intensity = eq->red_intensity;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
975 equal.green_intensity = eq->green_intensity;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
976 equal.blue_intensity = eq->blue_intensity;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
977 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
978 equal.flags = eq->flags;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
979 br = equal.brightness * 64 / 1000;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
980 if(br < -64) br = -64; if(br > 63) br = 63;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
981 sat = (equal.saturation + 1000) * 16 / 1000;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
982 if(sat < 0) sat = 0; if(sat > 31) sat = 31;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
983 OUTREG(SCALER_COLOUR_CNTL, (br & 0x7f) | (sat << 8) | (sat << 16));
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
984 return 0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
985 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
986
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
987 static int mach64_get_gkeys(vidix_grkey_t *grkey)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
988 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
989 memcpy(grkey, &mach64_grkey, sizeof(vidix_grkey_t));
26753
502f04b67653 cosmetics: Remove useless parentheses from return statements.
diego
parents: 26719
diff changeset
990 return 0;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
991 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
992
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
993 static int mach64_set_gkeys(const vidix_grkey_t *grkey)
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
994 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
995 memcpy(&mach64_grkey, grkey, sizeof(vidix_grkey_t));
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
996
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
997 if(mach64_grkey.ckey.op == CKEY_TRUE)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
998 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
999 besr.ckey_on=1;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1000
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1001 switch(mach64_vid_get_dbpp())
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1002 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1003 case 15:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1004 besr.graphics_key_msk=0x7FFF;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1005 besr.graphics_key_clr=
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1006 ((mach64_grkey.ckey.blue &0xF8)>>3)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1007 | ((mach64_grkey.ckey.green&0xF8)<<2)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1008 | ((mach64_grkey.ckey.red &0xF8)<<7);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1009 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1010 case 16:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1011 besr.graphics_key_msk=0xFFFF;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1012 besr.graphics_key_clr=
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1013 ((mach64_grkey.ckey.blue &0xF8)>>3)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1014 | ((mach64_grkey.ckey.green&0xFC)<<3)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1015 | ((mach64_grkey.ckey.red &0xF8)<<8);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1016 //besr.graphics_key_clr=le2me_32(besr.graphics_key_clr);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1017 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1018 case 24:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1019 besr.graphics_key_msk=0xFFFFFF;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1020 besr.graphics_key_clr=
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1021 ((mach64_grkey.ckey.blue &0xFF))
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1022 | ((mach64_grkey.ckey.green&0xFF)<<8)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1023 | ((mach64_grkey.ckey.red &0xFF)<<16);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1024 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1025 case 32:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1026 besr.graphics_key_msk=0xFFFFFF;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1027 besr.graphics_key_clr=
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1028 ((mach64_grkey.ckey.blue &0xFF))
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1029 | ((mach64_grkey.ckey.green&0xFF)<<8)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1030 | ((mach64_grkey.ckey.red &0xFF)<<16);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1031 break;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1032 default:
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1033 besr.ckey_on=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1034 besr.graphics_key_msk=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1035 besr.graphics_key_clr=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1036 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1037 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1038 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1039 {
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1040 besr.ckey_on=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1041 besr.graphics_key_msk=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1042 besr.graphics_key_clr=0;
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1043 }
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1044
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1045 mach64_fifo_wait(4);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1046 OUTREG(OVERLAY_GRAPHICS_KEY_MSK, besr.graphics_key_msk);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1047 OUTREG(OVERLAY_GRAPHICS_KEY_CLR, besr.graphics_key_clr);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1048 // OUTREG(OVERLAY_VIDEO_KEY_MSK, 0);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1049 // OUTREG(OVERLAY_VIDEO_KEY_CLR, 0);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1050 if(besr.ckey_on)
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1051 OUTREG(OVERLAY_KEY_CNTL,VIDEO_KEY_FN_TRUE|GRAPHIC_KEY_FN_EQ|CMP_MIX_AND);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1052 else
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1053 OUTREG(OVERLAY_KEY_CNTL,VIDEO_KEY_FN_TRUE|GRAPHIC_KEY_FN_TRUE|CMP_MIX_AND);
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1054
26753
502f04b67653 cosmetics: Remove useless parentheses from return statements.
diego
parents: 26719
diff changeset
1055 return 0;
22850
9a1e26fef45b Move driver files directly into the vidix directory.
diego
parents:
diff changeset
1056 }
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1057
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1058 VDXDriver mach64_drv = {
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1059 "mach64",
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1060 NULL,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1061 .probe = mach64_probe,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1062 .get_caps = mach64_get_caps,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1063 .query_fourcc = mach64_query_fourcc,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1064 .init = mach64_init,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1065 .destroy = mach64_destroy,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1066 .config_playback = mach64_config_playback,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1067 .playback_on = mach64_playback_on,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1068 .playback_off = mach64_playback_off,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1069 .frame_sel = mach64_frame_sel,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1070 .get_eq = mach64_get_eq,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1071 .set_eq = mach64_set_eq,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1072 .get_gkey = mach64_get_gkeys,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1073 .set_gkey = mach64_set_gkeys,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents: 22850
diff changeset
1074 };