blob: 0b854ebb99dfec92d7f4acb7174d067e6fb25bdb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Brian Gerst22da7b32009-01-23 11:03:31 +09002#ifndef _ASM_X86_HARDIRQ_H
3#define _ASM_X86_HARDIRQ_H
4
5#include <linux/threads.h>
6#include <linux/irq.h>
7
8typedef struct {
Nicolai Stange9aee5f82018-07-27 12:46:29 +02009 u16 __softirq_pending;
Nicolai Stange45b575c2018-07-27 13:22:16 +020010#if IS_ENABLED(CONFIG_KVM_INTEL)
11 u8 kvm_cpu_l1tf_flush_l1d;
12#endif
Brian Gerst22da7b32009-01-23 11:03:31 +090013 unsigned int __nmi_count; /* arch dependent */
Brian Gerst2de3a5f2009-01-23 11:03:32 +090014#ifdef CONFIG_X86_LOCAL_APIC
15 unsigned int apic_timer_irqs; /* arch dependent */
16 unsigned int irq_spurious_count;
Fernando Luis Vazquez Caob49d7d82011-12-15 11:32:24 +090017 unsigned int icr_read_retry_count;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090018#endif
Yang Zhangd78f2662013-04-11 19:25:11 +080019#ifdef CONFIG_HAVE_KVM
20 unsigned int kvm_posted_intr_ipis;
Feng Wuf6b3c72c2015-05-19 17:07:16 +080021 unsigned int kvm_posted_intr_wakeup_ipis;
Wincy Van210f84b2017-04-28 13:13:58 +080022 unsigned int kvm_posted_intr_nested_ipis;
Yang Zhangd78f2662013-04-11 19:25:11 +080023#endif
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050024 unsigned int x86_platform_ipis; /* arch dependent */
Ingo Molnarbfe2a3c2009-01-23 10:20:15 +010025 unsigned int apic_perf_irqs;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080026 unsigned int apic_irq_work_irqs;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090027#ifdef CONFIG_SMP
Brian Gerst22da7b32009-01-23 11:03:31 +090028 unsigned int irq_resched_count;
29 unsigned int irq_call_count;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090030#endif
Andy Lutomirskice4a4e562017-05-28 10:00:14 -070031 unsigned int irq_tlb_count;
Jan Beulich0444c9b2009-11-20 14:03:05 +000032#ifdef CONFIG_X86_THERMAL_VECTOR
Brian Gerst22da7b32009-01-23 11:03:31 +090033 unsigned int irq_thermal_count;
Jan Beulich0444c9b2009-11-20 14:03:05 +000034#endif
35#ifdef CONFIG_X86_MCE_THRESHOLD
Brian Gerst22da7b32009-01-23 11:03:31 +090036 unsigned int irq_threshold_count;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090037#endif
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -050038#ifdef CONFIG_X86_MCE_AMD
39 unsigned int irq_deferred_error_count;
40#endif
Thomas Gleixner7ff42472014-03-06 12:08:37 +010041#if IS_ENABLED(CONFIG_HYPERV) || defined(CONFIG_XEN)
Thomas Gleixner929320e2014-02-23 21:40:20 +000042 unsigned int irq_hv_callback_count;
43#endif
Vitaly Kuznetsov51d4e5d2018-01-24 14:23:35 +010044#if IS_ENABLED(CONFIG_HYPERV)
45 unsigned int irq_hv_reenlightenment_count;
Michael Kelley248e7422018-03-04 22:17:18 -070046 unsigned int hyperv_stimer0_count;
Vitaly Kuznetsov51d4e5d2018-01-24 14:23:35 +010047#endif
Brian Gerst22da7b32009-01-23 11:03:31 +090048} ____cacheline_aligned irq_cpustat_t;
49
David Howells9b8de742009-04-21 23:00:24 +010050DECLARE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat);
Brian Gerst22da7b32009-01-23 11:03:31 +090051
Brian Gerst22da7b32009-01-23 11:03:31 +090052#define __ARCH_IRQ_STAT
53
Alex Shic6ae41e2012-05-11 15:35:27 +080054#define inc_irq_stat(member) this_cpu_inc(irq_stat.member)
Brian Gerst22da7b32009-01-23 11:03:31 +090055
Brian Gerst22da7b32009-01-23 11:03:31 +090056extern void ack_bad_irq(unsigned int irq);
Jan Beulicha2eddfa2008-05-12 15:44:41 +020057
58extern u64 arch_irq_stat_cpu(unsigned int cpu);
59#define arch_irq_stat_cpu arch_irq_stat_cpu
60
61extern u64 arch_irq_stat(void);
62#define arch_irq_stat arch_irq_stat
Brian Gerst22da7b32009-01-23 11:03:31 +090063
Nicolai Stange45b575c2018-07-27 13:22:16 +020064
65#if IS_ENABLED(CONFIG_KVM_INTEL)
66static inline void kvm_set_cpu_l1tf_flush_l1d(void)
67{
68 __this_cpu_write(irq_stat.kvm_cpu_l1tf_flush_l1d, 1);
69}
70
71static inline void kvm_clear_cpu_l1tf_flush_l1d(void)
72{
73 __this_cpu_write(irq_stat.kvm_cpu_l1tf_flush_l1d, 0);
74}
75
76static inline bool kvm_get_cpu_l1tf_flush_l1d(void)
77{
78 return __this_cpu_read(irq_stat.kvm_cpu_l1tf_flush_l1d);
79}
80#else /* !IS_ENABLED(CONFIG_KVM_INTEL) */
81static inline void kvm_set_cpu_l1tf_flush_l1d(void) { }
82#endif /* IS_ENABLED(CONFIG_KVM_INTEL) */
83
Brian Gerst22da7b32009-01-23 11:03:31 +090084#endif /* _ASM_X86_HARDIRQ_H */