| 47c681b7 | 19-May-2022 |
Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com> |
feat(trbe): add trbe under feature detection mechanism
This change adds "FEAT_TRBE" to be part of feature detection mechanism.
Previously feature enablement flags were of boolean type, containing e
feat(trbe): add trbe under feature detection mechanism
This change adds "FEAT_TRBE" to be part of feature detection mechanism.
Previously feature enablement flags were of boolean type, containing either 0 or 1. With the introduction of feature detection procedure we now support three states for feature enablement build flags(0 to 2).
Accordingly, "ENABLE_TRBE_FOR_NS" flag is now modified from boolean to numeric type to align with the feature detection.
Change-Id: I53d3bc8dc2f6eac63feef22dfd627f3a48480afc Signed-off-by: Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com>
show more ...
|
| 49e789e3 | 02-Sep-2021 |
Andre Przywara <andre.przywara@arm.com> |
fix(fdt): avoid output on missing DT property
When we use our fdt_read_uint32* helper functions, we output a warning on not finding the requested property.
However non-existing properties are not t
fix(fdt): avoid output on missing DT property
When we use our fdt_read_uint32* helper functions, we output a warning on not finding the requested property.
However non-existing properties are not that uncommon, and *trying* to read such a property is actually a nice way of checking its existence.
Since we already return a specific error value in this case, the caller can easily check this and give a more specific error message, if needed. When the caller decides to properly handle the error (fallback, default value, etc), a message on the console is quite misleading.
Demote the message to a VERBOSE, so normal builds will not spam the console with pointless messages.
Change-Id: I7a279a4ee0147c5f4a0503d0a8745c6cfea58be5 Signed-off-by: Andre Przywara <andre.przywara@arm.com>
show more ...
|
| 2d9ea360 | 28-Sep-2021 |
Chris Kay <chris.kay@arm.com> |
feat(fdt-wrappers): add CPU enumeration utility function
This change adds a new utility function - `fdtw_for_each_cpu` - to invoke a callback for every CPU node listed in a flattened device tree (FD
feat(fdt-wrappers): add CPU enumeration utility function
This change adds a new utility function - `fdtw_for_each_cpu` - to invoke a callback for every CPU node listed in a flattened device tree (FDT) with the node identifier and the MPIDR of the core it describes.
Signed-off-by: Chris Kay <chris.kay@arm.com> Change-Id: Iabb5c0f0c9d11928a4a7a41cdc7d1e09aadeb2bc
show more ...
|