blob: bd1f2c780d0afbc56aed75578f87733f9f69805a [file] [log] [blame]
Stephen Boyd45dd0e52015-08-06 16:07:42 +05301/*
Amit Nischal44dbeeb2018-04-09 14:11:44 +05302 * Copyright (c) 2015, 2017-2018, The Linux Foundation. All rights reserved.
Stephen Boyd45dd0e52015-08-06 16:07:42 +05303 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#ifndef __QCOM_GDSC_H__
15#define __QCOM_GDSC_H__
16
17#include <linux/err.h>
18#include <linux/pm_domain.h>
19
20struct regmap;
Rajendra Nayak3c53f5e2015-08-06 16:07:45 +053021struct reset_controller_dev;
Stephen Boyd45dd0e52015-08-06 16:07:42 +053022
23/**
24 * struct gdsc - Globally Distributed Switch Controller
25 * @pd: generic power domain
26 * @regmap: regmap for MMIO accesses
27 * @gdscr: gsdc control register
Rajendra Nayak77b10672015-12-01 21:42:12 +053028 * @gds_hw_ctrl: gds_hw_ctrl register
Rajendra Nayak014e1932015-08-06 16:07:44 +053029 * @cxcs: offsets of branch registers to toggle mem/periph bits in
30 * @cxc_count: number of @cxcs
31 * @pwrsts: Possible powerdomain power states
Rajendra Nayak3c53f5e2015-08-06 16:07:45 +053032 * @resets: ids of resets associated with this gdsc
33 * @reset_count: number of @resets
34 * @rcdev: reset controller
Stephen Boyd45dd0e52015-08-06 16:07:42 +053035 */
36struct gdsc {
37 struct generic_pm_domain pd;
Rajendra Nayakc2c7f0a2015-12-01 21:42:11 +053038 struct generic_pm_domain *parent;
Stephen Boyd45dd0e52015-08-06 16:07:42 +053039 struct regmap *regmap;
40 unsigned int gdscr;
Rajendra Nayak77b10672015-12-01 21:42:12 +053041 unsigned int gds_hw_ctrl;
Rajendra Nayake7cc4552016-10-20 15:08:06 +053042 unsigned int clamp_io_ctrl;
Rajendra Nayak014e1932015-08-06 16:07:44 +053043 unsigned int *cxcs;
44 unsigned int cxc_count;
45 const u8 pwrsts;
Rajendra Nayaka823bb92015-12-01 21:42:13 +053046/* Powerdomain allowable state bitfields */
47#define PWRSTS_OFF BIT(0)
48#define PWRSTS_RET BIT(1)
49#define PWRSTS_ON BIT(2)
50#define PWRSTS_OFF_ON (PWRSTS_OFF | PWRSTS_ON)
51#define PWRSTS_RET_ON (PWRSTS_RET | PWRSTS_ON)
52 const u8 flags;
53#define VOTABLE BIT(0)
Rajendra Nayake7cc4552016-10-20 15:08:06 +053054#define CLAMP_IO BIT(1)
Rajendra Nayak904bb4f2016-11-18 17:58:26 +053055#define HW_CTRL BIT(2)
Amit Nischal44dbeeb2018-04-09 14:11:44 +053056#define SW_RESET BIT(3)
57#define AON_RESET BIT(4)
Amit Nischale892e172018-05-01 10:33:33 +053058#define POLL_CFG_GDSCR BIT(5)
Stephen Boyd77122d62018-06-04 12:34:51 -070059#define ALWAYS_ON BIT(6)
Rajendra Nayak3c53f5e2015-08-06 16:07:45 +053060 struct reset_controller_dev *rcdev;
61 unsigned int *resets;
62 unsigned int reset_count;
Stephen Boyd45dd0e52015-08-06 16:07:42 +053063};
64
Rajendra Nayakc2c7f0a2015-12-01 21:42:11 +053065struct gdsc_desc {
66 struct device *dev;
67 struct gdsc **scs;
68 size_t num;
69};
70
Stephen Boyd45dd0e52015-08-06 16:07:42 +053071#ifdef CONFIG_QCOM_GDSC
Rajendra Nayakc2c7f0a2015-12-01 21:42:11 +053072int gdsc_register(struct gdsc_desc *desc, struct reset_controller_dev *,
73 struct regmap *);
74void gdsc_unregister(struct gdsc_desc *desc);
Stephen Boyd45dd0e52015-08-06 16:07:42 +053075#else
Rajendra Nayakc2c7f0a2015-12-01 21:42:11 +053076static inline int gdsc_register(struct gdsc_desc *desc,
Rajendra Nayak3c53f5e2015-08-06 16:07:45 +053077 struct reset_controller_dev *rcdev,
Stephen Boyd45dd0e52015-08-06 16:07:42 +053078 struct regmap *r)
79{
80 return -ENOSYS;
81}
82
Rajendra Nayakc2c7f0a2015-12-01 21:42:11 +053083static inline void gdsc_unregister(struct gdsc_desc *desc) {};
Stephen Boyd45dd0e52015-08-06 16:07:42 +053084#endif /* CONFIG_QCOM_GDSC */
85#endif /* __QCOM_GDSC_H__ */