Linux 3.2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / xgifb / vgatypes.h
blob9b939b75c3097c13e1721bfecb1583fec11330ae
1 #ifndef _VGATYPES_
2 #define _VGATYPES_
4 #include <linux/ioctl.h>
6 #ifndef XGI_VB_CHIP_TYPE
7 enum XGI_VB_CHIP_TYPE {
8 VB_CHIP_Legacy = 0,
9 VB_CHIP_301,
10 VB_CHIP_301B,
11 VB_CHIP_301LV,
12 VB_CHIP_302,
13 VB_CHIP_302B,
14 VB_CHIP_302LV,
15 VB_CHIP_301C,
16 VB_CHIP_302ELV,
17 VB_CHIP_UNKNOWN, /* other video bridge or no video bridge */
18 MAX_VB_CHIP
20 #endif
22 #ifndef XGI_LCD_TYPE
23 enum XGI_LCD_TYPE {
24 LCD_INVALID = 0,
25 LCD_320x480, /* FSTN, DSTN */
26 LCD_640x480,
27 LCD_640x480_2, /* FSTN, DSTN */
28 LCD_640x480_3, /* FSTN, DSTN */
29 LCD_800x600,
30 LCD_848x480,
31 LCD_1024x600,
32 LCD_1024x768,
33 LCD_1152x768,
34 LCD_1152x864,
35 LCD_1280x720,
36 LCD_1280x768,
37 LCD_1280x800,
38 LCD_1280x960,
39 LCD_1280x1024,
40 LCD_1400x1050,
41 LCD_1600x1200,
42 LCD_1680x1050,
43 LCD_1920x1440,
44 LCD_2048x1536,
45 LCD_CUSTOM,
46 LCD_UNKNOWN
48 #endif
50 struct xgi_hw_device_info {
51 unsigned long ulExternalChip; /* NO VB or other video bridge*/
52 /* if ujVBChipID = VB_CHIP_UNKNOWN, */
54 unsigned char *pjVirtualRomBase; /* ROM image */
56 void __iomem *pjVideoMemoryAddress;/* base virtual memory address */
57 /* of Linear VGA memory */
59 unsigned long ulVideoMemorySize; /* size, in bytes, of the
60 memory on the board */
62 unsigned char *pjIOAddress; /* base I/O address of VGA ports (0x3B0) */
64 unsigned char jChipType; /* Used to Identify Graphics Chip */
65 /* defined in the data structure type */
66 /* "XGI_CHIP_TYPE" */
68 unsigned char jChipRevision; /* Used to Identify Graphics
69 Chip Revision */
71 unsigned char ujVBChipID; /* the ID of video bridge */
72 /* defined in the data structure type */
73 /* "XGI_VB_CHIP_TYPE" */
75 unsigned long ulCRT2LCDType; /* defined in the data structure type */
78 /* Additional IOCTL for communication xgifb <> X driver */
79 /* If changing this, xgifb.h must also be changed (for xgifb) */
80 #endif