source: rtems/c/src/lib/libbsp/i386/pc386/include/vbe3.h @ d78eac6

4.115
Last change on this file since d78eac6 was d78eac6, checked in by Jan Dolezal <dolezj21@…>, on 12/03/14 at 23:56:38

i386/pc386: cammelCase (struct and function names) to underscores, typedefed structs, break >80 chars lines, removed newlines at EOFs

fb_vesa_rm.c: removed inline from functions declared in fb_vesa.h

removed unnecessary printks in the end of patch

edid.h, vbe3.h: switched from custom *PACKED_ATTRIBUTE at the structs to the

RTEMS_COMPILER_PACKED_ATTRIBUTE for easier maintainability
of doxygen

  • Property mode set to 100644
File size: 20.6 KB
RevLine 
[c5a74946]1/**
2 * @file vbe3.h
3 *
4 * @ingroup i386_pc386
5 *
6 * @brief VESA Bios Extension definitions.
7 */
8
9/*
10 * vbe3.h  - This file contains definitions for constants related to VBE.
11 *          More information can be found at
12 *      <http://www.vesa.org/vesa-standards/free-standards/>
13 *          VESA public standards may be found at
14 *      <http://www.vesa.org/wp-content/uploads/2010/12/thankspublic.htm>
15 *
16 * Copyright (C) 2014  Jan DoleÅŸal (dolezj21@fel.cvut.cz)
17 *                     CTU in Prague.
18 *
19 *  The license and distribution terms for this file may be
20 *  found in the file LICENSE in this distribution or at
21 *  http://www.rtems.org/license/LICENSE.
22 */
23
24#ifndef _VBE_H
25#define _VBE_H
26
27#ifndef ASM /* ASM */
28
29#include <stdint.h>
30
31#ifdef __cplusplus
32extern "C" {
33#endif /* __cplusplus */
34
35#include <rtems/score/basedefs.h>
36
37/*  VESA BIOS EXTENSION (VBE) Core functions Standard
38    Version: 3.0 Date: September 16, 1998               */
39
40/* VBE RETURN STATUS */
41/* AL == 4Fh: Function is supported */
42/* AL != 4Fh: Function is not supported */
43#define VBE_functionSupported        0x4F
44/* AH == 00h: Function call successful */
45#define VBE_callSuccessful           0x00
46/* AH == 01h: Function call failed */
47#define VBE_callFailed               0x01
48/* AH == 02h: Function is not supported in the current hardware configuration */
49#define VBE_notSupportedInCurHWConf  0x02
50/* AH == 03h: Function call invalid in current video mode */
51#define VBE_callInvalid              0x03
52
53/* VBE Mode Numbers */
54/* D0-D8 =  Mode number */
55#define VBE_modeNumberMask         0x01FF
56#define VBE_modeNumberShift          0x00
57/* If D8 == 0, this is not a VESA defined VBE mode */
58#define VBE_VESAmodeMask           0x0100
59/* If D8 == 1, this is a VESA defined VBE mode */
60/* D9-D12 =  Reserved by VESA for future expansion (= 0) */
61#define VBE_VESAmodeShift            0x08
62/* If D11 == 0, Use current BIOS default refresh rate */
63#define VBE_refreshRateCtrlMask    0x0800
64/* If D11 == 1, Use user specified CRTC values for refresh rate */
65/* D12-13 = Reserved for VBE/AF (must be 0) */
66#define VBE_refreshRateCtrlShift     0x0B
67/* If D14 == 0, Use Banked/Windowed Frame Buffer */
68#define VBE_linearFlatFrameBufMask 0x4000
69/* If D14 == 1, Use Linear/Flat Frame Buffer */
70#define VBE_linearFlatFrameBufShift  0x0E
71/* If D15 == 0, Clear display memory */
72#define VBE_preserveDispMemMask    0x8000
73/* If D15 == 1, Preserve display memory */
74#define VBE_preserveDispMemShift     0x0F
75
76/* Graphics modes */
77/* 15-bit mode, Resolution: 640x400,   Colors: 256  */
78#define VBE_R640x400C256      0x100
79/* 15-bit mode, Resolution: 640x480,   Colors: 256  */
80#define VBE_R640x480C256      0x101
81/* 15-bit mode, Resolution: 800x600,   Colors: 16   */
82#define VBE_R800x600C16       0x102
83/* 7-bit mode,  Resolution: 800x600,   Colors: 16   */
84#define VBE_b7R800x600C16     0x6A
85/* 15-bit mode, Resolution: 800x600,   Colors: 256  */
86#define VBE_R800x600C256      0x103
87/* 15-bit mode, Resolution: 1024x768,  Colors: 16   */
88#define VBE_R1024x768C16      0x104
89/* 15-bit mode, Resolution: 1024x768,  Colors: 256  */
90#define VBE_R1024x768C256     0x105
91/* 15-bit mode, Resolution: 1280x1024, Colors: 16   */
92#define VBE_R1280x1024C16     0x106
93/* 15-bit mode, Resolution: 1280x1024, Colors: 256  */
94#define VBE_R1280x1024C256    0x107
95/* 15-bit mode, Resolution: 320x200,   Colors: 32K   (1:5:5:5) */
96#define VBE_R320x200C32K      0x10D
97/* 15-bit mode, Resolution: 320x200,   Colors: 64K   (5:6:5)   */
98#define VBE_R320x200C64K      0x10E
99/* 15-bit mode, Resolution: 320x200,   Colors: 16.8M (8:8:8)   */
100#define VBE_R320x200C17M      0x10F
101/* 15-bit mode, Resolution: 640x480,   Colors: 32K   (1:5:5:5) */
102#define VBE_R640x480C32K      0x110
103/* 15-bit mode, Resolution: 640x480,   Colors: 64K   (5:6:5)   */
104#define VBE_R640x480C64K      0x111
105/* 15-bit mode, Resolution: 640x480,   Colors: 16.8M (8:8:8)   */
106#define VBE_R640x480C17M      0x112
107/* 15-bit mode, Resolution: 800x600,   Colors: 32K   (1:5:5:5) */
108#define VBE_R800x600C32K      0x113
109/* 15-bit mode, Resolution: 800x600,   Colors: 64K   (5:6:5)   */
110#define VBE_R800x600C64K      0x114
111/* 15-bit mode, Resolution: 800x600,   Colors: 16.8M (8:8:8)   */
112#define VBE_R800x600C17M      0x115
113/* 15-bit mode, Resolution: 1024x768,  Colors: 32K   (1:5:5:5) */
114#define VBE_R1024x768C32K     0x116
115/* 15-bit mode, Resolution: 1024x768,  Colors: 64K   (5:6:5)   */
116#define VBE_R1024x768C64K     0x117
117/* 15-bit mode, Resolution: 1024x768,  Colors: 16.8M (8:8:8)   */
118#define VBE_R1024x768C17M     0x118
119/* 15-bit mode, Resolution: 1280x1024, Colors: 32K   (1:5:5:5) */
120#define VBE_R1280x1024C32K    0x119
121/* 15-bit mode, Resolution: 1280x1024, Colors: 64K   (5:6:5)   */
122#define VBE_R1280x1024C64K    0x11A
123/* 15-bit mode, Resolution: 1280x1024, Colors: 16.8M (8:8:8)   */
124#define VBE_R1280x1024C17M    0x11B
125#define VBE_SpecialMode       0x81FF
126
127/* Text modes */
128#define VBE_C80R60            0x108   /* 15-bit mode, Columns: 80,  Rows: 60 */
129#define VBE_C132R25           0x109   /* 15-bit mode, Columns: 132, Rows: 25 */
130#define VBE_C132R43           0x10A   /* 15-bit mode, Columns: 132, Rows: 43 */
131#define VBE_C132R50           0x10B   /* 15-bit mode, Columns: 132, Rows: 50 */
132#define VBE_C132R60           0x10C   /* 15-bit mode, Columns: 132, Rows: 60 */
133
134/* VBE function numbers - passed in AX register */
135#define VBE_RetVBEConInf       0x4F00 /* Return VBE Controller Information */
136#define VBE_RetVBEModInf       0x4F01 /* Return VBE Mode Information */
137#define VBE_SetVBEMod          0x4F02 /* Set VBE Mode */
138#define VBE_RetCurVBEMod       0x4F03 /* Return Current VBE Mode */
139#define VBE_SavResSta          0x4F04 /* Save/Restore State */
140#define VBE_DisWinCon          0x4F05 /* Display Window Control */
141#define VBE_SetGetLogScaLinLen 0x4F06 /* Set/Get Logical Scan Line Length */
142#define VBE_SetGetDisSta       0x4F07 /* Set/Get Display Start */
143#define VBE_SetGetDACPalFor    0x4F08 /* Set/Get DAC Palette Format */
144#define VBE_SetGetPalDat       0x4F09 /* Set/Get Palette Data */
145#define VBE_RetVBEProModInt    0x4F0A /* Return VBE Protected Mode Interface */
146#define VBE_GetSetpixclo       0x4F0B /* Get/Set pixel clock */
147#define VBE_PowManExt          0x4F10 /* Power Management Extensions (PM) */
148#define VBE_FlaPanIntExt       0x4F11 /* Flat Panel Interface Extensions (FP) */
149#define VBE_AudIntExt          0x4F13 /* Audio Interface Extensions (AI) */
150#define VBE_OEMExt             0x4F14 /* OEM Extensions */
151#define VBE_DisDatCha          0x4F15 /* Display Data Channel (DDC),
152                                         Serial Control Interface (SCI) */
153
154/* VBE subfunction numbers - passed in BL register */
155#define VBE_RetVBESupSpeInf    0x00  /* Return VBE Supplemental
156                                        Specification Information */
157/* *** Structures *** */
[d78eac6]158typedef struct {
[c5a74946]159    uint16_t offset;
160    uint16_t selector;
[d78eac6]161} RTEMS_COMPILER_PACKED_ATTRIBUTE VBE_far_pointer;
[c5a74946]162
[d78eac6]163typedef struct {
[c5a74946]164    uint8_t   Signature[4];    /*  PM Info Block Signature */
165    uint16_t  EntryPoint;      /*  Offset of PM entry point within BIOS */
166    uint16_t  PMInitialize;    /*  Offset of PM initialization entry point */
167    uint16_t  BIOSDataSel;     /*  Selector to BIOS data area emulation block */
168    uint16_t  A0000Sel;        /*  Selector to access A0000h physical mem */
169    uint16_t  B0000Sel;        /*  Selector to access B0000h physical mem */
170    uint16_t  B8000Sel;        /*  Selector to access B8000h physical mem */
171    uint16_t  CodeSegSel;      /*  Selector to access code segment as data */
172    uint8_t   InProtectMode;   /*  Set to 1 when in protected mode */
173    uint8_t   Checksum;        /*  Checksum byte for structure */
[d78eac6]174} RTEMS_COMPILER_PACKED_ATTRIBUTE VBE_protected_mode_info_block;
[c5a74946]175
176/* General VBE signature */
177#define VBE_SIGNATURE "VESA"
178/* Signature for VBE 2.0 and higher */
179#define VBE20plus_SIGNATURE "VBE2"
180/* for STUB see VBE CORE FUNCTIONS VERSION 3.0 - Appendix 1 */
181#define VBE_END_OF_VideoModeList 0xFFFF
182#define VBE_STUB_VideoModeList 0xFFFF
[d78eac6]183typedef struct {
[c5a74946]184    uint8_t   VbeSignature[4];   /*  VBE Signature */
185    uint16_t  VbeVersion;        /*  VBE Version */
186    uint8_t  *OemStringPtr;      /*  VbeFarPtr to OEM String */
187    uint8_t   Capabilities[4];   /*  Capabilities of graphics controller */
188    uint32_t *VideoModePtr;      /*  VbeFarPtr to VideoModeList */
189    uint16_t  TotalMemory;       /*  Number of 64kb memory blocks    */
190    /*  Added for VBE 2.0+ */
191    uint16_t  OemSoftwareRev;    /*  VBE implementation Software revision */
192    uint8_t  *OemVendorNamePtr;  /*  VbeFarPtr to Vendor Name String */
193    uint8_t  *OemProductNamePtr; /*  VbeFarPtr to Product Name String */
194    uint8_t  *OemProductRevPtr;  /*  VbeFarPtr to Product Revision String */
195    uint8_t   Reserved[222];     /*  Reserved for VBE implementation scratch */
196    /*    area */
197    uint8_t   OemData[256];      /*  Data Area for OEM Strings */
[d78eac6]198} RTEMS_COMPILER_PACKED_ATTRIBUTE VBE_vbe_info_block;
[c5a74946]199
[d78eac6]200typedef struct {
[c5a74946]201    /*  Mandatory information for all VBE revisions */
202    uint16_t  ModeAttributes;        /* mode attributes */
203    uint8_t   WinAAttributes;        /* window A attributes */
204    uint8_t   WinBAttributes;        /* window B attributes */
205    uint16_t  WinGranularity;        /* window granularity */
206    uint16_t  WinSize;               /* window size */
207    uint16_t  WinASegment;           /* window A start segment */
208    uint16_t  WinBSegment;           /* window B start segment */
209    uint32_t *WinFuncPtr;            /* real mode pointer to window function */
210    uint16_t  BytesPerScanLine;      /* bytes per scan line */
211    /*  Mandatory information for VBE 1.2 and above */
212    uint16_t  XResolution;           /* horizontal resolution in px or chars */
213    uint16_t  YResolution;           /* vertical resolution in px or chars */
214    uint8_t   XCharSize;             /* character cell width in pixels */
215    uint8_t   YCharSize;             /* character cell height in pixels */
216    uint8_t   NumberOfPlanes;        /* number of memory planes */
217    uint8_t   BitsPerPixel;          /* bits per pixel */
218    uint8_t   NumberOfBanks;         /* number of banks */
219    uint8_t   MemoryModel;           /* memory model type */
220    uint8_t   BankSize;              /* bank size in KB */
221    uint8_t   NumberOfImagePages;    /* number of images */
222    uint8_t   Reserved0;             /* reserved for page function */
223    /*  Direct Color fields (required for direct/6 and YUV/7 memory models) */
224    uint8_t   RedMaskSize;           /* size of direct color red mask in bits */
225    uint8_t   RedFieldPosition;      /* bit position of lsb of red mask */
226    uint8_t   GreenMaskSize;         /* size of direct color green mask in b */
227    uint8_t   GreenFieldPosition;    /* bit position of lsb of green mask */
228    uint8_t   BlueMaskSize;          /* size of direct color blue mask in b */
229    uint8_t   BlueFieldPosition;     /* bit position of lsb of blue mask */
230    uint8_t   RsvdMaskSize;          /* size of direct color reserved mask */
231    uint8_t   RsvdFieldPosition;     /* bit position of lsb of reserved mask */
232    uint8_t   DirectColorModeInfo;   /* direct color mode attributes */
233    /*  Mandatory information for VBE 2.0 and above */
234    uint32_t *PhysBasePtr;           /* physical address for
235                                        flat memory frame buffer */
236    uint32_t  Reserved1;             /* Reserved - always set to 0 */
237    uint16_t  Reserved2;             /* Reserved - always set to 0 */
238    /*  Mandatory information for VBE 3.0 and above */
239    uint16_t  LinBytesPerScanLine;   /* bytes per scan line for linear modes */
240    uint8_t   BnkNumberOfImagePages; /* number of images for banked modes */
241    uint8_t   LinNumberOfImagePages; /* number of images for linear modes */
242        /* linear modes */
243    uint8_t   LinRedMaskSize;        /* size of direct color red mask */
244    uint8_t   LinRedFieldPosition;   /* bit position of lsb of red mask */
245    uint8_t   LinGreenMaskSize;      /* size of direct color green mask  */
246    uint8_t   LinGreenFieldPosition; /* bit position of lsb of green mask */
247    uint8_t   LinBlueMaskSize;       /* size of direct color blue mask  */
248    uint8_t   LinBlueFieldPosition;  /* bit position of lsb of blue mask */
249    uint8_t   LinRsvdMaskSize;       /* size of direct color reserved mask */
250    uint8_t   LinRsvdFieldPosition;  /* bit position of lsb of reserved mask */
251    uint32_t  MaxPixelClock;         /* maximum pixel clock
252                                        (in Hz) for graphics mode */
253    uint8_t   Reserved3[189];        /* remainder of ModeInfoBlock */
[d78eac6]254} RTEMS_COMPILER_PACKED_ATTRIBUTE VBE_mode_info_block;
[c5a74946]255
[d78eac6]256typedef struct {
[c5a74946]257    uint16_t  HorizontalTotal;       /* Horizontal total in pixels */
258    uint16_t  HorizontalSyncStart;   /* Horizontal sync start in pixels */
259    uint16_t  HorizontalSyncEnd;     /* Horizontal sync end in pixels */
260    uint16_t  VerticalTotal;         /* Vertical total in lines */
261    uint16_t  VerticalSyncStart;     /* Vertical sync start in lines */
262    uint16_t  VerticalSyncEnd;       /* Vertical sync end in lines */
263    uint8_t   Flags;                 /* Flags (Interlaced, Double Scan etc) */
264    uint32_t  PixelClock;            /* Pixel clock in units of Hz */
265    uint16_t  RefreshRate;           /* Refresh rate in units of 0.01 Hz */
266    uint8_t   Reserved[40];          /* remainder of ModeInfoBlock */
[d78eac6]267} RTEMS_COMPILER_PACKED_ATTRIBUTE VBE_CRTC_info_block;
[c5a74946]268
[d78eac6]269typedef struct {
[c5a74946]270    uint8_t   Blue;                  /* Blue channel value (6 or 8 bits) */
271    uint8_t   Green;                 /* Green channel value (6 or 8 bits) */
272    uint8_t   Red;                   /* Red channel value(6 or 8 bits) */
273    uint8_t   Alignment;             /* DWORD alignment byte (unused) */
[d78eac6]274} RTEMS_COMPILER_PACKED_ATTRIBUTE VBE_palette_entry;
[c5a74946]275
[d78eac6]276typedef struct {
[c5a74946]277    uint8_t   SupVbeSignature[7];    /* Supplemental VBE Signature */
278    uint16_t  SupVbeVersion;         /* Supplemental VBE Version */
279    uint8_t   SupVbeSubFunc[8];      /* Bitfield of supported subfunctions */
280    uint16_t  OemSoftwareRev;        /* OEM Software revision */
281    uint8_t  *OemVendorNamePtr;      /* VbeFarPtr to Vendor Name String */
282    uint8_t  *OemProductNamePtr;     /* VbeFarPtr to Product Name String */
283    uint8_t  *OemProductRevPtr;      /* VbeFarPtr to Product Revision String */
284    uint8_t  *OemStringPtr;          /* VbeFarPtr to OEM String */
285    uint8_t   Reserved[221];         /* Reserved for description
286                                        strings and future */
287    /*  expansion */
[d78eac6]288} RTEMS_COMPILER_PACKED_ATTRIBUTE VBE_supplemental_vbe_info_block;
[c5a74946]289
290/* VbeInfoBlock Capabilities */
291/*  D0 = 0  DAC is fixed width, with 6 bits per primary color */
292/*     = 1 DAC width is switchable to 8 bits per primary color */
293#define VBE_DACswitchableMask     0x0001
294/*  D1 = 0 Controller is VGA compatible */
295/*     = 1 Controller is not VGA compatible */
296#define VBE_notVGAcompatibleMask  0x0002
297/*  D2 = 0 Normal RAMDAC operation */
298/*     = 1 When programming large blocks of information to the RAMDAC,
299            use the blank bit in Function 09h. */
300#define VBE_specialRAMDACopMask   0x0004
301/*  D3 = 0 No hardware stereoscopic signaling support */
302/*     = 1 Hardware stereoscopic signaling supported by controller */
303#define VBE_hwStereoscopicMask    0x0008
304/*  D4 = 0 Stereo signaling supported via external VESA stereo connector */
305/*     = 1 Stereo signaling supported via VESA EVC connector */
306#define VBE_supportEVCconnMask    0x0010
307/*  D5-31 = Reserved */
308
309/* ModeInfoBlock ModeAttributes */
310/*  D0 =  Mode supported by hardware configuration */
311/*   0 =  Mode not supported in hardware */
312/*   1 =  Mode supported in hardware */
313#define VBE_modSupInHWMask        0x0001
314/*  D1 =  1 (Reserved) */
315/*  D2 =  TTY Output functions supported by BIOS */
316/*   0 =  TTY Output functions not supported by BIOS */
317/*   1 =  TTY Output functions supported by BIOS */
318#define VBE_TTYOutSupByBIOSMask   0x0004
319/*  D3 =  Monochrome/color mode (see note below) */
320/*   0 =  Monochrome mode */
321/*   1 =  Color mode */
322#define VBE_ColorModeMask         0x0008
323/*  D4 =  Mode type */
324/*   0 =  Text mode */
325/*   1 =  Graphics mode */
326#define VBE_GraphicsModeMask      0x0010
327/*  D5 =  VGA compatible mode */
328/*   0 =  Yes */
329/*   1 =  No */
330#define VBE_VGACompModeMask       0x0020
331/*  D6 =  VGA compatible windowed memory mode is available */
332/*   0 =  Yes */
333/*   1 =  No */
334#define VBE_VGACompWinMemModeMask 0x0040
335/*  D7 =  Linear frame buffer mode is available */
336/*   0 =  No */
337/*   1 =  Yes */
338#define VBE_LinFraBufModeAvaiMask 0x0080
339/*  D8 =  Double scan mode is available */
340/*   0 =  No */
341/*   1 =  Yes */
342#define VBE_DblScnModeAvaiMask    0x0100
343/*  D9 =  Interlaced mode is available */
344/*   0 =  No */
345/*   1 =  Yes */
346#define VBE_InterlModeAvaiMask    0x0200
347/*  D10 =  Hardware triple buffering support */
348/*   0 =  No */
349/*   1 =  Yes */
350#define VBE_HWTripBufSupMask      0x0400
351/*  D11 =  Hardware stereoscopic display support */
352/*   0 =  No */
353/*   1 =  Yes */
354#define VBE_HWSterDispSupMask     0x0800
355/*  D12 =  Dual display start address support */
356/*   0 =  No */
357/*   1 =  Yes */
358#define VBE_DualDispStAdrSupMask  0x1000
359/*  D13-D15 =  Reserved */
360
361/* ModeInfoBlock WinXAttributes */
362/*  D0 =  Relocatable window(s) supported */
363/*   0 =  Single non-relocatable window only */
364/*   1 =  Relocatable window(s) are supported */
365#define VBE_RelocWinSupMask       0x01
366/*  D1 =  Window readable */
367/*   0 =  Window is not readable */
368/*   1 =  Window is readable */
369#define VBE_WinReadableMask       0x02
370/*  D2 =  Window writeable */
371/*   0 =  Window is not writeable */
372/*   1 =  Window is writeable */
373#define VBE_WinWritableMask       0x04
374/*  D3-D7 =  Reserved */
375
376/* ModeInfoBlock MemoryModel */
377#define VBE_TextMode              0x00
378#define VBE_CGAGraphics           0x01
379#define VBE_HerculesGraphics      0x02
380#define VBE_Planar                0x03
381#define VBE_PackedPixel           0x04
382#define VBE_NonChain4Color256     0x05
383#define VBE_DirectColor           0x06
384#define VBE_YUV                   0x07
385    /* 0x08-0x0F Reserved, to be defined by VESA */
386    /* 0x10-0xFF To be defined by OEM */
387
388/* ModeInfoBlock DirectColorModeInfo */
389/*  D0 =  Color ramp is fixed/programmable */
390/*   0 =  Color ramp is fixed */
391/*   1 =  Color ramp is programmable */
392#define VBE_ColRampProgMask       0x01
393/*  D1 =  Bits in Rsvd field are usable/reserved */
394/*   0 =  Bits in Rsvd field are reserved */
395/*   1 =  Bits in Rsvd field are usable by the application */
396#define VBE_RsvdBitsUsableMask    0x02
397
398/* CRTCInfoBlock Flags */
399/*  D0 =  Double Scan Mode Enable */
400/*   0 =  Graphics mode is not double scanned */
401/*   1 =  Graphics mode is double scanned */
402#define VBE_GrModeDblScanMask     0x01
403/*  D1 =  Interlaced Mode Enable */
404/*   0 =  Graphics mode is non-interlaced */
405/*   1 =  Graphics mode is interlaced */
406#define VBE_GrModeInterlMask      0x02
407/*  D2 =  Horizontal sync polarity */
408/*   0 =  Horizontal sync polarity is positive (+) */
409/*   1 =  Horizontal sync polarity is negative (-) */
410#define VBE_HorSncPolNegMask      0x04
411/*  D3 =  Vertical sync polarity */
412/*   0 =  Vertical sync polarity is positive (+) */
413/*   1 =  Vertical sync polarity is negative (-) */
414#define VBE_VerSncPolNegMask      0x08
415
416
417/*  VESA BIOS Extensions/Display Data Channel Standard
418    Version: 1.1 November 18, 1999                      */
419
420/* VBE/DDC subfunction numbers - passed in BL register */
421#define VBEDDC_Capabilities    0x0   /* Report VBE/DDC Capabilities */
422#define VBEDDC_ReadEDID        0x1   /* Read EDID */
423
424/* DDC Capabilities */
425/* DDC level supported - returned in BL register */
426/* 0 - DDC1 not supported; 1 - DDC1 supported */
427#define VBEDDC_1SupportedMask  0x1
428/* 0 - DDC2 not supported; 1 - DDC2 supported */
429#define VBEDDC_2SupportedMask  0x2
430/* 0 - Screen not blanked during data transfer;
431   1 - Screen blanked during data transfer */
432#define VBEDDC_scrBlnkDatTrMs  0x4
433
434
435/*  VESA BIOS Extensions/Serial Control Interface Standard
436    Version: 1.0 Revision: 2 Date: July 2, 1997         */
437
438/* VBE/SCI subfunction numbers - passed in BL register */
439#define VBESCI_ReportCapabil   0x10  /* Report VBE/SCI Capabilities */
440#define VBESCI_BegSCLSDACtrl   0x11  /* Begin SCL/SDA control */
441#define VBESCI_EndSCLSDACtrl   0x12  /* End SCL/SDA control */
442#define VBESCI_WrtSCLClkLine   0x13  /* Write SCL clock line */
443#define VBESCI_WrtSDADatLine   0x14  /* Write SDA data line */
444#define VBESCI_RdySCLClkLine   0x15  /* Read SCL clock line */
445#define VBESCI_RdySDADatLine   0x16  /* Read SDA data line */
446
447/* SCI Capabilities */
448/* I2C level supported - returned in BL register */
449#define VBESCI_capSCLwrtMask   0x1   /* Can write to SCL clock line */
450#define VBESCI_capSDAwrtMask   0x2   /* Can write to SDA data line */
451#define VBESCI_capSCLrdyMask   0x4   /* Can read from SCL clock line */
452#define VBESCI_capSDArdyMask   0x8   /* Can read from SDA data line */
453
454
455#ifdef __cplusplus
456}
457#endif /* __cplusplus */
458
459#endif /* ASM */
460
461#endif /* _VBE_H */
Note: See TracBrowser for help on using the repository browser.