2012-12-13 03:20:52 +08: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
|
|
|
|
|
2015-11-15 09:39:53 +08:00
|
|
|
extern const struct smp_operations psci_smp_ops;
|
2013-05-21 22:24:11 +08:00
|
|
|
|
2015-11-19 22:03:57 +08:00
|
|
|
#if defined(CONFIG_SMP) && defined(CONFIG_ARM_PSCI)
|
2013-05-21 22:24:11 +08:00
|
|
|
bool psci_smp_available(void);
|
|
|
|
#else
|
|
|
|
static inline bool psci_smp_available(void) { return false; }
|
|
|
|
#endif
|
2012-12-13 03:20:52 +08:00
|
|
|
|
|
|
|
#endif /* __ASM_ARM_PSCI_H */
|