aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/vesa.h
blob: c557e95730b1a2e82d3c40637c6a866040e40fb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#ifndef MELVIX_VESA_H
#define MELVIX_VESA_H

#include <stdint.h>
#include <system.h>

/**
 * The CPUs response to the 0x4F00 call
 * Used to receive the supported video modes
 */
struct vbe_info {
	char signature[4];
	u16 version;
	u32 oem;
	u32 capabilities;
	u32 video_modes;
	u16 video_memory;
	u16 software_rev;
	u32 vendor;
	u32 product_name;
	u32 product_rev;
	char reserved[222];
	char oem_data[256];
} __attribute__((packed));

/**
 * The CPUs response to the 0x4F01 call
 * Used to get information about a specific video mode code
 */
struct vbe_mode_info_all {
	u16 attributes;
	u8 window_a;
	u8 window_b;
	u16 granularity;
	u16 window_size;
	u16 segment_a;
	u16 segment_b;
	u32 win_func_ptr;
	u16 pitch;
	u16 width;
	u16 height;
	u8 w_char;
	u8 y_char;
	u8 planes;
	u8 bpp;
	u8 banks;
	u8 memory_model;
	u8 bank_size;
	u8 image_pages;
	u8 reserved0;

	u8 red_mask;
	u8 red_position;
	u8 green_mask;
	u8 green_position;
	u8 blue_mask;
	u8 blue_position;
	u8 reserved_mask;
	u8 reserved_position;
	u8 direct_color_attributes;

	u32 framebuffer;
	u32 off_screen_mem_off;
	u16 off_screen_mem_size;
	u8 reserved1[206];
} __attribute__((packed));

struct vbe_mode_info {
	u16 attributes;
	u16 pitch;
	u16 width;
	u16 height;
	u8 bpp;
	u8 memory_model;
	u32 framebuffer;
} __attribute__((packed));

/**
 * Set the video mode to a specified resolution using
 * a video mode code
 * @param mode The requested video mode code from 0x4F00 call
 */
void vbe_set_mode(unsigned short mode);

/**
 * Find the highest resolution using 0x4F00 and call
 * vbe_set_mode using the video_modes far_ptr
 */
void set_optimal_resolution();

/**
 * Sets one of the fonts inside the font header file
 * @param height The desired font height
 */
void vesa_set_font(int height);

/**
 * Draws a single char
 * @param ch The char
 */
void vesa_draw_char(char ch);

/**
 * Draw a char from keyboard
 * @param ch The character
 */
void vesa_keyboard_char(char ch);

/**
 * Draw a string in VESA mode
 * @param data The string
 */
void vesa_draw_string(const char *data);

/**
 * Draw a number in VESA mode
 * @param n The number
 */
void vesa_draw_number(int n);

/**
 * Updates the cursor
 * @param x The X position
 * @param y The Y position
 */
void vesa_draw_cursor(int x, int y);

/**
 * Sets the color using a rgb number
 * @param color The color
 */
void vesa_set_color(u32 color);

/**
 * An enum with vesa colors
 * From https://github.com/joshdick/onedark.vim/ License: MIT
 */
enum vesa_color {
	vesa_black = 0x1d1f24,
	vesa_red = 0xE06C75,
	vesa_green = 0x98C379,
	vesa_yellow = 0xE5C07B,
	vesa_blue = 0x61AFEF,
	vesa_magenta = 0xC678DD,
	vesa_cyan = 0x56B6C2,
	vesa_white = 0xABB2BF,
	vesa_dark_black = 0x3E4452,
	vesa_dark_red = 0xBE5046,
	vesa_dark_green = 0x98C379,
	vesa_dark_yellow = 0xD19A66,
	vesa_dark_blue = 0x61AFEF,
	vesa_dark_magenta = 0xC678DD,
	vesa_dark_cyan = 0x56B6C2,
	vesa_dark_white = 0x5C6370,
};

/**
 * The default text color
 */
const u32 default_text_color;

/**
 * The current text color (as normalized array)
 */
u32 terminal_color[3];

/**
 * The current input
 */
char text[1024];

/**
 * The current video mode
 */
struct vbe_mode_info *current_mode_info;

/**
 * The width of the current video mode
 */
int vbe_width;

/**
 * The height of the current video mode
 */
int vbe_height;

/**
 * The pitch (bytes per line) of the current video mode
 */
int vbe_pitch;

/**
 * The bytes per line (pixel width) of the current video mode
 */
int vbe_bpl;

/**
 * The framebuffer interface
 */
u8 *fb;

u8 *cursor_buffer;

#endif