Commit 92b1efcd authored by Anshuman Khandual's avatar Anshuman Khandual Committed by Catalin Marinas

arm64/sysreg: Rename TRBLIMITR_EL1 fields per auto-gen tools format

This renames TRBLIMITR_EL1 register fields per auto-gen tools format
without causing any functional change in the TRBE driver.

Cc: Will Deacon <will@kernel.org>
Cc: Marc Zyngier <maz@kernel.org>
Cc: Mark Brown <broonie@kernel.org>
Cc: Rob Herring <robh@kernel.org>
Cc: Suzuki K Poulose <suzuki.poulose@arm.com>
Cc: James Morse <james.morse@arm.com>
Cc: kvmarm@lists.linux.dev
Cc: coresight@lists.linaro.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: default avatarAnshuman Khandual <anshuman.khandual@arm.com>
Reviewed-by: default avatarSuzuki K Poulose <suzuki.poulose@arm.com>
Link: https://lore.kernel.org/r/20230614065949.146187-2-anshuman.khandual@arm.comSigned-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent 175cea66
...@@ -238,14 +238,14 @@ ...@@ -238,14 +238,14 @@
#define SYS_TRBTRG_EL1 sys_reg(3, 0, 9, 11, 6) #define SYS_TRBTRG_EL1 sys_reg(3, 0, 9, 11, 6)
#define SYS_TRBIDR_EL1 sys_reg(3, 0, 9, 11, 7) #define SYS_TRBIDR_EL1 sys_reg(3, 0, 9, 11, 7)
#define TRBLIMITR_LIMIT_MASK GENMASK_ULL(51, 0) #define TRBLIMITR_EL1_LIMIT_MASK GENMASK_ULL(63, 12)
#define TRBLIMITR_LIMIT_SHIFT 12 #define TRBLIMITR_EL1_LIMIT_SHIFT 12
#define TRBLIMITR_NVM BIT(5) #define TRBLIMITR_EL1_nVM BIT(5)
#define TRBLIMITR_TRIG_MODE_MASK GENMASK(1, 0) #define TRBLIMITR_EL1_TM_MASK GENMASK(4, 3)
#define TRBLIMITR_TRIG_MODE_SHIFT 3 #define TRBLIMITR_EL1_TM_SHIFT 3
#define TRBLIMITR_FILL_MODE_MASK GENMASK(1, 0) #define TRBLIMITR_EL1_FM_MASK GENMASK(2, 1)
#define TRBLIMITR_FILL_MODE_SHIFT 1 #define TRBLIMITR_EL1_FM_SHIFT 1
#define TRBLIMITR_ENABLE BIT(0) #define TRBLIMITR_EL1_E BIT(0)
#define TRBPTR_PTR_MASK GENMASK_ULL(63, 0) #define TRBPTR_PTR_MASK GENMASK_ULL(63, 0)
#define TRBPTR_PTR_SHIFT 0 #define TRBPTR_PTR_SHIFT 0
#define TRBBASER_BASE_MASK GENMASK_ULL(51, 0) #define TRBBASER_BASE_MASK GENMASK_ULL(51, 0)
......
...@@ -56,7 +56,7 @@ static void __debug_save_trace(u64 *trfcr_el1) ...@@ -56,7 +56,7 @@ static void __debug_save_trace(u64 *trfcr_el1)
*trfcr_el1 = 0; *trfcr_el1 = 0;
/* Check if the TRBE is enabled */ /* Check if the TRBE is enabled */
if (!(read_sysreg_s(SYS_TRBLIMITR_EL1) & TRBLIMITR_ENABLE)) if (!(read_sysreg_s(SYS_TRBLIMITR_EL1) & TRBLIMITR_EL1_E))
return; return;
/* /*
* Prohibit trace generation while we are in guest. * Prohibit trace generation while we are in guest.
......
...@@ -218,7 +218,7 @@ static inline void set_trbe_enabled(struct trbe_cpudata *cpudata, u64 trblimitr) ...@@ -218,7 +218,7 @@ static inline void set_trbe_enabled(struct trbe_cpudata *cpudata, u64 trblimitr)
* Enable the TRBE without clearing LIMITPTR which * Enable the TRBE without clearing LIMITPTR which
* might be required for fetching the buffer limits. * might be required for fetching the buffer limits.
*/ */
trblimitr |= TRBLIMITR_ENABLE; trblimitr |= TRBLIMITR_EL1_E;
write_sysreg_s(trblimitr, SYS_TRBLIMITR_EL1); write_sysreg_s(trblimitr, SYS_TRBLIMITR_EL1);
/* Synchronize the TRBE enable event */ /* Synchronize the TRBE enable event */
...@@ -236,7 +236,7 @@ static inline void set_trbe_disabled(struct trbe_cpudata *cpudata) ...@@ -236,7 +236,7 @@ static inline void set_trbe_disabled(struct trbe_cpudata *cpudata)
* Disable the TRBE without clearing LIMITPTR which * Disable the TRBE without clearing LIMITPTR which
* might be required for fetching the buffer limits. * might be required for fetching the buffer limits.
*/ */
trblimitr &= ~TRBLIMITR_ENABLE; trblimitr &= ~TRBLIMITR_EL1_E;
write_sysreg_s(trblimitr, SYS_TRBLIMITR_EL1); write_sysreg_s(trblimitr, SYS_TRBLIMITR_EL1);
if (trbe_needs_drain_after_disable(cpudata)) if (trbe_needs_drain_after_disable(cpudata))
...@@ -596,13 +596,13 @@ static void set_trbe_limit_pointer_enabled(struct trbe_buf *buf) ...@@ -596,13 +596,13 @@ static void set_trbe_limit_pointer_enabled(struct trbe_buf *buf)
u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1); u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1);
unsigned long addr = buf->trbe_limit; unsigned long addr = buf->trbe_limit;
WARN_ON(!IS_ALIGNED(addr, (1UL << TRBLIMITR_LIMIT_SHIFT))); WARN_ON(!IS_ALIGNED(addr, (1UL << TRBLIMITR_EL1_LIMIT_SHIFT)));
WARN_ON(!IS_ALIGNED(addr, PAGE_SIZE)); WARN_ON(!IS_ALIGNED(addr, PAGE_SIZE));
trblimitr &= ~TRBLIMITR_NVM; trblimitr &= ~TRBLIMITR_EL1_nVM;
trblimitr &= ~(TRBLIMITR_FILL_MODE_MASK << TRBLIMITR_FILL_MODE_SHIFT); trblimitr &= ~TRBLIMITR_EL1_FM_MASK;
trblimitr &= ~(TRBLIMITR_TRIG_MODE_MASK << TRBLIMITR_TRIG_MODE_SHIFT); trblimitr &= ~TRBLIMITR_EL1_TM_MASK;
trblimitr &= ~(TRBLIMITR_LIMIT_MASK << TRBLIMITR_LIMIT_SHIFT); trblimitr &= ~TRBLIMITR_EL1_LIMIT_MASK;
/* /*
* Fill trace buffer mode is used here while configuring the * Fill trace buffer mode is used here while configuring the
...@@ -613,14 +613,15 @@ static void set_trbe_limit_pointer_enabled(struct trbe_buf *buf) ...@@ -613,14 +613,15 @@ static void set_trbe_limit_pointer_enabled(struct trbe_buf *buf)
* trace data in the interrupt handler, before reconfiguring * trace data in the interrupt handler, before reconfiguring
* the TRBE. * the TRBE.
*/ */
trblimitr |= (TRBE_FILL_MODE_FILL & TRBLIMITR_FILL_MODE_MASK) << TRBLIMITR_FILL_MODE_SHIFT; trblimitr |= (TRBLIMITR_EL1_FM_FILL << TRBLIMITR_EL1_FM_SHIFT) &
TRBLIMITR_EL1_FM_MASK;
/* /*
* Trigger mode is not used here while configuring the TRBE for * Trigger mode is not used here while configuring the TRBE for
* the trace capture. Hence just keep this in the ignore mode. * the trace capture. Hence just keep this in the ignore mode.
*/ */
trblimitr |= (TRBE_TRIG_MODE_IGNORE & TRBLIMITR_TRIG_MODE_MASK) << trblimitr |= (TRBLIMITR_EL1_TM_IGNR << TRBLIMITR_EL1_TM_SHIFT) &
TRBLIMITR_TRIG_MODE_SHIFT; TRBLIMITR_EL1_TM_MASK;
trblimitr |= (addr & PAGE_MASK); trblimitr |= (addr & PAGE_MASK);
set_trbe_enabled(buf->cpudata, trblimitr); set_trbe_enabled(buf->cpudata, trblimitr);
} }
......
...@@ -30,7 +30,7 @@ static inline bool is_trbe_enabled(void) ...@@ -30,7 +30,7 @@ static inline bool is_trbe_enabled(void)
{ {
u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1); u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1);
return trblimitr & TRBLIMITR_ENABLE; return trblimitr & TRBLIMITR_EL1_E;
} }
#define TRBE_EC_OTHERS 0 #define TRBE_EC_OTHERS 0
...@@ -86,8 +86,9 @@ static inline bool is_trbe_running(u64 trbsr) ...@@ -86,8 +86,9 @@ static inline bool is_trbe_running(u64 trbsr)
#define TRBE_TRIG_MODE_STOP 0 #define TRBE_TRIG_MODE_STOP 0
#define TRBE_TRIG_MODE_IRQ 1 #define TRBE_TRIG_MODE_IRQ 1
#define TRBE_TRIG_MODE_IGNORE 3 #define TRBLIMITR_EL1_TM_IGNR 3
#define TRBLIMITR_EL1_FM_FILL 0
#define TRBE_FILL_MODE_FILL 0 #define TRBE_FILL_MODE_FILL 0
#define TRBE_FILL_MODE_WRAP 1 #define TRBE_FILL_MODE_WRAP 1
#define TRBE_FILL_MODE_CIRCULAR_BUFFER 3 #define TRBE_FILL_MODE_CIRCULAR_BUFFER 3
...@@ -121,7 +122,7 @@ static inline void set_trbe_write_pointer(unsigned long addr) ...@@ -121,7 +122,7 @@ static inline void set_trbe_write_pointer(unsigned long addr)
static inline unsigned long get_trbe_limit_pointer(void) static inline unsigned long get_trbe_limit_pointer(void)
{ {
u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1); u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1);
unsigned long addr = trblimitr & (TRBLIMITR_LIMIT_MASK << TRBLIMITR_LIMIT_SHIFT); unsigned long addr = trblimitr & TRBLIMITR_EL1_LIMIT_MASK;
WARN_ON(!IS_ALIGNED(addr, PAGE_SIZE)); WARN_ON(!IS_ALIGNED(addr, PAGE_SIZE));
return addr; return addr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment