From mboxrd@z Thu Jan 1 00:00:00 1970 From: robherring2@gmail.com (Rob Herring) Date: Mon, 9 Apr 2012 15:24:57 -0500 Subject: [PATCH 0/4] DT clock binding support Message-ID: <1334003101-17274-1-git-send-email-robherring2@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org From: Rob Herring This is yet another post of DT clock binding support. This adds support for parsing clock data from DT and initializing clock trees using the common clk infrastructure. Functionally, this is mostly unchanged from the previous version. The major change is the move of everything from drivers/of/clock.c and of_clk.h into appropriate places in the core clock infrastructure. I've also squashed my changes into Grant's original patches. The highbank clock support is unchanged except for includes, so I have not reposted it here. The previous series is here: http://www.spinics.net/lists/arm-kernel/msg164892.html Rob Grant Likely (2): clk: add DT clock binding support clk: add DT fixed-clock binding support Rob Herring (2): clk: select CLKDEV_LOOKUP for COMMON_CLK clk: remove trailing whitespace from clk.h .../devicetree/bindings/clock/clock-bindings.txt | 117 ++++++++++++++++ .../devicetree/bindings/clock/fixed-clock.txt | 22 +++ drivers/clk/Kconfig | 1 + drivers/clk/clk-fixed-rate.c | 23 ++++ drivers/clk/clk.c | 140 ++++++++++++++++++++ drivers/clk/clkdev.c | 77 +++++++++++ include/linux/clk-provider.h | 16 +++ include/linux/clk.h | 23 +++- 8 files changed, 417 insertions(+), 2 deletions(-) create mode 100644 Documentation/devicetree/bindings/clock/clock-bindings.txt create mode 100644 Documentation/devicetree/bindings/clock/fixed-clock.txt -- 1.7.5.4 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Herring Subject: [PATCH 0/4] DT clock binding support Date: Mon, 9 Apr 2012 15:24:57 -0500 Message-ID: <1334003101-17274-1-git-send-email-robherring2@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, devicetree-discuss@lists.ozlabs.org Cc: Mike Turquette , Thierry Reding , Rob Herring , Grant Likely , Sascha Hauer , shawn.guo@linaro.org List-Id: devicetree@vger.kernel.org From: Rob Herring This is yet another post of DT clock binding support. This adds support for parsing clock data from DT and initializing clock trees using the common clk infrastructure. Functionally, this is mostly unchanged from the previous version. The major change is the move of everything from drivers/of/clock.c and of_clk.h into appropriate places in the core clock infrastructure. I've also squashed my changes into Grant's original patches. The highbank clock support is unchanged except for includes, so I have not reposted it here. The previous series is here: http://www.spinics.net/lists/arm-kernel/msg164892.html Rob Grant Likely (2): clk: add DT clock binding support clk: add DT fixed-clock binding support Rob Herring (2): clk: select CLKDEV_LOOKUP for COMMON_CLK clk: remove trailing whitespace from clk.h .../devicetree/bindings/clock/clock-bindings.txt | 117 ++++++++++++++++ .../devicetree/bindings/clock/fixed-clock.txt | 22 +++ drivers/clk/Kconfig | 1 + drivers/clk/clk-fixed-rate.c | 23 ++++ drivers/clk/clk.c | 140 ++++++++++++++++++++ drivers/clk/clkdev.c | 77 +++++++++++ include/linux/clk-provider.h | 16 +++ include/linux/clk.h | 23 +++- 8 files changed, 417 insertions(+), 2 deletions(-) create mode 100644 Documentation/devicetree/bindings/clock/clock-bindings.txt create mode 100644 Documentation/devicetree/bindings/clock/fixed-clock.txt -- 1.7.5.4 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756238Ab2DIUZW (ORCPT ); Mon, 9 Apr 2012 16:25:22 -0400 Received: from mail-gx0-f174.google.com ([209.85.161.174]:33643 "EHLO mail-gx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752324Ab2DIUZV (ORCPT ); Mon, 9 Apr 2012 16:25:21 -0400 From: Rob Herring To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, devicetree-discuss@lists.ozlabs.org Cc: Thierry Reding , Mike Turquette , Sascha Hauer , Grant Likely , shawn.guo@linaro.org, Rob Herring Subject: [PATCH 0/4] DT clock binding support Date: Mon, 9 Apr 2012 15:24:57 -0500 Message-Id: <1334003101-17274-1-git-send-email-robherring2@gmail.com> X-Mailer: git-send-email 1.7.5.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Rob Herring This is yet another post of DT clock binding support. This adds support for parsing clock data from DT and initializing clock trees using the common clk infrastructure. Functionally, this is mostly unchanged from the previous version. The major change is the move of everything from drivers/of/clock.c and of_clk.h into appropriate places in the core clock infrastructure. I've also squashed my changes into Grant's original patches. The highbank clock support is unchanged except for includes, so I have not reposted it here. The previous series is here: http://www.spinics.net/lists/arm-kernel/msg164892.html Rob Grant Likely (2): clk: add DT clock binding support clk: add DT fixed-clock binding support Rob Herring (2): clk: select CLKDEV_LOOKUP for COMMON_CLK clk: remove trailing whitespace from clk.h .../devicetree/bindings/clock/clock-bindings.txt | 117 ++++++++++++++++ .../devicetree/bindings/clock/fixed-clock.txt | 22 +++ drivers/clk/Kconfig | 1 + drivers/clk/clk-fixed-rate.c | 23 ++++ drivers/clk/clk.c | 140 ++++++++++++++++++++ drivers/clk/clkdev.c | 77 +++++++++++ include/linux/clk-provider.h | 16 +++ include/linux/clk.h | 23 +++- 8 files changed, 417 insertions(+), 2 deletions(-) create mode 100644 Documentation/devicetree/bindings/clock/clock-bindings.txt create mode 100644 Documentation/devicetree/bindings/clock/fixed-clock.txt -- 1.7.5.4