blob: 10da5aa10081fddd1da8b38657ed781afc1ef275 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +02002
3#ifndef __BOOTSPLASH_H__
4#define __BOOTSPLASH_H__
5
6#include <types.h>
7
8/**
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +02009 * 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.
13 */
14void set_bootsplash(unsigned char *framebuffer, unsigned int x_resolution,
15 unsigned int y_resolution, unsigned int fb_resolution);
16
Kyösti Mälkki4949a3d2021-01-09 20:38:43 +020017
18void bmp_load_logo(uint32_t *logo_ptr, uint32_t *logo_size);
19void bmp_release_logo(void);
20
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020021#endif