blob: a10d55ab5822d937bb64989685f4e655b1935586 [file] [log] [blame]
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#include <linux/pm_domain.h>
#define PWR_ON 1
#define PWR_OFF 0
#define DOMAIN_INIT_ON 0
#define DOMAIN_INIT_OFF 1
#define POWER_CTRL_IRQ_SET 0x82000094
/*
*GENPD_FLAG_IGNORE_UNUSED
*
*Do not power off when unused
*Continuous flag to control the behaviour of a genpd in framework
*/
#define GENPD_FLAG_IGNORE_UNUSED BIT(7)
int get_max_id(void);
unsigned long pwr_ctrl_psci_smc(int power_domain, bool power_control);
unsigned long pwr_ctrl_status_psci_smc(int power_domain);
unsigned long vpu_mempd_psci_smc(int mempd_id, bool power_control);
/*
*irq:irq number for wakeup pwrctrl
*irq_mask:irq mask,1:enable,0:mask
*irq_invert:1:invert irq level,0:do not
*/
unsigned long pwr_ctrl_irq_set(u64 irq, u64 irq_mask, u64 irq_invert);
void pd_dev_create_file(struct device *dev, int cnt_start, int cnt_end,
struct generic_pm_domain **domains);
void pd_dev_remove_file(struct device *dev);