clk: st: Support for DIVMUX and PreDiv Clocks
[linux-2.6/btrfs-unstable.git] / arch / powerpc / kernel / dbell.c
blobd55c76c571f38dce85137b7e28e8a6d2f59aaf38
1 /*
2 * Author: Kumar Gala <galak@kernel.crashing.org>
4 * Copyright 2009 Freescale Semiconductor Inc.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <linux/stddef.h>
13 #include <linux/kernel.h>
14 #include <linux/smp.h>
15 #include <linux/threads.h>
16 #include <linux/hardirq.h>
18 #include <asm/dbell.h>
19 #include <asm/irq_regs.h>
21 #ifdef CONFIG_SMP
22 void doorbell_setup_this_cpu(void)
24 unsigned long tag = mfspr(SPRN_DOORBELL_CPUTAG) & PPC_DBELL_TAG_MASK;
26 smp_muxed_ipi_set_data(smp_processor_id(), tag);
29 void doorbell_cause_ipi(int cpu, unsigned long data)
31 /* Order previous accesses vs. msgsnd, which is treated as a store */
32 mb();
33 ppc_msgsnd(PPC_DBELL_MSGTYPE, 0, data);
36 void doorbell_exception(struct pt_regs *regs)
38 struct pt_regs *old_regs = set_irq_regs(regs);
40 irq_enter();
42 may_hard_irq_enable();
44 __get_cpu_var(irq_stat).doorbell_irqs++;
46 smp_ipi_demux();
48 irq_exit();
49 set_irq_regs(old_regs);
51 #else /* CONFIG_SMP */
52 void doorbell_exception(struct pt_regs *regs)
54 printk(KERN_WARNING "Received doorbell on non-smp system\n");
56 #endif /* CONFIG_SMP */