lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Thu, 7 Nov 2019 19:13:11 +0100
From:   Michael Tretter <m.tretter@...gutronix.de>
To:     Rajan Vaja <rajan.vaja@...inx.com>
Cc:     mturquette@...libre.com, sboyd@...nel.org, michal.simek@...inx.com,
        jollys@...inx.com, nava.manne@...inx.com, tejas.patel@...inx.com,
        linux-clk@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
        linux-kernel@...r.kernel.org, kernel@...gutronix.de
Subject: Re: [PATCH] clk: zynqmp: Fix divider calculation

On Thu, 07 Nov 2019 01:06:14 -0800, Rajan Vaja wrote:
> Linux doesn't know maximum value of divisor that it can support.
> zynqmp_clk_divider_round_rate() returns actual divider value
> after calculating from parent rate and desired rate, even though
> that rate is not supported by single divider of hardware. It is
> also possible that such divisor value can be achieved through 2
> different dividers. As, Linux tries to set such divisor value(out
> of range) in single divider set divider is getting failed.
> 
> Fix the same by computing best possible combination of two
> divisors which provides more accurate clock rate.

This patch could be split into two patches. One for getting the maximum
value of the divisor and one for calculating the best combination of
the two clocks.

> 
> Signed-off-by: Rajan Vaja <rajan.vaja@...inx.com>
> Signed-off-by: Michal Simek <michal.simek@...inx.com>
> Signed-off-by: Tejas Patel <tejas.patel@...inx.com>
> ---
>  drivers/clk/zynqmp/divider.c         | 62 +++++++++++++++++++++++++++++++++++-
>  include/linux/firmware/xlnx-zynqmp.h |  3 +-
>  2 files changed, 63 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/clk/zynqmp/divider.c b/drivers/clk/zynqmp/divider.c
> index d8f5b70d..d2be24e 100644
> --- a/drivers/clk/zynqmp/divider.c
> +++ b/drivers/clk/zynqmp/divider.c
> @@ -2,7 +2,7 @@
>  /*
>   * Zynq UltraScale+ MPSoC Divider support
>   *
> - *  Copyright (C) 2016-2018 Xilinx
> + *  Copyright (C) 2016-2019 Xilinx
>   *
>   * Adjustable divider clock implementation
>   */
> @@ -41,6 +41,7 @@ struct zynqmp_clk_divider {
>  	bool is_frac;
>  	u32 clk_id;
>  	u32 div_type;
> +	u32 max_div;

If the maximum value is 0xFFFF, shouldn't this be u16?

>  };
>  
>  static inline int zynqmp_divider_get_val(unsigned long parent_rate,
> @@ -88,6 +89,34 @@ static unsigned long zynqmp_clk_divider_recalc_rate(struct clk_hw *hw,
>  	return DIV_ROUND_UP_ULL(parent_rate, value);
>  }
>  
> +static void zynqmp_compute_divider(struct clk_hw *hw,
> +				   unsigned long rate,
> +				   unsigned long parent_rate,
> +				   u32 max_div,
> +				   int *bestdiv)

Return bestdiv instead of returning void and passing it as a pointer.
Also maybe you can find a better name for this function.

> +{
> +	int div1;
> +	int div2;
> +	long error = LONG_MAX;
> +	struct clk_hw *parent_hw = clk_hw_get_parent(hw);
> +	struct zynqmp_clk_divider *pdivider = to_zynqmp_clk_divider(parent_hw);
> +
> +	if (!pdivider)
> +		return;
> +
> +	*bestdiv = 1;
> +	for (div1 = 1; div1 <= pdivider->max_div; div1++) {
> +		for (div2 = 1; div2 <= max_div; div2++) {

What happens, if the parent or this divider only supports divisors that
are a power of 2?

> +			long new_error = ((parent_rate / div1) / div2) - rate;
> +
> +			if (abs(new_error) < abs(error)) {
> +				*bestdiv = div2;
> +				error = new_error;
> +			}
> +		}
> +	}
> +}
> +
>  /**
>   * zynqmp_clk_divider_round_rate() - Round rate of divider clock
>   * @hw:			handle between common and hardware-specific interfaces
> @@ -125,8 +154,21 @@ static long zynqmp_clk_divider_round_rate(struct clk_hw *hw,
>  
>  	bestdiv = zynqmp_divider_get_val(*prate, rate);
>  
> +	/*
> +	 * In case of two divisors, compute best divider values and return
> +	 * divider2 value based on compute value. div1 will  be automatically
> +	 * set to optimum based on required total divider value.
> +	 */
> +	if (div_type == TYPE_DIV2 &&
> +	    (clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT)) {
> +		zynqmp_compute_divider(hw, rate, *prate,
> +				       divider->max_div, &bestdiv);
> +	}
> +
>  	if ((clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT) && divider->is_frac)
>  		bestdiv = rate % *prate ? 1 : bestdiv;
> +
> +	bestdiv = min_t(u32, bestdiv, divider->max_div);
>  	*prate = rate * bestdiv;
>  
>  	return rate;
> @@ -195,6 +237,9 @@ struct clk_hw *zynqmp_clk_register_divider(const char *name,
>  	struct clk_hw *hw;
>  	struct clk_init_data init;
>  	int ret;
> +	const struct zynqmp_eemi_ops *eemi_ops = zynqmp_pm_get_eemi_ops();
> +	struct zynqmp_pm_query_data qdata = {0};
> +	u32 ret_payload[PAYLOAD_ARG_CNT];
>  
>  	/* allocate the divider */
>  	div = kzalloc(sizeof(*div), GFP_KERNEL);
> @@ -215,6 +260,21 @@ struct clk_hw *zynqmp_clk_register_divider(const char *name,
>  	div->clk_id = clk_id;
>  	div->div_type = nodes->type;
>  
> +	/*
> +	 * To achieve best possible rate, maximum limit of divider is required
> +	 * while computation. Get maximum supported divisor from firmware. To
> +	 * maintain backward compatibility assign maximum possible value(0xFFFF)
> +	 * if query for max divisor is not successful.
> +	 */
> +	qdata.qid = PM_QID_CLOCK_GET_MAX_DIVISOR;
> +	qdata.arg1 = clk_id;
> +	qdata.arg2 = nodes->type;
> +	ret = eemi_ops->query_data(qdata, ret_payload);
> +	if (ret)
> +		div->max_div = 0XFFFF;

U16_MAX?

Michael

> +	else
> +		div->max_div = ret_payload[1];
> +
>  	hw = &div->hw;
>  	ret = clk_hw_register(NULL, hw);
>  	if (ret) {
> diff --git a/include/linux/firmware/xlnx-zynqmp.h b/include/linux/firmware/xlnx-zynqmp.h
> index 778abbb..1edb6e9 100644
> --- a/include/linux/firmware/xlnx-zynqmp.h
> +++ b/include/linux/firmware/xlnx-zynqmp.h
> @@ -2,7 +2,7 @@
>  /*
>   * Xilinx Zynq MPSoC Firmware layer
>   *
> - *  Copyright (C) 2014-2018 Xilinx
> + *  Copyright (C) 2014-2019 Xilinx
>   *
>   *  Michal Simek <michal.simek@...inx.com>
>   *  Davorin Mista <davorin.mista@...ios.com>
> @@ -105,6 +105,7 @@ enum pm_query_id {
>  	PM_QID_CLOCK_GET_PARENTS,
>  	PM_QID_CLOCK_GET_ATTRIBUTES,
>  	PM_QID_CLOCK_GET_NUM_CLOCKS = 12,
> +	PM_QID_CLOCK_GET_MAX_DIVISOR,
>  };
>  
>  enum zynqmp_pm_reset_action {

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