#
edbf17d7 |
| 18-Dec-2024 |
Patrick Williams <patrick@stwcx.xyz> |
clang-format: re-format for clang-19
clang-format-19 isn't compatible with the clang-format-18 output, so we need to reformat the code with the latest version. A few parameters in clang-tidy have b
clang-format: re-format for clang-19
clang-format-19 isn't compatible with the clang-format-18 output, so we need to reformat the code with the latest version. A few parameters in clang-tidy have been deprecated, so adjust the style file accordingly.
See Ie2f6eb3b043f2d655c9df806815afd7971fd0947 for updated style. See I88192b41ab7a95599a90915013579608af7bc56f for clang-19 enablement.
Change-Id: I9338e3aa3377d6e02a786b858a40e95c62fd35a0 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
42a44c28 |
| 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: I09e19a126d456dc184fd70e82d4e4e4217fa8ee7 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
1038836c |
| 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: I2ee8cbc4581d0c3ccdc130b646357c45fa0373db Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
28c00d6e |
| 27-Apr-2022 |
Patrick Williams <patrick@stwcx.xyz> |
span: switch to std
Reduce the dependency on stdplus' version of span now that we are using C++20 and use the one out of the STL instead.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-
span: switch to std
Reduce the dependency on stdplus' version of span now that we are using C++20 and use the one out of the STL instead.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I040ba1796d6f278353fbc990ea6b62314927951e
show more ...
|
#
b487eb47 |
| 16-Sep-2021 |
Willy Tu <wltu@google.com> |
phosphor-ipmi-flash: Fix all C++ warnings
Change-Id: I89236b2dab88ca725e269bb8f5b2cbfd271e807a Signed-off-by: Willy Tu <wltu@google.com>
|
#
55b1a71d |
| 18-Feb-2021 |
Vivekanand Veeracholan <vveerach@google.com> |
tools/pci: Use pci_device_enable() to enable bridge
Enabling the bridge by writing to the PCI config space does not enable all the host resources required. Use pci_device_enable api.
Signed-off-by:
tools/pci: Use pci_device_enable() to enable bridge
Enabling the bridge by writing to the PCI config space does not enable all the host resources required. Use pci_device_enable api.
Signed-off-by: Vivekanand Veeracholan <vveerach@google.com> Change-Id: I159a132b76eadc569efb8fb47488a4abd4c27404
show more ...
|
#
8a9de245 |
| 30-Oct-2020 |
Willy Tu <wltu@google.com> |
Add option to skip p2a bridge disable
Add a new constructor for P2aDataHandler with skipBridgeDisable bool to enable an option to skip disableBridge() in AspeedPciBridge and NuvotonPciBridge.
Signe
Add option to skip p2a bridge disable
Add a new constructor for P2aDataHandler with skipBridgeDisable bool to enable an option to skip disableBridge() in AspeedPciBridge and NuvotonPciBridge.
Signed-off-by: Willy Tu <wltu@google.com> Change-Id: I439bbaa2b7295adc54a8aa98157db60a7e820837
show more ...
|
#
e261ca2a |
| 28-Sep-2020 |
Patrick Venture <venture@google.com> |
tools/test: add missing virtual destructor
Signed-off-by: Patrick Venture <venture@google.com> Change-Id: I4eb80d77e3bea4a5b3d6e88c5eac1a19db027135
|
#
c1a30c04 |
| 09-Jun-2020 |
Benjamin Fair <benjaminfair@google.com> |
tools/pci: add Nuvoton bridge configuration
The Nuvoton PCI device requires the Memory Space bit to be set in its command register in order to access the mailbox over MMIO.
Signed-off-by: Benjamin
tools/pci: add Nuvoton bridge configuration
The Nuvoton PCI device requires the Memory Space bit to be set in its command register in order to access the mailbox over MMIO.
Signed-off-by: Benjamin Fair <benjaminfair@google.com> Change-Id: Ic262b907ae55c622999aa68891b618650ccad3f2
show more ...
|
#
e5aafa5b |
| 05-Jun-2020 |
Benjamin Fair <benjaminfair@google.com> |
tools/pci: refactor PCI bridge
Use polymorphism to handle the differences between Aspeed and Nuvoton PCI devices.
Add unit tests (now at 100% line coverage for tools/pci.cpp).
Signed-off-by: Benja
tools/pci: refactor PCI bridge
Use polymorphism to handle the differences between Aspeed and Nuvoton PCI devices.
Add unit tests (now at 100% line coverage for tools/pci.cpp).
Signed-off-by: Benjamin Fair <benjaminfair@google.com> Change-Id: I43e63ec5eb9fce5fb0fc74e0e69667dd13b7433f
show more ...
|
#
20a18093 |
| 08-Jun-2020 |
Benjamin Fair <benjaminfair@google.com> |
tools/pci: add wrapper for libpciaccess
This allows unit testing code that uses libpciaccess.
Signed-off-by: Benjamin Fair <benjaminfair@google.com> Change-Id: Iec559c72e0e7b6c2e8737a54bb3e88fe1e0f
tools/pci: add wrapper for libpciaccess
This allows unit testing code that uses libpciaccess.
Signed-off-by: Benjamin Fair <benjaminfair@google.com> Change-Id: Iec559c72e0e7b6c2e8737a54bb3e88fe1e0f4fdb
show more ...
|