All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rahul Sharma <r.sh.open@gmail.com>
To: Tomasz Figa <tomasz.figa@gmail.com>
Cc: Rahul Sharma <rahul.sharma@samsung.com>,
	linux-samsung-soc <linux-samsung-soc@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	Mike Turquette <mturquette@linaro.org>,
	Kukjin Kim <kgene.kim@samsung.com>,
	sunil joshi <joshi@samsung.com>
Subject: Re: [PATCH v6 0/2] clk: exynos: add support for exynos5260 SoC
Date: Mon, 24 Mar 2014 08:58:27 +0530	[thread overview]
Message-ID: <CAPdUM4NC+8Sw-gC2anb56oemOtqu9-Dy3PopGHY7oqcwmp-Jig@mail.gmail.com> (raw)
In-Reply-To: <532F5E29.3040507@gmail.com>

Thanks Tomasz,

Please let me know if any concern.
Meanwhile I will post dt patches with "clock" and "clock-names" properties
added for each controller node.

Regards,
Rahul Sharma.


On 24 March 2014 03:50, Tomasz Figa <tomasz.figa@gmail.com> wrote:
> Hi Rahul,
>
>
> On 23.03.2014 21:45, Rahul Sharma wrote:
>>
>> From: Rahul Sharma <Rahul.Sharma@samsung.com>
>>
>> Add clock support for exynos5260 SoC.
>>
>> This series is based on Tomasz Figa's samsung-next branch.
>>
>> V6:
>>    1) Listed external Clocks in documentation file.
>>    2) Listed Input Clocks for each clock controller in
>> exynos5260-clock.txt.
>>    3) Added Clock and Clock-names properties.
>>    4) Assigned IDs to all clocks in the clock file.
>>    5) Moved all PHY clocks as fixed rate to the driver file.
>>    6) Reorder clocks to maintain acscending order on the basis of clock
>>    register offset and bit numer.
>>
>> V5:
>>    1) Include S3c2412 and S3c2443 in clock provider patch.
>>    2) Added SCLK_TOP_FIMD with CLK_IGNORE_UNUSED due to Suspend
>>    failure.
>>    3) Moved exynos5260-clk.h to include/dt-bindings/clock.
>>    4) Fix exynos5260_clk_sleep_init protoype for PM disabled.W
>>    5) Moved fixed clock registeration to DT.
>>    6) Removed CLK_IGNORE_UNUSED flags from UART clocks. Earlier
>>    facing issues because of RFS probing all TTYs.
>>
>> V4:
>>    1) Rework clock file as per Tomasz review comments at
>>          http://www.spinics.net/lists/arm-kernel/msg310116.html.
>>
>> V3:
>>    1) Removed "samsung,exynos5260-clock" property from clock files.
>>    2) Replaced "__SPIN_LOCK_UNLOCKED(lock)" with spin_lock_init.
>>    3) Removed '(' and ')' around numeric constants in macros.
>>
>> V2:
>>    1) Move suspend resume handling to Exynos5410 Clock file.
>>    2) Removed Unused Macros and Condition checks for Exynos5260.
>>    3) Add spin lock to clock provider context.
>>    4) Add clock provider context for Exynos5410.
>>    5) Uniform implementation for callbacks for PLL2550xx.
>>    6) Split Exynos5260 clock file patch to bring it under 100 Kb limit.
>>    7) Replace aclk/pclk/hclk gates with combined gates.
>>    8) Remove CLK_IGNORE_UNUSED flag for gate clocks.
>>
>> Rahul Sharma (2):
>>    clk/exynos5260: add macros and documentation for exynos5260
>>    clk/exynos5260: add clock file for exynos5260
>>
>>   .../devicetree/bindings/clock/exynos5260-clock.txt |  190 ++
>>   drivers/clk/samsung/Makefile                       |    1 +
>>   drivers/clk/samsung/clk-exynos5260.c               | 1980
>> ++++++++++++++++++++
>>   drivers/clk/samsung/clk-exynos5260.h               |  459 +++++
>>   include/dt-bindings/clock/exynos5260-clk.h         |  469 +++++
>>   5 files changed, 3099 insertions(+)
>>   create mode 100644
>> Documentation/devicetree/bindings/clock/exynos5260-clock.txt
>>   create mode 100644 drivers/clk/samsung/clk-exynos5260.c
>>   create mode 100644 drivers/clk/samsung/clk-exynos5260.h
>>   create mode 100644 include/dt-bindings/clock/exynos5260-clk.h
>>
>
> Looks good to me, will apply if no comments show up for few more days.
>
> Best regards,
> Tomasz

WARNING: multiple messages have this Message-ID (diff)
From: r.sh.open@gmail.com (Rahul Sharma)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 0/2] clk: exynos: add support for exynos5260 SoC
Date: Mon, 24 Mar 2014 08:58:27 +0530	[thread overview]
Message-ID: <CAPdUM4NC+8Sw-gC2anb56oemOtqu9-Dy3PopGHY7oqcwmp-Jig@mail.gmail.com> (raw)
In-Reply-To: <532F5E29.3040507@gmail.com>

