2 * Matrox MGA G200/G400 YUV Video Interface module Version 0.1.0
3 * BES == Back End Scaler
5 * Copyright (C) 1999 Aaron Holtzman
7 * This file is part of mga_vid.
9 * mga_vid is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * mga_vid is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with mga_vid; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 typedef struct mga_vid_config_s
45 uint32_t capabilities
;
48 /* supported FOURCCs */
49 #define MGA_VID_FORMAT_YV12 0x32315659
50 #define MGA_VID_FORMAT_IYUV (('I'<<24)|('Y'<<16)|('U'<<8)|'V')
51 #define MGA_VID_FORMAT_I420 (('I'<<24)|('4'<<16)|('2'<<8)|'0')
52 #define MGA_VID_FORMAT_YUY2 (('Y'<<24)|('U'<<16)|('Y'<<8)|'2')
53 #define MGA_VID_FORMAT_UYVY (('U'<<24)|('Y'<<16)|('V'<<8)|'Y')
56 #define MGA_VID_GET_VERSION _IOR ('J', 1, uint32_t)
57 #define MGA_VID_CONFIG _IOWR('J', 2, mga_vid_config_t)
58 #define MGA_VID_ON _IO ('J', 3)
59 #define MGA_VID_OFF _IO ('J', 4)
60 #define MGA_VID_FSEL _IOW ('J', 5, uint32_t)
61 #define MGA_VID_GET_LUMA _IOR ('J', 6, uint32_t)
62 #define MGA_VID_SET_LUMA _IOW ('J', 7, uint32_t)
64 /* card identifiers */
65 #define MGA_G200 0x1234
66 #define MGA_G400 0x5678
67 // currently unused, G450 are mapped to MGA_G400
68 // #define MGA_G450 0x9ABC
69 #define MGA_G550 0xDEF0
71 /* version of the mga_vid_config struct */
72 #define MGA_VID_VERSION 0x0202
74 #endif /* MGA_VID_H */