blob: 058db6154b0876c7c7b83c58b9a220eb9c2a69d4 [file] [log] [blame]
Simon Glassc263e212022-10-20 18:23:11 -06001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Verified Boot for Embedded (VBE) loading firmware phases
4 *
5 * Copyright 2022 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#define LOG_CATEGORY LOGC_BOOT
10
11#include <common.h>
12#include <dm.h>
13#include <bootflow.h>
14#include <vbe.h>
15#include <version_string.h>
16#include <dm/device-internal.h>
17#include "vbe_simple.h"
18
19int vbe_simple_fixup_node(ofnode node, struct simple_state *state)
20{
Simon Glasse45d2262022-10-20 18:23:12 -060021 const char *version, *str;
Simon Glassc263e212022-10-20 18:23:11 -060022 int ret;
23
24 version = strdup(state->fw_version);
25 if (!version)
26 return log_msg_ret("dup", -ENOMEM);
27
28 ret = ofnode_write_string(node, "cur-version", version);
29 if (ret)
30 return log_msg_ret("ver", ret);
31 ret = ofnode_write_u32(node, "cur-vernum", state->fw_vernum);
32 if (ret)
33 return log_msg_ret("num", ret);
Simon Glasse45d2262022-10-20 18:23:12 -060034
35 /* Drop the 'U-Boot ' at the start */
36 str = version_string;
37 if (!strncmp("U-Boot ", str, 7))
38 str += 7;
39 ret = ofnode_write_string(node, "bootloader-version", str);
Simon Glassc263e212022-10-20 18:23:11 -060040 if (ret)
41 return log_msg_ret("bl", ret);
42
43 return 0;
44}
45
46/**
47 * bootmeth_vbe_simple_ft_fixup() - Write out all VBE simple data to the DT
48 *
49 * @ctx: Context for event
50 * @event: Event to process
51 * @return 0 if OK, -ve on error
52 */
53static int bootmeth_vbe_simple_ft_fixup(void *ctx, struct event *event)
54{
55 oftree tree = event->data.ft_fixup.tree;
56 struct udevice *dev;
57
58 /*
59 * Ideally we would have driver model support for fixups, but that does
60 * not exist yet. It is a step too far to try to do this before VBE is
61 * in place.
62 */
63 for (vbe_find_first_device(&dev); dev; vbe_find_next_device(&dev)) {
64 struct simple_state state;
65 ofnode node, subnode;
66 int ret;
67
68 if (strcmp("vbe_simple", dev->driver->name))
69 continue;
70
71 /* Check if there is a node to fix up */
72 node = oftree_path(tree, "/chosen/fwupd");
73 if (!ofnode_valid(node))
74 continue;
75 subnode = ofnode_find_subnode(node, dev->name);
76 if (!ofnode_valid(subnode))
77 continue;
78
79 log_debug("Fixing up: %s\n", dev->name);
80 ret = device_probe(dev);
81 if (ret)
82 return log_msg_ret("probe", ret);
83 ret = simple_read_state(dev, &state);
84 if (ret)
85 return log_msg_ret("read", ret);
86
87 ret = vbe_simple_fixup_node(subnode, &state);
88 if (ret)
89 return log_msg_ret("fix", ret);
90 }
91
92 return 0;
93}
94EVENT_SPY(EVT_FT_FIXUP, bootmeth_vbe_simple_ft_fixup);