diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2018-05-15 17:50:40 -0500 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2018-05-16 11:13:42 -0500 |
commit | 66c499f969f4e9931738959fad9df96dabfc63b5 (patch) | |
tree | 7cf69927bf10360b739fe5a51ef27f1bd7370b4c /platforms | |
parent | 7bcbc78cea5540597fdbe496fee53e69c5c61f2f (diff) | |
download | skiboot-66c499f969f4e9931738959fad9df96dabfc63b5.zip skiboot-66c499f969f4e9931738959fad9df96dabfc63b5.tar.gz skiboot-66c499f969f4e9931738959fad9df96dabfc63b5.tar.bz2 |
OpenBMC: use 0x3a as OEM command for partial add esel
It turns out this is the IBM way to do this and we (OPAL) were just
never really told about the change.
So, with the best public docs that are available being Hostboot
source, let's make the change!
See https://github.com/open-power/hostboot/blob/8e05a4399b/src/include/usr/ipmi/ipmiif.H#L115
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/astbmc/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/astbmc/common.c b/platforms/astbmc/common.c index 8b24abe..eaebfde 100644 --- a/platforms/astbmc/common.c +++ b/platforms/astbmc/common.c @@ -429,5 +429,5 @@ const struct bmc_platform astbmc_ami = { const struct bmc_platform astbmc_openbmc = { .name = "OpenBMC", - .ipmi_oem_partial_add_esel = IPMI_CODE(0x32, 0xf0), + .ipmi_oem_partial_add_esel = IPMI_CODE(0x3a, 0xf0), }; |