Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1515994 > unrolled thread
| Started by | Marek Szyprowski <m.szyprowski@samsung.com> |
|---|---|
| First post | 2016-11-07 11:50 +0100 |
| Last post | 2016-11-08 12:40 +0100 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status Marek Szyprowski <m.szyprowski@samsung.com> - 2016-11-07 11:50 +0100
Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status Javier Martinez Canillas <javier@osg.samsung.com> - 2016-11-07 20:00 +0100
Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status Marek Szyprowski <m.szyprowski@samsung.com> - 2016-11-08 07:30 +0100
Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status Javier Martinez Canillas <javier@osg.samsung.com> - 2016-11-08 12:40 +0100
| From | Marek Szyprowski <m.szyprowski@samsung.com> |
|---|---|
| Date | 2016-11-07 11:50 +0100 |
| Subject | [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status |
| Message-ID | <sAPEZ-1Vz-1@gated-at.bofh.it> |
There is no need to access regmap of coupled phy to check its state - such
information is already in the phy device itself, so use it directly. This
let us to avoid possible access to registers of the device in the disabled
power domain if the coupled phy is already disabled.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
---
drivers/phy/phy-exynos-mipi-video.c | 15 +--------------
1 file changed, 1 insertion(+), 14 deletions(-)
diff --git a/drivers/phy/phy-exynos-mipi-video.c b/drivers/phy/phy-exynos-mipi-video.c
index 8b851f7..6bee04c 100644
--- a/drivers/phy/phy-exynos-mipi-video.c
+++ b/drivers/phy/phy-exynos-mipi-video.c
@@ -229,19 +229,6 @@ struct exynos_mipi_video_phy {
spinlock_t slock;
};
-static inline int __is_running(const struct exynos_mipi_phy_desc *data,
- struct exynos_mipi_video_phy *state)
-{
- u32 val;
- int ret;
-
- ret = regmap_read(state->regmaps[data->resetn_map], data->resetn_reg, &val);
- if (ret)
- return 0;
-
- return val & data->resetn_val;
-}
-
static int __set_phy_state(const struct exynos_mipi_phy_desc *data,
struct exynos_mipi_video_phy *state, unsigned int on)
{
@@ -251,7 +238,7 @@ static int __set_phy_state(const struct exynos_mipi_phy_desc *data,
/* disable in PMU sysreg */
if (!on && data->coupled_phy_id >= 0 &&
- !__is_running(state->phys[data->coupled_phy_id].data, state)) {
+ state->phys[data->coupled_phy_id].phy->power_count == 0) {
regmap_read(state->regmaps[data->enable_map], data->enable_reg,
&val);
val &= ~data->enable_val;
--
1.9.1
[toc] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2016-11-07 20:00 +0100 |
| Subject | Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status |
| Message-ID | <sAXjd-74X-57@gated-at.bofh.it> |
| In reply to | #1515994 |
Hello Marek, On 11/07/2016 07:48 AM, Marek Szyprowski wrote: > There is no need to access regmap of coupled phy to check its state - such > information is already in the phy device itself, so use it directly. This > let us to avoid possible access to registers of the device in the disabled > power domain if the coupled phy is already disabled. > Do you think this patch needs also go to stable? > Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> > Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> > --- Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com> Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America
[toc] | [prev] | [next] | [standalone]
| From | Marek Szyprowski <m.szyprowski@samsung.com> |
|---|---|
| Date | 2016-11-08 07:30 +0100 |
| Subject | Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status |
| Message-ID | <sB84V-5Kn-3@gated-at.bofh.it> |
| In reply to | #1516489 |
Hi Javier, On 2016-11-07 19:50, Javier Martinez Canillas wrote: > On 11/07/2016 07:48 AM, Marek Szyprowski wrote: >> There is no need to access regmap of coupled phy to check its state - such >> information is already in the phy device itself, so use it directly. This >> let us to avoid possible access to registers of the device in the disabled >> power domain if the coupled phy is already disabled. >> > Do you think this patch needs also go to stable? Nope, there is no such need, because the problem with potential power domain is specific for Exynos 5433, which is not yet merged to mainline. >> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> >> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> >> --- > Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com> Best regards -- Marek Szyprowski, PhD Samsung R&D Institute Poland
[toc] | [prev] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2016-11-08 12:40 +0100 |
| Subject | Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status |
| Message-ID | <sBcUV-iC-1@gated-at.bofh.it> |
| In reply to | #1516853 |
Hello Marek, On 11/08/2016 03:27 AM, Marek Szyprowski wrote: > Hi Javier, > > > On 2016-11-07 19:50, Javier Martinez Canillas wrote: >> On 11/07/2016 07:48 AM, Marek Szyprowski wrote: >>> There is no need to access regmap of coupled phy to check its state - such >>> information is already in the phy device itself, so use it directly. This >>> let us to avoid possible access to registers of the device in the disabled >>> power domain if the coupled phy is already disabled. >>> >> Do you think this patch needs also go to stable? > > Nope, there is no such need, because the problem with potential power domain > is specific for Exynos 5433, which is not yet merged to mainline. > Thanks for the clarification. It wasn't clear for me from the commit message where did you face this issue. >>> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> >>> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> >>> --- >> Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com> > > Best regards Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web