vgabios: Use vgamode_s in cirrus and bochsvga mode tables.
[seabios.git] / vgasrc / vgahw.h
1 #ifndef __VGAHW_H
2 #define __VGAHW_H
3
4 #include "types.h" // u8
5 #include "config.h" // CONFIG_*
6
7 #include "clext.h" // clext_set_mode
8 #include "bochsvga.h" // bochsvga_set_mode
9 #include "stdvga.h" // stdvga_set_mode
10 #include "geodevga.h" // geodevga_init
11
12 static inline struct vgamode_s *vgahw_find_mode(int mode) {
13     if (CONFIG_VGA_CIRRUS)
14         return clext_find_mode(mode);
15     if (CONFIG_VGA_BOCHS)
16         return bochsvga_find_mode(mode);
17     return stdvga_find_mode(mode);
18 }
19
20 static inline int vgahw_set_mode(int mode, int flags) {
21     if (CONFIG_VGA_CIRRUS)
22         return clext_set_mode(mode, flags);
23     if (CONFIG_VGA_BOCHS)
24         return bochsvga_set_mode(mode, flags);
25     return stdvga_set_mode(mode, flags);
26 }
27
28 static inline int vgahw_init(void) {
29     if (CONFIG_VGA_CIRRUS)
30         return clext_init();
31     if (CONFIG_VGA_BOCHS)
32         return bochsvga_init();
33     if (CONFIG_VGA_GEODEGX2 || CONFIG_VGA_GEODELX)
34         return geodevga_init();
35     return stdvga_init();
36 }
37
38 #endif // vgahw.h