[PATCH v3 4/7] clk: Add dump operation to clk_ops

Patrice CHOTARD patrice.chotard at foss.st.com
Mon Aug 28 11:57:01 CEST 2023



On 7/14/23 17:24, Igor Prusov wrote:
> This adds dump function to struct clk_ops which should replace
> soc_clk_dump. It allows clock drivers to provide custom dump
> implementation without overriding generic CCF dump function.
> 
> Signed-off-by: Igor Prusov <ivprusov at sberdevices.ru>
> ---
>  include/clk-uclass.h | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/include/clk-uclass.h b/include/clk-uclass.h
> index 65ebff9ed2..f29f4c0d01 100644
> --- a/include/clk-uclass.h
> +++ b/include/clk-uclass.h
> @@ -39,6 +39,9 @@ struct clk_ops {
>  	int (*set_parent)(struct clk *clk, struct clk *parent);
>  	int (*enable)(struct clk *clk);
>  	int (*disable)(struct clk *clk);
> +#if IS_ENABLED(CONFIG_CMD_CLK)
> +	int (*dump)(struct udevice *dev);
> +#endif
>  };
>  
>  #if 0 /* For documentation only */


Reviewed-by: Patrice Chotard <patrice.chotard at foss.st.com>
Tested-by: Patrice Chotard <patrice.chotard at foss.st.com>

Thanks
Patrice


More information about the U-Boot mailing list