blob: d9069bb26c7fa989ebf2d4b87aca798534331f05 [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>
Brian Gerst22da7b32009-01-23 11:03:31 +09006
7typedef struct {
Nicolai Stange9aee5f82018-07-27 12:46:29 +02008 u16 __softirq_pending;
Nicolai Stange45b575c2018-07-27 13:22:16 +02009#if IS_ENABLED(CONFIG_KVM_INTEL)
10 u8 kvm_cpu_l1tf_flush_l1d;
11#endif
Brian Gerst22da7b32009-01-23 11:03:31 +090012 unsigned int __nmi_count; /* arch dependent */
Brian Gerst2de3a5f2009-01-23 11:03:32 +090013#ifdef CONFIG_X86_LOCAL_APIC
14 unsigned int apic_timer_irqs; /* arch dependent */
15 unsigned int irq_spurious_count;
Fernando Luis Vazquez Caob49d7d82011-12-15 11:32:24 +090016 unsigned int icr_read_retry_count;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090017#endif
Yang Zhangd78f2662013-04-11 19:25:11 +080018#ifdef CONFIG_HAVE_KVM
19 unsigned int kvm_posted_intr_ipis;
Feng Wuf6b3c72c2015-05-19 17:07:16 +080020 unsigned int kvm_posted_intr_wakeup_ipis;
Wincy Van210f84b2017-04-28 13:13:58 +080021 unsigned int kvm_posted_intr_nested_ipis;
Yang Zhangd78f2662013-04-11 19:25:11 +080022#endif
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -050023 unsigned int x86_platform_ipis; /* arch dependent */
Ingo Molnarbfe2a3c2009-01-23 10:20:15 +010024 unsigned int apic_perf_irqs;
Peter Zijlstrae360adb2010-10-14 14:01:34 +080025 unsigned int apic_irq_work_irqs;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090026#ifdef CONFIG_SMP
Brian Gerst22da7b32009-01-23 11:03:31 +090027 unsigned int irq_resched_count;
28 unsigned int irq_call_count;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090029#endif
Andy Lutomirskice4a4e562017-05-28 10:00:14 -070030 unsigned int irq_tlb_count;
Jan Beulich0444c9b2009-11-20 14:03:05 +000031#ifdef CONFIG_X86_THERMAL_VECTOR
Brian Gerst22da7b32009-01-23 11:03:31 +090032 unsigned int irq_thermal_count;
Jan Beulich0444c9b2009-11-20 14:03:05 +000033#endif
34#ifdef CONFIG_X86_MCE_THRESHOLD
Brian Gerst22da7b32009-01-23 11:03:31 +090035 unsigned int irq_threshold_count;
Brian Gerst2de3a5f2009-01-23 11:03:32 +090036#endif
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -050037#ifdef CONFIG_X86_MCE_AMD
38 unsigned int irq_deferred_error_count;
39#endif
Thomas Gleixner7ff42472014-03-06 12:08:37 +010040#if IS_ENABLED(CONFIG_HYPERV) || defined(CONFIG_XEN)
Thomas Gleixner929320e2014-02-23 21:40:20 +000041 unsigned int irq_hv_callback_count;
42#endif
Vitaly Kuznetsov51d4e5d2018-01-24 14:23:35 +010043#if IS_ENABLED(CONFIG_HYPERV)
44 unsigned int irq_hv_reenlightenment_count;
Michael Kelley248e7422018-03-04 22:17:18 -070045 unsigned int hyperv_stimer0_count;
Vitaly Kuznetsov51d4e5d2018-01-24 14:23:35 +010046#endif
Brian Gerst22da7b32009-01-23 11:03:31 +090047} ____cacheline_aligned irq_cpustat_t;
48
David Howells9b8de742009-04-21 23:00:24 +010049DECLARE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat);
Brian Gerst22da7b32009-01-23 11:03:31 +090050
Brian Gerst22da7b32009-01-23 11:03:31 +090051#define __ARCH_IRQ_STAT
52
Alex Shic6ae41e2012-05-11 15:35:27 +080053#define inc_irq_stat(member) this_cpu_inc(irq_stat.member)
Brian Gerst22da7b32009-01-23 11:03:31 +090054
Brian Gerst22da7b32009-01-23 11:03:31 +090055extern void ack_bad_irq(unsigned int irq);
Jan Beulicha2eddfa2008-05-12 15:44:41 +020056
57extern u64 arch_irq_stat_cpu(unsigned int cpu);
58#define arch_irq_stat_cpu arch_irq_stat_cpu
59
60extern u64 arch_irq_stat(void);
61#define arch_irq_stat arch_irq_stat
Brian Gerst22da7b32009-01-23 11:03:31 +090062
Nicolai Stange45b575c2018-07-27 13:22:16 +020063
64#if IS_ENABLED(CONFIG_KVM_INTEL)
65static inline void kvm_set_cpu_l1tf_flush_l1d(void)
66{
67 __this_cpu_write(irq_stat.kvm_cpu_l1tf_flush_l1d, 1);
68}
69
70static inline void kvm_clear_cpu_l1tf_flush_l1d(void)
71{
72 __this_cpu_write(irq_stat.kvm_cpu_l1tf_flush_l1d, 0);
73}
74
75static inline bool kvm_get_cpu_l1tf_flush_l1d(void)
76{
77 return __this_cpu_read(irq_stat.kvm_cpu_l1tf_flush_l1d);
78}
79#else /* !IS_ENABLED(CONFIG_KVM_INTEL) */
80static inline void kvm_set_cpu_l1tf_flush_l1d(void) { }
81#endif /* IS_ENABLED(CONFIG_KVM_INTEL) */
82
Brian Gerst22da7b32009-01-23 11:03:31 +090083#endif /* _ASM_X86_HARDIRQ_H */