summaryrefslogtreecommitdiff
path: root/src/drivers/video/vga.h
blob: 69b459119804cf185db18f5bc8519451bc863c41 (plain)
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
#ifndef VGA_H
#define VGA_H

#include <stdbool.h>

#include "string.h"

#include "interrupts.h"
#include "port.h"

#include "driver.h"

#define NOF_MODE_REGS 66

typedef struct {
	int x;
	int y;
	int color_depth;
	uint8_t regs[NOF_MODE_REGS];
	uint8_t *segment;
} vga_mode_t;

typedef struct {
	driver_t base;
	interrupt_t *interrupts;
	port8_t misc_port;
	port8_t crtc_index_port;
	port8_t crtc_data_port;
	port8_t sequencer_index_port;
	port8_t sequencer_data_port;
	port8_t graphics_controller_index_port;
	port8_t graphics_controller_data_port;
	port8_t attribute_controller_index_port;
	port8_t attribute_controller_read_port;
	port8_t attribute_controller_write_port;
	port8_t attribute_controller_reset_port;
	vga_mode_t mode;
	void *context;
} vga_t;

typedef struct {
	driver_vtable_t base;
} vga_vtable_t;

void vga_init( vga_t *vga, void *context );
void vga_activate( void *obj );
void vga_deactivate( void *obj );
void vga_deinit( void *obj );
void vga_print_info( void *obj );

vga_mode_t vga_make_mode( const int x, const int y, const int color_depth );
bool vga_set_mode( vga_t *vga, const vga_mode_t mode );
bool vga_supports_mode( const vga_mode_t mode );

typedef struct {
	int R;
	int G;
	int B;
} vga_color_t;

vga_color_t vga_make_RGB( int R, int G, int B );

void vga_set_pixel( vga_t *vga, const int x, const int y, const vga_color_t color );
void vga_draw_rectangle( vga_t *vga, const int x, const int y, const int w, const int h, const vga_color_t color );
void vga_clear_screen( vga_t *vga, const vga_color_t color );

#endif // VGA_H