f0c0c47b | 07-Dec-2024 |
Jayanth Othayoth <ojayanth@gmail.com> |
clang-tidy: Suppress unused variable warnings
The following errors were reported during clang-tidy enablement due to multiple unused variables. This temporary fix suppresses the warnings using a pra
clang-tidy: Suppress unused variable warnings
The following errors were reported during clang-tidy enablement due to multiple unused variables. This temporary fix suppresses the warnings using a pragma approach until a permanent solution is implemented.
Changes: - Commented out unused variables to suppress the -Wunused-variable warnings.
''' ../tools/power-utils/aei_updater.cpp:36:15: error: unused variable 'MEM_STRETCH_DELAY' [-Werror ../tools/power-utils/aei_updater.cpp:40:19: error: unused variable 'I2C_SMBUS_BLOCK_MAX' [-Werror ../tools/power-utils/aei_updater.cpp:41:19: error: unused variable 'FW_READ_BLOCK_SIZE' [-Werror ../tools/power-utils/aei_updater.cpp:43:19: error: unused variable 'READ_SEQ_ST_CML_SIZE' [-Werror ../tools/power-utils/aei_updater.cpp:45:19: error: unused variable 'START_SEQUENCE_INDEX' [-Werror ../tools/power-utils/aei_updater.cpp:46:19: error: unused variable 'STATUS_CML_INDEX' [-Werror ../tools/power-utils/aei_updater.cpp:63:19: error: unused variable 'B_CHKSUM_ERR' [-Werror ../tools/power-utils/aei_updater.cpp:64:19: error: unused variable 'B_CHKSUM_SUCCESS' [-Werror ../tools/power-utils/aei_updater.cpp:66:19: error: unused variable 'B_MEM_ERR' [-Werror ../tools/power-utils/aei_updater.cpp:67:19: error: unused variable 'B_ALIGN_ERR' [-Werror ../tools/power-utils/aei_updater.cpp:68:19: error: unused variable 'B_KEY_ERR' [-Werror ../tools/power-utils/aei_updater.cpp:69:19: error: unused variable 'B_START_ERR' [-Werror ../tools/power-utils/aei_updater.cpp:70:19: error: unused variable 'B_IMG_MISSMATCH_ERR' [-Werror ../tools/power-utils/aei_updater.cpp:73:19: error: unused variable 'B_ISP_MODE_CHKSUM_GOOD' [-Werror ../tools/power-utils/aei_updater.cpp:74:19: error: unused variable 'B_PRGM_BUSY' [-Werror ../tools/power-utils/aei_updater.cpp:35:15: error: unused variable 'MEM_WRITE_DELAY' [-Werror '''
Tested: Build and unit testing verified.
Change-Id: Idbe50bfc465f12f0cf4fd7e382a6f04879f08dba Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
show more ...
|
12c4a420 | 06-Dec-2024 |
Jayanth Othayoth <ojayanth@gmail.com> |
clang-tidy: Fix override errors
The following errors were reported during the clang-tidy enablement build due to overridden functions not being marked with the override keyword. The proposed fix is
clang-tidy: Fix override errors
The following errors were reported during the clang-tidy enablement build due to overridden functions not being marked with the override keyword. The proposed fix is to add the override keyword where it was missing.
''' 1m../tools/i2c/i2c.hpp:176:10: error: 'open' overrides a member function but is not marked 'override' [-Werror 1m../tools/i2c/i2c.hpp:179:10: error: 'isOpen' overrides a member function but is not marked 'override' [-Werror 1m../tools/i2c/i2c.hpp:185:10: error: 'close' overrides a member function but is not marked 'override' [-Werror '''
Tested: Verified Build and unit testing.
Change-Id: Iad01481761c6a4339e051c183c3dd238baf19d70 Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
show more ...
|
8dca5075 | 23-Nov-2024 |
Faisal Awada <faisal@us.ibm.com> |
psutils: Add new functions to AEI Updater class
The following functions handle the critical stages of firmware update, including validation, reading, preparation, and reboot verification. Error han
psutils: Add new functions to AEI Updater class
The following functions handle the critical stages of firmware update, including validation, reading, preparation, and reboot verification. Error handling and logging are incorporated to isolate issues during the update.
getFirmwarePath() Retrieves the firmware file path from the image directory. Uses getFWFilenamePath to fetch the path. Logs an error if the firmware path is not found and returns an empty string otherwise returns firmware path.
isFirmwareFileValid() Validates the firmware file at the given path using validateFWFile. Ensure the firmware file exists and meets requirements before proceeding with the update. Logs an error if validation fails.
openFirmwareFile() Opens the firmware file at the specified path for reading in binary mode. Logs an error if the file cannot be opened.
readFirmwareBlock() Reads a block of data from the firmware file.Uses readFirmwareBytes to read the specified number of bytes.
prepareCommandBlock() Prepares a command block for writing firmware data to the PSU. Adds metadata, data, and a CRC8 checksum. Packages firmware data in a format suitable for I2C transmission.
ispReboot() Sends a reboot command to the status register to apply new firmware.
ispReadRebootStatus() Reads the reboot status from ISP, returns true for success otherwise false.
Tested: - Validated that the firmware path retrieves the correct file. - A validation error is logged when the file is empty or path is incorrect. - Removed read permission on the firmware file and verified that an error was logged. - Verify the block of data read as specified in the specification. - Printed the command block and verified that the command and data are ready to be sent to the PSU via I2C. - Downloaded the firmware and verified that the command block, ISP reboot and reboot status are working as expected.
Change-Id: I097b4aeefc0967d5591b8fb6aefb3c600c9f77f8 Signed-off-by: Faisal Awada <faisal@us.ibm.com>
show more ...
|
5a582d3c | 15-Nov-2024 |
Faisal Awada <faisal@us.ibm.com> |
psutils: Partial AEI Updater class
The AeiUpdater class within the aeiUpdater namespace, responsible for updating AEI PSU firmware via I2C communication. The code focuses on executing various stage
psutils: Partial AEI Updater class
The AeiUpdater class within the aeiUpdater namespace, responsible for updating AEI PSU firmware via I2C communication. The code focuses on executing various stages of the firmware update process, ensuring each step performed and validated correctly. The following partial functions of the key component of the class:
doUpdate() This method initiates the firmware update process. It checks and sets the ISP (In-System Programming) mode using writeIspKey(), writeIspMode(), and writeIspStatusReset().
writeIspKey() Unlocks the ISP by writing a specific key to the KEY_REGISTER. Handles exceptions for any I2C communication errors and logs the failure.
writeIspMode() Sends a command to enter ISP mode and checks the status register. Retries on failure, with a maximum retry limit. Checks the status register to confirm the mode has been set. Logs any I2C errors encountered.
writeIspStatusReset() Resets ISP status register, clearing any existing status flags. Verifies the reset by reading the status register, retrying as needed. Logs any I2C errors encountered.
Test: Tested the function listed in the class on a system with AEI PSU:
- Validated the PSU ISP key was accepted and no error logged. - Validated an error was logged when I used wrong key. - Validated the PSU entered to ISP mode by reading back status register and confirmed the bit is set. - Validated the PSU status reset by reading the back status register and confirmed the bit is set.
Change-Id: I1e8e594f088e7d66d8fc5b1723c4bd33b08bd3f8 Signed-off-by: Faisal Awada <faisal@us.ibm.com>
show more ...
|
23dee383 | 11-Nov-2024 |
Shawn McCarney <shawnmm@us.ibm.com> |
psutils: Move functions from updater to utils
Move common, utility functions from updater.*pp to utils.*pp. This will enable those functions to be used by other command line options in the psutils
psutils: Move functions from updater to utils
Move common, utility functions from updater.*pp to utils.*pp. This will enable those functions to be used by other command line options in the psutils tool.
Modify --get-version and --get-model to use the new utility functions.
Also update --get-version to provide a single getVersion() function that handles the existence of the psu.json file as a low-level implementation detail.
Tested: * Verified all automated tests run successfully * Verified --get-version still works * With psu.json file * Without psu.json file * Verified --get-model still works * With psu.json file * Without psu.json file * Verified --update still gets correct device path, device name, and I2C bus/address from functions that moved to utils.*pp * The complete test plan is available at https://gist.github.com/smccarney/c049e24655d32e22cab9d521d145774a
Change-Id: I51ceca10957dc9a924d0d7516dc29632a6ed82d3 Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
show more ...
|
0fbc2f6a | 05-Nov-2024 |
Shawn McCarney <shawnmm@us.ibm.com> |
psutils: Add --get-model option
Add a --get-model command line option to the psutils tool. This option obtains the PSU model using information in sysfs.
Supports both methods of obtaining informat
psutils: Add --get-model option
Add a --get-model command line option to the psutils tool. This option obtains the PSU model using information in sysfs.
Supports both methods of obtaining information about a PSU: * psu.json file * D-Bus
Tested: * Verified --get-version still works * With psu.json file * Without psu.json file * Verified new --get-model property works * With psu.json file * Without psu.json file * Tested all error paths * See the following gist for the complete test plan: https://gist.github.com/smccarney/859ffaaa94ce12992af1b24e6c899962
Change-Id: If1be01f4b70ad9d80ce01402c57730990fd2c2ea Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
show more ...
|
14572cf4 | 06-Nov-2024 |
Shawn McCarney <shawnmm@us.ibm.com> |
psutils: Move utility functions to utils.*pp
The files named version.hpp and version.cpp implement the --get-version option of the psutils tool.
However, the files also contain some utility functio
psutils: Move utility functions to utils.*pp
The files named version.hpp and version.cpp implement the --get-version option of the psutils tool.
However, the files also contain some utility functions that would be helpful for implementing other command line options, such as --update or the planned new option --get-model.
Move the utility functions into new files named utils.hpp and utils.cpp. The functions will be defined within a namespace named 'utils'.
Tested: * Verified automated testcases ran successfully * Verified --get-version option worked correctly * When using a psu.json file * When using D-Bus information
Change-Id: If902ee4581fce000af37073ac2e7a7b0ade01f78 Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
show more ...
|
ec61bbd7 | 04-Nov-2024 |
Faisal Awada <faisal@us.ibm.com> |
Utility functions for download firmware
Added set of utility functions to be used within the classes for managing the PSU firmware updates. Here is a breakdown of the key functions:
- getDevicePath
Utility functions for download firmware
Added set of utility functions to be used within the classes for managing the PSU firmware updates. Here is a breakdown of the key functions:
- getDevicePath(): Construct the PSU device path using I2C bus and address.
- getClassInstance(): Determines the appropriate updater class to use based on PSU model number.
- getFWFilenamePath(): Searches a directory for a firmware file matching a specified prefix and file extension (.bin or .hex).
- calculateCRC8(): Computes the CRC-8 checksum for transferred data.
- delay(): Pauses execution for a specified number of milliseconds.
- bigEndianToLittleEndian(): Converts a 32-bit value from big-endian to little-endian.
- validateFWFile(): Checks if a firmware file exists and is non-empty.
- openFirmwareFile(): Opens a firmware file in binary mode, returning a file stream if successful.
- readFirmwareBytes(): Reads specified number of data bytes from a firmware file into a buffer. Return data read or null to the caller.
- usePsuJsonFile(): Wrapper to check the existence of the PSU JSON file.
- Class accessors to private data: getPsuInventoryPath(): Accessor for PSU inventory path. getDevPath(): Accessor for device path. getDevName(): Accessor for device name. getImageDir(): Accessor for image directory. getI2C(): I2C interface accessor.
Tested every function manually:
- getDevicePath() (using busctl): - Validate I2C bus and address values through psuInventoryPath validate expected result - Modified psuInventoryPath to invalid path validate returned invalid path.
- getClassInstance(): - Validate with matching model number the function instantiate appropriate class. - Validate the default class instantiated.
- getFWFilenamePath(): - Validate return of the correct file name in the PSU FW directory - Validate null returns when FW files don't exist
- calculaterCRC8(): - Validate single byte 0x0 result 0x0, single byte 0x01 result 0x07
- delay(): - Verified the task suspend execution.
- bigEndianToLittleEndian(): - Verified input 0x12345678 resulted in 0x78563412
- validateFWFile(): - Validate the existence of the file otherwise an error is logged - Validate the file size is greater than 0 otherwise an error is logged.
- openFirmwareFile(): - Validate ifstream object is returned and was able to read from. - Validate error logged if the file name is null - validate error logged when unable to open the file
- readFirmwareBytes(): - Validate data read from FW file - Validate number of bytes read.
- usePsuJsonFile(): - Added JSON file to simulator and validated true return.
Change-Id: I0b8b24ae7d37724dab608d2c4977c1b42d4e1632 Signed-off-by: Faisal Awada <faisal@us.ibm.com>
show more ...
|
37c2612b | 24-Oct-2024 |
Shawn McCarney <shawnmm@us.ibm.com> |
psutils: Do not pad PSU version with blanks
When `psutils --get-version <inventory_path>` is run, it returns the firmware version for the specified PSU inventory path.
If no psu.json file is found,
psutils: Do not pad PSU version with blanks
When `psutils --get-version <inventory_path>` is run, it returns the firmware version for the specified PSU inventory path.
If no psu.json file is found, the PSU I2C bus and address are obtained from D-Bus. The PSU version is then obtained from a file in sysfs.
The contents of the sysfs file are currently treated as VPD. Invalid characters are replaced with spaces, and the value is padded with spaces if needed to reach an expected VPD length.
If an error occurs trying to read the sysfs file, the version is initially set to "". However, since it is being treated as VPD it is later padded with blanks. Since the version is not an empty string, it is treated as valid by psutils and the PSU code update application. This causes subsequent code update issues.
Modify psutils so that the contents of the sysfs file are treated as a simple string. If an error occurs, set the version to "". This will cause psutils and the PSU code update application to correctly conclude that an error occurred and the version is not valid.
Tested: * psutils --get-version * psu.json file exists * Test where getting the version works * Verify file contents are obtained * Verify psutils prints out the version * Verify psutils exits with a return code of 0 * Test where getting the version fails * Verify exception is written to the journal * Verify psutils prints out an empty string * Verify psutils exits with a return code of 1 * psu.json file does not exist; PSU information is obtained from D-Bus * Test where getting the version works * Verify file contents are obtained * Verify psutils prints out the version * Verify psutils exits with a return code of 0 * Test where getting the version fails * Verify exception is written to the journal * Verify psutils prints out an empty string * Verify psutils exits with a return code of 1
Change-Id: I131ba1b73f5ee96606bcfe86943da258196eca62 Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
show more ...
|
a3ff7e71 | 15-Oct-2024 |
Shawn McCarney <shawnmm@us.ibm.com> |
I2CInterface: Add process call methods
Add C++ methods to perform the following SMBus commands: * Process Call * Block Write-Block Read Process Call
For Block Write-Block Read Process Call, impleme
I2CInterface: Add process call methods
Add C++ methods to perform the following SMBus commands: * Process Call * Block Write-Block Read Process Call
For Block Write-Block Read Process Call, implement support for writes up to 255 bytes. SMBus 2.0 supported a maximum of 32 bytes, and SMBus 3.0 supports a maximum of 255 bytes. The current Linux SMBus function only supports 32 byte writes. Provide an alternate implementation using the lower level I2C_RDWR ioctl() to support up to 255 bytes.
Tested: * Verified Process Call worked correctly * Verified Block Write-Block Read Process Call worked correctly * When using SMBus function * When using I2C_RDWR ioctl() * Tested error cases * See complete test plan at https://gist.github.com/smccarney/96eda4c7c11fe4f89e4491c768f76047
Change-Id: Icc1ba840741b1e26a50fe32bad8b2181a01dbb24 Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
show more ...
|
5dce1a74 | 19-Aug-2024 |
Faisal Awada <faisal@us.ibm.com> |
power-utils: Retrieve Firmware Version from sysfs
Added support to retrieve firmware version from sysfs. This required the following code additions and modifications:
1 - Locate the target PSU obje
power-utils: Retrieve Firmware Version from sysfs
Added support to retrieve firmware version from sysfs. This required the following code additions and modifications:
1 - Locate the target PSU object and retrieve 'i2cBus' and 'i2cAddress'. 2 - Obtain PMBus interface access. 3 - Read the firmware version from sysfs.
Tested: The new code was loaded onto a system, and the firmware version was successfully read from sysfs. Verified getVersion using psu.json file did not change.
Change-Id: I791788f45e4d682578efbed33e3832a833644dad Signed-off-by: Faisal Awada <faisal@us.ibm.com>
show more ...
|
f5402197 | 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: I7b90380845efee6bf6a1fe342a793d71aa9ff181 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
5c6a693e | 29-Nov-2023 |
Patrick Williams <patrick@stwcx.xyz> |
build: use allowed over enabled
Meson feature options are typically in a tri-state of enabled, disabled, or auto. The enabled and disabled functions on an option (from `get_option`) no longer retur
build: use allowed over enabled
Meson feature options are typically in a tri-state of enabled, disabled, or auto. The enabled and disabled functions on an option (from `get_option`) no longer return true for auto features. Instead, the expectation is to use `allowed()` which is true for both enabled and auto.
Switch all uses of `enabled` to `allowed`.
Change-Id: I37fcb391dcb215a86a60c26f7512f6ccb8312dc4 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
c0b9e9e4 | 17-Jul-2023 |
Matt Spinler <spinler@us.ibm.com> |
Fix standalone build fail in utils/version.cpp
Either the new compiler, C++ version, or nlohmann version starting giving an error when building with subprojects:
``` ../tools/power-utils/version.cp
Fix standalone build fail in utils/version.cpp
Either the new compiler, C++ version, or nlohmann version starting giving an error when building with subprojects:
``` ../tools/power-utils/version.cpp: In function ‘PsuVersionInfo utils::getVersionInfo(const std::string&)’: ../tools/power-utils/version.cpp:67:40: error: ambiguous overload for ‘operator=’ (operand types are ‘std::string’ {aka ‘std::__cxx11::basic_string<char>’} and ‘const nlohmann::basic_json<>::value_type’ {aka ‘const nlohmann::basic_json<>’}) 67 | versionStr = fru["fileName"]; ```
Change-Id: Ic0de80331a04110a279702b30bd7cf55ec8c083c Signed-off-by: Matt Spinler <spinler@us.ibm.com>
show more ...
|
888bebde | 31-May-2023 |
Patrick Williams <patrick@stwcx.xyz> |
meson: add necessary subprojects
Add subprojects for all the direct dependencies of the project such that the project can be built outside of a Yocto SDK on a typical Linux development system.
-
meson: add necessary subprojects
Add subprojects for all the direct dependencies of the project such that the project can be built outside of a Yocto SDK on a typical Linux development system.
- Update the .gitignore to ignore the subproject source directories. - Update the .gitignore to ignore alternative build subdirectory names as is typical with most projects in the openbmc organization. - Add wrap files for direct dependencies, copied from other repositories that already have the same dependencies. - Modify the meson.build dependency for libgpiod so that the C++ bindings are included. - Add many missing dependencies throughout. - Sort all dependencies alphabetically for consistency.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I0feb6f0f175e6dba0b00a2c2b666eb0801575734
show more ...
|
48781aef | 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: If66f68c96df4baf8dc07abf8729a3cb7657e932d Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
b9cf0d2b | 27-Feb-2023 |
George Liu <liuxiwei@inspur.com> |
tools: Fix some warnings by cppcheck
Warning message: tools/i2c/i2c.hpp:30:9: performance: Variable 'busStr' is assigned in constructor body. Consider performing initialization in initialization lis
tools: Fix some warnings by cppcheck
Warning message: tools/i2c/i2c.hpp:30:9: performance: Variable 'busStr' is assigned in constructor body. Consider performing initialization in initialization list. [useInitializationList] busStr = "/dev/i2c-" + std::to_string(busId); ^
tools/power-utils/updater.cpp:213:18: style: Local variable 'devPath' shadows outer variable [shadowVariable] auto devPath = internal::getDevicePath(p); ^ tools/power-utils/updater.hpp:108:17: note: Shadowed declaration std::string devPath; ^ tools/power-utils/updater.cpp:213:18: note: Shadow variable auto devPath = internal::getDevicePath(p); ^
Tested: Verify that there are no such warnings in local CI.
Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: Ibc7536345ee40579256c398646ad00a05b686ab3
show more ...
|
7354ce62 | 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: Ief05bd757cffb1453e058a719ee4b060861752e7
show more ...
|
770de580 | 05-Nov-2021 |
Shawn McCarney <shawnmm@us.ibm.com> |
Add retry support to I2CInterface
Enhance the I2CInterface class hierarchy to support retrying failed I2C operations.
Add an optional parameter to i2c::create() to specify the maximum number of ret
Add retry support to I2CInterface
Enhance the I2CInterface class hierarchy to support retrying failed I2C operations.
Add an optional parameter to i2c::create() to specify the maximum number of retries to perform for an I2C operation. Default to 0 retries so that existing code will not be affected.
Testing: * Tested each modified function * When I2C operation succeeds * When I2C operation fails * When no retries are done * When retries are done * When retried operation succeeds * When retried operation fails * See complete test plan at https://gist.github.com/smccarney/8d203a40d9984402ac495dc3d689c12d
Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: I2b0e782e5caaafa9908ef5625687377b959b38ff
show more ...
|
0c9a33d6 | 13-Sep-2021 |
Adriana Kobylak <anoo@us.ibm.com> |
clang updates
The openbmc CI was recently updated to clang-12 which requires some formatting updates to the code: https://github.com/openbmc/openbmc-build-scripts/commit/4569bf49daaebff06be048242690
clang updates
The openbmc CI was recently updated to clang-12 which requires some formatting updates to the code: https://github.com/openbmc/openbmc-build-scripts/commit/4569bf49daaebff06be0482426908bb5497fad08
Make those updates and refresh the clang-format file with the one from docs: https://github.com/openbmc/docs/blob/master/style/cpp/.clang-format
Change-Id: Ieb3626526373a053ec84431e7560003f229f338d Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
8429e884 | 13-Dec-2020 |
Lei YU <yulei.sh@bytedance.com> |
i2c: Initialize variable ret
The varialbe `ret` in some functions is not initialized and cause the build warning and treated as error:
error: 'ret' may be used uninitialized in this function
i2c: Initialize variable ret
The varialbe `ret` in some functions is not initialized and cause the build warning and treated as error:
error: 'ret' may be used uninitialized in this function [-Werror=maybe-uninitialized]
Fixes openbmc/phosphor-power#3.
Signed-off-by: Lei YU <yulei.sh@bytedance.com> Change-Id: Ica6b1af434736f6fd96a1bbb9e511bf1c8fb1d7a
show more ...
|
e632e14a | 29-Feb-2020 |
Shawn McCarney <shawnmm@us.ibm.com> |
Document byte order of I2CInterface read/write
Update the doxygen comments for the following two I2CInterface methods: * void read(uint8_t addr, uint16_t& data); * void write(uint8_t addr, uint16_t
Document byte order of I2CInterface read/write
Update the doxygen comments for the following two I2CInterface methods: * void read(uint8_t addr, uint16_t& data); * void write(uint8_t addr, uint16_t data);
Document that the two bytes are transmitted with the low order byte first.
The I2CInterface methods call the following two i2c-dev functions: * i2c_smbus_read_word_data() * i2c_smbus_write_word_data()
The SMBus Read Word and Write Word protocols require the low order byte to be sent first.
Testing: * Tested on Witherspoon using i2cget and i2cset. These command line tools call the same two i2c-dev functions. Verified that the low order byte is read/written first.
Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: I83ba69f8cde08ee719d34802afed691a61fe3e84
show more ...
|
dc8e9312 | 14-Feb-2020 |
Brandon Wyman <bjwyman@gmail.com> |
Add OE-SDK option to Meson
Add option to enable oe-sdk which will setup linker arguments to allow for building and running tests with the x86 SDK.
Signed-off-by: Brandon Wyman <bjwyman@gmail.com> C
Add OE-SDK option to Meson
Add option to enable oe-sdk which will setup linker arguments to allow for building and running tests with the x86 SDK.
Signed-off-by: Brandon Wyman <bjwyman@gmail.com> Change-Id: I8279b7d862e29235d2d4eae39405cc35a51b762f
show more ...
|
ff481438 | 13-Feb-2020 |
Shawn McCarney <shawnmm@us.ibm.com> |
Only build tests if -Dtests=enabled specified
A meson build option named 'tests' is defined for this repository. It indicates whether gtest/gmock tests should be built.
However, some tests are cur
Only build tests if -Dtests=enabled specified
A meson build option named 'tests' is defined for this repository. It indicates whether gtest/gmock tests should be built.
However, some tests are currently always built even if -Dtests=enabled isn't specified. This causes build errors in some environments where gtest and gmock are not available.
Modify meson.build files to only descend into 'test' subdirectories and build test cases if -Dtests=enabled was specified.
Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: Ic0da2326e3d9c273ff76d54b5ac27cbe00d78876
show more ...
|
b1216b96 | 21-Jan-2020 |
Shawn McCarney <shawnmm@us.ibm.com> |
Create libi2c_dev_mock.a to solve linker errors
The i2c::create() function is currently defined in mocked_i2c_interface.hpp. This causes linker errors if that header file is included by multiple .c
Create libi2c_dev_mock.a to solve linker errors
The i2c::create() function is currently defined in mocked_i2c_interface.hpp. This causes linker errors if that header file is included by multiple .cpp files in the same test executable.
Moved i2c::create() to mocked_i2c_interface.cpp so that it is only defined once. Created the static library libi2c_dev_mock.a that contains mocked_i2c_interface.o.
Test executables that need the mock version of i2c::create() should link with libi2c_dev_mock.a.
Normal executables that need the real version of i2c::create() should link with libi2c_dev.a as before. This has not changed.
Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com> Change-Id: Ic00203c5429c1a2162327905ba547602258c6b0d
show more ...
|