18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Performance event support - PowerPC classic/server specific definitions.
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Copyright 2008-2009 Paul Mackerras, IBM Corporation.
68c2ecf20Sopenharmony_ci */
78c2ecf20Sopenharmony_ci
88c2ecf20Sopenharmony_ci#include <linux/types.h>
98c2ecf20Sopenharmony_ci#include <asm/hw_irq.h>
108c2ecf20Sopenharmony_ci#include <linux/device.h>
118c2ecf20Sopenharmony_ci#include <uapi/asm/perf_event.h>
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci/* Update perf_event_print_debug() if this changes */
148c2ecf20Sopenharmony_ci#define MAX_HWEVENTS		8
158c2ecf20Sopenharmony_ci#define MAX_EVENT_ALTERNATIVES	8
168c2ecf20Sopenharmony_ci#define MAX_LIMITED_HWCOUNTERS	2
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_cistruct perf_event;
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_cistruct mmcr_regs {
218c2ecf20Sopenharmony_ci	unsigned long mmcr0;
228c2ecf20Sopenharmony_ci	unsigned long mmcr1;
238c2ecf20Sopenharmony_ci	unsigned long mmcr2;
248c2ecf20Sopenharmony_ci	unsigned long mmcra;
258c2ecf20Sopenharmony_ci	unsigned long mmcr3;
268c2ecf20Sopenharmony_ci};
278c2ecf20Sopenharmony_ci/*
288c2ecf20Sopenharmony_ci * This struct provides the constants and functions needed to
298c2ecf20Sopenharmony_ci * describe the PMU on a particular POWER-family CPU.
308c2ecf20Sopenharmony_ci */
318c2ecf20Sopenharmony_cistruct power_pmu {
328c2ecf20Sopenharmony_ci	const char	*name;
338c2ecf20Sopenharmony_ci	int		n_counter;
348c2ecf20Sopenharmony_ci	int		max_alternatives;
358c2ecf20Sopenharmony_ci	unsigned long	add_fields;
368c2ecf20Sopenharmony_ci	unsigned long	test_adder;
378c2ecf20Sopenharmony_ci	int		(*compute_mmcr)(u64 events[], int n_ev,
388c2ecf20Sopenharmony_ci				unsigned int hwc[], struct mmcr_regs *mmcr,
398c2ecf20Sopenharmony_ci				struct perf_event *pevents[]);
408c2ecf20Sopenharmony_ci	int		(*get_constraint)(u64 event_id, unsigned long *mskp,
418c2ecf20Sopenharmony_ci				unsigned long *valp);
428c2ecf20Sopenharmony_ci	int		(*get_alternatives)(u64 event_id, unsigned int flags,
438c2ecf20Sopenharmony_ci				u64 alt[]);
448c2ecf20Sopenharmony_ci	void		(*get_mem_data_src)(union perf_mem_data_src *dsrc,
458c2ecf20Sopenharmony_ci				u32 flags, struct pt_regs *regs);
468c2ecf20Sopenharmony_ci	void		(*get_mem_weight)(u64 *weight);
478c2ecf20Sopenharmony_ci	unsigned long	group_constraint_mask;
488c2ecf20Sopenharmony_ci	unsigned long	group_constraint_val;
498c2ecf20Sopenharmony_ci	u64             (*bhrb_filter_map)(u64 branch_sample_type);
508c2ecf20Sopenharmony_ci	void            (*config_bhrb)(u64 pmu_bhrb_filter);
518c2ecf20Sopenharmony_ci	void		(*disable_pmc)(unsigned int pmc, struct mmcr_regs *mmcr);
528c2ecf20Sopenharmony_ci	int		(*limited_pmc_event)(u64 event_id);
538c2ecf20Sopenharmony_ci	u32		flags;
548c2ecf20Sopenharmony_ci	const struct attribute_group	**attr_groups;
558c2ecf20Sopenharmony_ci	int		n_generic;
568c2ecf20Sopenharmony_ci	int		*generic_events;
578c2ecf20Sopenharmony_ci	u64		(*cache_events)[PERF_COUNT_HW_CACHE_MAX]
588c2ecf20Sopenharmony_ci			       [PERF_COUNT_HW_CACHE_OP_MAX]
598c2ecf20Sopenharmony_ci			       [PERF_COUNT_HW_CACHE_RESULT_MAX];
608c2ecf20Sopenharmony_ci
618c2ecf20Sopenharmony_ci	int		n_blacklist_ev;
628c2ecf20Sopenharmony_ci	int 		*blacklist_ev;
638c2ecf20Sopenharmony_ci	/* BHRB entries in the PMU */
648c2ecf20Sopenharmony_ci	int		bhrb_nr;
658c2ecf20Sopenharmony_ci	/*
668c2ecf20Sopenharmony_ci	 * set this flag with `PERF_PMU_CAP_EXTENDED_REGS` if
678c2ecf20Sopenharmony_ci	 * the pmu supports extended perf regs capability
688c2ecf20Sopenharmony_ci	 */
698c2ecf20Sopenharmony_ci	int		capabilities;
708c2ecf20Sopenharmony_ci};
718c2ecf20Sopenharmony_ci
728c2ecf20Sopenharmony_ci/*
738c2ecf20Sopenharmony_ci * Values for power_pmu.flags
748c2ecf20Sopenharmony_ci */
758c2ecf20Sopenharmony_ci#define PPMU_LIMITED_PMC5_6	0x00000001 /* PMC5/6 have limited function */
768c2ecf20Sopenharmony_ci#define PPMU_ALT_SIPR		0x00000002 /* uses alternate posn for SIPR/HV */
778c2ecf20Sopenharmony_ci#define PPMU_NO_SIPR		0x00000004 /* no SIPR/HV in MMCRA at all */
788c2ecf20Sopenharmony_ci#define PPMU_NO_CONT_SAMPLING	0x00000008 /* no continuous sampling */
798c2ecf20Sopenharmony_ci#define PPMU_SIAR_VALID		0x00000010 /* Processor has SIAR Valid bit */
808c2ecf20Sopenharmony_ci#define PPMU_HAS_SSLOT		0x00000020 /* Has sampled slot in MMCRA */
818c2ecf20Sopenharmony_ci#define PPMU_HAS_SIER		0x00000040 /* Has SIER */
828c2ecf20Sopenharmony_ci#define PPMU_ARCH_207S		0x00000080 /* PMC is architecture v2.07S */
838c2ecf20Sopenharmony_ci#define PPMU_NO_SIAR		0x00000100 /* Do not use SIAR */
848c2ecf20Sopenharmony_ci#define PPMU_ARCH_31		0x00000200 /* Has MMCR3, SIER2 and SIER3 */
858c2ecf20Sopenharmony_ci
868c2ecf20Sopenharmony_ci/*
878c2ecf20Sopenharmony_ci * Values for flags to get_alternatives()
888c2ecf20Sopenharmony_ci */
898c2ecf20Sopenharmony_ci#define PPMU_LIMITED_PMC_OK	1	/* can put this on a limited PMC */
908c2ecf20Sopenharmony_ci#define PPMU_LIMITED_PMC_REQD	2	/* have to put this on a limited PMC */
918c2ecf20Sopenharmony_ci#define PPMU_ONLY_COUNT_RUN	4	/* only counting in run state */
928c2ecf20Sopenharmony_ci
938c2ecf20Sopenharmony_ciextern int register_power_pmu(struct power_pmu *);
948c2ecf20Sopenharmony_ci
958c2ecf20Sopenharmony_cistruct pt_regs;
968c2ecf20Sopenharmony_ciextern unsigned long perf_misc_flags(struct pt_regs *regs);
978c2ecf20Sopenharmony_ciextern unsigned long perf_instruction_pointer(struct pt_regs *regs);
988c2ecf20Sopenharmony_ciextern unsigned long int read_bhrb(int n);
998c2ecf20Sopenharmony_ci
1008c2ecf20Sopenharmony_ci/*
1018c2ecf20Sopenharmony_ci * Only override the default definitions in include/linux/perf_event.h
1028c2ecf20Sopenharmony_ci * if we have hardware PMU support.
1038c2ecf20Sopenharmony_ci */
1048c2ecf20Sopenharmony_ci#ifdef CONFIG_PPC_PERF_CTRS
1058c2ecf20Sopenharmony_ci#define perf_misc_flags(regs)	perf_misc_flags(regs)
1068c2ecf20Sopenharmony_ci#endif
1078c2ecf20Sopenharmony_ci
1088c2ecf20Sopenharmony_ci/*
1098c2ecf20Sopenharmony_ci * The power_pmu.get_constraint function returns a 32/64-bit value and
1108c2ecf20Sopenharmony_ci * a 32/64-bit mask that express the constraints between this event_id and
1118c2ecf20Sopenharmony_ci * other events.
1128c2ecf20Sopenharmony_ci *
1138c2ecf20Sopenharmony_ci * The value and mask are divided up into (non-overlapping) bitfields
1148c2ecf20Sopenharmony_ci * of three different types:
1158c2ecf20Sopenharmony_ci *
1168c2ecf20Sopenharmony_ci * Select field: this expresses the constraint that some set of bits
1178c2ecf20Sopenharmony_ci * in MMCR* needs to be set to a specific value for this event_id.  For a
1188c2ecf20Sopenharmony_ci * select field, the mask contains 1s in every bit of the field, and
1198c2ecf20Sopenharmony_ci * the value contains a unique value for each possible setting of the
1208c2ecf20Sopenharmony_ci * MMCR* bits.  The constraint checking code will ensure that two events
1218c2ecf20Sopenharmony_ci * that set the same field in their masks have the same value in their
1228c2ecf20Sopenharmony_ci * value dwords.
1238c2ecf20Sopenharmony_ci *
1248c2ecf20Sopenharmony_ci * Add field: this expresses the constraint that there can be at most
1258c2ecf20Sopenharmony_ci * N events in a particular class.  A field of k bits can be used for
1268c2ecf20Sopenharmony_ci * N <= 2^(k-1) - 1.  The mask has the most significant bit of the field
1278c2ecf20Sopenharmony_ci * set (and the other bits 0), and the value has only the least significant
1288c2ecf20Sopenharmony_ci * bit of the field set.  In addition, the 'add_fields' and 'test_adder'
1298c2ecf20Sopenharmony_ci * in the struct power_pmu for this processor come into play.  The
1308c2ecf20Sopenharmony_ci * add_fields value contains 1 in the LSB of the field, and the
1318c2ecf20Sopenharmony_ci * test_adder contains 2^(k-1) - 1 - N in the field.
1328c2ecf20Sopenharmony_ci *
1338c2ecf20Sopenharmony_ci * NAND field: this expresses the constraint that you may not have events
1348c2ecf20Sopenharmony_ci * in all of a set of classes.  (For example, on PPC970, you can't select
1358c2ecf20Sopenharmony_ci * events from the FPU, ISU and IDU simultaneously, although any two are
1368c2ecf20Sopenharmony_ci * possible.)  For N classes, the field is N+1 bits wide, and each class
1378c2ecf20Sopenharmony_ci * is assigned one bit from the least-significant N bits.  The mask has
1388c2ecf20Sopenharmony_ci * only the most-significant bit set, and the value has only the bit
1398c2ecf20Sopenharmony_ci * for the event_id's class set.  The test_adder has the least significant
1408c2ecf20Sopenharmony_ci * bit set in the field.
1418c2ecf20Sopenharmony_ci *
1428c2ecf20Sopenharmony_ci * If an event_id is not subject to the constraint expressed by a particular
1438c2ecf20Sopenharmony_ci * field, then it will have 0 in both the mask and value for that field.
1448c2ecf20Sopenharmony_ci */
1458c2ecf20Sopenharmony_ci
1468c2ecf20Sopenharmony_ciextern ssize_t power_events_sysfs_show(struct device *dev,
1478c2ecf20Sopenharmony_ci				struct device_attribute *attr, char *page);
1488c2ecf20Sopenharmony_ci
1498c2ecf20Sopenharmony_ci/*
1508c2ecf20Sopenharmony_ci * EVENT_VAR() is same as PMU_EVENT_VAR with a suffix.
1518c2ecf20Sopenharmony_ci *
1528c2ecf20Sopenharmony_ci * Having a suffix allows us to have aliases in sysfs - eg: the generic
1538c2ecf20Sopenharmony_ci * event 'cpu-cycles' can have two entries in sysfs: 'cpu-cycles' and
1548c2ecf20Sopenharmony_ci * 'PM_CYC' where the latter is the name by which the event is known in
1558c2ecf20Sopenharmony_ci * POWER CPU specification.
1568c2ecf20Sopenharmony_ci *
1578c2ecf20Sopenharmony_ci * Similarly, some hardware and cache events use the same event code. Eg.
1588c2ecf20Sopenharmony_ci * on POWER8, both "cache-references" and "L1-dcache-loads" events refer
1598c2ecf20Sopenharmony_ci * to the same event, PM_LD_REF_L1.  The suffix, allows us to have two
1608c2ecf20Sopenharmony_ci * sysfs objects for the same event and thus two entries/aliases in sysfs.
1618c2ecf20Sopenharmony_ci */
1628c2ecf20Sopenharmony_ci#define	EVENT_VAR(_id, _suffix)		event_attr_##_id##_suffix
1638c2ecf20Sopenharmony_ci#define	EVENT_PTR(_id, _suffix)		&EVENT_VAR(_id, _suffix).attr.attr
1648c2ecf20Sopenharmony_ci
1658c2ecf20Sopenharmony_ci#define	EVENT_ATTR(_name, _id, _suffix)					\
1668c2ecf20Sopenharmony_ci	PMU_EVENT_ATTR(_name, EVENT_VAR(_id, _suffix), _id,		\
1678c2ecf20Sopenharmony_ci			power_events_sysfs_show)
1688c2ecf20Sopenharmony_ci
1698c2ecf20Sopenharmony_ci#define	GENERIC_EVENT_ATTR(_name, _id)	EVENT_ATTR(_name, _id, _g)
1708c2ecf20Sopenharmony_ci#define	GENERIC_EVENT_PTR(_id)		EVENT_PTR(_id, _g)
1718c2ecf20Sopenharmony_ci
1728c2ecf20Sopenharmony_ci#define	CACHE_EVENT_ATTR(_name, _id)	EVENT_ATTR(_name, _id, _c)
1738c2ecf20Sopenharmony_ci#define	CACHE_EVENT_PTR(_id)		EVENT_PTR(_id, _c)
1748c2ecf20Sopenharmony_ci
1758c2ecf20Sopenharmony_ci#define	POWER_EVENT_ATTR(_name, _id)	EVENT_ATTR(_name, _id, _p)
1768c2ecf20Sopenharmony_ci#define	POWER_EVENT_PTR(_id)		EVENT_PTR(_id, _p)
177