48 lines
1006 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Author: Kumar Gala <galak@kernel.crashing.org>
*
* Copyright 2009 Freescale Semiconductor Inc.
*/
#include <linux/stddef.h>
#include <linux/kernel.h>
#include <linux/smp.h>
#include <linux/threads.h>
#include <linux/hardirq.h>
#include <asm/dbell.h>
2026-01-29 22:25:33 +08:00
#include <asm/interrupt.h>
2026-01-21 18:59:54 +08:00
#include <asm/irq_regs.h>
#include <asm/kvm_ppc.h>
#include <asm/trace.h>
#ifdef CONFIG_SMP
2026-01-29 22:25:33 +08:00
DEFINE_INTERRUPT_HANDLER_ASYNC(doorbell_exception)
2026-01-21 18:59:54 +08:00
{
struct pt_regs *old_regs = set_irq_regs(regs);
trace_doorbell_entry(regs);
ppc_msgsync();
2026-01-29 22:25:33 +08:00
if (should_hard_irq_enable(regs))
do_hard_irq_enable();
2026-01-21 18:59:54 +08:00
kvmppc_clear_host_ipi(smp_processor_id());
__this_cpu_inc(irq_stat.doorbell_irqs);
smp_ipi_demux_relaxed(); /* already performed the barrier */
trace_doorbell_exit(regs);
2026-01-29 22:25:33 +08:00
2026-01-21 18:59:54 +08:00
set_irq_regs(old_regs);
}
#else /* CONFIG_SMP */
2026-01-29 22:25:33 +08:00
DEFINE_INTERRUPT_HANDLER_ASYNC(doorbell_exception)
2026-01-21 18:59:54 +08:00
{
printk(KERN_WARNING "Received doorbell on non-smp system\n");
}
#endif /* CONFIG_SMP */