All of lore.kernel.org
 help / color / mirror / Atom feed
From: alex.elder@linaro.org (Alex Elder)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/3] clk: bcm281xx: define Broadcom kona clocks
Date: Tue, 10 Dec 2013 15:11:36 -0600	[thread overview]
Message-ID: <52A78388.90904@linaro.org> (raw)
In-Reply-To: <529F4B0F.2020801@linaro.org>

On 12/04/2013 09:32 AM, Alex Elder wrote:
> This series adds support for Kona clock control units (CCUs) and
> clocks, used by Broadcom BCM281xx family SoCs.  Kona CCUs are
> represented by nodes in the device tree, and the names of the clocks
> provided by a CCU are included in its node.  Implementation details
> of those clocks are defined in a C file separate from the code that
> implements the functionality used by most of the common clock
> framework.

Ping?

If you need me to re-send the series as separate messages, say
so and I'll gladly do it.

Thank you.

					-Alex

> This series depends on:
>     "Update Kona drivers to use clocks"
>     https://lkml.org/lkml/2013/11/14/450
> 
> This series (along with a version of those prerequisite patches) is
> available in the "review/bcm-kona-clocks-v2" branch of this git
> repository:
>     git://git.linaro.org/people/elder/linux.git
> 
> Updates:
> v2: - Address all issues raised by Mark Rutland.
> 
> 					-Alex
> 
> Alex Elder (3):
>   clk: bcm281xx: define kona clock binding
>   clk: bcm281xx: add initial clock framework support
>   ARM: dts: bcm281xx: define real clocks
> 
>  .../devicetree/bindings/clock/bcm-kona-clock.txt   |   93 ++
>  arch/arm/boot/dts/bcm11351.dtsi                    |  240 +++--
>  drivers/clk/Kconfig                                |    1 +
>  drivers/clk/Makefile                               |    1 +
>  drivers/clk/bcm/Kconfig                            |    8 +
>  drivers/clk/bcm/Makefile                           |    3 +
>  drivers/clk/bcm/clk-bcm281xx.c                     |  416 ++++++++
>  drivers/clk/bcm/clk-kona-setup.c                   |  769 +++++++++++++++
>  drivers/clk/bcm/clk-kona.c                         | 1033
> ++++++++++++++++++++
>  drivers/clk/bcm/clk-kona.h                         |  414 ++++++++
>  include/dt-bindings/clock/bcm281xx.h               |   65 ++
>  11 files changed, 2967 insertions(+), 76 deletions(-)
>  create mode 100644
> Documentation/devicetree/bindings/clock/bcm-kona-clock.txt
>  create mode 100644 drivers/clk/bcm/Kconfig
>  create mode 100644 drivers/clk/bcm/Makefile
>  create mode 100644 drivers/clk/bcm/clk-bcm281xx.c
>  create mode 100644 drivers/clk/bcm/clk-kona-setup.c
>  create mode 100644 drivers/clk/bcm/clk-kona.c
>  create mode 100644 drivers/clk/bcm/clk-kona.h
>  create mode 100644 include/dt-bindings/clock/bcm281xx.h
> 

WARNING: multiple messages have this Message-ID (diff)
From: Alex Elder <alex.elder@linaro.org>
To: Christian Daudt <bcm@fixthebug.org>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Mark Rutland <mark.rutland@arm.com>,
	Pawel Moll <pawel.moll@arm.com>,
	Rob Herring <rob.herring@calxeda.com>,
	Rob Landley <rob@landley.net>,
	Russell King <linux@arm.linux.org.uk>,
	Stephen Warren <swarren@wwwdotorg.org>,
	Mike Turquette <mturquette@linaro.org>
Cc: "bcm-kernel-feedback-list@broadcom.com"
	<bcm-kernel-feedback-list@broadcom.com>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 0/3] clk: bcm281xx: define Broadcom kona clocks
Date: Tue, 10 Dec 2013 15:11:36 -0600	[thread overview]
Message-ID: <52A78388.90904@linaro.org> (raw)
In-Reply-To: <529F4B0F.2020801@linaro.org>

