ARM: 6860/1: OMAP4: Move the privately used SMP boot functions to OMAP specific header.
[linux-2.6/x86.git] / arch / arm / plat-omap / include / plat / smp.h
blob416e9d579fdedb4e09cd6885cb5dc5724b84563c
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>
23 * We use Soft IRQ1 as the IPI
25 static inline void smp_cross_call(const struct cpumask *mask, int ipi)
27 gic_raise_softirq(mask, ipi);
30 #endif