From: Kishon Vijay Abraham I <kishon@ti.com>
To: Marek Szyprowski <m.szyprowski@samsung.com>,
linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>,
Krzysztof Kozlowski <krzk@kernel.org>
Subject: Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status
Date: Tue, 15 Nov 2016 19:03:32 +0530 [thread overview]
Message-ID: <582B0EAC.7070805@ti.com> (raw)
In-Reply-To: <1478515712-650-1-git-send-email-m.szyprowski@samsung.com>
On Monday 07 November 2016 04:18 PM, 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.
>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
merged to phy -next.
Thanks
Kishon
> ---
> 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;
>
WARNING: multiple messages have this Message-ID (diff)
From: Kishon Vijay Abraham I <kishon@ti.com>
To: Marek Szyprowski <m.szyprowski@samsung.com>,
<linux-kernel@vger.kernel.org>,
<linux-samsung-soc@vger.kernel.org>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>,
Krzysztof Kozlowski <krzk@kernel.org>
Subject: Re: [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status
Date: Tue, 15 Nov 2016 19:03:32 +0530 [thread overview]
Message-ID: <582B0EAC.7070805@ti.com> (raw)
In-Reply-To: <1478515712-650-1-git-send-email-m.szyprowski@samsung.com>
On Monday 07 November 2016 04:18 PM, 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.
>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
merged to phy -next.
Thanks
Kishon
> ---
> 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;
>
next prev parent reply other threads:[~2016-11-15 13:33 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20161107104844eucas1p2b5571119dff76e33d6ec038c359224f7@eucas1p2.samsung.com>
2016-11-07 10:48 ` [PATCH RESEND] phy: exynos-mipi-video: simplify check for coupled phy status Marek Szyprowski
2016-11-07 18:50 ` Javier Martinez Canillas
2016-11-08 6:27 ` Marek Szyprowski
2016-11-08 11:33 ` Javier Martinez Canillas
2016-11-15 13:33 ` Kishon Vijay Abraham I [this message]
2016-11-15 13:33 ` Kishon Vijay Abraham I
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=582B0EAC.7070805@ti.com \
--to=kishon@ti.com \
--cc=krzk@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=s.nawrocki@samsung.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.