On 12/04/2013 09:32 AM, Alex Elder wrote:
> This series adds support for Kona clock control units (CCUs) and
> clocks, used by Broadcom BCM281xx family SoCs.  Kona CCUs are
> represented by nodes in the device tree, and the names of the clocks
> provided by a CCU are included in its node.  Implementation details
> of those clocks are defined in a C file separate from the code that
> implements the functionality used by most of the common clock
> framework.

Ping?

If you need me to re-send the series as separate messages, say
so and I'll gladly do it.

Thank you.

					-Alex

> This series depends on:
>     "Update Kona drivers to use clocks"
>     https://lkml.org/lkml/2013/11/14/450
> 
> This series (along with a version of those prerequisite patches) is
> available in the "review/bcm-kona-clocks-v2" branch of this git
> repository:
>     git://git.linaro.org/people/elder/linux.git
> 
> Updates:
> v2: - Address all issues raised by Mark Rutland.
> 
> 					-Alex
> 
> Alex Elder (3):
>   clk: bcm281xx: define kona clock binding
>   clk: bcm281xx: add initial clock framework support
>   ARM: dts: bcm281xx: define real clocks
> 
>  .../devicetree/bindings/clock/bcm-kona-clock.txt   |   93 ++
>  arch/arm/boot/dts/bcm11351.dtsi                    |  240 +++--
>  drivers/clk/Kconfig                                |    1 +
>  drivers/clk/Makefile                               |    1 +
>  drivers/clk/bcm/Kconfig                            |    8 +
>  drivers/clk/bcm/Makefile                           |    3 +
>  drivers/clk/bcm/clk-bcm281xx.c                     |  416 ++++++++
>  drivers/clk/bcm/clk-kona-setup.c                   |  769 +++++++++++++++
>  drivers/clk/bcm/clk-kona.c                         | 1033
> ++++++++++++++++++++
>  drivers/clk/bcm/clk-kona.h                         |  414 ++++++++
>  include/dt-bindings/clock/bcm281xx.h               |   65 ++
>  11 files changed, 2967 insertions(+), 76 deletions(-)
>  create mode 100644
> Documentation/devicetree/bindings/clock/bcm-kona-clock.txt
>  create mode 100644 drivers/clk/bcm/Kconfig
>  create mode 100644 drivers/clk/bcm/Makefile
>  create mode 100644 drivers/clk/bcm/clk-bcm281xx.c
>  create mode 100644 drivers/clk/bcm/clk-kona-setup.c
>  create mode 100644 drivers/clk/bcm/clk-kona.c
>  create mode 100644 drivers/clk/bcm/clk-kona.h
>  create mode 100644 include/dt-bindings/clock/bcm281xx.h
> 

  parent reply	other threads:[~2013-12-10 21:11 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-04 15:32 [PATCH v2 0/3] clk: bcm281xx: define Broadcom kona clocks Alex Elder
2013-12-04 15:32 ` Alex Elder
2013-12-04 15:32 ` Alex Elder
2013-12-04 15:33 ` [PATCH v2 1/3] clk: bcm281xx: define kona clock binding Alex Elder
2013-12-04 15:33   ` Alex Elder
2013-12-04 15:33 ` [PATCH v2 2/3] clk: bcm281xx: add initial clock framework support Alex Elder
2013-12-04 15:33   ` Alex Elder
2013-12-14 23:57   ` Mike Turquette
2013-12-14 23:57     ` Mike Turquette
2013-12-15 17:39     ` Alex Elder
2013-12-15 17:39       ` Alex Elder
2013-12-16  0:22       ` Alex Elder
2013-12-16  0:22         ` Alex Elder
2013-12-16  0:22         ` Alex Elder
2013-12-16  4:29         ` Alex Elder
2013-12-16  4:29           ` Alex Elder
2013-12-16  6:14           ` Mike Turquette
2013-12-16  6:14             ` Mike Turquette
2013-12-04 15:33 ` [PATCH v2 3/3] ARM: dts: bcm281xx: define real clocks Alex Elder
2013-12-04 15:33   ` Alex Elder
2013-12-10 21:11 ` Alex Elder [this message]
2013-12-10 21:11   ` [PATCH v2 0/3] clk: bcm281xx: define Broadcom kona clocks Alex Elder

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=52A78388.90904@linaro.org \
    --to=alex.elder@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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.