diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2022-03-31 07:40:10 +0300 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2022-05-20 07:15:39 +0000 |
commit | fa3bc049f5ca51eeb35fafb61f043d5a54f30c14 (patch) | |
tree | e362832abc5cc3895e6bb61986111a18b240410f /src/drivers/vpd/vpd.c | |
parent | 20a87c0bed98fe8817a2dfccf4cd271199aabc1a (diff) |
CBMEM: Change declarations for initialization hooks
There are efforts to have bootflows that do not follow a traditional
bootblock-romstage-postcar-ramstage model. As part of that CBMEM
initialisation hooks will need to move from romstage to bootblock.
The interface towards platforms and drivers will change to use one of
CBMEM_CREATION_HOOK() or CBMEM_READY_HOOK(). Former will only be called
in the first stage with CBMEM available.
Change-Id: Ie24bf4e818ca69f539196c3a814f3c52d4103d7e
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63375
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/drivers/vpd/vpd.c')
-rw-r--r-- | src/drivers/vpd/vpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/vpd/vpd.c b/src/drivers/vpd/vpd.c index 32ec0a04e3..24b878f3f2 100644 --- a/src/drivers/vpd/vpd.c +++ b/src/drivers/vpd/vpd.c @@ -295,4 +295,4 @@ bool vpd_get_int(const char *const key, const enum vpd_region region, int *const return true; } -ROMSTAGE_CBMEM_INIT_HOOK(cbmem_add_cros_vpd) +CBMEM_CREATION_HOOK(cbmem_add_cros_vpd); |