blob: d4dea873b3190e296221dd55b58f4d3edb33c53e [file] [log] [blame]
Stefan Reinauere5627382005-01-15 00:29:10 +00001/*
Luc Verhaegen5c5beb72009-05-29 03:04:16 +00002 * Copyright (C) 2007-2009 Luc Verhaegen <libv@skynet.be>
Stefan Reinauere5627382005-01-15 00:29:10 +00003 *
Luc Verhaegen5c5beb72009-05-29 03:04:16 +00004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
Stefan Reinauere5627382005-01-15 00:29:10 +00008 *
Luc Verhaegen5c5beb72009-05-29 03:04:16 +00009 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
Stefan Reinauere5627382005-01-15 00:29:10 +000013 *
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000014 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 51
16 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauere5627382005-01-15 00:29:10 +000017 */
Stefan Reinauere5627382005-01-15 00:29:10 +000018
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000019#ifndef VGA_H
20#define VGA_H
Stefan Reinauere5627382005-01-15 00:29:10 +000021
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000022#define VGA_FB 0xB8000
23#define VGA_FB_SIZE 0x4000 /* char + attr = word sized so 0x8000 / 2 */
24#define VGA_COLUMNS 80
25#define VGA_LINES 25
Stefan Reinauere5627382005-01-15 00:29:10 +000026
Myles Watsonc6aadbe2009-10-20 16:24:23 +000027#if CONFIG_VGA
Stefan Reinauere5627382005-01-15 00:29:10 +000028
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000029void vga_io_init(void);
Stefan Reinauere5627382005-01-15 00:29:10 +000030
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000031void vga_textmode_init(void);
Stefan Reinauere5627382005-01-15 00:29:10 +000032
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000033void vga_cursor_enable(int enable);
34void vga_cursor_reset(void);
35void vga_cursor_set(unsigned int line, unsigned int character);
Stefan Reinauere5627382005-01-15 00:29:10 +000036
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000037void vga_frame_set(unsigned int line, unsigned int character);
Stefan Reinauere5627382005-01-15 00:29:10 +000038
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000039void vga_line_write(unsigned int line, const char *string);
Stefan Reinauere5627382005-01-15 00:29:10 +000040
Myles Watsonc6aadbe2009-10-20 16:24:23 +000041#endif /* CONFIG_VGA */
Stefan Reinauere5627382005-01-15 00:29:10 +000042
Luc Verhaegen5c5beb72009-05-29 03:04:16 +000043#endif /* VGA_H */