1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
6 * This file is part of the Linux kernel, and is made available under
7 * the terms of the GNU General Public License version 2.
9 * ----------------------------------------------------------------------- */
19 /* VESA information */
20 static struct vesa_general_info vginfo;
21 static struct vesa_mode_info vminfo;
23 __videocard video_vesa;
26 static void vesa_store_mode_params_graphics(void);
28 static inline void vesa_store_mode_params_graphics(void) {}
31 static int vesa_probe(void)
33 #if defined(CONFIG_VIDEO_VESA) || defined(CONFIG_FIRMWARE_EDID)
40 video_vesa.modes = GET_HEAP(struct mode_info, 0);
45 : "+a" (ax), "+D" (di), "=m" (vginfo)
46 : : "ebx", "ecx", "edx", "esi");
49 vginfo.signature != VESA_MAGIC ||
50 vginfo.version < 0x0102)
51 return 0; /* Not present */
52 #endif /* CONFIG_VIDEO_VESA || CONFIG_FIRMWARE_EDID */
53 #ifdef CONFIG_VIDEO_VESA
54 set_fs(vginfo.video_mode_ptr.seg);
55 mode_ptr = vginfo.video_mode_ptr.off;
57 while ((mode = rdfs16(mode_ptr)) != 0xffff) {
60 if (!heap_free(sizeof(struct mode_info)))
61 break; /* Heap full, can't save mode info */
66 memset(&vminfo, 0, sizeof vminfo); /* Just in case... */
72 : "+a" (ax), "+c" (cx), "+D" (di), "=m" (vminfo)
73 : : "ebx", "edx", "esi");
78 if ((vminfo.mode_attr & 0x15) == 0x05) {
79 /* Text Mode, TTY BIOS supported,
80 supported by hardware */
81 mi = GET_HEAP(struct mode_info, 1);
82 mi->mode = mode + VIDEO_FIRST_VESA;
83 mi->depth = 0; /* text */
87 } else if ((vminfo.mode_attr & 0x99) == 0x99 &&
88 (vminfo.memory_layout == 4 ||
89 vminfo.memory_layout == 6) &&
90 vminfo.memory_planes == 1) {
92 /* Graphics mode, color, linear frame buffer
93 supported. Only register the mode if
94 if framebuffer is configured, however,
95 otherwise the user will be left without a screen.
96 We don't require CONFIG_FB_VESA, however, since
97 some of the other framebuffer drivers can use
98 this mode-setting, too. */
99 mi = GET_HEAP(struct mode_info, 1);
100 mi->mode = mode + VIDEO_FIRST_VESA;
101 mi->depth = vminfo.bpp;
102 mi->x = vminfo.h_res;
103 mi->y = vminfo.v_res;
112 #endif /* CONFIG_VIDEO_VESA */
115 static int vesa_set_mode(struct mode_info *mode)
119 u16 vesa_mode = mode->mode - VIDEO_FIRST_VESA;
121 memset(&vminfo, 0, sizeof vminfo); /* Just in case... */
125 di = (size_t)&vminfo;
127 : "+a" (ax), "+c" (cx), "+D" (di), "=m" (vminfo)
128 : : "ebx", "edx", "esi");
133 if ((vminfo.mode_attr & 0x15) == 0x05) {
134 /* It's a supported text mode */
136 } else if ((vminfo.mode_attr & 0x99) == 0x99) {
137 /* It's a graphics mode with linear frame buffer */
139 vesa_mode |= 0x4000; /* Request linear frame buffer */
141 return -1; /* Invalid mode */
149 : "+a" (ax), "+b" (bx), "+D" (di)
150 : : "ecx", "edx", "esi");
155 graphic_mode = is_graphic;
163 vesa_store_mode_params_graphics();
172 /* Switch DAC to 8-bit mode */
173 static void vesa_dac_set_8bits(void)
177 /* If possible, switch the DAC to 8-bit mode */
178 if (vginfo.capabilities & 1) {
184 : "+a" (ax), "+b" (bx)
185 : : "ecx", "edx", "esi", "edi");
191 /* Set the color sizes to the DAC size, and offsets to 0 */
192 boot_params.screen_info.red_size = dac_size;
193 boot_params.screen_info.green_size = dac_size;
194 boot_params.screen_info.blue_size = dac_size;
195 boot_params.screen_info.rsvd_size = dac_size;
197 boot_params.screen_info.red_pos = 0;
198 boot_params.screen_info.green_pos = 0;
199 boot_params.screen_info.blue_pos = 0;
200 boot_params.screen_info.rsvd_pos = 0;
203 /* Save the VESA protected mode info */
204 static void vesa_store_pm_info(void)
210 asm("pushw %%es; "INT10"; movw %%es,%0; popw %%es"
211 : "=d" (es), "+a" (ax), "+b" (bx), "+D" (di)
217 boot_params.screen_info.vesapm_seg = es;
218 boot_params.screen_info.vesapm_off = di;
222 * Save video mode parameters for graphics mode
224 static void vesa_store_mode_params_graphics(void)
226 /* Tell the kernel we're in VESA graphics mode */
227 boot_params.screen_info.orig_video_isVGA = 0x23;
229 /* Mode parameters */
230 boot_params.screen_info.vesa_attributes = vminfo.mode_attr;
231 boot_params.screen_info.lfb_linelength = vminfo.logical_scan;
232 boot_params.screen_info.lfb_width = vminfo.h_res;
233 boot_params.screen_info.lfb_height = vminfo.v_res;
234 boot_params.screen_info.lfb_depth = vminfo.bpp;
235 boot_params.screen_info.pages = vminfo.image_planes;
236 boot_params.screen_info.lfb_base = vminfo.lfb_ptr;
237 memcpy(&boot_params.screen_info.red_size,
240 /* General parameters */
241 boot_params.screen_info.lfb_size = vginfo.total_memory;
244 vesa_dac_set_8bits();
246 vesa_store_pm_info();
250 * Save EDID information for the kernel; this is invoked, separately,
251 * after mode-setting.
253 void vesa_store_edid(void)
255 #ifdef CONFIG_FIRMWARE_EDID
256 u16 ax, bx, cx, dx, di;
258 /* Apparently used as a nonsense token... */
259 memset(&boot_params.edid_info, 0x13, sizeof boot_params.edid_info);
261 if (vginfo.version < 0x0200)
262 return; /* EDID requires VBE 2.0+ */
264 ax = 0x4f15; /* VBE DDC */
265 bx = 0x0000; /* Report DDC capabilities */
266 cx = 0; /* Controller 0 */
267 di = 0; /* ES:DI must be 0 by spec */
269 /* Note: The VBE DDC spec is different from the main VESA spec;
270 we genuinely have to assume all registers are destroyed here. */
272 asm("pushw %%es; movw %2,%%es; "INT10"; popw %%es"
273 : "+a" (ax), "+b" (bx)
278 return; /* No EDID */
280 /* BH = time in seconds to transfer EDD information */
281 /* BL = DDC level supported */
283 ax = 0x4f15; /* VBE DDC */
284 bx = 0x0001; /* Read EDID */
285 cx = 0; /* Controller 0 */
286 dx = 0; /* EDID block number */
287 di =(size_t) &boot_params.edid_info; /* (ES:)Pointer to block */
289 : "+a" (ax), "+b" (bx), "+d" (dx), "=m" (boot_params.edid_info)
292 #endif /* CONFIG_FIRMWARE_EDID */
295 #endif /* not _WAKEUP */
297 __videocard video_vesa =
301 .set_mode = vesa_set_mode,
302 .xmode_first = VIDEO_FIRST_VESA,