blob: 123ef978e8f7cecdbb51859803014c14efb5a979 (
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
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
|
/*
Copyright (C) 2024 Free Software Foundation, Inc.
This file is part of the GNU Hurd.
The GNU Hurd is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
The GNU Hurd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
#ifndef _FB_H_
#define _FB_H_ 1
#include <stdint.h>
#include "bdf.h"
#include "display.h"
#include "vga-hw.h"
#define FB_VIDEO_MEM_MAX_W 1920
#define FB_VIDEO_MEM_MAX_H 1080
#define FB_VIDEO_MEM_MAX_BPP 32
#define FONT_PIXELS_W 8
#define FONT_PIXELS_H 16
extern int fb_type;
error_t fb_get_multiboot_params (void);
error_t fb_display_init (void **handle, struct driver_ops *ops);
struct multiboot_framebuffer_info {
uint64_t framebuffer_addr;
uint32_t framebuffer_pitch;
uint32_t framebuffer_width;
uint32_t framebuffer_height;
uint8_t framebuffer_bpp;
#define MULTIBOOT_FRAMEBUFFER_TYPE_INDEXED 0
#define MULTIBOOT_FRAMEBUFFER_TYPE_RGB 1
#define MULTIBOOT_FRAMEBUFFER_TYPE_EGA_TEXT 2
uint8_t framebuffer_type;
union
{
struct
{
uint32_t framebuffer_palette_addr;
uint16_t framebuffer_palette_num_colors;
};
struct
{
uint8_t framebuffer_red_field_position;
uint8_t framebuffer_red_mask_size;
uint8_t framebuffer_green_field_position;
uint8_t framebuffer_green_mask_size;
uint8_t framebuffer_blue_field_position;
uint8_t framebuffer_blue_mask_size;
};
};
} __attribute__((packed));
/*
* Multiboot information structure as passed by the boot loader.
*/
struct multiboot_raw_info {
uint32_t flags;
uint32_t mem_lower;
uint32_t mem_upper;
uint32_t unused0;
uint32_t cmdline;
uint32_t mods_count;
uint32_t mods_addr;
uint32_t shdr_num;
uint32_t shdr_size;
uint32_t shdr_addr;
uint32_t shdr_strndx;
uint32_t mmap_length;
uint32_t mmap_addr;
uint32_t unused1[9];
struct multiboot_framebuffer_info fb_info;
} __attribute__((packed));
struct fbchr
{
wchar_t chr;
unsigned int used : 1;
unsigned int fgcol: 3;
unsigned int bgcol: 3;
};
typedef struct fb_mousecursor
{
float posx;
float posy;
int visible;
int enabled;
} fb_mousecursor_t;
struct fb_display
{
/* The font for this display. */
bdf_font_t font;
int width;
int height;
/* The state of the mouse cursor. */
fb_mousecursor_t mousecursor;
/* The position of the cursor (in characters) */
int cursor_pos_x;
int cursor_pos_y;
/* Remember for each cell on the display the glyph written to it and
the colours assigned. 0 means unassigned. */
struct fbchr refmatrix[FB_VIDEO_MEM_MAX_H / FONT_PIXELS_H][FB_VIDEO_MEM_MAX_W / FONT_PIXELS_W];
};
#endif
|