2012-12-13 02:20:52 +07:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 ARM Limited
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARM_PSCI_H
|
|
|
|
#define __ASM_ARM_PSCI_H
|
|
|
|
|
2013-05-21 21:24:11 +07:00
|
|
|
extern struct smp_operations psci_smp_ops;
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARM_PSCI
|
|
|
|
bool psci_smp_available(void);
|
|
|
|
#else
|
|
|
|
static inline bool psci_smp_available(void) { return false; }
|
|
|
|
#endif
|
2012-12-13 02:20:52 +07:00
|
|
|
|
|
|
|
#endif /* __ASM_ARM_PSCI_H */
|