From: Tomasz Figa <t.figa@samsung.com>
To: Abhilash Kesavan <a.kesavan@samsung.com>
Cc: dianders@chromium.org, olof@lixom.net, kgene.kim@samsung.com,
jonghwa3.lee@samsung.com, yadi.brar@samsung.com,
mturquette@linaro.org, linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org,
devicetree-discuss@lists.ozlabs.org
Subject: Re: [PATCH 1/5] clk: samsung: exynos5250: Add CLK_IGNORE_UNUSED flag for the sysreg clock
Date: Mon, 30 Dec 2013 18:49:04 +0100 [thread overview]
Message-ID: <3286403.zKhpGDqJO8@amdc1227> (raw)
In-Reply-To: <1386763029-8516-2-git-send-email-a.kesavan@samsung.com>
On Wednesday 11 of December 2013 17:27:05 Abhilash Kesavan wrote:
> The sysreg (system register) generates control signals for various blocks
> like disp1blk, i2c, mipi etc. However, it gets disabled as an unused clock
> at boot-up.
>
> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> ---
> drivers/clk/samsung/clk-exynos5250.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/clk/samsung/clk-exynos5250.c b/drivers/clk/samsung/clk-exynos5250.c
> index adf3234..0833501 100644
> --- a/drivers/clk/samsung/clk-exynos5250.c
> +++ b/drivers/clk/samsung/clk-exynos5250.c
> @@ -406,7 +406,8 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = {
> GATE(hsi2c2, "hsi2c2", "aclk66", GATE_IP_PERIC, 30, 0, 0),
> GATE(hsi2c3, "hsi2c3", "aclk66", GATE_IP_PERIC, 31, 0, 0),
> GATE(chipid, "chipid", "aclk66", GATE_IP_PERIS, 0, 0, 0),
> - GATE(sysreg, "sysreg", "aclk66", GATE_IP_PERIS, 1, 0, 0),
> + GATE(sysreg, "sysreg", "aclk66",
> + GATE_IP_PERIS, 1, CLK_IGNORE_UNUSED, 0),
> GATE(pmu, "pmu", "aclk66", GATE_IP_PERIS, 2, CLK_IGNORE_UNUSED, 0),
> GATE(tzpc0, "tzpc0", "aclk66", GATE_IP_PERIS, 6, 0, 0),
> GATE(tzpc1, "tzpc1", "aclk66", GATE_IP_PERIS, 7, 0, 0),
>
Applied to samsung-clk tree, since this patch seems not to depend or be
a dependency of other patches.
Best regards,
Tomasz
WARNING: multiple messages have this Message-ID (diff)
From: t.figa@samsung.com (Tomasz Figa)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/5] clk: samsung: exynos5250: Add CLK_IGNORE_UNUSED flag for the sysreg clock
Date: Mon, 30 Dec 2013 18:49:04 +0100 [thread overview]
Message-ID: <3286403.zKhpGDqJO8@amdc1227> (raw)
In-Reply-To: <1386763029-8516-2-git-send-email-a.kesavan@samsung.com>
On Wednesday 11 of December 2013 17:27:05 Abhilash Kesavan wrote:
> The sysreg (system register) generates control signals for various blocks
> like disp1blk, i2c, mipi etc. However, it gets disabled as an unused clock
> at boot-up.
>
> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> ---
> drivers/clk/samsung/clk-exynos5250.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/clk/samsung/clk-exynos5250.c b/drivers/clk/samsung/clk-exynos5250.c
> index adf3234..0833501 100644
> --- a/drivers/clk/samsung/clk-exynos5250.c
> +++ b/drivers/clk/samsung/clk-exynos5250.c
> @@ -406,7 +406,8 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = {
> GATE(hsi2c2, "hsi2c2", "aclk66", GATE_IP_PERIC, 30, 0, 0),
> GATE(hsi2c3, "hsi2c3", "aclk66", GATE_IP_PERIC, 31, 0, 0),
> GATE(chipid, "chipid", "aclk66", GATE_IP_PERIS, 0, 0, 0),
> - GATE(sysreg, "sysreg", "aclk66", GATE_IP_PERIS, 1, 0, 0),
> + GATE(sysreg, "sysreg", "aclk66",
> + GATE_IP_PERIS, 1, CLK_IGNORE_UNUSED, 0),
> GATE(pmu, "pmu", "aclk66", GATE_IP_PERIS, 2, CLK_IGNORE_UNUSED, 0),
> GATE(tzpc0, "tzpc0", "aclk66", GATE_IP_PERIS, 6, 0, 0),
> GATE(tzpc1, "tzpc1", "aclk66", GATE_IP_PERIS, 7, 0, 0),
>
Applied to samsung-clk tree, since this patch seems not to depend or be
a dependency of other patches.
Best regards,
Tomasz
next prev parent reply other threads:[~2013-12-30 17:49 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-11 11:57 [PATCH 0/5] Power Related Fixes for Exynos5250 Abhilash Kesavan
2013-12-11 11:57 ` Abhilash Kesavan
2013-12-11 11:57 ` [PATCH 1/5] clk: samsung: exynos5250: Add CLK_IGNORE_UNUSED flag for the sysreg clock Abhilash Kesavan
2013-12-11 11:57 ` Abhilash Kesavan
2013-12-11 23:55 ` Doug Anderson
2013-12-11 23:55 ` Doug Anderson
2013-12-12 0:13 ` Tomasz Figa
2013-12-12 0:13 ` Tomasz Figa
2013-12-12 0:30 ` Doug Anderson
2013-12-12 0:30 ` Doug Anderson
2013-12-12 4:36 ` Abhilash Kesavan
2013-12-12 4:36 ` Abhilash Kesavan
2013-12-12 9:53 ` Tomasz Figa
2013-12-12 9:53 ` Tomasz Figa
2013-12-30 17:49 ` Tomasz Figa [this message]
2013-12-30 17:49 ` Tomasz Figa
2013-12-11 11:57 ` [PATCH 2/5] ARM: EXYNOS5: Fix PMU register configuration for local power blocks Abhilash Kesavan
2013-12-11 11:57 ` Abhilash Kesavan
2013-12-11 12:29 ` Tomasz Figa
2013-12-11 12:29 ` Tomasz Figa
2013-12-12 2:43 ` Abhilash Kesavan
2013-12-12 2:43 ` Abhilash Kesavan
2013-12-11 11:57 ` [PATCH 3/5] clk: max77686: Replace is_enabled() with is_prepared call-back Abhilash Kesavan
2013-12-11 11:57 ` Abhilash Kesavan
2013-12-11 12:24 ` Tomasz Figa
2013-12-11 12:24 ` Tomasz Figa
2013-12-12 2:47 ` Abhilash Kesavan
2013-12-12 2:47 ` Abhilash Kesavan
2013-12-11 11:57 ` [PATCH 4/5] ARM: EXYNOS5250: Implement pm_power_off Abhilash Kesavan
2013-12-11 11:57 ` Abhilash Kesavan
2013-12-11 11:57 ` [PATCH 5/5] ARM: dts: Setup the interrupt parent for max77686 Abhilash Kesavan
2013-12-11 11:57 ` Abhilash Kesavan
2013-12-11 23:57 ` Doug Anderson
2013-12-11 23:57 ` Doug Anderson
2013-12-12 2:50 ` Abhilash Kesavan
2013-12-12 2:50 ` Abhilash Kesavan
2013-12-11 12:41 ` [PATCH 0/5] Power Related Fixes for Exynos5250 Tomasz Figa
2013-12-11 12:41 ` Tomasz Figa
2013-12-12 2:42 ` Abhilash Kesavan
2013-12-12 2:42 ` Abhilash Kesavan
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=3286403.zKhpGDqJO8@amdc1227 \
--to=t.figa@samsung.com \
--cc=a.kesavan@samsung.com \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=dianders@chromium.org \
--cc=jonghwa3.lee@samsung.com \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=olof@lixom.net \
--cc=yadi.brar@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.