WIP FPC-III support
[linux/fpc-iii.git] / drivers / soc / zte / zx2967_pm_domains.h
blobf586c02410ff7c1864b7087b7e0c7696dcf0f9ef
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Header for ZTE's Power Domain Driver support
5 * Copyright (C) 2017 ZTE Ltd.
7 * Author: Baoyou Xie <baoyou.xie@linaro.org>
8 */
10 #ifndef __ZTE_ZX2967_PM_DOMAIN_H
11 #define __ZTE_ZX2967_PM_DOMAIN_H
13 #include <linux/platform_device.h>
14 #include <linux/pm_domain.h>
16 enum {
17 REG_CLKEN,
18 REG_ISOEN,
19 REG_RSTEN,
20 REG_PWREN,
21 REG_PWRDN,
22 REG_ACK_SYNC,
24 /* The size of the array - must be last */
25 REG_ARRAY_SIZE,
28 enum zx2967_power_polarity {
29 PWREN,
30 PWRDN,
33 struct zx2967_pm_domain {
34 struct generic_pm_domain dm;
35 const u16 bit;
36 const enum zx2967_power_polarity polarity;
37 const u16 *reg_offset;
40 int zx2967_pd_probe(struct platform_device *pdev,
41 struct generic_pm_domain **zx_pm_domains,
42 int domain_num);
44 #endif /* __ZTE_ZX2967_PM_DOMAIN_H */