blob: 3392b6ab0e59f084df00f393e17d40fabd9a7972 [file] [log] [blame]
George Keishinge7e91712021-09-03 11:28:44 -05001#!/usr/bin/env python3
Rahul Maheshwarief003062020-03-23 07:17:16 -05002
3r"""
4Contains VPD related constants.
5"""
6
7VPD_DETAILS = {
8 "/system/chassis/motherboard": {
9 "type": "xyz.openbmc_project.Inventory.Item.Board.Motherboard"
10 },
11 "/system/chassis/motherboard/base_op_panel_blyth": {
12 "type": "xyz.openbmc_project.Inventory.Item.Panel"
13 },
14 "/system/chassis/motherboard/ebmc_card_bmc": {
15 "type": "xyz.openbmc_project.Inventory.Item.Bmc"
16 },
17 "/system/chassis/motherboard/lcd_op_panel_hill": {
18 "type": "xyz.openbmc_project.Inventory.Item.Panel"
19 },
20 "/system/chassis/motherboard/tpm_wilson": {
21 "type": "xyz.openbmc_project.Inventory.Item.Tpm"
22 },
23 "/system/chassis/motherboard/vdd_vrm0": {
24 "type": "xyz.openbmc_project.Inventory.Item.Vrm"
25 },
26 "/system/chassis/motherboard/vdd_vrm1": {
27 "type": "xyz.openbmc_project.Inventory.Item.Vrm"
Patrick Williams20f38712022-12-08 06:18:26 -060028 },
Rahul Maheshwarief003062020-03-23 07:17:16 -050029}