提交 c178b003 编写于 作者: J Jerome Brunet 提交者: Neil Armstrong

clk: meson: remove special gp0 lock loop

After testing, it appears that the gxl (and axg) does not require the
special locking/reset loop which was initially added for it.

All the values present in the gxl table can locked with the simple lock
checking loop.

The change switches the gxl and axg gp0 back to the simple lock checking
loop and removes the code no longer required.
Signed-off-by: NJerome Brunet <jbrunet@baylibre.com>
Signed-off-by: NNeil Armstrong <narmstrong@baylibre.com>
上级 117863e8
...@@ -231,7 +231,6 @@ static struct clk_regmap axg_gp0_pll = { ...@@ -231,7 +231,6 @@ static struct clk_regmap axg_gp0_pll = {
.table = axg_gp0_pll_rate_table, .table = axg_gp0_pll_rate_table,
.init_regs = axg_gp0_init_regs, .init_regs = axg_gp0_init_regs,
.init_count = ARRAY_SIZE(axg_gp0_init_regs), .init_count = ARRAY_SIZE(axg_gp0_init_regs),
.flags = CLK_MESON_PLL_LOCK_LOOP_RST,
}, },
.hw.init = &(struct clk_init_data){ .hw.init = &(struct clk_init_data){
.name = "gp0_pll", .name = "gp0_pll",
......
...@@ -121,19 +121,9 @@ static int meson_clk_pll_wait_lock(struct clk_hw *hw) ...@@ -121,19 +121,9 @@ static int meson_clk_pll_wait_lock(struct clk_hw *hw)
{ {
struct clk_regmap *clk = to_clk_regmap(hw); struct clk_regmap *clk = to_clk_regmap(hw);
struct meson_clk_pll_data *pll = meson_clk_pll_data(clk); struct meson_clk_pll_data *pll = meson_clk_pll_data(clk);
int delay = pll->flags & CLK_MESON_PLL_LOCK_LOOP_RST ? int delay = 24000000;
100 : 24000000;
do { do {
/* Specific wait loop for GXL/GXM GP0 PLL */
if (pll->flags & CLK_MESON_PLL_LOCK_LOOP_RST) {
/* Procedure taken from the vendor kernel */
meson_parm_write(clk->map, &pll->rst, 1);
udelay(10);
meson_parm_write(clk->map, &pll->rst, 0);
mdelay(1);
}
/* Is the clock locked now ? */ /* Is the clock locked now ? */
if (meson_parm_read(clk->map, &pll->l)) if (meson_parm_read(clk->map, &pll->l))
return 0; return 0;
......
...@@ -82,8 +82,6 @@ struct pll_rate_table { ...@@ -82,8 +82,6 @@ struct pll_rate_table {
.frac = (_frac), \ .frac = (_frac), \
} \ } \
#define CLK_MESON_PLL_LOCK_LOOP_RST BIT(0)
struct meson_clk_pll_data { struct meson_clk_pll_data {
struct parm m; struct parm m;
struct parm n; struct parm n;
......
...@@ -475,7 +475,6 @@ static struct clk_regmap gxl_gp0_pll = { ...@@ -475,7 +475,6 @@ static struct clk_regmap gxl_gp0_pll = {
.table = gxl_gp0_pll_rate_table, .table = gxl_gp0_pll_rate_table,
.init_regs = gxl_gp0_init_regs, .init_regs = gxl_gp0_init_regs,
.init_count = ARRAY_SIZE(gxl_gp0_init_regs), .init_count = ARRAY_SIZE(gxl_gp0_init_regs),
.flags = CLK_MESON_PLL_LOCK_LOOP_RST,
}, },
.hw.init = &(struct clk_init_data){ .hw.init = &(struct clk_init_data){
.name = "gp0_pll", .name = "gp0_pll",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册