From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756917AbaIWVPk (ORCPT ); Tue, 23 Sep 2014 17:15:40 -0400 Received: from mail-gw2-out.broadcom.com ([216.31.210.63]:45197 "EHLO mail-gw2-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756884AbaIWVPh (ORCPT ); Tue, 23 Sep 2014 17:15:37 -0400 X-IronPort-AV: E=Sophos;i="5.04,582,1406617200"; d="scan'208";a="46573336" From: Jonathan Richardson To: Christian Daudt , Matt Porter , Russell King , Mike Turquette , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , JD Zheng CC: , , , , Scott Branden , Ray Jui , Jonathan Richardson Subject: [PATCH v2 0/6] Add initial support for Broadcom Cygnus SoC Date: Tue, 23 Sep 2014 14:17:31 -0700 Message-ID: <1411507057-14771-1-git-send-email-jonathar@broadcom.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, This patchset contains initial support for Broadcom's Cygnus SoC based on our iProc architecture. Initial support is minimal and includes just the mach platform code, clock driver, and a basic device tree configuration. Peripheral drivers will be submitted soon, as will device tree configurations for other Cygnus board variants. Changes from v1: - Address code review comments as per previous responses. - Copyright headers updated to remove Broadcom URL. - mach platform code still contains hard coded adresses. These address are the same for all Cygnus variants. Could you please provide guidance on where they should go if you would still like them changed. Thanks, Jon Jonathan Richardson (6): ARM: cygnus: Initial support for Broadcom Cygnus SoC clk: Clock driver support for Broadcom Cygnus SoC dt-bindings: Document Broadcom Cygnus SoC and clock driver ARM: dts: Enable Broadcom Cygnus SoC ARM: cygnus defconfig : Initial defconfig for Broadcom Cygnus SoC MAINTAINERS: Entry for Cygnus/iproc arm architecture and clock drivers Documentation/devicetree/bindings/arm/cygnus.txt | 12 + .../devicetree/bindings/clock/clk-cygnus.txt | 121 ++ .../devicetree/bindings/clock/clk-iproc.txt | 48 + MAINTAINERS | 21 + arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/bcm-cygnus.dtsi | 349 ++++++ arch/arm/boot/dts/bcm911360_entphn.dts | 22 + arch/arm/configs/bcm_cygnus_defconfig | 223 ++++ arch/arm/mach-bcm/Kconfig | 31 + arch/arm/mach-bcm/Makefile | 3 + arch/arm/mach-bcm/bcm_cygnus.c | 166 +++ drivers/clk/Makefile | 1 + drivers/clk/bcm/Makefile | 2 + drivers/clk/bcm/clk-cygnus.c | 1186 ++++++++++++++++++++ drivers/clk/bcm/clk-iproc.c | 451 ++++++++ 15 files changed, 2637 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/cygnus.txt create mode 100644 Documentation/devicetree/bindings/clock/clk-cygnus.txt create mode 100644 Documentation/devicetree/bindings/clock/clk-iproc.txt create mode 100644 arch/arm/boot/dts/bcm-cygnus.dtsi create mode 100644 arch/arm/boot/dts/bcm911360_entphn.dts create mode 100644 arch/arm/configs/bcm_cygnus_defconfig create mode 100644 arch/arm/mach-bcm/bcm_cygnus.c create mode 100644 drivers/clk/bcm/clk-cygnus.c create mode 100644 drivers/clk/bcm/clk-iproc.c -- 1.7.9.5 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Richardson Subject: [PATCH v2 0/6] Add initial support for Broadcom Cygnus SoC Date: Tue, 23 Sep 2014 14:17:31 -0700 Message-ID: <1411507057-14771-1-git-send-email-jonathar@broadcom.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org To: Christian Daudt , Matt Porter , Russell King , Mike Turquette , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , JD Zheng Cc: linux-arm-kernel@lists.infradead.org, bcm-kernel-feedback-list@broadcom.com, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Scott Branden , Ray Jui , Jonathan Richardson List-Id: devicetree@vger.kernel.org Hi, This patchset contains initial support for Broadcom's Cygnus SoC based on our iProc architecture. Initial support is minimal and includes just the mach platform code, clock driver, and a basic device tree configuration. Peripheral drivers will be submitted soon, as will device tree configurations for other Cygnus board variants. Changes from v1: - Address code review comments as per previous responses. - Copyright headers updated to remove Broadcom URL. - mach platform code still contains hard coded adresses. These address are the same for all Cygnus variants. Could you please provide guidance on where they should go if you would still like them changed. Thanks, Jon Jonathan Richardson (6): ARM: cygnus: Initial support for Broadcom Cygnus SoC clk: Clock driver support for Broadcom Cygnus SoC dt-bindings: Document Broadcom Cygnus SoC and clock driver ARM: dts: Enable Broadcom Cygnus SoC ARM: cygnus defconfig : Initial defconfig for Broadcom Cygnus SoC MAINTAINERS: Entry for Cygnus/iproc arm architecture and clock drivers Documentation/devicetree/bindings/arm/cygnus.txt | 12 + .../devicetree/bindings/clock/clk-cygnus.txt | 121 ++ .../devicetree/bindings/clock/clk-iproc.txt | 48 + MAINTAINERS | 21 + arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/bcm-cygnus.dtsi | 349 ++++++ arch/arm/boot/dts/bcm911360_entphn.dts | 22 + arch/arm/configs/bcm_cygnus_defconfig | 223 ++++ arch/arm/mach-bcm/Kconfig | 31 + arch/arm/mach-bcm/Makefile | 3 + arch/arm/mach-bcm/bcm_cygnus.c | 166 +++ drivers/clk/Makefile | 1 + drivers/clk/bcm/Makefile | 2 + drivers/clk/bcm/clk-cygnus.c | 1186 ++++++++++++++++++++ drivers/clk/bcm/clk-iproc.c | 451 ++++++++ 15 files changed, 2637 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/cygnus.txt create mode 100644 Documentation/devicetree/bindings/clock/clk-cygnus.txt create mode 100644 Documentation/devicetree/bindings/clock/clk-iproc.txt create mode 100644 arch/arm/boot/dts/bcm-cygnus.dtsi create mode 100644 arch/arm/boot/dts/bcm911360_entphn.dts create mode 100644 arch/arm/configs/bcm_cygnus_defconfig create mode 100644 arch/arm/mach-bcm/bcm_cygnus.c create mode 100644 drivers/clk/bcm/clk-cygnus.c create mode 100644 drivers/clk/bcm/clk-iproc.c -- 1.7.9.5 From mboxrd@z Thu Jan 1 00:00:00 1970 From: jonathar@broadcom.com (Jonathan Richardson) Date: Tue, 23 Sep 2014 14:17:31 -0700 Subject: [PATCH v2 0/6] Add initial support for Broadcom Cygnus SoC In-Reply-To: References: Message-ID: <1411507057-14771-1-git-send-email-jonathar@broadcom.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi, This patchset contains initial support for Broadcom's Cygnus SoC based on our iProc architecture. Initial support is minimal and includes just the mach platform code, clock driver, and a basic device tree configuration. Peripheral drivers will be submitted soon, as will device tree configurations for other Cygnus board variants. Changes from v1: - Address code review comments as per previous responses. - Copyright headers updated to remove Broadcom URL. - mach platform code still contains hard coded adresses. These address are the same for all Cygnus variants. Could you please provide guidance on where they should go if you would still like them changed. Thanks, Jon Jonathan Richardson (6): ARM: cygnus: Initial support for Broadcom Cygnus SoC clk: Clock driver support for Broadcom Cygnus SoC dt-bindings: Document Broadcom Cygnus SoC and clock driver ARM: dts: Enable Broadcom Cygnus SoC ARM: cygnus defconfig : Initial defconfig for Broadcom Cygnus SoC MAINTAINERS: Entry for Cygnus/iproc arm architecture and clock drivers Documentation/devicetree/bindings/arm/cygnus.txt | 12 + .../devicetree/bindings/clock/clk-cygnus.txt | 121 ++ .../devicetree/bindings/clock/clk-iproc.txt | 48 + MAINTAINERS | 21 + arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/bcm-cygnus.dtsi | 349 ++++++ arch/arm/boot/dts/bcm911360_entphn.dts | 22 + arch/arm/configs/bcm_cygnus_defconfig | 223 ++++ arch/arm/mach-bcm/Kconfig | 31 + arch/arm/mach-bcm/Makefile | 3 + arch/arm/mach-bcm/bcm_cygnus.c | 166 +++ drivers/clk/Makefile | 1 + drivers/clk/bcm/Makefile | 2 + drivers/clk/bcm/clk-cygnus.c | 1186 ++++++++++++++++++++ drivers/clk/bcm/clk-iproc.c | 451 ++++++++ 15 files changed, 2637 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/cygnus.txt create mode 100644 Documentation/devicetree/bindings/clock/clk-cygnus.txt create mode 100644 Documentation/devicetree/bindings/clock/clk-iproc.txt create mode 100644 arch/arm/boot/dts/bcm-cygnus.dtsi create mode 100644 arch/arm/boot/dts/bcm911360_entphn.dts create mode 100644 arch/arm/configs/bcm_cygnus_defconfig create mode 100644 arch/arm/mach-bcm/bcm_cygnus.c create mode 100644 drivers/clk/bcm/clk-cygnus.c create mode 100644 drivers/clk/bcm/clk-iproc.c -- 1.7.9.5