Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19 lines
458 B
C
19 lines
458 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
*
|
|
* Copyright (C) 2012 ARM Limited
|
|
*/
|
|
|
|
|
|
#ifndef __SPC_H_
|
|
#define __SPC_H_
|
|
|
|
int __init ve_spc_init(void __iomem *base, u32 a15_clusid, int irq);
|
|
void ve_spc_global_wakeup_irq(bool set);
|
|
void ve_spc_cpu_wakeup_irq(u32 cluster, u32 cpu, bool set);
|
|
void ve_spc_set_resume_addr(u32 cluster, u32 cpu, u32 addr);
|
|
void ve_spc_powerdown(u32 cluster, bool enable);
|
|
int ve_spc_cpu_in_wfi(u32 cpu, u32 cluster);
|
|
|
|
#endif
|