blob: 38d0ce7c97b0698b91533a0fa89b397ff733b1a0 [file] [log] [blame]
Angel Pons118a9c72020-04-02 23:48:34 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +02002
3#include <cbfs.h>
4#include <vbe.h>
5#include <console/console.h>
6#include <endian.h>
7#include <bootsplash.h>
8
9#include "jpeg.h"
10
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020011
12void set_bootsplash(unsigned char *framebuffer, unsigned int x_resolution,
Nico Huber99eee162023-07-14 00:09:00 +020013 unsigned int y_resolution, unsigned int bytes_per_line,
14 unsigned int fb_resolution)
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020015{
Patrick Georgi1d029b42023-10-06 20:19:15 +020016 if ((x_resolution > INT_MAX) || (y_resolution) > INT_MAX) {
17 printk(BIOS_ERR, "Display resolution way too large.\n");
18 return;
19 }
20 int xres = x_resolution, yres = y_resolution;
Johanna Schander7fc006f2019-07-28 08:48:36 +020021 printk(BIOS_INFO, "Setting up bootsplash in %dx%d@%d\n", x_resolution, y_resolution,
22 fb_resolution);
Patrick Georgi1d029b42023-10-06 20:19:15 +020023 size_t filesize;
24 unsigned char *jpeg = cbfs_map("bootsplash.jpg", &filesize);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020025 if (!jpeg) {
26 printk(BIOS_ERR, "Could not find bootsplash.jpg\n");
27 return;
28 }
29
Patrick Georgi1d029b42023-10-06 20:19:15 +020030 unsigned int image_width, image_height;
31 if (jpeg_fetch_size(jpeg, filesize, &image_width, &image_height) != 0) {
32 printk(BIOS_ERR, "Could not parse bootsplash.jpg\n");
33 return;
34 }
Johanna Schander7fc006f2019-07-28 08:48:36 +020035
36 printk(BIOS_DEBUG, "Bootsplash image resolution: %dx%d\n", image_width, image_height);
37
Patrick Georgi1d029b42023-10-06 20:19:15 +020038 if (image_width > xres || image_height > yres) {
Nico Huber99eee162023-07-14 00:09:00 +020039 printk(BIOS_NOTICE, "Bootsplash image can't fit framebuffer.\n");
40 cbfs_unmap(jpeg);
41 return;
42 }
43
44 /* center image: */
Patrick Georgi1d029b42023-10-06 20:19:15 +020045 framebuffer += (yres - image_height) / 2 * bytes_per_line
46 + (xres - image_width) / 2 * (fb_resolution / 8);
Nico Huber99eee162023-07-14 00:09:00 +020047
Patrick Georgi1d029b42023-10-06 20:19:15 +020048 int ret = jpeg_decode(jpeg, filesize, framebuffer, image_width, image_height,
49 bytes_per_line, fb_resolution);
Julius Werner834b3ec2020-03-04 16:52:08 -080050 cbfs_unmap(jpeg);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020051 if (ret != 0) {
52 printk(BIOS_ERR, "Bootsplash could not be decoded. jpeg_decode returned %d.\n",
53 ret);
54 return;
55 }
56 printk(BIOS_INFO, "Bootsplash loaded\n");
57}