#
16c2a0a0 |
| 16-Aug-2024 |
Patrick Williams <patrick@stwcx.xyz> |
clang-format: re-format for clang-18
clang-format-18 isn't compatible with the clang-format-17 output, so we need to reformat the code with the latest version. The way clang-18 handles lambda forma
clang-format: re-format for clang-18
clang-format-18 isn't compatible with the clang-format-17 output, so we need to reformat the code with the latest version. The way clang-18 handles lambda formatting also changed, so we have made changes to the organization default style format to better handle lambda formatting.
See I5e08687e696dd240402a2780158664b7113def0e for updated style. See Iea0776aaa7edd483fa395e23de25ebf5a6288f71 for clang-18 enablement.
Change-Id: I8c84201cb2343a8c8a5507a49de0721a1bee7063 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
fc84f634 |
| 06-Apr-2024 |
Riya Dixit <riyadixitagra@gmail.com> |
oem-ibm: Improving logs (lg2)
This commit corrects the severity level of logs and also formats the message string, fixing the ill-defined message string of the logs as mentioned in the anti-pattern
oem-ibm: Improving logs (lg2)
This commit corrects the severity level of logs and also formats the message string, fixing the ill-defined message string of the logs as mentioned in the anti-pattern document [1]. Additionally, based on the requirement this commit adds more debug information to logs.
[1]: https://github.com/openbmc/docs/blob/master/anti-patterns.md#ill-defined-data-structuring-in-lg2-message-strings
Change-Id: I24ca21de35d5a1a9b3cc64b28a149e4c213055f9 Signed-off-by: Riya Dixit <riyadixitagra@gmail.com>
show more ...
|
#
a675662c |
| 20-Oct-2023 |
Patrick Williams <patrick@stwcx.xyz> |
clang-format: copy latest and re-format
clang-format-17 has some backwards incompatible changes that require additional settings for best compatibility and re-running the formatter. Copy the latest
clang-format: copy latest and re-format
clang-format-17 has some backwards incompatible changes that require additional settings for best compatibility and re-running the formatter. Copy the latest .clang-format from the docs repository and reformat the repository.
Change-Id: Ib8dfa202f1d59add43fc0d55ab2bf388c8e7c877 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
91a092f6 |
| 18-Sep-2023 |
vkaverap@in.ibm.com <vkaverap@in.ibm.com> |
PLDM:Use new alias of DBUS_TIMEOUT for bus.call
This commit uses a new global variable for DBUS_TIMEOUT which is included as an input parameter for bus.call dbus calls. The new alias makes the bus.c
PLDM:Use new alias of DBUS_TIMEOUT for bus.call
This commit uses a new global variable for DBUS_TIMEOUT which is included as an input parameter for bus.call dbus calls. The new alias makes the bus.call function shorter and readable.
Change-Id: I336c97bc0631d5370ff3648e41f50e3e283d771b Signed-off-by: vkaverap@in.ibm.com <vkaverap@in.ibm.com>
show more ...
|
#
5b71b86f |
| 21-Aug-2023 |
vkaverap@in.ibm.com <vkaverap@in.ibm.com> |
PLDM: 5 sec timeout for dbus calls without reply
This commit adds 5 second dbus timeout value to dbus calls with no reply. Previously a commit was merged that included 5 seconds dbus timeout value f
PLDM: 5 sec timeout for dbus calls without reply
This commit adds 5 second dbus timeout value to dbus calls with no reply. Previously a commit was merged that included 5 seconds dbus timeout value for all dbus call with reply.
This is added to make sure PLDM does not wait for more than 5 seconds when a dbus call is made with or without reply if no response is received from other daemon or host.
The 5 second timeout value is overridden to 10 seconds in meta-ibm layer
Change-Id: Ic20005d903732ac58bb22a657bf1b0c07439d435 Signed-off-by: vkaverap@in.ibm.com <vkaverap@in.ibm.com>
show more ...
|
#
90403471 |
| 21-Aug-2023 |
Sagar Srinivas <sagar.srinivas@ibm.com> |
Add additional information for logging
Signed-off-by: Sagar Srinivas <sagar.srinivas@ibm.com> Change-Id: Idbc2245a89866db1a0a039c106c5c40c71228493
|
#
9138c209 |
| 19-May-2023 |
vkaverap@in.ibm.com <vkaverap@in.ibm.com> |
PLDM : Change the dbus timeout to 5 seconds
Dbus timeout value for every dbus call in PLDM is set to 5 seconds instead of default 25 seconds so that all dbus calls that expect a reply exists after 5
PLDM : Change the dbus timeout to 5 seconds
Dbus timeout value for every dbus call in PLDM is set to 5 seconds instead of default 25 seconds so that all dbus calls that expect a reply exists after 5 seconds if there is no response from the client. While BMC is still waiting for a response on any dbus calls it is possible that host can timeout and return an error. Another reason is that memory address from where BMC would read data sent by host may get deallocated after 20 seconds and it is possible for this to happen even before BMC has read the data. This has lead to DMA issues.
Tested by adding a sleep for 10 seconds inside main function of phospher-host-postd and executed get dbus property on snoopd interface from pldm. PLDM dbus call timed out after 5 seconds.
Change-Id: I1aa1b4ad7fceff2224a3ccc3bcf6abd5705963bc Signed-off-by: Varsha Kaverappa <vkaverap@in.ibm.com>
show more ...
|
#
6da4f91b |
| 10-May-2023 |
Patrick Williams <patrick@stwcx.xyz> |
clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require additional settings for best compatibility and re-running the formatter. Copy the latest
clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require additional settings for best compatibility and re-running the formatter. Copy the latest .clang-format from the docs repository and reformat the repository.
Change-Id: I61b093f75011417cc9c7acf9605200f4fa429bac Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
49cfb138 |
| 02-Mar-2023 |
Riya Dixit <riyadixitagra@gmail.com> |
PLDM: Implementing Phosphor-Logging/LG2 logging
This commit adds changes in PLDM for implementing structured LG2 logging, thereby moving away from std::cout/cerr practice of logging which are output
PLDM: Implementing Phosphor-Logging/LG2 logging
This commit adds changes in PLDM for implementing structured LG2 logging, thereby moving away from std::cout/cerr practice of logging which are output streams and not logging mechanism.
PLDM now can make use of lg2 features like accurate CODE LINE Number and CODE_FUNCTION Name and better detailing in json object values which can be used in log tracking.
More detailed logging change: https://gist.github.com/riyadixitagra/c251685c1ba84248181891f7bc282395
Tested: Ran a power off, on, cycle, and reset-reload.
Change-Id: I0485035f15f278c3fd172f0581b053c1c37f3a5b Signed-off-by: Riya Dixit <riyadixitagra@gmail.com>
show more ...
|
#
c453e164 |
| 21-Dec-2022 |
George Liu <liuxiwei@inspur.com> |
libpldm: Correct reference to libpldm header files
When relying on header files from external libraries, #include<> should be used instead of #include "" to avoid ambiguity.
Tested: Built pldm succ
libpldm: Correct reference to libpldm header files
When relying on header files from external libraries, #include<> should be used instead of #include "" to avoid ambiguity.
Tested: Built pldm successfully after enabling ibm-oem
Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: Ia1997de7e0f61564055bbd837f4e24c8f14e55a5
show more ...
|
#
78124cfc |
| 29-Aug-2022 |
Manojkiran Eda <manojkiran.eda@gmail.com> |
oem_ibm: Fix pldm crash
Check for the presence of the directory before iterating through it. Iterating over a missing directory would crash pldm.
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail
oem_ibm: Fix pldm crash
Check for the presence of the directory before iterating through it. Iterating over a missing directory would crash pldm.
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com> Change-Id: I3296a427cb5e904dbc1fd48a109eedc051cf832d
show more ...
|
#
84b790cb |
| 22-Jul-2022 |
Patrick Williams <patrick@stwcx.xyz> |
sdbusplus: use shorter type aliases
The sdbusplus headers provide shortened aliases for many types. Switch to using them to provide better code clarity and shorter lines. Possible replacements are
sdbusplus: use shorter type aliases
The sdbusplus headers provide shortened aliases for many types. Switch to using them to provide better code clarity and shorter lines. Possible replacements are for: * bus_t * exception_t * manager_t * match_t * message_t * object_t * slot_t
Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I8e2242adb79be342562c9b7f3d2153dfdf578085
show more ...
|
#
9296f244 |
| 22-Sep-2021 |
Adriana Kobylak <anoo@us.ibm.com> |
oem: ibm: Assemble the image in a forked process
The assembling of the tarball image file is a long running process, causing pldm to not reply to any other requests until it's done, causing errors s
oem: ibm: Assemble the image in a forked process
The assembling of the tarball image file is a long running process, causing pldm to not reply to any other requests until it's done, causing errors such as when the hypervisor tries to ping the bmc to determine if it's running.
Move the assembling of the image to a forked process so that it runs in the background. Move the assembling function to the code update class so that it has access to the code update sensor to set it to error if an failure occurs, since no parent process will wait for it.
Use double fork to avoid zombie tasks, this allows the grandchild to be reparented to init.
Tested: Verified the hypervisor did not reset the BMC during an inband update because it didn't receive a reply to its ping request.
Change-Id: I47d5fde1a1311e94d5b03f7fcf4c0ab15ba054e3 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
4fea7a20 |
| 02-Sep-2021 |
Patrick Williams <patrick@stwcx.xyz> |
exception: switch to public sdbus exception
SdBusError was intended to be a private error type inside sdbusplus. Switch all catch locations to use the general sdbusplus::exception type.
Signed-off-
exception: switch to public sdbus exception
SdBusError was intended to be a private error type inside sdbusplus. Switch all catch locations to use the general sdbusplus::exception type.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ic8c3ff9b8b0fa64ef1d17ba305b9030284a1ee68
show more ...
|
#
5079ac4a |
| 19-Aug-2021 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
treewide: remove 'using namespace' from headers
Using namespace at global scope in a header file violates the cpp core guidelines. Quoting the guidelines:
"Doing so takes away an #includer’s abi
treewide: remove 'using namespace' from headers
Using namespace at global scope in a header file violates the cpp core guidelines. Quoting the guidelines:
"Doing so takes away an #includer’s ability to effectively disambiguate and to use alternatives. It also makes #included headers order-dependent as they might have different meaning when included in different orders."
For further reading: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rs-using-directive
The guidelines don't call out using using namespace from namespace scope, but it is only marginally less problematic and still unexpected, so this patch removes those as well.
The process used to do the update is roughly:
1 - git grep 'using namespace' **.hpp 2 - For each instance, remove the offending 'using namespace' line 3 - build 4 - add 'using namespace' to cpp files or fully resolve types in hpp files until the project builds again.
Further cleanup is possible - for example cpp files could be scrubbed for unnecessary namespace qualification - this was not done here to make review as simple as possible.
Change-Id: I4931f5e78a1b5b74b4a4774c035a549f4d59b91a Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
show more ...
|
#
9a64b4a7 |
| 09-Feb-2021 |
Sagar Srinivas <sagar.srinivas@ibm.com> |
oem-ibm: Support system reboot after inband code update
This commit adds a bmc effecter that causes a system reboot( phyp, chassis and bmc)
After bmc sends an end update successful event, Host will
oem-ibm: Support system reboot after inband code update
This commit adds a bmc effecter that causes a system reboot( phyp, chassis and bmc)
After bmc sends an end update successful event, Host will set this new effecter. Upon getting the setStateEffecterStates call bmc-pldm does the following: 1. Set the power restore to reboot the host once the BMC is rebooted 2. power off Host and Chassis 3. reboot the bmc
Tested with pldmtool Steps after patching changes: 1. Boot host to STANDBY 2. Fetch the effecter to note the effecterId Ex: ./pldmtool platform GetPDR -d 28 3. Trigger the system reboot by toggling the effecter ./pldmtool platform SetStateEffecterStates -i 10 -c 1 -d 1 1
Signed-off-by: Sagar Srinivas <sagar.srinivas@ibm.com> Change-Id: Id2d4201a7d61ae335adc64f2583571a37dc7879d
show more ...
|
#
131327ee |
| 10-Mar-2021 |
Adriana Kobylak <anoo@us.ibm.com> |
oem-ibm: Fix the hostfw image file name
The name of the hostfw image file should be image-hostfw, not image-host-fw: https://github.com/openbmc/openbmc/blob/50c538c2b942fecba6fa1fc3cfe0f5a339f10999/
oem-ibm: Fix the hostfw image file name
The name of the hostfw image file should be image-hostfw, not image-host-fw: https://github.com/openbmc/openbmc/blob/50c538c2b942fecba6fa1fc3cfe0f5a339f10999/meta-phosphor/classes/phosphor-software-manager-mmc.bbclass#L7
Tested: Verified inband code update updated this the hostfw image file.
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com> Change-Id: I64fc78190682bcc8acfe9255b1deb27cf7ff71e0
show more ...
|
#
3a0e3b9b |
| 21-Oct-2020 |
Sampa Misra <sampmisr@in.ibm.com> |
oem ibm: marker LID validation
This commit adds code for writing marker LID from Host and also send a PlatformEventMessage after validation.
This commit also subscribes for the interface added sign
oem ibm: marker LID validation
This commit adds code for writing marker LID from Host and also send a PlatformEventMessage after validation.
This commit also subscribes for the interface added signal to fetch the new image id and sends the relevant sensor event to host
Change-Id: I92476beca18e6dd255f372dd82d6eaeca18e282c Signed-off-by: Sampa Misra <sampmisr@in.ibm.com>
show more ...
|
#
cfdbca75 |
| 22-Sep-2020 |
Sagar Srinivas <sagar.srinivas@ibm.com> |
oem-ibm: Implement SetEffecter actions corresponding to code update actions
This commit defines the actions taken corresponding to the code update actions.
Code update actions include- START, END,
oem-ibm: Implement SetEffecter actions corresponding to code update actions
This commit defines the actions taken corresponding to the code update actions.
Code update actions include- START, END, ABORT, ACCEPT and REJECT
Signed-off-by: Sagar Srinivas <sagar.srinivas@ibm.com> Change-Id: I2e86177efe4c8924069cc400b79e4fc4b8983df4
show more ...
|
#
3ca29df0 |
| 27-Sep-2020 |
Varsha Kaverappa <vkaverap@in.ibm.com> |
pldm: inband code update: clear the image LIDs when pldm daemon comes up
Clear the LID_STAGING_DIR path when pldm daemon comes up. This function will also be used during code update process.
Signed
pldm: inband code update: clear the image LIDs when pldm daemon comes up
Clear the LID_STAGING_DIR path when pldm daemon comes up. This function will also be used during code update process.
Signed-off-by: Varsha Kaverappa <vkaverap@in.ibm.com> Change-Id: I2a757caaa3e204e4089235d9e3baf6d425f5bec5
show more ...
|
#
837fb478 |
| 16-Oct-2020 |
Adriana Kobylak <anoo@us.ibm.com> |
oem-ibm: inband: Add assembleCodeUpdateImage()
The assembleCodeUpdateImage will build the final tarball out of the BMC and hostfw image files and copy it to the update directory to trigger a softwar
oem-ibm: inband: Add assembleCodeUpdateImage()
The assembleCodeUpdateImage will build the final tarball out of the BMC and hostfw image files and copy it to the update directory to trigger a software version interface to be created.
Change-Id: I7dd100e46c34c941fd574047551ddc5fee8c387b Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
a1f158cf |
| 09-Nov-2020 |
Adriana Kobylak <anoo@us.ibm.com> |
oem-ibm: inband: Handle BMC lids
If the file is a BMC lid, strip off the header and concatenate it. The BMC lids are a tarball file divided into chunks.
Change-Id: I36e622231d07658524225a36b932c983
oem-ibm: inband: Handle BMC lids
If the file is a BMC lid, strip off the header and concatenate it. The BMC lids are a tarball file divided into chunks.
Change-Id: I36e622231d07658524225a36b932c983f0df2538 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
fa810d71 |
| 16-Oct-2020 |
Adriana Kobylak <anoo@us.ibm.com> |
oem-ibm: inband: Remove the lid header
The host sends the LID files with a header that needs to be stripped out before adding it to the code update image.
Since the write interface is not unique to
oem-ibm: inband: Remove the lid header
The host sends the LID files with a header that needs to be stripped out before adding it to the code update image.
Since the write interface is not unique to the inband update process, we can't strip the header there, so need to make a copy of the lid file without the header. Remove the original one once the lid without header has been created.
Change-Id: Id1e009e1716e3103bc38f7111ba1865228db2bad Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
86d14181 |
| 16-Oct-2020 |
Adriana Kobylak <anoo@us.ibm.com> |
oem-ibm: inband: Check lid is complete
A lid file can be written in one or more write requests. Read the header for the expected size to check if the lid has been fully written. The file size should
oem-ibm: inband: Check lid is complete
A lid file can be written in one or more write requests. Read the header for the expected size to check if the lid has been fully written. The file size should be the lid size listed in the header minus the size of the header.
Change-Id: I0fa02af3e50f13b40cea2494471445918826d716 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
727f7382 |
| 01-Sep-2020 |
Adriana Kobylak <anoo@us.ibm.com> |
oem-ibm: inband: Add processCodeUpdateLid()
The new processCodeUpdateLid() function will process the LID files sent by the hypervisor so that they can be used by the code update application to be wr
oem-ibm: inband: Add processCodeUpdateLid()
The new processCodeUpdateLid() function will process the LID files sent by the hypervisor so that they can be used by the code update application to be writtent to flash.
This first commit validates that the LID files contain a valid magic number in their header.
Change-Id: I9113d46fa6af0d0ef8a0c7b898c1229d49ff05e6 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|