1#!/usr/bin/env python3
2
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"
28    },
29}
30