blob: f69a5ac59bc61766fecd2da659810029475e8aff [file] [log] [blame]
Kevin O'Connor5108c692011-12-31 19:13:45 -05001#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
Kevin O'Connord83c87b2013-01-21 01:14:12 -050010#include "geodevga.h" // geodevga_setup
Kevin O'Connor5108c692011-12-31 19:13:45 -050011
Kevin O'Connor10dff3d2012-01-09 19:19:44 -050012static inline struct vgamode_s *vgahw_find_mode(int mode) {
Kevin O'Connorc4a0b972012-01-09 20:21:31 -050013 if (CONFIG_VGA_CIRRUS)
14 return clext_find_mode(mode);
15 if (CONFIG_VGA_BOCHS)
16 return bochsvga_find_mode(mode);
Kevin O'Connor10dff3d2012-01-09 19:19:44 -050017 return stdvga_find_mode(mode);
18}
19
Kevin O'Connore6bc4c12012-01-21 11:26:37 -050020static inline int vgahw_set_mode(struct vgamode_s *vmode_g, int flags) {
Kevin O'Connor5108c692011-12-31 19:13:45 -050021 if (CONFIG_VGA_CIRRUS)
Kevin O'Connore6bc4c12012-01-21 11:26:37 -050022 return clext_set_mode(vmode_g, flags);
Kevin O'Connor5108c692011-12-31 19:13:45 -050023 if (CONFIG_VGA_BOCHS)
Kevin O'Connore6bc4c12012-01-21 11:26:37 -050024 return bochsvga_set_mode(vmode_g, flags);
25 return stdvga_set_mode(vmode_g, flags);
Kevin O'Connor5108c692011-12-31 19:13:45 -050026}
27
Kevin O'Connor34203cd2012-01-09 20:55:31 -050028static inline void vgahw_list_modes(u16 seg, u16 *dest, u16 *last) {
29 if (CONFIG_VGA_CIRRUS)
30 clext_list_modes(seg, dest, last);
31 else if (CONFIG_VGA_BOCHS)
32 bochsvga_list_modes(seg, dest, last);
33 else
34 stdvga_list_modes(seg, dest, last);
35}
36
Kevin O'Connord83c87b2013-01-21 01:14:12 -050037static inline int vgahw_setup(void) {
Kevin O'Connor161d2012011-12-31 19:42:21 -050038 if (CONFIG_VGA_CIRRUS)
Kevin O'Connord83c87b2013-01-21 01:14:12 -050039 return clext_setup();
Kevin O'Connor161d2012011-12-31 19:42:21 -050040 if (CONFIG_VGA_BOCHS)
Kevin O'Connord83c87b2013-01-21 01:14:12 -050041 return bochsvga_setup();
Nils24ddd862012-01-14 12:15:14 -050042 if (CONFIG_VGA_GEODEGX2 || CONFIG_VGA_GEODELX)
Kevin O'Connord83c87b2013-01-21 01:14:12 -050043 return geodevga_setup();
44 return stdvga_setup();
Kevin O'Connor161d2012011-12-31 19:42:21 -050045}
46
Kevin O'Connor9961f992012-01-21 11:53:44 -050047static inline int vgahw_get_window(struct vgamode_s *vmode_g, int window) {
48 if (CONFIG_VGA_CIRRUS)
49 return clext_get_window(vmode_g, window);
50 if (CONFIG_VGA_BOCHS)
51 return bochsvga_get_window(vmode_g, window);
52 return stdvga_get_window(vmode_g, window);
53}
54
55static inline int vgahw_set_window(struct vgamode_s *vmode_g, int window
56 , int val) {
57 if (CONFIG_VGA_CIRRUS)
58 return clext_set_window(vmode_g, window, val);
59 if (CONFIG_VGA_BOCHS)
60 return bochsvga_set_window(vmode_g, window, val);
61 return stdvga_set_window(vmode_g, window, val);
62}
63
Kevin O'Connor3876b532012-01-24 00:07:44 -050064static inline int vgahw_get_linelength(struct vgamode_s *vmode_g) {
65 if (CONFIG_VGA_CIRRUS)
66 return clext_get_linelength(vmode_g);
67 if (CONFIG_VGA_BOCHS)
68 return bochsvga_get_linelength(vmode_g);
69 return stdvga_get_linelength(vmode_g);
70}
71
72static inline int vgahw_set_linelength(struct vgamode_s *vmode_g, int val) {
73 if (CONFIG_VGA_CIRRUS)
74 return clext_set_linelength(vmode_g, val);
75 if (CONFIG_VGA_BOCHS)
76 return bochsvga_set_linelength(vmode_g, val);
77 return stdvga_set_linelength(vmode_g, val);
78}
79
Kevin O'Connord61fc532012-01-27 20:37:45 -050080static inline int vgahw_get_displaystart(struct vgamode_s *vmode_g) {
81 if (CONFIG_VGA_CIRRUS)
82 return clext_get_displaystart(vmode_g);
83 if (CONFIG_VGA_BOCHS)
84 return bochsvga_get_displaystart(vmode_g);
85 return stdvga_get_displaystart(vmode_g);
86}
87
88static inline int vgahw_set_displaystart(struct vgamode_s *vmode_g, int val) {
89 if (CONFIG_VGA_CIRRUS)
90 return clext_set_displaystart(vmode_g, val);
91 if (CONFIG_VGA_BOCHS)
92 return bochsvga_set_displaystart(vmode_g, val);
93 return stdvga_set_displaystart(vmode_g, val);
94}
95
Kevin O'Connore737b172012-02-04 11:08:39 -050096static inline int vgahw_get_dacformat(struct vgamode_s *vmode_g) {
97 if (CONFIG_VGA_BOCHS)
98 return bochsvga_get_dacformat(vmode_g);
99 return stdvga_get_dacformat(vmode_g);
100}
101
102static inline int vgahw_set_dacformat(struct vgamode_s *vmode_g, int val) {
103 if (CONFIG_VGA_BOCHS)
104 return bochsvga_set_dacformat(vmode_g, val);
105 return stdvga_set_dacformat(vmode_g, val);
106}
107
Kevin O'Connor2469f892012-02-04 12:40:02 -0500108static inline int vgahw_size_state(int states) {
109 if (CONFIG_VGA_CIRRUS)
110 return clext_size_state(states);
111 if (CONFIG_VGA_BOCHS)
112 return bochsvga_size_state(states);
113 return stdvga_size_state(states);
114}
115
116static inline int vgahw_save_state(u16 seg, void *data, int states) {
117 if (CONFIG_VGA_CIRRUS)
118 return clext_save_state(seg, data, states);
119 if (CONFIG_VGA_BOCHS)
120 return bochsvga_save_state(seg, data, states);
121 return stdvga_save_state(seg, data, states);
122}
123
124static inline int vgahw_restore_state(u16 seg, void *data, int states) {
125 if (CONFIG_VGA_CIRRUS)
126 return clext_restore_state(seg, data, states);
127 if (CONFIG_VGA_BOCHS)
128 return bochsvga_restore_state(seg, data, states);
129 return stdvga_restore_state(seg, data, states);
130}
131
Kevin O'Connor5108c692011-12-31 19:13:45 -0500132#endif // vgahw.h