ACPI: Add acpigen_write_PTC()
[coreboot.git] / src / include / bootsplash.h
blob10da5aa10081fddd1da8b38657ed781afc1ef275
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __BOOTSPLASH_H__
4 #define __BOOTSPLASH_H__
6 #include <types.h>
8 /**
9 * Sets up the framebuffer with the bootsplash.jpg from cbfs.
10 * Returns 0 on success
11 * CB_ERR on cbfs errors
12 * and >0 on jpeg errors.
14 void set_bootsplash(unsigned char *framebuffer, unsigned int x_resolution,
15 unsigned int y_resolution, unsigned int fb_resolution);
18 void bmp_load_logo(uint32_t *logo_ptr, uint32_t *logo_size);
19 void bmp_release_logo(void);
21 #endif