1 /* SPDX-License-Identifier: BSD-3-Clause */
8 #define GOOGLE_VPD_2_0_OFFSET 0x600
18 * Reads VPD string value by key.
20 * Reads in at most one less than size characters from VPD and stores them
21 * into buffer. A terminating null byte ('\0') is stored after the last
22 * character in the buffer.
24 * Returns NULL if key is not found, otherwise buffer.
26 char *vpd_gets(const char *key
, char *buffer
, int size
, enum vpd_region region
);
29 * Find VPD value by key.
31 * Searches for a VPD entry in the VPD cache. If found, places the size of the
32 * entry into '*size' and returns the pointer to the entry data.
34 * This function presumes that VPD is cached in DRAM (which is the case in the
35 * current implementation) and as such returns the pointer into the cache. The
36 * user is not supposed to modify the data, and does not have to free the
39 * Returns NULL if key is not found.
42 const void *vpd_find(const char *key
, int *size
, enum vpd_region region
);
45 * Find value of boolean type vpd key.
47 * During the process, necessary checking is done, such as making
48 * sure the value length is 1, and value is either '1' or '0'.
50 bool vpd_get_bool(const char *key
, enum vpd_region region
,
54 * Find value of integer type by vpd key.
56 * Expects to find a decimal string, trailing chars are ignored.
57 * Returns true if the key is found and the value is not too long and
58 * starts with a decimal digit.
60 bool vpd_get_int(const char *key
, enum vpd_region region
, int *val
);
62 #endif /* __VPD_H__ */