Remove BUILD_TARGET64
BUILD_TARGET64 creates a larger test matrix and mostly gates the
building of the aarch64/armv8 target, make that unconditional, which
would help fixing any issues with 64-bit address types anyway.
Rebased by Antonio Borneo after commit 1fbe8450a9 ("mips: Add
MIPS64 support")
Change-Id: I219f62b744d540d9dde9a42e6b63fd7d91df3dbb
Suggested-by: Matthias Welwarsky <matthias@welwarsky.de>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5240
Tested-by: jenkins
This commit is contained in:
committed by
Antonio Borneo
parent
5c8de6a725
commit
5c6e32612d
@@ -62,12 +62,6 @@ int armv7a_mmu_translate_va_pa(struct target *target, uint32_t va,
|
||||
|
||||
/* decode memory attribute */
|
||||
SS = (value >> 1) & 1;
|
||||
#if !BUILD_TARGET64
|
||||
if (SS) {
|
||||
LOG_ERROR("Super section found with no-64 bit address support");
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
#endif
|
||||
NOS = (value >> 10) & 1; /* Not Outer shareable */
|
||||
NS = (value >> 9) & 1; /* Non secure */
|
||||
INNER = (value >> 4) & 0x7;
|
||||
|
||||
Reference in New Issue
Block a user