From: chun-jie.chen <chun-jie.chen@mediatek.com>
To: Matthias Brugger <matthias.bgg@gmail.com>,
Rob Herring <robh@kernel.org>, Stephen Boyd <sboyd@kernel.org>,
Nicolas Boichat <drinkcat@chromium.org>
Cc: <linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>,
<linux-mediatek@lists.infradead.org>, <linux-clk@vger.kernel.org>,
<srv_heupstream@mediatek.com>,
<Project_Global_Chrome_Upstream_Group@mediatek.com>,
chun-jie.chen <chun-jie.chen@mediatek.com>,
Weiyi Lu <weiyi.lu@mediatek.com>
Subject: [RESEND PATCH v7 08/22] clk: mediatek: Add configurable enable control to mtk_pll_data
Date: Wed, 24 Mar 2021 18:40:56 +0800 [thread overview]
Message-ID: <20210324104110.13383-9-chun-jie.chen@mediatek.com> (raw)
In-Reply-To: <20210324104110.13383-1-chun-jie.chen@mediatek.com>
In all MediaTek PLL design, bit0 of CON0 register is always
the enable bit.
However, there's a special case of usbpll on MT8192.
The enable bit of usbpll is moved to bit2 of other register.
Add configurable en_reg and pll_en_bit for enable control or
default 0 where pll data are static variables.
Hence, CON0_BASE_EN could also be removed.
And there might have another special case on other chips,
the enable bit is still on CON0 register but not at bit0.
Reviewed-by: Ikjoon Jang <ikjn@chromium.org>
Signed-off-by: Weiyi Lu <weiyi.lu@mediatek.com>
Signed-off-by: chun-jie.chen <chun-jie.chen@mediatek.com>
---
drivers/clk/mediatek/clk-mtk.h | 20 +++++++++++---------
drivers/clk/mediatek/clk-pll.c | 15 ++++++++++-----
2 files changed, 21 insertions(+), 14 deletions(-)
diff --git a/drivers/clk/mediatek/clk-mtk.h b/drivers/clk/mediatek/clk-mtk.h
index c3d6756b0c7e..31c7cb304508 100644
--- a/drivers/clk/mediatek/clk-mtk.h
+++ b/drivers/clk/mediatek/clk-mtk.h
@@ -213,13 +213,13 @@ struct mtk_pll_div_table {
struct mtk_pll_data {
int id;
const char *name;
- uint32_t reg;
- uint32_t pwr_reg;
- uint32_t en_mask;
- uint32_t pd_reg;
- uint32_t tuner_reg;
- uint32_t tuner_en_reg;
- uint8_t tuner_en_bit;
+ u32 reg;
+ u32 pwr_reg;
+ u32 en_mask;
+ u32 pd_reg;
+ u32 tuner_reg;
+ u32 tuner_en_reg;
+ u8 tuner_en_bit;
int pd_shift;
unsigned int flags;
const struct clk_ops *ops;
@@ -228,11 +228,13 @@ struct mtk_pll_data {
unsigned long fmax;
int pcwbits;
int pcwibits;
- uint32_t pcw_reg;
+ u32 pcw_reg;
int pcw_shift;
- uint32_t pcw_chg_reg;
+ u32 pcw_chg_reg;
const struct mtk_pll_div_table *div_table;
const char *parent_name;
+ u32 en_reg;
+ u8 pll_en_bit; /* Assume 0, indicates BIT(0) by default */
};
void mtk_clk_register_plls(struct device_node *node,
diff --git a/drivers/clk/mediatek/clk-pll.c b/drivers/clk/mediatek/clk-pll.c
index 11ed5d1d1c36..7fb001a4e7d8 100644
--- a/drivers/clk/mediatek/clk-pll.c
+++ b/drivers/clk/mediatek/clk-pll.c
@@ -44,6 +44,7 @@ struct mtk_clk_pll {
void __iomem *tuner_en_addr;
void __iomem *pcw_addr;
void __iomem *pcw_chg_addr;
+ void __iomem *en_addr;
const struct mtk_pll_data *data;
};
@@ -56,7 +57,7 @@ static int mtk_pll_is_prepared(struct clk_hw *hw)
{
struct mtk_clk_pll *pll = to_mtk_clk_pll(hw);
- return (readl(pll->base_addr + REG_CON0) & CON0_BASE_EN) != 0;
+ return (readl(pll->en_addr) & BIT(pll->data->pll_en_bit)) != 0;
}
static unsigned long __mtk_pll_recalc_rate(struct mtk_clk_pll *pll, u32 fin,
@@ -248,8 +249,8 @@ static int mtk_pll_prepare(struct clk_hw *hw)
writel(r, pll->pwr_addr);
udelay(1);
- r = readl(pll->base_addr + REG_CON0) | CON0_BASE_EN;
- writel(r, pll->base_addr + REG_CON0);
+ r = readl(pll->en_addr) | BIT(pll->data->pll_en_bit);
+ writel(r, pll->en_addr);
div_en_mask = pll->data->en_mask & ~CON0_BASE_EN;
if (div_en_mask) {
@@ -290,8 +291,8 @@ static void mtk_pll_unprepare(struct clk_hw *hw)
writel(r, pll->base_addr + REG_CON0);
}
- r = readl(pll->base_addr + REG_CON0) & ~CON0_BASE_EN;
- writel(r, pll->base_addr + REG_CON0);
+ r = readl(pll->en_addr) & ~BIT(pll->data->pll_en_bit);
+ writel(r, pll->en_addr);
r = readl(pll->pwr_addr) | CON0_ISO_EN;
writel(r, pll->pwr_addr);
@@ -333,6 +334,10 @@ static struct clk *mtk_clk_register_pll(const struct mtk_pll_data *data,
pll->tuner_addr = base + data->tuner_reg;
if (data->tuner_en_reg)
pll->tuner_en_addr = base + data->tuner_en_reg;
+ if (data->en_reg)
+ pll->en_addr = base + data->en_reg;
+ else
+ pll->en_addr = pll->base_addr + REG_CON0;
pll->hw.init = &init;
pll->data = data;
--
2.18.0
_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek
next prev parent reply other threads:[~2021-03-24 10:42 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-24 10:40 [RESEND PATCH v7 00/22] Mediatek MT8192 clock support chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 01/22] dt-bindings: ARM: Mediatek: Add new document bindings of imp i2c wrapper controller chun-jie.chen
2021-04-30 1:42 ` Stephen Boyd
2021-05-05 11:23 ` Chun-Jie Chen
2021-03-24 10:40 ` [RESEND PATCH v7 02/22] dt-bindings: ARM: Mediatek: Add new document bindings of mdpsys controller chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 03/22] dt-bindings: ARM: Mediatek: Add new document bindings of msdc controller chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 04/22] dt-bindings: ARM: Mediatek: Add new document bindings of scp adsp controller chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 05/22] dt-bindings: ARM: Mediatek: Document bindings of MT8192 clock controllers chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 06/22] clk: mediatek: Add dt-bindings of MT8192 clocks chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 07/22] clk: mediatek: Fix asymmetrical PLL enable and disable control chun-jie.chen
2021-03-24 10:40 ` chun-jie.chen [this message]
2021-03-24 10:40 ` [RESEND PATCH v7 09/22] clk: mediatek: Add mtk_clk_simple_probe() to simplify clock providers chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 10/22] clk: mediatek: Add MT8192 basic clocks support chun-jie.chen
2021-03-24 10:40 ` [RESEND PATCH v7 11/22] clk: mediatek: Add MT8192 audio clock support chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 12/22] clk: mediatek: Add MT8192 camsys " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 13/22] clk: mediatek: Add MT8192 imgsys " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 14/22] clk: mediatek: Add MT8192 imp i2c wrapper " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 15/22] clk: mediatek: Add MT8192 ipesys " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 16/22] clk: mediatek: Add MT8192 mdpsys " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 17/22] clk: mediatek: Add MT8192 mfgcfg " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 18/22] clk: mediatek: Add MT8192 mmsys " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 19/22] clk: mediatek: Add MT8192 msdc " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 20/22] clk: mediatek: Add MT8192 scp adsp " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 21/22] clk: mediatek: Add MT8192 vdecsys " chun-jie.chen
2021-03-24 10:41 ` [RESEND PATCH v7 22/22] clk: mediatek: Add MT8192 vencsys " chun-jie.chen
2021-04-08 11:28 ` [RESEND PATCH v7 00/22] Mediatek MT8192 " 20181221120906 created
2021-04-28 6:44 ` Ikjoon Jang
2021-05-05 6:58 ` Chun-Jie Chen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210324104110.13383-9-chun-jie.chen@mediatek.com \
--to=chun-jie.chen@mediatek.com \
--cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
--cc=drinkcat@chromium.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=srv_heupstream@mediatek.com \
--cc=weiyi.lu@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox