summaryrefslogtreecommitdiffstats
path: root/src/include/framebuffer_info.h
blob: 07ddd31ce8ad8a938fb71c969f8f86451a6624ee (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
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef __FRAMEBUFFER_INFO_H_
#define __FRAMEBUFFER_INFO_H_

#include <stdint.h>
#include <stdbool.h>
#include <commonlib/coreboot_tables.h>

struct fb_info;

struct fb_info *
fb_add_framebuffer_info_ex(const struct lb_framebuffer *fb);

struct fb_info *fb_add_framebuffer_info(uintptr_t fb_addr, uint32_t x_resolution,
					uint32_t y_resolution, uint32_t bytes_per_line,
					uint8_t bits_per_pixel);

void fb_set_orientation(struct fb_info *info,
			enum lb_fb_orientation orientation);

struct edid;
struct fb_info *fb_new_framebuffer_info_from_edid(const struct edid *edid,
						  uintptr_t fb_addr);

#endif /* __FRAMEBUFFER_INFO_H_ */