Re: [PATCH 1/3] cpufreq: brcmstb-avs-cpufreq: more flexible interface for __issue_avs_command()

2020-06-15 Thread Viresh Kumar
On 28-05-20, 11:20, Markus Mayer wrote:
> We are changing how parameters are passed to __issue_avs_command(), so we
> can pass input *and* output arguments with the same command, rather than
> just one or the other.
> 
> Signed-off-by: Markus Mayer 
> ---
>  drivers/cpufreq/brcmstb-avs-cpufreq.c | 30 +--
>  1 file changed, 14 insertions(+), 16 deletions(-)

Applied, thanks.

-- 
viresh


Re: [PATCH 1/3] cpufreq: brcmstb-avs-cpufreq: more flexible interface for __issue_avs_command()

2020-05-29 Thread Florian Fainelli
On 5/28/20 11:20 AM, Markus Mayer wrote:
> We are changing how parameters are passed to __issue_avs_command(), so we
> can pass input *and* output arguments with the same command, rather than
> just one or the other.
> 
> Signed-off-by: Markus Mayer 

Acked-by: Florian Fainelli 
-- 
Florian


[PATCH 1/3] cpufreq: brcmstb-avs-cpufreq: more flexible interface for __issue_avs_command()

2020-05-28 Thread Markus Mayer
We are changing how parameters are passed to __issue_avs_command(), so we
can pass input *and* output arguments with the same command, rather than
just one or the other.

Signed-off-by: Markus Mayer 
---
 drivers/cpufreq/brcmstb-avs-cpufreq.c | 30 +--
 1 file changed, 14 insertions(+), 16 deletions(-)

diff --git a/drivers/cpufreq/brcmstb-avs-cpufreq.c 
b/drivers/cpufreq/brcmstb-avs-cpufreq.c
index 4f86ce2db34f..c8b754694a5e 100644
--- a/drivers/cpufreq/brcmstb-avs-cpufreq.c
+++ b/drivers/cpufreq/brcmstb-avs-cpufreq.c
@@ -195,7 +195,8 @@ static void __iomem *__map_region(const char *name)
return ptr;
 }
 
-static int __issue_avs_command(struct private_data *priv, int cmd, bool 
is_send,
+static int __issue_avs_command(struct private_data *priv, unsigned int cmd,
+  unsigned int num_in, unsigned int num_out,
   u32 args[])
 {
unsigned long time_left = msecs_to_jiffies(AVS_TIMEOUT);
@@ -225,11 +226,9 @@ static int __issue_avs_command(struct private_data *priv, 
int cmd, bool is_send,
/* Clear status before we begin. */
writel(AVS_STATUS_CLEAR, base + AVS_MBOX_STATUS);
 
-   /* We need to send arguments for this command. */
-   if (args && is_send) {
-   for (i = 0; i < AVS_MAX_CMD_ARGS; i++)
-   writel(args[i], base + AVS_MBOX_PARAM(i));
-   }
+   /* Provide input parameters */
+   for (i = 0; i < num_in; i++)
+   writel(args[i], base + AVS_MBOX_PARAM(i));
 
/* Protect from spurious interrupts. */
reinit_completion(>done);
@@ -256,11 +255,9 @@ static int __issue_avs_command(struct private_data *priv, 
int cmd, bool is_send,
goto out;
}
 
-   /* This command returned arguments, so we read them back. */
-   if (args && !is_send) {
-   for (i = 0; i < AVS_MAX_CMD_ARGS; i++)
-   args[i] = readl(base + AVS_MBOX_PARAM(i));
-   }
+   /* Process returned values */
+   for (i = 0; i < num_out; i++)
+   args[i] = readl(base + AVS_MBOX_PARAM(i));
 
/* Clear status to tell AVS co-processor we are done. */
writel(AVS_STATUS_CLEAR, base + AVS_MBOX_STATUS);
@@ -338,7 +335,7 @@ static int brcm_avs_get_pmap(struct private_data *priv, 
struct pmap *pmap)
u32 args[AVS_MAX_CMD_ARGS];
int ret;
 
-   ret = __issue_avs_command(priv, AVS_CMD_GET_PMAP, false, args);
+   ret = __issue_avs_command(priv, AVS_CMD_GET_PMAP, 0, 4, args);
if (ret || !pmap)
return ret;
 
@@ -359,7 +356,7 @@ static int brcm_avs_set_pmap(struct private_data *priv, 
struct pmap *pmap)
args[2] = pmap->p2;
args[3] = pmap->state;
 
-   return __issue_avs_command(priv, AVS_CMD_SET_PMAP, true, args);
+   return __issue_avs_command(priv, AVS_CMD_SET_PMAP, 4, 0, args);
 }
 
 static int brcm_avs_get_pstate(struct private_data *priv, unsigned int *pstate)
@@ -367,7 +364,7 @@ static int brcm_avs_get_pstate(struct private_data *priv, 
unsigned int *pstate)
u32 args[AVS_MAX_CMD_ARGS];
int ret;
 
-   ret = __issue_avs_command(priv, AVS_CMD_GET_PSTATE, false, args);
+   ret = __issue_avs_command(priv, AVS_CMD_GET_PSTATE, 0, 1, args);
if (ret)
return ret;
*pstate = args[0];
@@ -381,7 +378,8 @@ static int brcm_avs_set_pstate(struct private_data *priv, 
unsigned int pstate)
 
args[0] = pstate;
 
-   return __issue_avs_command(priv, AVS_CMD_SET_PSTATE, true, args);
+   return __issue_avs_command(priv, AVS_CMD_SET_PSTATE, 1, 0, args);
+
 }
 
 static u32 brcm_avs_get_voltage(void __iomem *base)
@@ -593,7 +591,7 @@ static int brcm_avs_cpufreq_init(struct cpufreq_policy 
*policy)
/* All cores share the same clock and thus the same policy. */
cpumask_setall(policy->cpus);
 
-   ret = __issue_avs_command(priv, AVS_CMD_ENABLE, false, NULL);
+   ret = __issue_avs_command(priv, AVS_CMD_ENABLE, 0, 0, NULL);
if (!ret) {
unsigned int pstate;
 
-- 
2.17.1