xref: /openbmc/phosphor-bmc-code-mgmt/common/include/pmbus.hpp (revision dcf4b607bd2937a8964d68fe9dcc59daaf20c720)
1 #pragma once
2 
3 #include <cstdint>
4 
5 enum class PMBusCmd : uint8_t
6 {
7     page = 0x00,
8     writeProtect = 0x10,
9     storeUserCode = 0x17,
10     mfrId = 0x99,
11     mfrSerial = 0x9E,
12     icDeviceId = 0xAD,
13 };
14