* [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming
@ 2018-01-02 2:21 Shawn Lin
2018-01-02 2:22 ` [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy Shawn Lin
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Shawn Lin @ 2018-01-02 2:21 UTC (permalink / raw)
To: Kishon Vijay Abraham I
Cc: linux-rockchip, Heiko Stuebner, Douglas Anderson, Ziyuan Xu,
linux-kernel, Shawn Lin
It turns out that 5us isn't enough for all cases, so let's
retry some more times to wait for caldone.
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
---
drivers/phy/rockchip/phy-rockchip-emmc.c | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/drivers/phy/rockchip/phy-rockchip-emmc.c b/drivers/phy/rockchip/phy-rockchip-emmc.c
index f1b24f1..512a6ef 100644
--- a/drivers/phy/rockchip/phy-rockchip-emmc.c
+++ b/drivers/phy/rockchip/phy-rockchip-emmc.c
@@ -76,6 +76,10 @@
#define PHYCTRL_OTAPDLYSEL_MASK 0xf
#define PHYCTRL_OTAPDLYSEL_SHIFT 0x7
+#define PHYCTRL_IS_CALDONE(x) \
+ ((((x) >> PHYCTRL_CALDONE_SHIFT) & \
+ PHYCTRL_CALDONE_MASK) == PHYCTRL_CALDONE_DONE)
+
struct rockchip_emmc_phy {
unsigned int reg_offset;
struct regmap *reg_base;
@@ -160,15 +164,16 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off)
PHYCTRL_PDB_SHIFT));
/*
- * According to the user manual, it asks driver to
- * wait 5us for calpad busy trimming
+ * According to the user manual, it asks driver to wait 5us for
+ * calpad busy trimming. However it is documented that this value is
+ * PVT(A.K.A process,voltage and temperature) relevant, so some
+ * failure cases are found which indicates we should be more tolerant
+ * to calpad busy trimming.
*/
- udelay(5);
- regmap_read(rk_phy->reg_base,
- rk_phy->reg_offset + GRF_EMMCPHY_STATUS,
- &caldone);
- caldone = (caldone >> PHYCTRL_CALDONE_SHIFT) & PHYCTRL_CALDONE_MASK;
- if (caldone != PHYCTRL_CALDONE_DONE) {
+ if (regmap_read_poll_timeout(rk_phy->reg_base,
+ rk_phy->reg_offset + GRF_EMMCPHY_STATUS,
+ caldone, PHYCTRL_IS_CALDONE(caldone),
+ 5, 50)) {
pr_err("rockchip_emmc_phy_power: caldone timeout.\n");
return -ETIMEDOUT;
}
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy 2018-01-02 2:21 [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming Shawn Lin @ 2018-01-02 2:22 ` Shawn Lin 2018-01-05 2:07 ` Brian Norris 2018-01-04 9:10 ` [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming Ziyuan 2018-01-05 1:32 ` Caesar Wang 2 siblings, 1 reply; 7+ messages in thread From: Shawn Lin @ 2018-01-02 2:22 UTC (permalink / raw) To: Kishon Vijay Abraham I Cc: linux-rockchip, Heiko Stuebner, Douglas Anderson, Ziyuan Xu, linux-kernel, Shawn Lin Just use the API instead of open-coding it, no functional change intended. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> --- drivers/phy/rockchip/phy-rockchip-emmc.c | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/drivers/phy/rockchip/phy-rockchip-emmc.c b/drivers/phy/rockchip/phy-rockchip-emmc.c index 512a6ef..c65979b 100644 --- a/drivers/phy/rockchip/phy-rockchip-emmc.c +++ b/drivers/phy/rockchip/phy-rockchip-emmc.c @@ -79,6 +79,9 @@ #define PHYCTRL_IS_CALDONE(x) \ ((((x) >> PHYCTRL_CALDONE_SHIFT) & \ PHYCTRL_CALDONE_MASK) == PHYCTRL_CALDONE_DONE) +#define PHYCTRL_IS_DLLRDY(x) \ + ((((x) >> PHYCTRL_DLLRDY_SHIFT) & \ + PHYCTRL_DLLRDY_MASK) == PHYCTRL_DLLRDY_DONE) struct rockchip_emmc_phy { unsigned int reg_offset; @@ -93,7 +96,6 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) unsigned int dllrdy; unsigned int freqsel = PHYCTRL_FREQSEL_200M; unsigned long rate; - unsigned long timeout; /* * Keep phyctrl_pdb and phyctrl_endll low to allow @@ -222,19 +224,10 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) * only at boot / resume. In both cases, eMMC is probably on the * critical path so busy waiting a little extra time should be OK. */ - timeout = jiffies + msecs_to_jiffies(50); - do { - udelay(1); - - regmap_read(rk_phy->reg_base, - rk_phy->reg_offset + GRF_EMMCPHY_STATUS, - &dllrdy); - dllrdy = (dllrdy >> PHYCTRL_DLLRDY_SHIFT) & PHYCTRL_DLLRDY_MASK; - if (dllrdy == PHYCTRL_DLLRDY_DONE) - break; - } while (!time_after(jiffies, timeout)); - - if (dllrdy != PHYCTRL_DLLRDY_DONE) { + if (regmap_read_poll_timeout(rk_phy->reg_base, + rk_phy->reg_offset + GRF_EMMCPHY_STATUS, + dllrdy, PHYCTRL_IS_DLLRDY(dllrdy), + 1, 50 * USEC_PER_MSEC)) { pr_err("rockchip_emmc_phy_power: dllrdy timeout.\n"); return -ETIMEDOUT; } -- 1.9.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy 2018-01-02 2:22 ` [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy Shawn Lin @ 2018-01-05 2:07 ` Brian Norris 2018-01-05 2:12 ` Brian Norris 2018-01-05 2:16 ` Brian Norris 0 siblings, 2 replies; 7+ messages in thread From: Brian Norris @ 2018-01-05 2:07 UTC (permalink / raw) To: Shawn Lin Cc: Kishon Vijay Abraham I, Heiko Stuebner, Ziyuan Xu, linux-kernel, Douglas Anderson, linux-rockchip Hi, On Tue, Jan 02, 2018 at 10:22:00AM +0800, Shawn Lin wrote: > Just use the API instead of open-coding it, no functional change > intended. > > Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> > --- > > drivers/phy/rockchip/phy-rockchip-emmc.c | 21 +++++++-------------- > 1 file changed, 7 insertions(+), 14 deletions(-) > > diff --git a/drivers/phy/rockchip/phy-rockchip-emmc.c b/drivers/phy/rockchip/phy-rockchip-emmc.c > index 512a6ef..c65979b 100644 > --- a/drivers/phy/rockchip/phy-rockchip-emmc.c > +++ b/drivers/phy/rockchip/phy-rockchip-emmc.c > @@ -79,6 +79,9 @@ > #define PHYCTRL_IS_CALDONE(x) \ > ((((x) >> PHYCTRL_CALDONE_SHIFT) & \ > PHYCTRL_CALDONE_MASK) == PHYCTRL_CALDONE_DONE) > +#define PHYCTRL_IS_DLLRDY(x) \ > + ((((x) >> PHYCTRL_DLLRDY_SHIFT) & \ > + PHYCTRL_DLLRDY_MASK) == PHYCTRL_DLLRDY_DONE) > > struct rockchip_emmc_phy { > unsigned int reg_offset; > @@ -93,7 +96,6 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) > unsigned int dllrdy; > unsigned int freqsel = PHYCTRL_FREQSEL_200M; > unsigned long rate; > - unsigned long timeout; > > /* > * Keep phyctrl_pdb and phyctrl_endll low to allow > @@ -222,19 +224,10 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) > * only at boot / resume. In both cases, eMMC is probably on the > * critical path so busy waiting a little extra time should be OK. ^^ The above comments talk about busy-waiting, keeping this short, and critical paths. With a sleeping implementation (like regmap_read_poll_timeout()) that doesn't quite match, does it? I'd think you might at least change the wording a little to avoid calling it "busy wait". Brian > */ > - timeout = jiffies + msecs_to_jiffies(50); > - do { > - udelay(1); > - > - regmap_read(rk_phy->reg_base, > - rk_phy->reg_offset + GRF_EMMCPHY_STATUS, > - &dllrdy); > - dllrdy = (dllrdy >> PHYCTRL_DLLRDY_SHIFT) & PHYCTRL_DLLRDY_MASK; > - if (dllrdy == PHYCTRL_DLLRDY_DONE) > - break; > - } while (!time_after(jiffies, timeout)); > - > - if (dllrdy != PHYCTRL_DLLRDY_DONE) { > + if (regmap_read_poll_timeout(rk_phy->reg_base, > + rk_phy->reg_offset + GRF_EMMCPHY_STATUS, > + dllrdy, PHYCTRL_IS_DLLRDY(dllrdy), > + 1, 50 * USEC_PER_MSEC)) { > pr_err("rockchip_emmc_phy_power: dllrdy timeout.\n"); > return -ETIMEDOUT; > } ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy 2018-01-05 2:07 ` Brian Norris @ 2018-01-05 2:12 ` Brian Norris 2018-01-05 2:16 ` Brian Norris 1 sibling, 0 replies; 7+ messages in thread From: Brian Norris @ 2018-01-05 2:12 UTC (permalink / raw) To: Shawn Lin Cc: Kishon Vijay Abraham I, Heiko Stuebner, Ziyuan Xu, linux-kernel, Douglas Anderson, linux-rockchip On Thu, Jan 04, 2018 at 06:07:51PM -0800, Brian Norris wrote: > On Tue, Jan 02, 2018 at 10:22:00AM +0800, Shawn Lin wrote: > > Just use the API instead of open-coding it, no functional change > > intended. > > > > Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> > > --- Other than my nit comment, looks fine: Reviewed-by: Brian Norris <briannorris@chromium.org> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy 2018-01-05 2:07 ` Brian Norris 2018-01-05 2:12 ` Brian Norris @ 2018-01-05 2:16 ` Brian Norris 1 sibling, 0 replies; 7+ messages in thread From: Brian Norris @ 2018-01-05 2:16 UTC (permalink / raw) To: Shawn Lin Cc: Kishon Vijay Abraham I, Heiko Stuebner, Ziyuan Xu, linux-kernel, Douglas Anderson, linux-rockchip Sorry for the spam...one more thought: On Thu, Jan 04, 2018 at 06:07:51PM -0800, Brian Norris wrote: > On Tue, Jan 02, 2018 at 10:22:00AM +0800, Shawn Lin wrote: > > Just use the API instead of open-coding it, no functional change > > intended. > > > > Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> > > --- > > > > drivers/phy/rockchip/phy-rockchip-emmc.c | 21 +++++++-------------- > > 1 file changed, 7 insertions(+), 14 deletions(-) > > > > diff --git a/drivers/phy/rockchip/phy-rockchip-emmc.c b/drivers/phy/rockchip/phy-rockchip-emmc.c > > index 512a6ef..c65979b 100644 > > --- a/drivers/phy/rockchip/phy-rockchip-emmc.c > > +++ b/drivers/phy/rockchip/phy-rockchip-emmc.c > > @@ -79,6 +79,9 @@ > > #define PHYCTRL_IS_CALDONE(x) \ > > ((((x) >> PHYCTRL_CALDONE_SHIFT) & \ > > PHYCTRL_CALDONE_MASK) == PHYCTRL_CALDONE_DONE) > > +#define PHYCTRL_IS_DLLRDY(x) \ > > + ((((x) >> PHYCTRL_DLLRDY_SHIFT) & \ > > + PHYCTRL_DLLRDY_MASK) == PHYCTRL_DLLRDY_DONE) > > > > struct rockchip_emmc_phy { > > unsigned int reg_offset; > > @@ -93,7 +96,6 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) > > unsigned int dllrdy; > > unsigned int freqsel = PHYCTRL_FREQSEL_200M; > > unsigned long rate; > > - unsigned long timeout; > > > > /* > > * Keep phyctrl_pdb and phyctrl_endll low to allow > > @@ -222,19 +224,10 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) > > * only at boot / resume. In both cases, eMMC is probably on the > > * critical path so busy waiting a little extra time should be OK. > > ^^ The above comments talk about busy-waiting, keeping this short, and > critical paths. With a sleeping implementation (like > regmap_read_poll_timeout()) that doesn't quite match, does it? I'd think > you might at least change the wording a little to avoid calling it "busy wait". > > Brian > > > */ > > - timeout = jiffies + msecs_to_jiffies(50); > > - do { > > - udelay(1); > > - > > - regmap_read(rk_phy->reg_base, > > - rk_phy->reg_offset + GRF_EMMCPHY_STATUS, > > - &dllrdy); > > - dllrdy = (dllrdy >> PHYCTRL_DLLRDY_SHIFT) & PHYCTRL_DLLRDY_MASK; > > - if (dllrdy == PHYCTRL_DLLRDY_DONE) > > - break; > > - } while (!time_after(jiffies, timeout)); > > - > > - if (dllrdy != PHYCTRL_DLLRDY_DONE) { > > + if (regmap_read_poll_timeout(rk_phy->reg_base, regmap_read_poll_timeout() checks for regmap_read() errors and aborts on error, so it's misleading to just report ETIMEDOUT below. Why don't you save 'ret', print it in the pr_err() message, and propagate the error code? Same for patch 1. Brian > > + rk_phy->reg_offset + GRF_EMMCPHY_STATUS, > > + dllrdy, PHYCTRL_IS_DLLRDY(dllrdy), > > + 1, 50 * USEC_PER_MSEC)) { > > pr_err("rockchip_emmc_phy_power: dllrdy timeout.\n"); > > return -ETIMEDOUT; > > } ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming 2018-01-02 2:21 [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming Shawn Lin 2018-01-02 2:22 ` [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy Shawn Lin @ 2018-01-04 9:10 ` Ziyuan 2018-01-05 1:32 ` Caesar Wang 2 siblings, 0 replies; 7+ messages in thread From: Ziyuan @ 2018-01-04 9:10 UTC (permalink / raw) To: Shawn Lin, Kishon Vijay Abraham I Cc: Heiko Stuebner, linux-kernel, Douglas Anderson, linux-rockchip hi , On 01/02/2018 10:21 AM, Shawn Lin wrote: > It turns out that 5us isn't enough for all cases, so let's > retry some more times to wait for caldone. > > Signed-off-by: Shawn Lin<shawn.lin@rock-chips.com> Tested-by: Ziyuan Xu <xzy.xu@rock-chips.com> On the Firefly RK3399 board. Thanks. -- Ziyuan Xu ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming 2018-01-02 2:21 [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming Shawn Lin 2018-01-02 2:22 ` [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy Shawn Lin 2018-01-04 9:10 ` [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming Ziyuan @ 2018-01-05 1:32 ` Caesar Wang 2 siblings, 0 replies; 7+ messages in thread From: Caesar Wang @ 2018-01-05 1:32 UTC (permalink / raw) To: Shawn Lin, Kishon Vijay Abraham I Cc: Heiko Stuebner, Ziyuan Xu, linux-kernel, Douglas Anderson, linux-rockchip Hi Kishon & Shawn, As the bug had tracked on https://issuetracker.google.com/71561742. In some cases, the mmc phy power on failed during booting up. The log as below: ... [ 2.375333] rockchip_emmc_phy_power: caldone timeout. [ 2.377815] phy phy-ff770000.syscon:phy@f780.4: phy poweron failed --> -110 ... [ 2.489295] mmc0: mmc_select_hs400es failed, error -110 [ 2.489302] mmc0: error -110 whilst initialising MMC card .. 在 2018年01月02日 10:21, Shawn Lin 写道: > It turns out that 5us isn't enough for all cases, so let's > retry some more times to wait for caldone. > > Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Tested-by: Caesar Wang <wxt@rock-chips.com> I had tested on rk3399 chromebook, so feel free to add my tag. -Caesar > --- > > drivers/phy/rockchip/phy-rockchip-emmc.c | 21 +++++++++++++-------- > 1 file changed, 13 insertions(+), 8 deletions(-) > > diff --git a/drivers/phy/rockchip/phy-rockchip-emmc.c b/drivers/phy/rockchip/phy-rockchip-emmc.c > index f1b24f1..512a6ef 100644 > --- a/drivers/phy/rockchip/phy-rockchip-emmc.c > +++ b/drivers/phy/rockchip/phy-rockchip-emmc.c > @@ -76,6 +76,10 @@ > #define PHYCTRL_OTAPDLYSEL_MASK 0xf > #define PHYCTRL_OTAPDLYSEL_SHIFT 0x7 > > +#define PHYCTRL_IS_CALDONE(x) \ > + ((((x) >> PHYCTRL_CALDONE_SHIFT) & \ > + PHYCTRL_CALDONE_MASK) == PHYCTRL_CALDONE_DONE) > + > struct rockchip_emmc_phy { > unsigned int reg_offset; > struct regmap *reg_base; > @@ -160,15 +164,16 @@ static int rockchip_emmc_phy_power(struct phy *phy, bool on_off) > PHYCTRL_PDB_SHIFT)); > > /* > - * According to the user manual, it asks driver to > - * wait 5us for calpad busy trimming > + * According to the user manual, it asks driver to wait 5us for > + * calpad busy trimming. However it is documented that this value is > + * PVT(A.K.A process,voltage and temperature) relevant, so some > + * failure cases are found which indicates we should be more tolerant > + * to calpad busy trimming. > */ > - udelay(5); > - regmap_read(rk_phy->reg_base, > - rk_phy->reg_offset + GRF_EMMCPHY_STATUS, > - &caldone); > - caldone = (caldone >> PHYCTRL_CALDONE_SHIFT) & PHYCTRL_CALDONE_MASK; > - if (caldone != PHYCTRL_CALDONE_DONE) { > + if (regmap_read_poll_timeout(rk_phy->reg_base, > + rk_phy->reg_offset + GRF_EMMCPHY_STATUS, > + caldone, PHYCTRL_IS_CALDONE(caldone), > + 5, 50)) { > pr_err("rockchip_emmc_phy_power: caldone timeout.\n"); > return -ETIMEDOUT; > } ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-01-05 2:16 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-01-02 2:21 [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming Shawn Lin 2018-01-02 2:22 ` [PATCH 2/2] phy: rockchip-emmc: use regmap_read_poll_timeout to poll dllrdy Shawn Lin 2018-01-05 2:07 ` Brian Norris 2018-01-05 2:12 ` Brian Norris 2018-01-05 2:16 ` Brian Norris 2018-01-04 9:10 ` [PATCH 1/2] phy: rockchip-emmc: retry calpad busy trimming Ziyuan 2018-01-05 1:32 ` Caesar Wang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox