mb/google/nissa/var/rull: add ssd timing and modify ssd GPIO pins of rtd3
[coreboot2.git] / src / lib / master_header_pointer.c
blobb2c3fe64effa657a901fef7acccba582d18068bd
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <commonlib/bsd/cbfs_serialized.h>
4 #include <endian.h>
5 #include <fmap_config.h>
6 #include <stdint.h>
8 #if CONFIG(BOOTBLOCK_IN_CBFS)
9 __attribute__((used, __section__(".header_pointer")))
10 #endif
12 #if FMAP_SECTION_COREBOOT_START < (0xffffffff - CONFIG_ROM_SIZE + 1)
13 #define COREBOOT_CBFS_START (0xffffffff - CONFIG_ROM_SIZE + 1 + FMAP_SECTION_COREBOOT_START)
14 #else
15 #define COREBOOT_CBFS_START FMAP_SECTION_COREBOOT_START
16 #endif
18 uint32_t header_pointer =
19 cpu_to_le32(COREBOOT_CBFS_START + ALIGN_UP(sizeof(struct cbfs_file)
20 + sizeof("cbfs_master_header"),
21 CBFS_ATTRIBUTE_ALIGN));