From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ray Jui Subject: [PATCH v3 0/5] Add gpio support to Broadcom Cygnus SoC Date: Mon, 8 Dec 2014 10:47:42 -0800 Message-ID: <1418064468-8512-1-git-send-email-rjui@broadcom.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from mail-gw2-out.broadcom.com ([216.31.210.63]:13630 "EHLO mail-gw2-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751072AbaLHSp0 (ORCPT ); Mon, 8 Dec 2014 13:45:26 -0500 In-Reply-To: Sender: linux-gpio-owner@vger.kernel.org List-Id: linux-gpio@vger.kernel.org To: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Linus Walleij , Alexandre Courbot , Grant Likely , Christian Daudt , Matt Porter , Florian Fainelli , Russell King , Joe Perches , Arnd Bergmann Cc: Scott Branden , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-gpio@vger.kernel.org, bcm-kernel-feedback-list@broadcom.com, devicetree@vger.kernel.org, Ray Jui This patchset contains the initial GPIO support for the Broadcom Cygnus SoC. Cygnus has 3 GPIO controllers: 1) the ASIU GPIO; 2) the chipCommonG GPIO; and 3) the ALWAYS-ON GPIO. All 3 types of GPIO controllers are supported by the same Cygnus GPIO driver Changes from v2: - Consolidate different compatible IDs into "brcm,cygnus-gpio" - Get rid of redundant "no-interrupt" property Changes from v1: - Get rid of inline qualifier - Get rid of redundant check in the ISR - Other minor fixes to imrove code readability Ray Jui (5): gpio: Cygnus: define Broadcom Cygnus GPIO binding gpio: Cygnus: add GPIO driver ARM: mach-bcm: Enable GPIO support for Cygnus ARM: dts: enable GPIO for Broadcom Cygnus MAINTAINERS: Entry for Cygnus GPIO driver .../devicetree/bindings/gpio/brcm,cygnus-gpio.txt | 82 +++ MAINTAINERS | 7 + arch/arm/boot/dts/bcm-cygnus.dtsi | 30 + arch/arm/mach-bcm/Kconfig | 1 + drivers/gpio/Kconfig | 11 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-bcm-cygnus.c | 705 ++++++++++++++++++++ 7 files changed, 837 insertions(+) create mode 100644 Documentation/devicetree/bindings/gpio/brcm,cygnus-gpio.txt create mode 100644 drivers/gpio/gpio-bcm-cygnus.c -- 1.7.9.5 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756242AbaLHSp2 (ORCPT ); Mon, 8 Dec 2014 13:45:28 -0500 Received: from mail-gw2-out.broadcom.com ([216.31.210.63]:13630 "EHLO mail-gw2-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751072AbaLHSp0 (ORCPT ); Mon, 8 Dec 2014 13:45:26 -0500 X-IronPort-AV: E=Sophos;i="5.07,540,1413270000"; d="scan'208";a="52541597" From: Ray Jui To: Rob Herring , Pawel Moll , "Mark Rutland" , Ian Campbell , Kumar Gala , "Linus Walleij" , Alexandre Courbot , Grant Likely , Christian Daudt , Matt Porter , Florian Fainelli , Russell King , Joe Perches , "Arnd Bergmann" CC: Scott Branden , , , , , , "Ray Jui" Subject: [PATCH v3 0/5] Add gpio support to Broadcom Cygnus SoC Date: Mon, 8 Dec 2014 10:47:42 -0800 Message-ID: <1418064468-8512-1-git-send-email-rjui@broadcom.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patchset contains the initial GPIO support for the Broadcom Cygnus SoC. Cygnus has 3 GPIO controllers: 1) the ASIU GPIO; 2) the chipCommonG GPIO; and 3) the ALWAYS-ON GPIO. All 3 types of GPIO controllers are supported by the same Cygnus GPIO driver Changes from v2: - Consolidate different compatible IDs into "brcm,cygnus-gpio" - Get rid of redundant "no-interrupt" property Changes from v1: - Get rid of inline qualifier - Get rid of redundant check in the ISR - Other minor fixes to imrove code readability Ray Jui (5): gpio: Cygnus: define Broadcom Cygnus GPIO binding gpio: Cygnus: add GPIO driver ARM: mach-bcm: Enable GPIO support for Cygnus ARM: dts: enable GPIO for Broadcom Cygnus MAINTAINERS: Entry for Cygnus GPIO driver .../devicetree/bindings/gpio/brcm,cygnus-gpio.txt | 82 +++ MAINTAINERS | 7 + arch/arm/boot/dts/bcm-cygnus.dtsi | 30 + arch/arm/mach-bcm/Kconfig | 1 + drivers/gpio/Kconfig | 11 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-bcm-cygnus.c | 705 ++++++++++++++++++++ 7 files changed, 837 insertions(+) create mode 100644 Documentation/devicetree/bindings/gpio/brcm,cygnus-gpio.txt create mode 100644 drivers/gpio/gpio-bcm-cygnus.c -- 1.7.9.5 From mboxrd@z Thu Jan 1 00:00:00 1970 From: rjui@broadcom.com (Ray Jui) Date: Mon, 8 Dec 2014 10:47:42 -0800 Subject: [PATCH v3 0/5] Add gpio support to Broadcom Cygnus SoC In-Reply-To: References: Message-ID: <1418064468-8512-1-git-send-email-rjui@broadcom.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org This patchset contains the initial GPIO support for the Broadcom Cygnus SoC. Cygnus has 3 GPIO controllers: 1) the ASIU GPIO; 2) the chipCommonG GPIO; and 3) the ALWAYS-ON GPIO. All 3 types of GPIO controllers are supported by the same Cygnus GPIO driver Changes from v2: - Consolidate different compatible IDs into "brcm,cygnus-gpio" - Get rid of redundant "no-interrupt" property Changes from v1: - Get rid of inline qualifier - Get rid of redundant check in the ISR - Other minor fixes to imrove code readability Ray Jui (5): gpio: Cygnus: define Broadcom Cygnus GPIO binding gpio: Cygnus: add GPIO driver ARM: mach-bcm: Enable GPIO support for Cygnus ARM: dts: enable GPIO for Broadcom Cygnus MAINTAINERS: Entry for Cygnus GPIO driver .../devicetree/bindings/gpio/brcm,cygnus-gpio.txt | 82 +++ MAINTAINERS | 7 + arch/arm/boot/dts/bcm-cygnus.dtsi | 30 + arch/arm/mach-bcm/Kconfig | 1 + drivers/gpio/Kconfig | 11 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-bcm-cygnus.c | 705 ++++++++++++++++++++ 7 files changed, 837 insertions(+) create mode 100644 Documentation/devicetree/bindings/gpio/brcm,cygnus-gpio.txt create mode 100644 drivers/gpio/gpio-bcm-cygnus.c -- 1.7.9.5