Rahul Maheshwari | ef00306 | 2020-03-23 07:17:16 -0500 | [diff] [blame] | 1 | #!/usr/bin/python |
| 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" |
| 28 | } |
| 29 | } |