aboutsummaryrefslogtreecommitdiff
path: root/platforms
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2018-05-15 17:50:39 -0500
committerStewart Smith <stewart@linux.ibm.com>2018-05-24 04:03:20 -0500
commite9227752364564581d591d0ecb5b56e7e9bc4244 (patch)
tree135f6be3de429ee3da4056d3c718f88df0b0e161 /platforms
parent5802477a821e754456214bc960f9d1342fb50f9e (diff)
downloadskiboot-e9227752364564581d591d0ecb5b56e7e9bc4244.zip
skiboot-e9227752364564581d591d0ecb5b56e7e9bc4244.tar.gz
skiboot-e9227752364564581d591d0ecb5b56e7e9bc4244.tar.bz2
AMI BMC: use 0x3a as OEM command
The 0x3a OEM command is for IBM commands, while 0x32 was for AMI ones. Sometime in the P8 timeframe, AMI BMCs were changed to listen for our commands on either 0x32 or 0x3a. Since 0x3a is the direction forward, we'll use that, as P9 machines with AMI BMCs probably also want these to work, and let's not bet that 0x32 will continue to be okay. Suggested-by: Joseph Reynolds <jrey@us.ibm.com> Suggested-by: Maury Zipse <zipse@us.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/astbmc/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/astbmc/common.c b/platforms/astbmc/common.c
index eaebfde..470ab5d 100644
--- a/platforms/astbmc/common.c
+++ b/platforms/astbmc/common.c
@@ -423,7 +423,7 @@ void astbmc_early_init(void)
const struct bmc_platform astbmc_ami = {
.name = "AMI",
- .ipmi_oem_partial_add_esel = IPMI_CODE(0x32, 0xf0),
+ .ipmi_oem_partial_add_esel = IPMI_CODE(0x3a, 0xf0),
.ipmi_oem_pnor_access_status = IPMI_CODE(0x3a, 0x07),
};