soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git] / src / drivers / vpd / vpd_decode.h
blobd96a21000c1eb002b6ca3c327b7170eccb37fe66
1 /* SPDX-License-Identifier: BSD-3-Clause */
3 /*
4 * This is a copy from upstream:
5 * https://chromium.googlesource.com/chromiumos/platform/vpd/+/master/include/lib/vpd_decode.h
6 */
8 #ifndef __VPD_DECODE_H
9 #define __VPD_DECODE_H
11 #include <stdint.h>
13 enum {
14 VPD_DECODE_OK = 0,
15 VPD_DECODE_FAIL = 1,
18 enum {
19 VPD_TYPE_TERMINATOR = 0,
20 VPD_TYPE_STRING,
21 VPD_TYPE_INFO = 0xfe,
22 VPD_TYPE_IMPLICIT_TERMINATOR = 0xff,
25 /* Callback for vpd_decode_string to invoke. */
26 typedef int vpd_decode_callback(
27 const u8 *key, u32 key_len, const u8 *value, u32 value_len,
28 void *arg);
31 * vpd_decode_string
33 * Given the encoded string, this function invokes callback with extracted
34 * (key, value). The *consumed will be incremented by the number of bytes
35 * consumed in this function.
37 * The input_buf points to the first byte of the input buffer.
39 * The *consumed starts from 0, which is actually the next byte to be decoded.
40 * It can be non-zero to be used in multiple calls.
42 * If one entry is successfully decoded, sends it to callback and returns the
43 * result.
45 int vpd_decode_string(
46 const u32 max_len, const u8 *input_buf, u32 *consumed,
47 vpd_decode_callback callback, void *callback_arg);
49 #endif /* __VPD_DECODE_H */