mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-08 10:08:47 +00:00
Fix type of unsigned long
constants
The type `unsigned long` is 32 bit wide in AArch32, but 64 bit wide in AArch64. This is inconsistent and that's why we avoid using it as per the Coding Guidelines. This patch changes all `UL` occurrences to `U` or `ULL` depending on the context so that the size of the constant is clear. This problem affected the macro `BIT(nr)`. As long as this macro is used to fill fields of registers, that's not a problem, since all registers are 32 bit wide in AArch32 and 64 bit wide in AArch64. However, if the macro is used to fill the fields of a 64-bit integer, it won't be able to set the upper 32 bits in AArch32. By changing the type of this macro to `unsigned long long` the behaviour is always the same regardless of the architecture, as this type is 64-bit wide in both cases. Some Tegra platform files have been modified by this patch. Change-Id: I918264c03e7d691a931f0d1018df25a2796cc221 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
This commit is contained in:
parent
df312c5a2b
commit
e47ac1fd63
7 changed files with 18 additions and 18 deletions
|
@ -134,13 +134,13 @@ typedef enum rn_types {
|
|||
#define HNF_SAM_CTRL_SN1_ID_SHIFT 8
|
||||
#define HNF_SAM_CTRL_SN2_ID_SHIFT 16
|
||||
|
||||
#define HNF_SAM_CTRL_TAB0_MASK 0x3fUL
|
||||
#define HNF_SAM_CTRL_TAB0_MASK ULL(0x3f)
|
||||
#define HNF_SAM_CTRL_TAB0_SHIFT 48
|
||||
#define HNF_SAM_CTRL_TAB1_MASK 0x3fUL
|
||||
#define HNF_SAM_CTRL_TAB1_MASK ULL(0x3f)
|
||||
#define HNF_SAM_CTRL_TAB1_SHIFT 56
|
||||
|
||||
#define HNF_SAM_CTRL_3SN_ENB_SHIFT 32
|
||||
#define HNF_SAM_CTRL_3SN_ENB_MASK 0x01UL
|
||||
#define HNF_SAM_CTRL_3SN_ENB_MASK ULL(0x01)
|
||||
|
||||
/*
|
||||
* Macro to create a value suitable for programming into a HNF SAM Control
|
||||
|
@ -169,7 +169,7 @@ typedef enum rn_types {
|
|||
#define FOR_EACH_BIT(bit_pos, bit_map) \
|
||||
for (bit_pos = __builtin_ctzll(bit_map); \
|
||||
bit_map; \
|
||||
bit_map &= ~(1UL << bit_pos), \
|
||||
bit_map &= ~(1ULL << (bit_pos)), \
|
||||
bit_pos = __builtin_ctzll(bit_map))
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue