Project

General

Profile

Statistics
| Revision:

root / lab5 / graphics.c @ 125

History | View | Annotate | Download (4.19 KB)

1 95 up20180655
#include "graphics.h"
2
#include "graphics_macros.h"
3
#include "errors.h"
4
5
#include <lcom/lcf.h>
6
7
#include <stdio.h>
8
9
static void *video_mem; /** @brief Frame-buffer VM address */
10 103 up20180655
static vbe_mode_info_t vbe_mem_info;
11 99 up20180655
static mmap_t mem_map;
12 95 up20180655
13 99 up20180655
int (get_permission)(unsigned int base_addr, unsigned int size) {
14 95 up20180655
    struct minix_mem_range mmr;
15 99 up20180655
    mmr.mr_base = base_addr;
16
    mmr.mr_limit = base_addr + size;
17
    return sys_privctl(SELF, SYS_PRIV_ADD_MEM, &mmr);
18
}
19 95 up20180655
20 121 up20180642
//int (get_permissions_first_mbyte)(void) {
21
//    return get_permission(MBYTE_BASE, MBYTE_SIZE);
22
//}
23 95 up20180655
24 103 up20180655
int (vbe_get_mode_information)(uint16_t mode) {
25
    memset(&vbe_mem_info, 0, sizeof(vbe_mode_info_t)); // reset values
26 95 up20180655
27 99 up20180655
    struct reg86 reg_86;
28 103 up20180655
    memset(&reg_86, 0, sizeof(struct reg86)); // reset struct
29 98 up20180655
30 99 up20180655
    vbe_mode_info_t *virtual_addr = lm_alloc(sizeof(vbe_mode_info_t), &mem_map);
31 98 up20180655
32 99 up20180655
    reg_86.intno = VC_BIOS_SERV;
33
    reg_86.ah = VBE_CALL;
34
    reg_86.al = VBE_MD_INFO;
35
    reg_86.cx = mode;
36
    reg_86.es = PB2BASE(mem_map.phys);
37
    reg_86.di = PB2OFF(mem_map.phys);
38
    // BIOS CALL
39
    if (sys_int86(&reg_86)) {
40
        printf("%s: sys_int86 failed\n", __func__);
41
        if (free_memory()) {
42
            printf("%s: lm_free failed\n", __func__);
43
            return LCF_ERROR;
44
        }
45
        return BIOS_CALL_ERROR;
46 95 up20180655
    }
47
48 103 up20180655
    memcpy((void*)&vbe_mem_info, (void*)virtual_addr, mem_map.size);
49 99 up20180655
    return SUCCESS;
50
}
51 95 up20180655
52 103 up20180655
phys_bytes get_phys_addr(void) {
53
    return vbe_mem_info.PhysBasePtr;
54
}
55
56
unsigned int get_vram_size(void) {
57
    return vbe_mem_info.XResolution * vbe_mem_info.YResolution * ((vbe_mem_info.BitsPerPixel + 7) >> 3);
58
}
59
60
uint16_t get_XRes(void) {
61
    return vbe_mem_info.XResolution;
62
}
63
64
uint16_t get_YRes(void) {
65
    return vbe_mem_info.YResolution;
66
}
67
68
uint16_t get_bits_pixel(void) {
69
    return vbe_mem_info.BitsPerPixel;
70
}
71
72 105 up20180655
uint16_t get_bytes_pixel(void) {
73
    return (vbe_mem_info.BitsPerPixel + 7) >> 3;
74
}
75
76 112 up20180642
uint16_t get_RedMaskSize  (void){ return vbe_mem_info.RedMaskSize  ; }
77
uint16_t get_GreenMaskSize(void){ return vbe_mem_info.GreenMaskSize; }
78
uint16_t get_BlueMaskSize (void){ return vbe_mem_info.BlueMaskSize ; }
79 111 up20180642
80 103 up20180655
int (map_vram)(void) {
81 99 up20180655
    int r;
82 103 up20180655
    unsigned int vram_base = get_phys_addr();
83
    unsigned int vram_size = get_vram_size();
84 99 up20180655
    if ((r = get_permission(vram_base, vram_size)))
85
        panic("%s: sys_privctl (ADD MEM) failed: %d\n", __func__, r);
86 95 up20180655
87 99 up20180655
    video_mem = vm_map_phys(SELF, (void *)vram_base, vram_size);
88 95 up20180655
89
    if (video_mem == MAP_FAILED)
90 99 up20180655
        panic("%s: couldn't map video memory.", __func__);
91 95 up20180655
92 99 up20180655
    return SUCCESS;
93
}
94
95
int (free_memory)(void) {
96 103 up20180655
    return !lm_free(&mem_map);
97 99 up20180655
}
98
99 112 up20180642
int (set_pixel)(uint16_t x, uint16_t y, uint32_t color) {
100
    if (x >= vbe_mem_info.XResolution || y >= vbe_mem_info.YResolution) {
101 105 up20180655
        printf("%s: invalid pixel.\n", __func__);
102
        return OUT_OF_RANGE;
103
    }
104 112 up20180642
    unsigned int pos = (x + y * vbe_mem_info.XResolution) * get_bytes_pixel();
105 106 up20180655
    memcpy((void*)((unsigned int)video_mem + pos), &color, get_bytes_pixel());
106 105 up20180655
    return SUCCESS;
107
}
108
109 99 up20180655
int (set_graphics_mode)(uint16_t mode) {
110
    struct reg86 reg_86;
111
112 103 up20180655
    memset(&reg_86, 0, sizeof(struct reg86)); // reset struct
113 96 up20180655
114 99 up20180655
    // Set Reg86
115 98 up20180655
    reg_86.intno = VC_BIOS_SERV;
116
    reg_86.ah = VBE_CALL;
117
    reg_86.al = SET_VBE_MD;
118
    reg_86.bx = mode | LINEAR_FRAME_BUFFER_MD;
119 96 up20180655
120 98 up20180655
    // BIOS CALL
121
    if (sys_int86(&reg_86)) {
122
        printf("%s: sys_int86 failed\n", __func__);
123
        return BIOS_CALL_ERROR;
124
    }
125 99 up20180655
126 95 up20180655
    return SUCCESS;
127
}
128 102 up20180642
129 120 up20180642
int (draw_hline)(uint16_t x, uint16_t y, uint16_t len, uint32_t color){
130 109 up20180655
    int r;
131 117 up20180642
    for (uint16_t i = 0; i < len; i++)
132 109 up20180655
        if ((r = set_pixel(x + i, y, color))) return r;
133
    return SUCCESS;
134 102 up20180642
}
135 120 up20180642
int (vg_draw_hline)(uint16_t x, uint16_t y, uint16_t len, uint32_t color){
136
    return draw_hline(x,y,len,color);
137
}
138 109 up20180655
139 119 up20180642
int (draw_rectangle)(uint16_t x, uint16_t y,uint16_t width, uint16_t height, uint32_t color)        {
140 109 up20180655
    int r;
141 117 up20180642
    for (uint16_t i = 0; i < height; i++)
142 120 up20180642
        if ((r = draw_hline(x, y + i, width, color))) return r;
143 109 up20180655
    return SUCCESS;
144
}
145 120 up20180642
int (vg_draw_rectangle)(uint16_t x, uint16_t y,uint16_t width, uint16_t height, uint32_t color){
146
    return draw_rectangle(x,y,width,height, color);
147
}