* [GIT PULL] i.MX clock updates for 4.2
@ 2015-08-11 8:59 Shawn Guo
2015-08-11 17:46 ` Michael Turquette
0 siblings, 1 reply; 5+ messages in thread
From: Shawn Guo @ 2015-08-11 8:59 UTC (permalink / raw)
To: linux-arm-kernel
Hi Michael, Stephen,
The i.MX clock drivers were moved into drivers/clk/imx folder since
v4.2-rc1, so I would like to send i.MX clock changes through clock tree
from this cycle. Here is my first pull request to you guys. I'm using
signed tags, same as how I work with arm-soc folks. Let me know if
there is any problem with it.
Also, please keep it stable, because I need to pull it into other
branch as dependency which I will send via arm-soc tree.
Thanks,
Shawn
The following changes since commit d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754:
Linux 4.2-rc1 (2015-07-05 11:01:52 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-clk-4.3
for you to fetch changes up to 3713e3f5e9274bbe52e94716bde303071364c1ed:
clk: imx35: define two clocks for rtc (2015-08-05 20:01:21 +0800)
----------------------------------------------------------------
The i.MX clock updates for 4.3:
- Provide a better IPU clock initial settings on imx6dl for getting
HDMI and LVDS at the same time.
- Add clock driver support for i.MX6UL SoC
- Add a second clock for RTC device on i.MX31 and i.MX35
----------------------------------------------------------------
Fabio Estevam (1):
clk: imx: clk-imx6q: Provide initial IPU clock settings for mx6dl
Frank Li (1):
clk: imx: add imx6ul clk tree support
Philippe Reynes (2):
clk: imx31: add a second rtc clock
clk: imx35: define two clocks for rtc
drivers/clk/imx/Makefile | 1 +
drivers/clk/imx/clk-imx31.c | 3 +-
drivers/clk/imx/clk-imx35.c | 6 +-
drivers/clk/imx/clk-imx6q.c | 4 +
drivers/clk/imx/clk-imx6ul.c | 432 +++++++++++++++++++++++++++++++
include/dt-bindings/clock/imx6ul-clock.h | 240 +++++++++++++++++
6 files changed, 684 insertions(+), 2 deletions(-)
create mode 100644 drivers/clk/imx/clk-imx6ul.c
create mode 100644 include/dt-bindings/clock/imx6ul-clock.h
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] i.MX clock updates for 4.2
2015-08-11 8:59 [GIT PULL] i.MX clock updates for 4.2 Shawn Guo
@ 2015-08-11 17:46 ` Michael Turquette
2015-08-11 18:34 ` Stephen Boyd
2015-08-12 2:34 ` Shawn Guo
0 siblings, 2 replies; 5+ messages in thread
From: Michael Turquette @ 2015-08-11 17:46 UTC (permalink / raw)
To: linux-arm-kernel
Hi Shawn,
Quoting Shawn Guo (2015-08-11 01:59:21)
> Hi Michael, Stephen,
>
> The i.MX clock drivers were moved into drivers/clk/imx folder since
> v4.2-rc1, so I would like to send i.MX clock changes through clock tree
> from this cycle. Here is my first pull request to you guys. I'm using
> signed tags, same as how I work with arm-soc folks. Let me know if
> there is any problem with it.
Everything looks good. Pulled.
>
> Also, please keep it stable, because I need to pull it into other
> branch as dependency which I will send via arm-soc tree.
Will do.
Also, the clock driver was not Cc'd to linux-clk mailing list nor did it
Cc myself or Stephen. I've taken a quick look at it and it seems fine,
but please post clk patches to the linux-clk mailing list in the future.
Thanks,
Mike
>
> Thanks,
> Shawn
>
> The following changes since commit d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754:
>
> Linux 4.2-rc1 (2015-07-05 11:01:52 -0700)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-clk-4.3
>
> for you to fetch changes up to 3713e3f5e9274bbe52e94716bde303071364c1ed:
>
> clk: imx35: define two clocks for rtc (2015-08-05 20:01:21 +0800)
>
> ----------------------------------------------------------------
> The i.MX clock updates for 4.3:
> - Provide a better IPU clock initial settings on imx6dl for getting
> HDMI and LVDS at the same time.
> - Add clock driver support for i.MX6UL SoC
> - Add a second clock for RTC device on i.MX31 and i.MX35
>
> ----------------------------------------------------------------
> Fabio Estevam (1):
> clk: imx: clk-imx6q: Provide initial IPU clock settings for mx6dl
>
> Frank Li (1):
> clk: imx: add imx6ul clk tree support
>
> Philippe Reynes (2):
> clk: imx31: add a second rtc clock
> clk: imx35: define two clocks for rtc
>
> drivers/clk/imx/Makefile | 1 +
> drivers/clk/imx/clk-imx31.c | 3 +-
> drivers/clk/imx/clk-imx35.c | 6 +-
> drivers/clk/imx/clk-imx6q.c | 4 +
> drivers/clk/imx/clk-imx6ul.c | 432 +++++++++++++++++++++++++++++++
> include/dt-bindings/clock/imx6ul-clock.h | 240 +++++++++++++++++
> 6 files changed, 684 insertions(+), 2 deletions(-)
> create mode 100644 drivers/clk/imx/clk-imx6ul.c
> create mode 100644 include/dt-bindings/clock/imx6ul-clock.h
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] i.MX clock updates for 4.2
2015-08-11 17:46 ` Michael Turquette
@ 2015-08-11 18:34 ` Stephen Boyd
2015-08-12 2:36 ` Shawn Guo
2015-08-12 2:34 ` Shawn Guo
1 sibling, 1 reply; 5+ messages in thread
From: Stephen Boyd @ 2015-08-11 18:34 UTC (permalink / raw)
To: linux-arm-kernel
On 08/11, Michael Turquette wrote:
> >
> > Also, please keep it stable, because I need to pull it into other
> > branch as dependency which I will send via arm-soc tree.
>
> Will do.
>
> Also, the clock driver was not Cc'd to linux-clk mailing list nor did it
> Cc myself or Stephen. I've taken a quick look at it and it seems fine,
> but please post clk patches to the linux-clk mailing list in the future.
>
Yes. We would have found this unused include too. I'll apply this
after we merge it into clk-next.
----8<----
From: Stephen Boyd <sboyd@codeaurora.org>
Subject: [PATCH] clk: imx: Remove unused clkdev.h include
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
drivers/clk/imx/clk-imx6ul.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/clk/imx/clk-imx6ul.c b/drivers/clk/imx/clk-imx6ul.c
index aaa36650695f..c498f558e942 100644
--- a/drivers/clk/imx/clk-imx6ul.c
+++ b/drivers/clk/imx/clk-imx6ul.c
@@ -11,7 +11,6 @@
#include <dt-bindings/clock/imx6ul-clock.h>
#include <linux/clk.h>
-#include <linux/clkdev.h>
#include <linux/err.h>
#include <linux/init.h>
#include <linux/io.h>
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [GIT PULL] i.MX clock updates for 4.2
2015-08-11 17:46 ` Michael Turquette
2015-08-11 18:34 ` Stephen Boyd
@ 2015-08-12 2:34 ` Shawn Guo
1 sibling, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2015-08-12 2:34 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Aug 11, 2015 at 10:46:57AM -0700, Michael Turquette wrote:
> Hi Shawn,
>
> Quoting Shawn Guo (2015-08-11 01:59:21)
> > Hi Michael, Stephen,
> >
> > The i.MX clock drivers were moved into drivers/clk/imx folder since
> > v4.2-rc1, so I would like to send i.MX clock changes through clock tree
> > from this cycle. Here is my first pull request to you guys. I'm using
> > signed tags, same as how I work with arm-soc folks. Let me know if
> > there is any problem with it.
>
> Everything looks good. Pulled.
Thanks, Mike.
>
> >
> > Also, please keep it stable, because I need to pull it into other
> > branch as dependency which I will send via arm-soc tree.
>
> Will do.
>
> Also, the clock driver was not Cc'd to linux-clk mailing list nor did it
> Cc myself or Stephen. I've taken a quick look at it and it seems fine,
> but please post clk patches to the linux-clk mailing list in the future.
I will ensure that all i.MX clock patches get Cc'd to linux-clk and you
guys in the future.
Shawn
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] i.MX clock updates for 4.2
2015-08-11 18:34 ` Stephen Boyd
@ 2015-08-12 2:36 ` Shawn Guo
0 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2015-08-12 2:36 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Aug 11, 2015 at 11:34:25AM -0700, Stephen Boyd wrote:
> Yes. We would have found this unused include too. I'll apply this
> after we merge it into clk-next.
Thanks Stephen for the fixup. I will make sure that i.MX clock patches
get Cc'd to you and Mike.
Shawn
>
> ----8<----
> From: Stephen Boyd <sboyd@codeaurora.org>
> Subject: [PATCH] clk: imx: Remove unused clkdev.h include
>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
> drivers/clk/imx/clk-imx6ul.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/clk/imx/clk-imx6ul.c b/drivers/clk/imx/clk-imx6ul.c
> index aaa36650695f..c498f558e942 100644
> --- a/drivers/clk/imx/clk-imx6ul.c
> +++ b/drivers/clk/imx/clk-imx6ul.c
> @@ -11,7 +11,6 @@
>
> #include <dt-bindings/clock/imx6ul-clock.h>
> #include <linux/clk.h>
> -#include <linux/clkdev.h>
> #include <linux/err.h>
> #include <linux/init.h>
> #include <linux/io.h>
> --
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
> a Linux Foundation Collaborative Project
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-08-12 2:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-11 8:59 [GIT PULL] i.MX clock updates for 4.2 Shawn Guo
2015-08-11 17:46 ` Michael Turquette
2015-08-11 18:34 ` Stephen Boyd
2015-08-12 2:36 ` Shawn Guo
2015-08-12 2:34 ` Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).