mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
17f8b216e0
This detects and enables ACPI based TRBE devices via the dummy platform device created earlier for this purpose. Cc: Suzuki K Poulose <suzuki.poulose@arm.com> Cc: Mike Leach <mike.leach@linaro.org> Cc: Leo Yan <leo.yan@linaro.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: coresight@lists.linaro.org Cc: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Link: https://lore.kernel.org/r/20230829135405.1159449-3-anshuman.khandual@arm.com
140 lines
3.1 KiB
C
140 lines
3.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* This contains all required hardware related helper functions for
|
|
* Trace Buffer Extension (TRBE) driver in the coresight framework.
|
|
*
|
|
* Copyright (C) 2020 ARM Ltd.
|
|
*
|
|
* Author: Anshuman Khandual <anshuman.khandual@arm.com>
|
|
*/
|
|
#include <linux/acpi.h>
|
|
#include <linux/coresight.h>
|
|
#include <linux/device.h>
|
|
#include <linux/irq.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/of.h>
|
|
#include <linux/perf/arm_pmu.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/smp.h>
|
|
|
|
#include "coresight-etm-perf.h"
|
|
|
|
static inline bool is_trbe_available(void)
|
|
{
|
|
u64 aa64dfr0 = read_sysreg_s(SYS_ID_AA64DFR0_EL1);
|
|
unsigned int trbe = cpuid_feature_extract_unsigned_field(aa64dfr0,
|
|
ID_AA64DFR0_EL1_TraceBuffer_SHIFT);
|
|
|
|
return trbe >= ID_AA64DFR0_EL1_TraceBuffer_IMP;
|
|
}
|
|
|
|
static inline bool is_trbe_enabled(void)
|
|
{
|
|
u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1);
|
|
|
|
return trblimitr & TRBLIMITR_EL1_E;
|
|
}
|
|
|
|
#define TRBE_EC_OTHERS 0
|
|
#define TRBE_EC_STAGE1_ABORT 36
|
|
#define TRBE_EC_STAGE2_ABORT 37
|
|
|
|
static inline int get_trbe_ec(u64 trbsr)
|
|
{
|
|
return (trbsr & TRBSR_EL1_EC_MASK) >> TRBSR_EL1_EC_SHIFT;
|
|
}
|
|
|
|
#define TRBE_BSC_NOT_STOPPED 0
|
|
#define TRBE_BSC_FILLED 1
|
|
#define TRBE_BSC_TRIGGERED 2
|
|
|
|
static inline int get_trbe_bsc(u64 trbsr)
|
|
{
|
|
return (trbsr & TRBSR_EL1_BSC_MASK) >> TRBSR_EL1_BSC_SHIFT;
|
|
}
|
|
|
|
static inline void clr_trbe_irq(void)
|
|
{
|
|
u64 trbsr = read_sysreg_s(SYS_TRBSR_EL1);
|
|
|
|
trbsr &= ~TRBSR_EL1_IRQ;
|
|
write_sysreg_s(trbsr, SYS_TRBSR_EL1);
|
|
}
|
|
|
|
static inline bool is_trbe_irq(u64 trbsr)
|
|
{
|
|
return trbsr & TRBSR_EL1_IRQ;
|
|
}
|
|
|
|
static inline bool is_trbe_trg(u64 trbsr)
|
|
{
|
|
return trbsr & TRBSR_EL1_TRG;
|
|
}
|
|
|
|
static inline bool is_trbe_wrap(u64 trbsr)
|
|
{
|
|
return trbsr & TRBSR_EL1_WRAP;
|
|
}
|
|
|
|
static inline bool is_trbe_abort(u64 trbsr)
|
|
{
|
|
return trbsr & TRBSR_EL1_EA;
|
|
}
|
|
|
|
static inline bool is_trbe_running(u64 trbsr)
|
|
{
|
|
return !(trbsr & TRBSR_EL1_S);
|
|
}
|
|
|
|
static inline bool get_trbe_flag_update(u64 trbidr)
|
|
{
|
|
return trbidr & TRBIDR_EL1_F;
|
|
}
|
|
|
|
static inline bool is_trbe_programmable(u64 trbidr)
|
|
{
|
|
return !(trbidr & TRBIDR_EL1_P);
|
|
}
|
|
|
|
static inline int get_trbe_address_align(u64 trbidr)
|
|
{
|
|
return (trbidr & TRBIDR_EL1_Align_MASK) >> TRBIDR_EL1_Align_SHIFT;
|
|
}
|
|
|
|
static inline unsigned long get_trbe_write_pointer(void)
|
|
{
|
|
return read_sysreg_s(SYS_TRBPTR_EL1);
|
|
}
|
|
|
|
static inline void set_trbe_write_pointer(unsigned long addr)
|
|
{
|
|
WARN_ON(is_trbe_enabled());
|
|
write_sysreg_s(addr, SYS_TRBPTR_EL1);
|
|
}
|
|
|
|
static inline unsigned long get_trbe_limit_pointer(void)
|
|
{
|
|
u64 trblimitr = read_sysreg_s(SYS_TRBLIMITR_EL1);
|
|
unsigned long addr = trblimitr & TRBLIMITR_EL1_LIMIT_MASK;
|
|
|
|
WARN_ON(!IS_ALIGNED(addr, PAGE_SIZE));
|
|
return addr;
|
|
}
|
|
|
|
static inline unsigned long get_trbe_base_pointer(void)
|
|
{
|
|
u64 trbbaser = read_sysreg_s(SYS_TRBBASER_EL1);
|
|
unsigned long addr = trbbaser & TRBBASER_EL1_BASE_MASK;
|
|
|
|
WARN_ON(!IS_ALIGNED(addr, PAGE_SIZE));
|
|
return addr;
|
|
}
|
|
|
|
static inline void set_trbe_base_pointer(unsigned long addr)
|
|
{
|
|
WARN_ON(is_trbe_enabled());
|
|
WARN_ON(!IS_ALIGNED(addr, (1UL << TRBBASER_EL1_BASE_SHIFT)));
|
|
WARN_ON(!IS_ALIGNED(addr, PAGE_SIZE));
|
|
write_sysreg_s(addr, SYS_TRBBASER_EL1);
|
|
}
|