summaryrefslogtreecommitdiffstats
path: root/src/include/fmap.h
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2019-09-26 23:51:46 -0700
committerShelley Chen <shchen@google.com>2019-09-27 21:59:44 +0000
commitb33a2b05afe2b309da5a608f3d17ffcf112c120a (patch)
tree5aee110f6f3b1c5e250cccd0e84f67714672021c /src/include/fmap.h
parent55ef0d25d32ecabfec7dcd425793f972cbca890d (diff)
downloadcoreboot-b33a2b05afe2b309da5a608f3d17ffcf112c120a.tar.gz
coreboot-b33a2b05afe2b309da5a608f3d17ffcf112c120a.tar.bz2
coreboot-b33a2b05afe2b309da5a608f3d17ffcf112c120a.zip
fmap: Add get_fmap_flash_offset()
CB:35377 changed the behavior of find_fmap_directory() to return pointer to CBMEM_ID_FMAP if fmap is cached in cbmem. lb_boot_media_params() calls find_fmap_directory to add offset of fmap in flash to coreboot table. However, because of the change in behavior of find_fmap_directory(), it ended up adding 0 as the offset. This change adds a new function get_fmap_flash_offset() which returns the offset of fmap in flash. Ideally, all payloads should move to using the FMAP from CBMEM. However, in order to maintain compatibility with payloads which are not updated, ensure that fmap_offset is updated correctly. Since find_fmap_directory() is no longer used outside fmap.c, this change also removes it from fmap.h and limits scope to fmap.c. In a follow up patch, we need to push a change to libpayload to expose the fmap cache pointer to lib_sysinfo. BUG=b:141723751 Change-Id: I7ff6e8199143d1a992a83d7de1e3b44813b733f4 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35639 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/include/fmap.h')
-rw-r--r--src/include/fmap.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/fmap.h b/src/include/fmap.h
index ab7e5ab8956e..649ecc0000c2 100644
--- a/src/include/fmap.h
+++ b/src/include/fmap.h
@@ -19,9 +19,6 @@
#include <commonlib/region.h>
#include <commonlib/fmap_serialized.h>
-/* Locate the fmap directory. Return 0 on success, < 0 on error. */
-int find_fmap_directory(struct region_device *fmrd);
-
/* Locate the named area in the fmap and fill in a region device representing
* that area. The region is a sub-region of the readonly boot media. Return
* 0 on success, < 0 on error. */
@@ -48,4 +45,8 @@ ssize_t fmap_read_area(const char *name, void *buffer, size_t size);
/* Write provided buffer into fmap area.
* Return size written on success, < 0 on error. */
ssize_t fmap_overwrite_area(const char *name, const void *buffer, size_t size);
+
+/* Get offset of FMAP in flash. */
+uint64_t get_fmap_flash_offset(void);
+
#endif