| /* SPDX-License-Identifier: GPL-2.0 */ |
| /* |
| * Copyright (c) 2019 MediaTek Inc. |
| */ |
| |
| #ifndef _CPU_DSU_H_ |
| #define _CPU_DSU_H_ |
| |
| #include <linux/device.h> |
| |
| #define MODE_DISABLED 0 |
| #define MODE_INTERRUPT 1 |
| #define MODE_POLLING 2 |
| |
| #define MXNR_CPU NR_CPUS |
| |
| #define MXNR_DSU_EVENTS 8 /* max number of pmu counter for armv8 is 6+1 */ |
| struct met_dsu { |
| unsigned char mode; |
| unsigned short event; |
| unsigned long freq; |
| struct kobject *kobj_cpu_dsu; |
| }; |
| |
| struct cpu_dsu_hw { |
| const char *name; |
| int nr_cnt; |
| int (*check_event)(struct met_dsu *pmu, int idx, int event); |
| void (*start)(struct met_dsu *pmu, int count); |
| void (*stop)(int count); |
| unsigned int (*polling)(struct met_dsu *pmu, int count, unsigned int *pmu_value); |
| struct met_dsu *pmu; |
| int event_count; |
| }; |
| |
| |
| struct cpu_dsu_hw *cpu_dsu_hw_init(void); |
| |
| |
| |
| #endif /* _CPU_DSU_H_ */ |