blob: 0c51dc57e90251d802989ca9495386492623deb0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Martyn Welch66697ce2017-11-08 15:35:15 +00002/*
3 * Copyright 2016 General Electric Company
Martyn Welch66697ce2017-11-08 15:35:15 +00004 */
5
6#include "common.h"
7
Denis Zalevskiy22a347d2018-10-17 10:33:30 +02008struct vpd_cache;
9
Martyn Welch66697ce2017-11-08 15:35:15 +000010/*
Denis Zalevskiy22a347d2018-10-17 10:33:30 +020011 * Read VPD from given data, verify content, call callback for each vital
12 * product data block.
13 *
14 * cache: structure used by process block to store VPD information
15 * process_block: callback called for each VPD data block
Martyn Welch66697ce2017-11-08 15:35:15 +000016 *
17 * Returns Non-zero on error. Negative numbers encode errno.
18 */
Sebastian Reichel5f05ebc2020-09-02 19:31:45 +020019int read_i2c_vpd(struct vpd_cache *cache,
20 int (*process_block)(struct vpd_cache *, u8 id, u8 version,
21 u8 type, size_t size, u8 const *data));
22
23/*
24 * Read VPD from given data, verify content, call callback for each vital
25 * product data block.
26 *
27 * size: size of the raw VPD data in bytes
28 * data: raw VPD data read from device
29 * cache: structure used by process block to store VPD information
30 * process_block: callback called for each VPD data block
31 *
32 * Returns Non-zero on error. Negative numbers encode errno.
33 */
34
35int vpd_reader(size_t size, u8 *data, struct vpd_cache *cache,
36 int (*process_block)(struct vpd_cache *, u8 id, u8 version, u8 type,
37 size_t size, u8 const *data));