mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 00:17:23 +00:00
Revert "armv8: enable HAFDBS for other ELx when FEAT_HAFDBS is present"
This reverts commit c1da6fdb5c
. This is
part of a series trying to make use of the arm64 hardware features for
tracking dirty pages. Unfortunately this series causes problems for the
AC5/AC5X SoCs. Having exhausted other options the consensus seems to be
reverting this series is the best course of action.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
This commit is contained in:
parent
ac33a7976a
commit
ee23d7466c
2 changed files with 3 additions and 13 deletions
|
@ -94,15 +94,11 @@ u64 get_tcr(u64 *pips, u64 *pva_bits)
|
|||
if (el == 1) {
|
||||
tcr = TCR_EL1_RSVD | (ips << 32) | TCR_EPD1_DISABLE;
|
||||
if (gd->arch.has_hafdbs)
|
||||
tcr |= TCR_EL1_HA | TCR_EL1_HD;
|
||||
tcr |= TCR_HA | TCR_HD;
|
||||
} else if (el == 2) {
|
||||
tcr = TCR_EL2_RSVD | (ips << 16);
|
||||
if (gd->arch.has_hafdbs)
|
||||
tcr |= TCR_EL2_HA | TCR_EL2_HD;
|
||||
} else {
|
||||
tcr = TCR_EL3_RSVD | (ips << 16);
|
||||
if (gd->arch.has_hafdbs)
|
||||
tcr |= TCR_EL3_HA | TCR_EL3_HD;
|
||||
}
|
||||
|
||||
/* PTWs cacheable, inner/outer WBWA and inner shareable */
|
||||
|
|
|
@ -102,14 +102,8 @@
|
|||
#define TCR_TG0_16K (2 << 14)
|
||||
#define TCR_EPD1_DISABLE (1 << 23)
|
||||
|
||||
#define TCR_EL1_HA BIT(39)
|
||||
#define TCR_EL1_HD BIT(40)
|
||||
|
||||
#define TCR_EL2_HA BIT(21)
|
||||
#define TCR_EL2_HD BIT(22)
|
||||
|
||||
#define TCR_EL3_HA BIT(21)
|
||||
#define TCR_EL3_HD BIT(22)
|
||||
#define TCR_HA BIT(39)
|
||||
#define TCR_HD BIT(40)
|
||||
|
||||
#define TCR_EL1_RSVD (1U << 31)
|
||||
#define TCR_EL2_RSVD (1U << 31 | 1 << 23)
|
||||
|
|
Loading…
Reference in a new issue