Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6932ec60 authored by Andreas Färber's avatar Andreas Färber
Browse files

soc: actions: owl-sps: Factor out owl_sps_set_pg() for power-gating



Allow the SMP code to reuse PM domain code for CPU2/CPU3 wakeup.

Signed-off-by: default avatarAndreas Färber <afaerber@suse.de>
parent aa9f800d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
if ARCH_ACTIONS || COMPILE_TEST

config OWL_PM_DOMAINS_HELPER
	bool

config OWL_PM_DOMAINS
	bool "Actions Semi SPS power domains"
	depends on PM
	select OWL_PM_DOMAINS_HELPER
	select PM_GENERIC_DOMAINS
	help
	  Say 'y' here to enable support for Smart Power System (SPS)
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_OWL_PM_DOMAINS_HELPER) += owl-sps-helper.o
obj-$(CONFIG_OWL_PM_DOMAINS) += owl-sps.o
+51 −0
Original line number Diff line number Diff line
/*
 * Actions Semi Owl Smart Power System (SPS) shared helpers
 *
 * Copyright 2012 Actions Semi Inc.
 * Author: Actions Semi, Inc.
 *
 * Copyright (c) 2017 Andreas Färber
 *
 * This program is free software; you can redistribute  it and/or modify it
 * under  the terms of  the GNU General  Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 */

#include <linux/delay.h>
#include <linux/io.h>

#define OWL_SPS_PG_CTL	0x0

int owl_sps_set_pg(void __iomem *base, u32 pwr_mask, u32 ack_mask, bool enable)
{
	u32 val;
	bool ack;
	int timeout;

	val = readl(base + OWL_SPS_PG_CTL);
	ack = val & ack_mask;
	if (ack == enable)
		return 0;

	if (enable)
		val |= pwr_mask;
	else
		val &= ~pwr_mask;

	writel(val, base + OWL_SPS_PG_CTL);

	for (timeout = 5000; timeout > 0; timeout -= 50) {
		val = readl(base + OWL_SPS_PG_CTL);
		if ((val & ack_mask) == (enable ? ack_mask : 0))
			break;
		udelay(50);
	}
	if (timeout <= 0)
		return -ETIMEDOUT;

	udelay(10);

	return 0;
}
EXPORT_SYMBOL_GPL(owl_sps_set_pg);
+3 −31
Original line number Diff line number Diff line
@@ -12,15 +12,12 @@
 * option) any later version.
 */

#include <linux/delay.h>
#include <linux/io.h>
#include <linux/of_address.h>
#include <linux/of_platform.h>
#include <linux/pm_domain.h>
#include <linux/soc/actions/owl-sps.h>
#include <dt-bindings/power/owl-s500-powergate.h>

#define OWL_SPS_PG_CTL	0x0

struct owl_sps_domain_info {
	const char *name;
	int pwr_bit;
@@ -51,37 +48,12 @@ struct owl_sps_domain {

static int owl_sps_set_power(struct owl_sps_domain *pd, bool enable)
{
	u32 val, pwr_mask, ack_mask;
	int timeout;
	bool ack;
	u32 pwr_mask, ack_mask;

	ack_mask = BIT(pd->info->ack_bit);
	pwr_mask = BIT(pd->info->pwr_bit);
	val = readl(pd->sps->base + OWL_SPS_PG_CTL);
	ack = val & ack_mask;

	if (ack == enable)
		return 0;

	if (enable)
		val |= pwr_mask;
	else
		val &= ~pwr_mask;

	writel(val, pd->sps->base + OWL_SPS_PG_CTL);

	for (timeout = 5000; timeout > 0; timeout -= 50) {
		val = readl(pd->sps->base + OWL_SPS_PG_CTL);
		if ((val & ack_mask) == (enable ? ack_mask : 0))
			break;
		udelay(50);
	}
	if (timeout <= 0)
		return -ETIMEDOUT;

	udelay(10);

	return 0;
	return owl_sps_set_pg(pd->sps->base, pwr_mask, ack_mask, enable);
}

static int owl_sps_power_on(struct generic_pm_domain *domain)
+11 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2017 Andreas Färber
 *
 * SPDX-License-Identifier: GPL-2.0+
 */
#ifndef SOC_ACTIONS_OWL_SPS_H
#define SOC_ACTIONS_OWL_SPS_H

int owl_sps_set_pg(void __iomem *base, u32 pwr_mask, u32 ack_mask, bool enable);

#endif