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] [thread-next>] [day] [month] [year] [list]
Message-ID: <12964099-7d74-57f3-e517-79c8b14c9b94@kernel.org>
Date:   Tue, 6 Apr 2021 09:02:10 +0300
From:   Tero Kristo <kristo@...nel.org>
To:     Dario Binacchi <dariobin@...ero.it>, linux-kernel@...r.kernel.org
Cc:     Bin Meng <bmeng.cn@...il.com>,
        Michael Turquette <mturquette@...libre.com>,
        Stephen Boyd <sboyd@...nel.org>, linux-clk@...r.kernel.org,
        linux-omap@...r.kernel.org
Subject: Re: [PATCH 2/2] clk: ti: get register address from device tree

On 02/04/2021 22:20, Dario Binacchi wrote:
> Until now, only the register offset was retrieved from the device tree
> to be added, during access, to a common base address for the clocks.
> If possible, we try to retrieve the physical address of the register
> directly from the device tree.

The physical address is derived from the base address of the clock 
provider, it is not derived from the clock node itself.

Doing what this patch does may actually break things, as you end up 
creating an individual ioremap for every single clock register, and they 
are typically a word apart from each other. In the TI clock driver case, 
the ioremap is done only once for the whole clock register space.

-Tero

> 
> Signed-off-by: Dario Binacchi <dariobin@...ero.it>
> 
> ---
> 
>   drivers/clk/ti/clk.c | 13 ++++++++++++-
>   1 file changed, 12 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/ti/clk.c b/drivers/clk/ti/clk.c
> index 3da33c786d77..938f5a2cb425 100644
> --- a/drivers/clk/ti/clk.c
> +++ b/drivers/clk/ti/clk.c
> @@ -265,9 +265,21 @@ int __init ti_clk_retry_init(struct device_node *node, void *user,
>   int ti_clk_get_reg_addr(struct device_node *node, int index,
>   			struct clk_omap_reg *reg)
>   {
> +	const __be32 *addrp;
> +	u64 size, addr = OF_BAD_ADDR;
> +	unsigned int flags;
>   	u32 val;
>   	int i;
>   
> +	addrp = of_get_address(node, index, &size, &flags);
> +	if (addrp)
> +		addr = of_translate_address(node, addrp);
> +
> +	if (addr != OF_BAD_ADDR) {
> +		reg->ptr = ioremap(addr, sizeof(u32));
> +		return 0;
> +	}
> +
>   	for (i = 0; i < CLK_MAX_MEMMAPS; i++) {
>   		if (clocks_node_ptr[i] == node->parent)
>   			break;
> @@ -287,7 +299,6 @@ int ti_clk_get_reg_addr(struct device_node *node, int index,
>   
>   	reg->offset = val;
>   	reg->ptr = NULL;
> -
>   	return 0;
>   }
>   
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