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 /* Console device callbacks. */
31 typedef struct bcons_dev {
32 void (*bd_putchar)(int);
33 void (*bd_eraseline)(void);
34 void (*bd_cursor)(boolean_t);
35 void (*bd_setpos)(int, int);
36 void (*bd_shift)(int);
37 } bcons_dev_t;
38
39 extern boolean_t xbi_fb_init(struct xboot_info *, bcons_dev_t *);
40 extern void boot_fb_init(int);
41 extern void boot_vga_init(bcons_dev_t *);
42
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #endif /* _BOOT_CONSOLE_IMPL_H */