blob: 45bc9402aa497f7c7151a7ce3e0b419ab9454301 [file] [log] [blame]
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -07001/* -*- linux-c -*- ------------------------------------------------------- *
2 *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
H. Peter Anvincf06de72009-04-01 18:20:11 -07005 * Copyright 2009 Intel Corporation; author H. Peter Anvin
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -07006 *
7 * This file is part of the Linux kernel, and is made available under
8 * the terms of the GNU General Public License version 2.
9 *
10 * ----------------------------------------------------------------------- */
11
12/*
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070013 * Common all-VGA modes
14 */
15
16#include "boot.h"
17#include "video.h"
18
19static struct mode_info vga_modes[] = {
H. Peter Anvin1cac5002008-01-30 13:33:02 +010020 { VIDEO_80x25, 80, 25, 0 },
21 { VIDEO_8POINT, 80, 50, 0 },
22 { VIDEO_80x43, 80, 43, 0 },
23 { VIDEO_80x28, 80, 28, 0 },
24 { VIDEO_80x30, 80, 30, 0 },
25 { VIDEO_80x34, 80, 34, 0 },
26 { VIDEO_80x60, 80, 60, 0 },
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070027};
28
29static struct mode_info ega_modes[] = {
H. Peter Anvin1cac5002008-01-30 13:33:02 +010030 { VIDEO_80x25, 80, 25, 0 },
31 { VIDEO_8POINT, 80, 43, 0 },
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070032};
33
34static struct mode_info cga_modes[] = {
H. Peter Anvin1cac5002008-01-30 13:33:02 +010035 { VIDEO_80x25, 80, 25, 0 },
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070036};
37
Hannes Edera1a00b52008-11-23 19:37:09 +010038static __videocard video_vga;
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070039
40/* Set basic 80x25 mode */
41static u8 vga_set_basic_mode(void)
42{
H. Peter Anvincf06de72009-04-01 18:20:11 -070043 struct biosregs ireg, oreg;
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070044 u8 mode;
45
H. Peter Anvincf06de72009-04-01 18:20:11 -070046 initregs(&ireg);
47
H. Peter Anvin8e92dc72010-02-19 13:21:38 -080048 /* Query current mode */
Andi Kleencf3bdc22010-06-10 13:10:40 +020049 ireg.ax = 0x0f00;
H. Peter Anvincf06de72009-04-01 18:20:11 -070050 intcall(0x10, &ireg, &oreg);
51 mode = oreg.al;
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070052
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070053 if (mode != 3 && mode != 7)
54 mode = 3;
55
56 /* Set the mode */
H. Peter Anvincf06de72009-04-01 18:20:11 -070057 ireg.ax = mode; /* AH=0: set mode */
58 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070059 do_restore = 1;
60 return mode;
61}
62
63static void vga_set_8font(void)
64{
65 /* Set 8x8 font - 80x43 on EGA, 80x50 on VGA */
H. Peter Anvincf06de72009-04-01 18:20:11 -070066 struct biosregs ireg;
67
68 initregs(&ireg);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070069
70 /* Set 8x8 font */
H. Peter Anvincf06de72009-04-01 18:20:11 -070071 ireg.ax = 0x1112;
72 /* ireg.bl = 0; */
73 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070074
75 /* Use alternate print screen */
H. Peter Anvincf06de72009-04-01 18:20:11 -070076 ireg.ax = 0x1200;
77 ireg.bl = 0x20;
78 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070079
80 /* Turn off cursor emulation */
H. Peter Anvincf06de72009-04-01 18:20:11 -070081 ireg.ax = 0x1201;
82 ireg.bl = 0x34;
83 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070084
85 /* Cursor is scan lines 6-7 */
H. Peter Anvincf06de72009-04-01 18:20:11 -070086 ireg.ax = 0x0100;
87 ireg.cx = 0x0607;
88 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070089}
90
91static void vga_set_14font(void)
92{
93 /* Set 9x14 font - 80x28 on VGA */
H. Peter Anvincf06de72009-04-01 18:20:11 -070094 struct biosregs ireg;
95
96 initregs(&ireg);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -070097
98 /* Set 9x14 font */
H. Peter Anvincf06de72009-04-01 18:20:11 -070099 ireg.ax = 0x1111;
100 /* ireg.bl = 0; */
101 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700102
103 /* Turn off cursor emulation */
H. Peter Anvincf06de72009-04-01 18:20:11 -0700104 ireg.ax = 0x1201;
105 ireg.bl = 0x34;
106 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700107
108 /* Cursor is scan lines 11-12 */
H. Peter Anvincf06de72009-04-01 18:20:11 -0700109 ireg.ax = 0x0100;
110 ireg.cx = 0x0b0c;
111 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700112}
113
114static void vga_set_80x43(void)
115{
116 /* Set 80x43 mode on VGA (not EGA) */
H. Peter Anvincf06de72009-04-01 18:20:11 -0700117 struct biosregs ireg;
118
119 initregs(&ireg);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700120
121 /* Set 350 scans */
H. Peter Anvincf06de72009-04-01 18:20:11 -0700122 ireg.ax = 0x1201;
123 ireg.bl = 0x30;
124 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700125
126 /* Reset video mode */
H. Peter Anvincf06de72009-04-01 18:20:11 -0700127 ireg.ax = 0x0003;
128 intcall(0x10, &ireg, NULL);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700129
130 vga_set_8font();
131}
132
133/* I/O address of the VGA CRTC */
134u16 vga_crtc(void)
135{
136 return (inb(0x3cc) & 1) ? 0x3d4 : 0x3b4;
137}
138
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700139static void vga_set_480_scanlines(void)
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700140{
H. Peter Anvin5f641352009-03-18 16:54:05 -0700141 u16 crtc; /* CRTC base address */
142 u8 csel; /* CRTC miscellaneous output register */
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700143
144 crtc = vga_crtc();
145
146 out_idx(0x0c, crtc, 0x11); /* Vertical sync end, unlock CR0-7 */
147 out_idx(0x0b, crtc, 0x06); /* Vertical total */
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700148 out_idx(0x3e, crtc, 0x07); /* Vertical overflow */
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700149 out_idx(0xea, crtc, 0x10); /* Vertical sync start */
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700150 out_idx(0xdf, crtc, 0x12); /* Vertical display end */
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700151 out_idx(0xe7, crtc, 0x15); /* Vertical blank start */
152 out_idx(0x04, crtc, 0x16); /* Vertical blank end */
153 csel = inb(0x3cc);
154 csel &= 0x0d;
155 csel |= 0xe2;
H. Peter Anvin5f641352009-03-18 16:54:05 -0700156 outb(csel, 0x3c2);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700157}
158
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700159static void vga_set_vertical_end(int lines)
160{
161 u16 crtc; /* CRTC base address */
162 u8 ovfw; /* CRTC overflow register */
163 int end = lines-1;
164
165 crtc = vga_crtc();
166
167 ovfw = 0x3c | ((end >> (8-1)) & 0x02) | ((end >> (9-6)) & 0x40);
168
169 out_idx(ovfw, crtc, 0x07); /* Vertical overflow */
170 out_idx(end, crtc, 0x12); /* Vertical display end */
171}
172
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700173static void vga_set_80x30(void)
174{
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700175 vga_set_480_scanlines();
176 vga_set_vertical_end(30*16);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700177}
178
179static void vga_set_80x34(void)
180{
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700181 vga_set_480_scanlines();
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700182 vga_set_14font();
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700183 vga_set_vertical_end(34*14);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700184}
185
186static void vga_set_80x60(void)
187{
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700188 vga_set_480_scanlines();
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700189 vga_set_8font();
H. Peter Anvin1e274a52009-04-07 10:59:25 -0700190 vga_set_vertical_end(60*8);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700191}
192
193static int vga_set_mode(struct mode_info *mode)
194{
195 /* Set the basic mode */
196 vga_set_basic_mode();
197
198 /* Override a possibly broken BIOS */
199 force_x = mode->x;
200 force_y = mode->y;
201
202 switch (mode->mode) {
203 case VIDEO_80x25:
204 break;
205 case VIDEO_8POINT:
206 vga_set_8font();
207 break;
208 case VIDEO_80x43:
209 vga_set_80x43();
210 break;
211 case VIDEO_80x28:
212 vga_set_14font();
213 break;
214 case VIDEO_80x30:
215 vga_set_80x30();
216 break;
217 case VIDEO_80x34:
218 vga_set_80x34();
219 break;
220 case VIDEO_80x60:
221 vga_set_80x60();
222 break;
223 }
224
225 return 0;
226}
227
228/*
229 * Note: this probe includes basic information required by all
230 * systems. It should be executed first, by making sure
231 * video-vga.c is listed first in the Makefile.
232 */
233static int vga_probe(void)
234{
235 static const char *card_name[] = {
236 "CGA/MDA/HGC", "EGA", "VGA"
237 };
238 static struct mode_info *mode_lists[] = {
239 cga_modes,
240 ega_modes,
241 vga_modes,
242 };
243 static int mode_count[] = {
244 sizeof(cga_modes)/sizeof(struct mode_info),
245 sizeof(ega_modes)/sizeof(struct mode_info),
246 sizeof(vga_modes)/sizeof(struct mode_info),
247 };
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700248
H. Peter Anvincf06de72009-04-01 18:20:11 -0700249 struct biosregs ireg, oreg;
250
251 initregs(&ireg);
252
253 ireg.ax = 0x1200;
254 ireg.bl = 0x10; /* Check EGA/VGA */
255 intcall(0x10, &ireg, &oreg);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700256
Pavel Macheke44b7b72008-04-10 23:28:10 +0200257#ifndef _WAKEUP
H. Peter Anvincf06de72009-04-01 18:20:11 -0700258 boot_params.screen_info.orig_video_ega_bx = oreg.bx;
Pavel Macheke44b7b72008-04-10 23:28:10 +0200259#endif
260
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700261 /* If we have MDA/CGA/HGC then BL will be unchanged at 0x10 */
H. Peter Anvincf06de72009-04-01 18:20:11 -0700262 if (oreg.bl != 0x10) {
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700263 /* EGA/VGA */
H. Peter Anvincf06de72009-04-01 18:20:11 -0700264 ireg.ax = 0x1a00;
265 intcall(0x10, &ireg, &oreg);
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700266
H. Peter Anvincf06de72009-04-01 18:20:11 -0700267 if (oreg.al == 0x1a) {
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700268 adapter = ADAPTER_VGA;
Pavel Macheke44b7b72008-04-10 23:28:10 +0200269#ifndef _WAKEUP
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700270 boot_params.screen_info.orig_video_isVGA = 1;
Pavel Macheke44b7b72008-04-10 23:28:10 +0200271#endif
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700272 } else {
273 adapter = ADAPTER_EGA;
274 }
275 } else {
276 adapter = ADAPTER_CGA;
277 }
278
279 video_vga.modes = mode_lists[adapter];
280 video_vga.card_name = card_name[adapter];
281 return mode_count[adapter];
282}
283
Hannes Edera1a00b52008-11-23 19:37:09 +0100284static __videocard video_vga = {
H. Peter Anvin5e8ddcbe2007-07-11 12:18:52 -0700285 .card_name = "VGA",
286 .probe = vga_probe,
287 .set_mode = vga_set_mode,
288};