]> git.baikalelectronics.ru Git - arm-tf.git/commit
refactor(cpufeat): wrap CPU ID register field isolation
authorAndre Przywara <andre.przywara@arm.com>
Wed, 25 Jan 2023 12:26:14 +0000 (12:26 +0000)
committerAndre Przywara <andre.przywara@arm.com>
Mon, 27 Feb 2023 18:04:14 +0000 (18:04 +0000)
commitfd1dd4cb2c88f64a411c8482007e4669a563b80d
tree03d08c3c1a61d597e57ba48702ae6c71d093872d
parent3d2da6f5d3a931d97e0294f0a565b1810a55ab98
refactor(cpufeat): wrap CPU ID register field isolation

Some MISRA test complains about our code to isolate CPU ID register
fields: the ID registers (and associated masks) are 64 bits wide, but
the eventual field is always 4 bits wide only, so we use an unsigned
int to represent that. MISRA dislikes the differing width here.

Since the code to extract a feature field from a CPU ID register is very
schematic already, provide a wrapper macro to make this more readable,
and do the proper casting in one central place on the way.

While at it, use the same macro for the AArch32 feature detection side.

Change-Id: Ie102a9e7007a386f5879ec65e159ff041504a4ee
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
include/arch/aarch32/arch_features.h
include/arch/aarch64/arch_features.h