[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1530609862.2900.187.camel@baylibre.com>
Date: Tue, 03 Jul 2018 11:24:22 +0200
From: Jerome Brunet <jbrunet@...libre.com>
To: Yixun Lan <yixun.lan@...ogic.com>,
Neil Armstrong <narmstrong@...libre.com>
Cc: Kevin Hilman <khilman@...libre.com>,
Carlo Caione <carlo@...one.org>,
Michael Turquette <mturquette@...libre.com>,
Stephen Boyd <sboyd@...nel.org>,
Qiufang Dai <qiufang.dai@...ogic.com>,
Jian Hu <jian.hu@...ogic.com>,
Jianxin Qin <jianxin.qin@...ogic.com>,
linux-clk@...r.kernel.org, linux-amlogic@...ts.infradead.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2 2/2] clk: meson-axg: add clocks required by pcie
driver
On Mon, 2018-07-02 at 21:31 +0000, Yixun Lan wrote:
> Adding clocks for the pcie driver. Due to the ASIC design,
> the pcie controller re-use part of the mipi clock logic,
> so the mipi clock is also added.
>
> Tested-by: Jianxin Qin <jianxin.qin@...ogic.com>
> Signed-off-by: Yixun Lan <yixun.lan@...ogic.com>
> ---
> drivers/clk/meson/axg.c | 148 ++++++++++++++++++++++++++++++++++++++++
> drivers/clk/meson/axg.h | 6 +-
> 2 files changed, 153 insertions(+), 1 deletion(-)
>
>
[...]
> +
> +/* skip the partent 0, it's for debug only */
> +static u32 mux_table_pcie_ref[] = { 1 };
> +static const char * const pcie_ref_parent_names[] = { "pcie_mux" };
Dropped these symbols.
> +
> +static struct clk_regmap axg_pcie_ref = {
> + .data = &(struct clk_regmap_mux_data){
> + .offset = HHI_PCIE_PLL_CNTL6,
> + .mask = 0x1,
> + .shift = 1,
> + .table = mux_table_pcie_ref,
Replaced with the table itself
> + },
> + .hw.init = &(struct clk_init_data){
> + .name = "pcie_ref",
> + .ops = &clk_regmap_mux_ops,
> + .parent_names = pcie_ref_parent_names,
> + .num_parents = ARRAY_SIZE(pcie_ref_parent_names),
Replaced with the table itself and applied. Thx
> + .flags = CLK_SET_RATE_PARENT,
> + },
> +};
> +
>
Powered by blists - more mailing lists