18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifndef __PCR_H
38c2ecf20Sopenharmony_ci#define __PCR_H
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_cistruct pcr_ops {
68c2ecf20Sopenharmony_ci	u64 (*read_pcr)(unsigned long);
78c2ecf20Sopenharmony_ci	void (*write_pcr)(unsigned long, u64);
88c2ecf20Sopenharmony_ci	u64 (*read_pic)(unsigned long);
98c2ecf20Sopenharmony_ci	void (*write_pic)(unsigned long, u64);
108c2ecf20Sopenharmony_ci	u64 (*nmi_picl_value)(unsigned int nmi_hz);
118c2ecf20Sopenharmony_ci	u64 pcr_nmi_enable;
128c2ecf20Sopenharmony_ci	u64 pcr_nmi_disable;
138c2ecf20Sopenharmony_ci};
148c2ecf20Sopenharmony_ciextern const struct pcr_ops *pcr_ops;
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_civoid deferred_pcr_work_irq(int irq, struct pt_regs *regs);
178c2ecf20Sopenharmony_civoid schedule_deferred_pcr_work(void);
188c2ecf20Sopenharmony_ci
198c2ecf20Sopenharmony_ci#define PCR_PIC_PRIV		0x00000001 /* PIC access is privileged */
208c2ecf20Sopenharmony_ci#define PCR_STRACE		0x00000002 /* Trace supervisor events  */
218c2ecf20Sopenharmony_ci#define PCR_UTRACE		0x00000004 /* Trace user events        */
228c2ecf20Sopenharmony_ci#define PCR_N2_HTRACE		0x00000008 /* Trace hypervisor events  */
238c2ecf20Sopenharmony_ci#define PCR_N2_TOE_OV0		0x00000010 /* Trap if PIC 0 overflows  */
248c2ecf20Sopenharmony_ci#define PCR_N2_TOE_OV1		0x00000020 /* Trap if PIC 1 overflows  */
258c2ecf20Sopenharmony_ci#define PCR_N2_MASK0		0x00003fc0
268c2ecf20Sopenharmony_ci#define PCR_N2_MASK0_SHIFT	6
278c2ecf20Sopenharmony_ci#define PCR_N2_SL0		0x0003c000
288c2ecf20Sopenharmony_ci#define PCR_N2_SL0_SHIFT	14
298c2ecf20Sopenharmony_ci#define PCR_N2_OV0		0x00040000
308c2ecf20Sopenharmony_ci#define PCR_N2_MASK1		0x07f80000
318c2ecf20Sopenharmony_ci#define PCR_N2_MASK1_SHIFT	19
328c2ecf20Sopenharmony_ci#define PCR_N2_SL1		0x78000000
338c2ecf20Sopenharmony_ci#define PCR_N2_SL1_SHIFT	27
348c2ecf20Sopenharmony_ci#define PCR_N2_OV1		0x80000000
358c2ecf20Sopenharmony_ci
368c2ecf20Sopenharmony_ci#define PCR_N4_OV		0x00000001 /* PIC overflow             */
378c2ecf20Sopenharmony_ci#define PCR_N4_TOE		0x00000002 /* Trap On Event            */
388c2ecf20Sopenharmony_ci#define PCR_N4_UTRACE		0x00000004 /* Trace user events        */
398c2ecf20Sopenharmony_ci#define PCR_N4_STRACE		0x00000008 /* Trace supervisor events  */
408c2ecf20Sopenharmony_ci#define PCR_N4_HTRACE		0x00000010 /* Trace hypervisor events  */
418c2ecf20Sopenharmony_ci#define PCR_N4_MASK		0x000007e0 /* Event mask               */
428c2ecf20Sopenharmony_ci#define PCR_N4_MASK_SHIFT	5
438c2ecf20Sopenharmony_ci#define PCR_N4_SL		0x0000f800 /* Event Select             */
448c2ecf20Sopenharmony_ci#define PCR_N4_SL_SHIFT		11
458c2ecf20Sopenharmony_ci#define PCR_N4_PICNPT		0x00010000 /* PIC non-privileged trap  */
468c2ecf20Sopenharmony_ci#define PCR_N4_PICNHT		0x00020000 /* PIC non-hypervisor trap  */
478c2ecf20Sopenharmony_ci#define PCR_N4_NTC		0x00040000 /* Next-To-Commit wrap      */
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ciint pcr_arch_init(void);
508c2ecf20Sopenharmony_ci
518c2ecf20Sopenharmony_ci#endif /* __PCR_H */
52