Fix NULL pointer constant issues in kernel/arch/x86
[unleashed.git] / kernel / arch / x86 / platform / i86pc / boot / boot_vga.c
blobc9e8aab571c80c54d2c618bfee72ccb36947ed2e
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
30 * Miniature VGA driver for bootstrap.
33 #include <sys/archsystm.h>
34 #include <sys/vgareg.h>
36 #include "boot_vga.h"
38 #if defined(_BOOT)
39 #include <dboot_asm.h>
40 #include <dboot_xboot.h>
41 #endif
43 #define VGA_COLOR_CRTC_INDEX 0x3d4
44 #define VGA_COLOR_CRTC_DATA 0x3d5
46 #if defined(__xpv) && defined(_BOOT)
49 * Device memory address
51 * In dboot under the hypervisor we don't have any memory mappings
52 * for the first meg of low memory so we can't access devices there.
53 * Intead we've mapped the device memory that we need to access into
54 * a local variable within dboot so we can access the device memory
55 * there.
57 extern unsigned short *video_fb;
58 #define VGA_SCREEN ((unsigned short *)video_fb)
60 #else /* __xpv && _BOOT */
62 /* Device memory address */
63 #define VGA_SCREEN ((unsigned short *)0xb8000)
65 #endif /* __xpv && _BOOT */
68 static void vga_set_crtc(int index, unsigned char val);
69 static unsigned char vga_get_crtc(int index);
71 void
72 vga_cursor_display(void)
74 unsigned char val, msl;
77 * Figure out the maximum scan line value. We need this to set the
78 * cursor size.
80 msl = vga_get_crtc(VGA_CRTC_MAX_S_LN) & 0x1f;
83 * Enable the cursor and set it's size. Preserve the upper two
84 * bits of the control register.
85 * - Bits 0-4 are the starting scan line of the cursor.
86 * Scanning is done from top-to-bottom. The top-most scan
87 * line is 0 and the bottom most scan line is the maximum scan
88 * line value.
89 * - Bit 5 is the cursor disable bit.
91 val = vga_get_crtc(VGA_CRTC_CSSL);
92 vga_set_crtc(VGA_CRTC_CSSL, (val & 0xc) | ((msl - 2) & 0x1f));
95 * Continue setting the cursors size.
96 * - Bits 0-4 are the ending scan line of the cursor.
97 * Scanning is done from top-to-bottom. The top-most scan
98 * line is 0 and the bottom most scan line is the maximum scan
99 * line value.
100 * - Bits 5-6 are the cursor skew.
102 vga_set_crtc(VGA_CRTC_CESL, msl);
106 void
107 vga_clear(int color)
109 unsigned short val;
110 int i;
112 val = (color << 8) | ' ';
114 for (i = 0; i < VGA_TEXT_ROWS * VGA_TEXT_COLS; i++) {
115 VGA_SCREEN[i] = val;
119 void
120 vga_drawc(int c, int color)
122 int row;
123 int col;
125 vga_getpos(&row, &col);
126 VGA_SCREEN[row*VGA_TEXT_COLS + col] = (color << 8) | c;
129 void
130 vga_scroll(int color)
132 unsigned short val;
133 int i;
135 val = (color << 8) | ' ';
137 for (i = 0; i < (VGA_TEXT_ROWS-1)*VGA_TEXT_COLS; i++) {
138 VGA_SCREEN[i] = VGA_SCREEN[i + VGA_TEXT_COLS];
140 for (; i < VGA_TEXT_ROWS * VGA_TEXT_COLS; i++) {
141 VGA_SCREEN[i] = val;
145 void
146 vga_setpos(int row, int col)
148 int off;
150 off = row * VGA_TEXT_COLS + col;
151 vga_set_crtc(VGA_CRTC_CLAH, off >> 8);
152 vga_set_crtc(VGA_CRTC_CLAL, off & 0xff);
155 void
156 vga_getpos(int *row, int *col)
158 int off;
160 off = (vga_get_crtc(VGA_CRTC_CLAH) << 8) + vga_get_crtc(VGA_CRTC_CLAL);
161 *row = off / VGA_TEXT_COLS;
162 *col = off % VGA_TEXT_COLS;
165 static void
166 vga_set_crtc(int index, unsigned char val)
168 outb(VGA_COLOR_CRTC_INDEX, index);
169 outb(VGA_COLOR_CRTC_DATA, val);
172 static unsigned char
173 vga_get_crtc(int index)
175 outb(VGA_COLOR_CRTC_INDEX, index);
176 return (inb(VGA_COLOR_CRTC_DATA));