23 lines
575 B
C
23 lines
575 B
C
|
/* 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);
|
||
|
|
||
|
#endif /* __FRAMEBUFFER_INFO_H_ */
|