summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch
diff options
context:
space:
mode:
authordheerajpdsk <p.dheeraj.srujan.kumar@intel.com>2022-06-16 23:47:53 +0300
committerGitHub <noreply@github.com>2022-06-16 23:47:53 +0300
commite0c224c79550bf49928bfb75f629233b1ef07c7a (patch)
treedfe08b91193d44f4984117dbd3eef9866e097582 /meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch
parent0945170f93cc0c101bf01739f41136c2f05af570 (diff)
parent1f4be67aa2cc61a3db46c577da5ccd88cc84fa16 (diff)
downloadopenbmc-e0c224c79550bf49928bfb75f629233b1ef07c7a.tar.xz
Merge pull request #82 from Intel-BMC/update1-0.91-151
Update to internal 1-0.91-151
Diffstat (limited to 'meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch')
-rw-r--r--meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch b/meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch
index 67123645d..b400aae9e 100644
--- a/meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch
+++ b/meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0012-IPMI-command-handler-implementation-in-uboot.patch
@@ -5,7 +5,7 @@ Subject: [PATCH] IPMI command handler implementation in uboot
IPMI command handler implementation in uBoot.
Implemented IPMI commands:
- 1) Get Device ID
+ 1) Get Device ID with default Product ID=0
2) Get Self Test Result
Tested By:
@@ -13,7 +13,7 @@ Ran the above IPMI command Via KCS channel
and got proper response.
- Get Device ID
Req: ipmitool raw 6 1
- Res: 00 23 00 82 03 02 00 57 01 00 7b 00 00 00 00 00
+ Res: 00 23 00 82 03 02 00 57 01 00 00 00 00 00 00 00
- Get Self Test Results
Req: ipmitool raw 6 4
Res: 56 00
@@ -205,7 +205,7 @@ index 000000000000..04732846ac28
+ /* Get Device ID */
+ bool operation = 1; /* Firmware operation */
+ u8 intel_mfg_id[3] = { 0x57, 0x01, 0x00 };
-+ u8 platform_id[2] = { 0x7B, 0x00 };
++ u8 platform_id[2] = { 0x00, 0x00 };
+ u8 aux_fw_rev[4] = { 0x00, 0x00, 0x00, 0x00 };
+ struct get_dev_id *result = (struct get_dev_id *)res;
+