George Keishing | e7e9171 | 2021-09-03 11:28:44 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Rahul Maheshwari | ef00306 | 2020-03-23 07:17:16 -0500 | [diff] [blame] | 2 | |
| 3 | r""" |
| 4 | Contains VPD related constants. |
| 5 | """ |
| 6 | |
| 7 | VPD_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 Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 28 | }, |
Rahul Maheshwari | ef00306 | 2020-03-23 07:17:16 -0500 | [diff] [blame] | 29 | } |