gdsc.h 2.2 KB
Newer Older
S
Stephen Boyd 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only 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.
 */

#ifndef __QCOM_GDSC_H__
#define __QCOM_GDSC_H__

#include <linux/err.h>
#include <linux/pm_domain.h>

struct regmap;
21
struct reset_controller_dev;
S
Stephen Boyd 已提交
22 23 24 25 26 27

/**
 * struct gdsc - Globally Distributed Switch Controller
 * @pd: generic power domain
 * @regmap: regmap for MMIO accesses
 * @gdscr: gsdc control register
28
 * @gds_hw_ctrl: gds_hw_ctrl register
29 30 31
 * @cxcs: offsets of branch registers to toggle mem/periph bits in
 * @cxc_count: number of @cxcs
 * @pwrsts: Possible powerdomain power states
32 33 34
 * @resets: ids of resets associated with this gdsc
 * @reset_count: number of @resets
 * @rcdev: reset controller
S
Stephen Boyd 已提交
35 36 37
 */
struct gdsc {
	struct generic_pm_domain	pd;
38
	struct generic_pm_domain	*parent;
S
Stephen Boyd 已提交
39 40
	struct regmap			*regmap;
	unsigned int			gdscr;
41
	unsigned int			gds_hw_ctrl;
42 43 44
	unsigned int			*cxcs;
	unsigned int			cxc_count;
	const u8			pwrsts;
45 46 47 48 49 50 51 52
/* Powerdomain allowable state bitfields */
#define PWRSTS_OFF		BIT(0)
#define PWRSTS_RET		BIT(1)
#define PWRSTS_ON		BIT(2)
#define PWRSTS_OFF_ON		(PWRSTS_OFF | PWRSTS_ON)
#define PWRSTS_RET_ON		(PWRSTS_RET | PWRSTS_ON)
	const u8			flags;
#define VOTABLE		BIT(0)
53 54 55
	struct reset_controller_dev	*rcdev;
	unsigned int			*resets;
	unsigned int			reset_count;
S
Stephen Boyd 已提交
56 57
};

58 59 60 61 62 63
struct gdsc_desc {
	struct device *dev;
	struct gdsc **scs;
	size_t num;
};

S
Stephen Boyd 已提交
64
#ifdef CONFIG_QCOM_GDSC
65 66 67
int gdsc_register(struct gdsc_desc *desc, struct reset_controller_dev *,
		  struct regmap *);
void gdsc_unregister(struct gdsc_desc *desc);
S
Stephen Boyd 已提交
68
#else
69
static inline int gdsc_register(struct gdsc_desc *desc,
70
				struct reset_controller_dev *rcdev,
S
Stephen Boyd 已提交
71 72 73 74 75
				struct regmap *r)
{
	return -ENOSYS;
}

76
static inline void gdsc_unregister(struct gdsc_desc *desc) {};
S
Stephen Boyd 已提交
77 78
#endif /* CONFIG_QCOM_GDSC */
#endif /* __QCOM_GDSC_H__ */