blob: eb24eae7735a154bd0399ec4cffc8dd922664030 [file] [log] [blame]
Patrick Williams691668f2023-11-01 08:19:10 -05001/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
Andrew Jeffery9c766792022-08-10 23:12:49 +09302#ifndef OEM_IBM_FRU_H
3#define OEM_IBM_FRU_H
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9#include <stddef.h>
10#include <stdint.h>
11
12enum pldm_oem_ibm_fru_field_type {
Pavithra Barithayadc7d3b52024-02-06 23:46:49 -060013 PLDM_OEM_FRU_FIELD_TYPE_IANA = 0x01,
14 PLDM_OEM_FRU_FIELD_TYPE_RT = 0x02,
15 PLDM_OEM_FRU_FIELD_TYPE_PCIE_CONFIG_SPACE_DATA = 0xfd,
16 PLDM_OEM_FRU_FIELD_TYPE_LOCATION_CODE = 0xfe,
Pavithra Barithayaa9f2ffd2024-02-28 00:15:13 -060017
18 PLDM_OEM_IBM_FRU_FIELD_TYPE_IANA = 0x01,
19 PLDM_OEM_IBM_FRU_FIELD_TYPE_RT = 0x02,
20 PLDM_OEM_IBM_FRU_FIELD_TYPE_PCIE_CONFIG_SPACE_DATA = 0xfd,
21 PLDM_OEM_IBM_FRU_FIELD_TYPE_LOCATION_CODE = 0xfe,
Andrew Jeffery9c766792022-08-10 23:12:49 +093022};
23
24#ifdef __cplusplus
25}
26#endif
27
28#endif /* OEM_IBM_FRU_H */