]> git.saurik.com Git - apple/boot.git/blob - i386/libsaio/vbe.h
boot-93.tar.gz
[apple/boot.git] / i386 / libsaio / vbe.h
1 /*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License.
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24 // Copyright 1997 by Apple Computer, Inc., all rights reserved.
25 /* Copyright 1996-1997 NeXT Software, Inc.
26 *
27 * vesa.h - mode info obtained via int10
28 *
29 * Revision History
30 * ----------------
31 * 30 Jul 1996 Doug Mitchell at NeXT
32 * Created.
33 */
34
35 #ifndef __LIBSAIO_VBE_H
36 #define __LIBSAIO_VBE_H
37
38 #define MIN_VESA_VERSION 0x200
39
40 #define SEG(address) \
41 ((unsigned short)(((unsigned long)address & 0xffff0000) >> 4))
42
43 #define OFF(address) \
44 ((unsigned short)((unsigned long)address & 0x0000ffff))
45
46 #define VBEMakeUInt32(x) \
47 (((unsigned long)x##_high << 24) | \
48 ((unsigned long)x##_2 << 16) | \
49 ((unsigned long)x##_1 << 8) | \
50 (unsigned long)x##_low)
51
52 #define VBEDecodeFP(t, fp) \
53 ((t)(((fp ## _low) | ((fp ## _1 ) << 8)) + \
54 (((fp ## _2) << 4) | ((fp ## _high ) << 12))))
55
56 /*
57 * Functions
58 */
59 enum {
60 funcGetControllerInfo = 0x4F00,
61 funcGetModeInfo = 0x4F01,
62 funcSetMode = 0x4F02,
63 funcGetCurrentMode = 0x4F03,
64 funcSaveRestoreState = 0x4F04,
65 funcWindowControl = 0x4F05,
66 funcGetSetScanLineLength = 0x4F06,
67 funcGetSetDisplayStart = 0x4F07,
68 funcGetSetPaletteFormat = 0x4F08,
69 funcGetSetPaletteData = 0x4F09,
70 funcGetProtModeInterdace = 0x4F0A
71 };
72
73 enum {
74 subfuncSet = 0x00,
75 subfuncGet = 0x01,
76 subfuncSetSecondary = 0x02,
77 subfuncGetSecondary = 0x03
78 };
79
80 /*
81 * errors.
82 */
83 enum {
84 errSuccess = 0,
85 errFuncFailed = 1,
86 errFuncNotSupported = 2,
87 errFuncInvalid = 3
88 };
89
90 /*
91 * Per-controller info, returned in function 4f00.
92 */
93 typedef struct {
94 unsigned char VESASignature[4];
95 unsigned short VESAVersion;
96 /*
97 * Avoid packing problem...
98 */
99 unsigned char OEMStringPtr_low;
100 unsigned char OEMStringPtr_1;
101 unsigned char OEMStringPtr_2;
102 unsigned char OEMStringPtr_high;
103 unsigned char Capabilities_low;
104 unsigned char Capabilities_1;
105 unsigned char Capabilities_2;
106 unsigned char Capabilities_high;
107 unsigned char VideoModePtr_low;
108 unsigned char VideoModePtr_1;
109 unsigned char VideoModePtr_2;
110 unsigned char VideoModePtr_high;
111 unsigned short TotalMemory;
112 unsigned char Reserved[242];
113 } VBEInfoBlock;
114
115 /*
116 * Capabilites
117 */
118 enum {
119 capDACWidthIsSwitchableBit = (1 << 0), /* 1 = yes; 0 = no */
120 capControllerIsNotVGACompatableBit = (1 << 1), /* 1 = no; 0 = yes */
121 capOldRAMDAC = (1 << 2) /* 1 = yes; 0 = no */
122 };
123
124 /*
125 * Per-mode info, returned in function 4f02.
126 */
127 typedef struct {
128 unsigned short ModeAttributes;
129 unsigned char WinAAttributes;
130 unsigned char WinBAttributes;
131 unsigned short WinGranularity;
132 unsigned short WinSize;
133 unsigned short WinASegment;
134 unsigned short WinABegment;
135 void * WinFuncPtr;
136 unsigned short BytesPerScanline;
137 unsigned short XResolution;
138 unsigned short YResolution;
139 unsigned char XCharSize;
140 unsigned char YCharSize;
141 unsigned char NumberOfPlanes;
142 unsigned char BitsPerPixel;
143 unsigned char NumberOfBanks;
144 unsigned char MemoryModel;
145 unsigned char BankSize;
146 unsigned char NumberOfImagePages;
147 unsigned char Reserved;
148 unsigned char RedMaskSize;
149 unsigned char RedFieldPosition;
150 unsigned char GreenMaskSize;
151 unsigned char GreenFieldPosition;
152 unsigned char BlueMaskSize;
153 unsigned char BlueFieldPosition;
154 unsigned char RsvdMaskSize;
155 unsigned char RsvdFieldPosition;
156 unsigned char DirectColorModeInfo;
157 unsigned char PhysBasePtr_low;
158 unsigned char PhysBasePtr_1;
159 unsigned char PhysBasePtr_2;
160 unsigned char PhysBasePtr_high;
161 void * OffScreenMemOffset;
162 unsigned short OffScreenMemSize;
163 unsigned char Reserved1[206];
164 } VBEModeInfoBlock;
165
166 /*
167 * ModeAttributes bits
168 */
169 enum {
170 maModeIsSupportedBit = (1 << 0), /* mode is supported */
171 maExtendedInfoAvailableBit = (1 << 1), /* extended info available */
172 maOutputFuncSupportedBit = (1 << 2), /* output functions supported */
173 maColorModeBit = (1 << 3), /* 1 = color; 0 = mono */
174 maGraphicsModeBit = (1 << 4), /* 1 = graphics; 0 = text */
175 maModeIsNotVGACompatableBit = (1 << 5), /* 1 = not compat; 0 = compat */
176 maVGAMemoryModeNotAvailBit = (1 << 6), /* 1 = not avail; 0 = avail */
177 maLinearFrameBufferAvailBit = (1 << 7) /* 1 = avail; 0 = not avail */
178 };
179
180 /*
181 * Modes
182 */
183 enum {
184 mode640x400x256 = 0x100,
185 mode640x480x256 = 0x101,
186 mode800x600x16 = 0x102,
187 mode800x600x256 = 0x103,
188 mode1024x768x16 = 0x104,
189 mode1024x768x256 = 0x105,
190 mode1280x1024x16 = 0x106,
191 mode1280x1024x256 = 0x107,
192 mode80Cx60R = 0x108,
193 mode132Cx25R = 0x109,
194 mode132Cx43R = 0x10A,
195 mode132Cx50R = 0x10B,
196 mode132Cx60R = 0x10C,
197 mode320x200x555 = 0x10D,
198 mode320x200x565 = 0x10E,
199 mode320x200x888 = 0x10F,
200 mode640x480x555 = 0x110,
201 mode640x480x565 = 0x111,
202 mode640x480x888 = 0x112,
203 mode800x600x555 = 0x113,
204 mode800x600x565 = 0x114,
205 mode800x600x888 = 0x115,
206 mode1024x768x555 = 0x116,
207 mode1024x768x565 = 0x117,
208 mode1024x768x888 = 0x118,
209 mode1280x1024x555 = 0x119,
210 mode1280x1024x565 = 0x11A,
211 mode1280x1024x888 = 0x11B,
212 modeSpecial = 0x81FF,
213 modeEndOfList = 0xFFFF
214 };
215
216 /*
217 * Get/Set VBE Mode parameters
218 */
219 enum {
220 kLinearFrameBufferBit = (1 << 14),
221 kPreserveMemoryBit = (1 << 15)
222 };
223
224 /*
225 * Palette
226 */
227 typedef unsigned long VBEPalette[256];
228
229 extern int getVBEInfo(void *vinfo_p);
230 extern int getVBEModeInfo(int mode, void *minfo_p);
231 extern int getVBEDACFormat(unsigned char *format);
232 extern int setVBEDACFormat(unsigned char format);
233 extern int setVBEPalette(void *palette);
234 extern int getVBEPalette(void *palette);
235 extern int setVBEMode(unsigned short mode);
236 extern int getVBECurrentMode(unsigned short *mode);
237
238 #endif /* !__LIBSAIO_VBE_H */