blob: 3b2967d017a5690c65c2804a0cae880bc995767d [file] [log] [blame]
Sean Andersonc56468a62023-10-14 16:47:57 -04001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6
7#include <common.h>
8#include <image.h>
9#include <os.h>
10#include <spl.h>
11#include <test/ut.h>
12
13/* Declare a new SPL test */
14#define SPL_TEST(_name, _flags) UNIT_TEST(_name, _flags, spl_test)
15
16/* Context used for this test */
17struct text_ctx {
18 int fd;
19};
20
21static ulong read_fit_image(struct spl_load_info *load, ulong sector,
22 ulong count, void *buf)
23{
24 struct text_ctx *text_ctx = load->priv;
25 off_t offset, ret;
26 ssize_t res;
27
28 offset = sector * load->bl_len;
29 ret = os_lseek(text_ctx->fd, offset, OS_SEEK_SET);
30 if (ret != offset) {
31 printf("Failed to seek to %zx, got %zx (errno=%d)\n", offset,
32 ret, errno);
33 return 0;
34 }
35
36 res = os_read(text_ctx->fd, buf, count * load->bl_len);
37 if (res == -1) {
38 printf("Failed to read %lx bytes, got %ld (errno=%d)\n",
39 count * load->bl_len, res, errno);
40 return 0;
41 }
42
43 return count;
44}
45
46static int spl_test_load(struct unit_test_state *uts)
47{
48 struct spl_image_info image;
49 struct legacy_img_hdr *header;
50 struct text_ctx text_ctx;
51 struct spl_load_info load;
52 char fname[256];
53 int ret;
54 int fd;
55
56 memset(&load, '\0', sizeof(load));
57 load.bl_len = 512;
58 load.read = read_fit_image;
59
60 ret = sandbox_find_next_phase(fname, sizeof(fname), true);
Sean Andersonb5bf83b2023-10-14 16:47:58 -040061 if (ret)
62 ut_assertf(0, "%s not found, error %d\n", fname, ret);
Sean Andersonc56468a62023-10-14 16:47:57 -040063 load.filename = fname;
64
65 header = spl_get_load_buffer(-sizeof(*header), sizeof(*header));
66
67 fd = os_open(fname, OS_O_RDONLY);
68 ut_assert(fd >= 0);
69 ut_asserteq(512, os_read(fd, header, 512));
70 text_ctx.fd = fd;
71
72 load.priv = &text_ctx;
73
74 ut_assertok(spl_load_simple_fit(&image, &load, 0, header));
75
76 return 0;
77}
78SPL_TEST(spl_test_load, 0);