1 /* 2 * This file and its contents are supplied under the terms of the 3 * Common Development and Distribution License ("CDDL"), version 1.0. 4 * You may only use this file in accordance with the terms of version 5 * 1.0 of the CDDL. 6 * 7 * A full copy of the text of the CDDL should have accompanied this 8 * source. A copy of the CDDL is also available via the Internet at 9 * http://www.illumos.org/license/CDDL. 10 */ 11 12 /* 13 * Copyright 2016 Toomas Soome <tsome@me.com> 14 */ 15 16 #include <sys/types.h> 17 #include <sys/bootinfo.h> 18 19 #ifndef _BOOT_CONSOLE_IMPL_H 20 #define _BOOT_CONSOLE_IMPL_H 21 22 /* 23 * Boot console implementation details. 24 */ 25 26 #ifdef __cplusplus 27 extern "C" { 28 #endif 29 30 extern boolean_t xbi_fb_init(struct xboot_info *); 31 extern void boot_fb_init(int); 32 extern void boot_fb_putchar(uint8_t); 33 extern void boot_vga_init(int); 34 35 extern void vga_setpos(int, int); 36 extern void vga_getpos(int *, int *); 37 extern void vga_scroll(int); 38 extern void vga_drawc(int, int); 39 40 #ifdef __cplusplus 41 } 42 #endif 43 44 #endif /* _BOOT_CONSOLE_IMPL_H */ 45