blob: f2412454ab37b21493ee6c046c4a37873e646548 [file] [log] [blame]
Kevin Tungdcf4b602025-07-04 13:14:49 +08001#pragma once
2
3#include <cstdint>
4
5enum class PMBusCmd : uint8_t
6{
7 page = 0x00,
8 writeProtect = 0x10,
FreddieJheng782d6ee2025-08-19 18:53:15 +08009 restoreUserAll = 0x16,
Kevin Tungdcf4b602025-07-04 13:14:49 +080010 storeUserCode = 0x17,
Kevin Tung3f2f3e62025-08-15 15:41:07 +080011 statusCML = 0x7E,
Kevin Tungdcf4b602025-07-04 13:14:49 +080012 mfrId = 0x99,
Kevin Tung3f2f3e62025-08-15 15:41:07 +080013 mfrModel = 0x9A,
Kevin Tungdcf4b602025-07-04 13:14:49 +080014 mfrSerial = 0x9E,
15 icDeviceId = 0xAD,
16};