X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Ftarget%2Farmv7a_mmu.c;h=eec14a36fb005149dcbfd6be9fcb8b2aaedd70d9;hb=5c6e32612df3360abe0ada4e434783b5636643f2;hp=f83228d5584b44c2be973c44ddfc2312d2d171e0;hpb=5c8de6a7253641bf1e4789bdc3b1e89ab741b1d1;p=fw%2Fopenocd diff --git a/src/target/armv7a_mmu.c b/src/target/armv7a_mmu.c index f83228d55..eec14a36f 100644 --- a/src/target/armv7a_mmu.c +++ b/src/target/armv7a_mmu.c @@ -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;