blob: 1e3698db1324e2b7df4b7dc92e0c07467275f040 [file] [log] [blame]
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#include <linux/arm-smccc.h>
#include <asm/arch/pwr_ctrl.h>
unsigned long pwr_ctrl_psci_smc(enum pm_e power_domain, bool power_control)
{
struct arm_smccc_res res;
arm_smccc_smc(0x82000093, power_domain, power_control, 0,
0, 0, 0, 0, &res);
return res.a0;
}