ARM: Provide common header for hard_smp_processor_id()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / plat-omap / include / plat / smp.h
blobecd6a488c497c28fda8aea2c3412a95b67e05cc7
1 /*
2 * OMAP4 machine specific smp.h
4 * Copyright (C) 2009 Texas Instruments, Inc.
6 * Author:
7 * Santosh Shilimkar <santosh.shilimkar@ti.com>
9 * Interface functions needed for the SMP. This file is based on arm
10 * realview smp platform.
11 * Copyright (c) 2003 ARM Limited.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
17 #ifndef OMAP_ARCH_SMP_H
18 #define OMAP_ARCH_SMP_H
20 #include <asm/hardware/gic.h>
21 #include <asm/smp_mpidr.h>
23 /* Needed for secondary core boot */
24 extern void omap_secondary_startup(void);
25 extern u32 omap_modify_auxcoreboot0(u32 set_mask, u32 clear_mask);
26 extern void omap_auxcoreboot_addr(u32 cpu_addr);
27 extern u32 omap_read_auxcoreboot0(void);
30 * We use Soft IRQ1 as the IPI
32 static inline void smp_cross_call(const struct cpumask *mask)
34 gic_raise_softirq(mask, 1);
37 #endif