blob: ddf7776c295b61ef885de62824c04ad244661e09 [file] [log] [blame]
apatard@mandriva.comd7636e02010-05-19 10:44:14 +02001#ifndef _VGATYPES_
2#define _VGATYPES_
3
Peter Hueweb33704d2012-01-15 19:22:11 +01004#include <linux/fb.h> /* for struct fb_var_screeninfo for sis.h */
5#include "../../video/sis/vgatypes.h"
6#include "../../video/sis/sis.h" /* for LCD_TYPE */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +02007
apatard@mandriva.comd7636e02010-05-19 10:44:14 +02008#ifndef XGI_VB_CHIP_TYPE
Bill Pemberton621a6832010-06-17 13:10:48 -04009enum XGI_VB_CHIP_TYPE {
Kenji Toyamaeae5f022011-04-24 13:46:25 +080010 VB_CHIP_Legacy = 0,
11 VB_CHIP_301,
12 VB_CHIP_301B,
13 VB_CHIP_301LV,
14 VB_CHIP_302,
15 VB_CHIP_302B,
16 VB_CHIP_302LV,
17 VB_CHIP_301C,
18 VB_CHIP_302ELV,
19 VB_CHIP_UNKNOWN, /* other video bridge or no video bridge */
20 MAX_VB_CHIP
Bill Pemberton621a6832010-06-17 13:10:48 -040021};
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020022#endif
23
Kenji Toyamaeae5f022011-04-24 13:46:25 +080024struct xgi_hw_device_info {
25 unsigned long ulExternalChip; /* NO VB or other video bridge*/
26 /* if ujVBChipID = VB_CHIP_UNKNOWN, */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020027
Aaro Koskinenc44fa622011-09-13 22:49:33 +030028 void __iomem *pjVideoMemoryAddress;/* base virtual memory address */
Kenji Toyamaeae5f022011-04-24 13:46:25 +080029 /* of Linear VGA memory */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020030
Kenji Toyamaeae5f022011-04-24 13:46:25 +080031 unsigned long ulVideoMemorySize; /* size, in bytes, of the
32 memory on the board */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020033
Kenji Toyamaeae5f022011-04-24 13:46:25 +080034 unsigned char jChipType; /* Used to Identify Graphics Chip */
35 /* defined in the data structure type */
36 /* "XGI_CHIP_TYPE" */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020037
Kenji Toyamaeae5f022011-04-24 13:46:25 +080038 unsigned char jChipRevision; /* Used to Identify Graphics
39 Chip Revision */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020040
Kenji Toyamaeae5f022011-04-24 13:46:25 +080041 unsigned char ujVBChipID; /* the ID of video bridge */
42 /* defined in the data structure type */
43 /* "XGI_VB_CHIP_TYPE" */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020044
Kenji Toyamaeae5f022011-04-24 13:46:25 +080045 unsigned long ulCRT2LCDType; /* defined in the data structure type */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020046};
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020047
Lucas De Marchi25985ed2011-03-30 22:57:33 -030048/* Additional IOCTL for communication xgifb <> X driver */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020049/* If changing this, xgifb.h must also be changed (for xgifb) */
apatard@mandriva.comd7636e02010-05-19 10:44:14 +020050#endif
51