Thanks Tomasz,

Please let me know if any concern.
Meanwhile I will post dt patches with "clock" and "clock-names" properties
added for each controller node.

Regards,
Rahul Sharma.


On 24 March 2014 03:50, Tomasz Figa <tomasz.figa@gmail.com> wrote:
> Hi Rahul,
>
>
> On 23.03.2014 21:45, Rahul Sharma wrote:
>>
>> From: Rahul Sharma <Rahul.Sharma@samsung.com>
>>
>> Add clock support for exynos5260 SoC.
>>
>> This series is based on Tomasz Figa's samsung-next branch.
>>
>> V6:
>>    1) Listed external Clocks in documentation file.
>>    2) Listed Input Clocks for each clock controller in
>> exynos5260-clock.txt.
>>    3) Added Clock and Clock-names properties.
>>    4) Assigned IDs to all clocks in the clock file.
>>    5) Moved all PHY clocks as fixed rate to the driver file.
>>    6) Reorder clocks to maintain acscending order on the basis of clock
>>    register offset and bit numer.
>>
>> V5:
>>    1) Include S3c2412 and S3c2443 in clock provider patch.
>>    2) Added SCLK_TOP_FIMD with CLK_IGNORE_UNUSED due to Suspend
>>    failure.
>>    3) Moved exynos5260-clk.h to include/dt-bindings/clock.
>>    4) Fix exynos5260_clk_sleep_init protoype for PM disabled.W
>>    5) Moved fixed clock registeration to DT.
>>    6) Removed CLK_IGNORE_UNUSED flags from UART clocks. Earlier
>>    facing issues because of RFS probing all TTYs.
>>
>> V4:
>>    1) Rework clock file as per Tomasz review comments at
>>          http://www.spinics.net/lists/arm-kernel/msg310116.html.
>>
>> V3:
>>    1) Removed "samsung,exynos5260-clock" property from clock files.
>>    2) Replaced "__SPIN_LOCK_UNLOCKED(lock)" with spin_lock_init.
>>    3) Removed '(' and ')' around numeric constants in macros.
>>
>> V2:
>>    1) Move suspend resume handling to Exynos5410 Clock file.
>>    2) Removed Unused Macros and Condition checks for Exynos5260.
>>    3) Add spin lock to clock provider context.
>>    4) Add clock provider context for Exynos5410.
>>    5) Uniform implementation for callbacks for PLL2550xx.
>>    6) Split Exynos5260 clock file patch to bring it under 100 Kb limit.
>>    7) Replace aclk/pclk/hclk gates with combined gates.
>>    8) Remove CLK_IGNORE_UNUSED flag for gate clocks.
>>
>> Rahul Sharma (2):
>>    clk/exynos5260: add macros and documentation for exynos5260
>>    clk/exynos5260: add clock file for exynos5260
>>
>>   .../devicetree/bindings/clock/exynos5260-clock.txt |  190 ++
>>   drivers/clk/samsung/Makefile                       |    1 +
>>   drivers/clk/samsung/clk-exynos5260.c               | 1980
>> ++++++++++++++++++++
>>   drivers/clk/samsung/clk-exynos5260.h               |  459 +++++
>>   include/dt-bindings/clock/exynos5260-clk.h         |  469 +++++
>>   5 files changed, 3099 insertions(+)
>>   create mode 100644
>> Documentation/devicetree/bindings/clock/exynos5260-clock.txt
>>   create mode 100644 drivers/clk/samsung/clk-exynos5260.c
>>   create mode 100644 drivers/clk/samsung/clk-exynos5260.h
>>   create mode 100644 include/dt-bindings/clock/exynos5260-clk.h
>>
>
> Looks good to me, will apply if no comments show up for few more days.
>
> Best regards,
> Tomasz

  reply	other threads:[~2014-03-24  3:28 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-23 20:45 [PATCH v6 0/2] clk: exynos: add support for exynos5260 SoC Rahul Sharma
2014-03-23 20:45 ` Rahul Sharma
2014-03-23 20:45 ` [PATCH v6 1/2] clk/exynos5260: add macros and documentation for exynos5260 Rahul Sharma
2014-03-23 20:45   ` Rahul Sharma
2014-03-23 20:45 ` [PATCH v6 2/2] clk/exynos5260: add clock file " Rahul Sharma
2014-03-23 20:45   ` Rahul Sharma
2014-03-23 22:20 ` [PATCH v6 0/2] clk: exynos: add support for exynos5260 SoC Tomasz Figa
2014-03-23 22:20   ` Tomasz Figa
2014-03-24  3:28   ` Rahul Sharma [this message]
2014-03-24  3:28     ` Rahul Sharma
2014-04-28  6:27     ` Rahul Sharma
2014-04-28  6:27       ` Rahul Sharma

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=CAPdUM4NC+8Sw-gC2anb56oemOtqu9-Dy3PopGHY7oqcwmp-Jig@mail.gmail.com \
    --to=r.sh.open@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=joshi@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=rahul.sharma@samsung.com \
    --cc=tomasz.figa@gmail.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.