UPSTREAM: soc: rockchip: power-domain: allow domains only handling idle requests
authorElaine Zhang <zhangqing@rock-chips.com>
Wed, 9 Mar 2016 21:22:54 +0000 (05:22 +0800)
committerHuang, Tao <huangtao@rock-chips.com>
Tue, 29 Mar 2016 06:53:10 +0000 (14:53 +0800)
On some Rockchip SoC there exist child-domains only handling their
idle state with the actual power-state handled by a (shared) parent-
domain.

So allow such types of domains. For them, we can determine their
state (on/off) by checking the inverse idle-state instead.

There exist one special case if both idle as well power handling
were set as not present, but as the domain-data is defined in the
code itself, we can expect the reasonable developer to define them
in a correct way, without adding more checks.

Change-Id: Ic82cb387565a39043d5d52e62a94910de10d4bbd
Signed-off-by: Elaine Zhang <zhangqing@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
(cherry picked from git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
 v4.7-armsoc/drivers commit 1fe767a56c32730a947fc2bfcac5d14490bde6ff)

drivers/soc/rockchip/pm_domains.c

index c811fecb9864a1431b23aab3592f115c32bded54..ddee406a2fe4ef9bf1b174de1daa9a87c8654590 100644 (file)
@@ -67,8 +67,8 @@ struct rockchip_pmu {
 
 #define DOMAIN(pwr, status, req, idle, ack)    \
 {                                              \
-       .pwr_mask = BIT(pwr),                   \
-       .status_mask = BIT(status),             \
+       .pwr_mask = (pwr >= 0) ? BIT(pwr) : 0,          \
+       .status_mask = (status >= 0) ? BIT(status) : 0, \
        .req_mask = (req >= 0) ? BIT(req) : 0,          \
        .idle_mask = (idle >= 0) ? BIT(idle) : 0,       \
        .ack_mask = (ack >= 0) ? BIT(ack) : 0,          \
@@ -120,6 +120,10 @@ static bool rockchip_pmu_domain_is_on(struct rockchip_pm_domain *pd)
        struct rockchip_pmu *pmu = pd->pmu;
        unsigned int val;
 
+       /* check idle status for idle-only domains */
+       if (pd->info->status_mask == 0)
+               return !rockchip_pmu_domain_is_idle(pd);
+
        regmap_read(pmu->regmap, pmu->info->status_offset, &val);
 
        /* 1'b0: power on, 1'b1: power off */
@@ -131,6 +135,9 @@ static void rockchip_do_pmu_set_power_domain(struct rockchip_pm_domain *pd,
 {
        struct rockchip_pmu *pmu = pd->pmu;
 
+       if (pd->info->pwr_mask == 0)
+               return;
+
        regmap_update_bits(pmu->regmap, pmu->info->pwr_offset,
                           pd->info->pwr_mask, on ? 0 : -1U);