diff options
Diffstat (limited to 'include/linux/perf')
| -rw-r--r-- | include/linux/perf/riscv_pmu.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/linux/perf/riscv_pmu.h b/include/linux/perf/riscv_pmu.h index 43282e22ebe1..701974639ff2 100644 --- a/include/linux/perf/riscv_pmu.h +++ b/include/linux/perf/riscv_pmu.h @@ -39,6 +39,14 @@ struct cpu_hw_events {  	DECLARE_BITMAP(used_hw_ctrs, RISCV_MAX_COUNTERS);  	/* currently enabled firmware counters */  	DECLARE_BITMAP(used_fw_ctrs, RISCV_MAX_COUNTERS); +	/* The virtual address of the shared memory where counter snapshot will be taken */ +	void *snapshot_addr; +	/* The physical address of the shared memory where counter snapshot will be taken */ +	phys_addr_t snapshot_addr_phys; +	/* Boolean flag to indicate setup is already done */ +	bool snapshot_set_done; +	/* A shadow copy of the counter values to avoid clobbering during multiple SBI calls */ +	u64 snapshot_cval_shcopy[RISCV_MAX_COUNTERS];  };  struct riscv_pmu { |