From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Andrew F. Davis" Subject: [PATCH v4 0/4] Add support for the TI TPS65086 PMIC Date: Thu, 19 Nov 2015 17:01:38 -0600 Message-ID: <1447974102-24938-1-git-send-email-afd@ti.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from devils.ext.ti.com ([198.47.26.153]:40463 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754559AbbKSXB6 (ORCPT ); Thu, 19 Nov 2015 18:01:58 -0500 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 , Samuel Ortiz , Lee Jones , Liam Girdwood , Mark Brown Cc: devicetree@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, "Andrew F. Davis" This series adds support for the TPS65086 PMIC. It is a MFD with an I2C interface, several regulators and load switches, and a GPO controller. v1 can be found here: [1] v2: [2] v3: [3] Changes from v3: - Removed compatible strings from DT sub-nodes - Rearranged DT bindings - Small fixes Changes from v2: - Use DT match callback in regulator - Typo fixes Changes from v1: - Split up DT Docs into separate patches - Use mfd core to instantiate sub-devices - Several small fixes as discussed in v1 thread [1] http://www.spinics.net/lists/devicetree/msg98403.html [2] http://www.spinics.net/lists/kernel/msg2111345.html [3] https://lkml.org/lkml/2015/11/4/393 Andrew F. Davis (4): Documentation: tps65086: Add DT bindings for the TPS65086 PMIC mfd: tps65086: Add driver for the TPS65086 PMIC regulator: tps65086: Add regulator driver for the TPS65086 PMIC gpio: tps65086: Add GPO driver for the TPS65086 PMIC Documentation/devicetree/bindings/mfd/tps65086.txt | 55 +++++ drivers/gpio/Kconfig | 6 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-tps65086.c | 144 ++++++++++++ drivers/mfd/Kconfig | 13 ++ drivers/mfd/Makefile | 1 + drivers/mfd/tps65086.c | 150 ++++++++++++ drivers/regulator/Kconfig | 7 + drivers/regulator/Makefile | 1 + drivers/regulator/tps65086-regulator.c | 251 +++++++++++++++++++++ include/linux/mfd/tps65086.h | 118 ++++++++++ 11 files changed, 747 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/tps65086.txt create mode 100644 drivers/gpio/gpio-tps65086.c create mode 100644 drivers/mfd/tps65086.c create mode 100644 drivers/regulator/tps65086-regulator.c create mode 100644 include/linux/mfd/tps65086.h -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030318AbbKSXCB (ORCPT ); Thu, 19 Nov 2015 18:02:01 -0500 Received: from devils.ext.ti.com ([198.47.26.153]:40463 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754559AbbKSXB6 (ORCPT ); Thu, 19 Nov 2015 18:01:58 -0500 From: "Andrew F. Davis" To: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Linus Walleij , Alexandre Courbot , Samuel Ortiz , Lee Jones , Liam Girdwood , Mark Brown CC: , , , "Andrew F. Davis" Subject: [PATCH v4 0/4] Add support for the TI TPS65086 PMIC Date: Thu, 19 Nov 2015 17:01:38 -0600 Message-ID: <1447974102-24938-1-git-send-email-afd@ti.com> X-Mailer: git-send-email 1.9.1 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 series adds support for the TPS65086 PMIC. It is a MFD with an I2C interface, several regulators and load switches, and a GPO controller. v1 can be found here: [1] v2: [2] v3: [3] Changes from v3: - Removed compatible strings from DT sub-nodes - Rearranged DT bindings - Small fixes Changes from v2: - Use DT match callback in regulator - Typo fixes Changes from v1: - Split up DT Docs into separate patches - Use mfd core to instantiate sub-devices - Several small fixes as discussed in v1 thread [1] http://www.spinics.net/lists/devicetree/msg98403.html [2] http://www.spinics.net/lists/kernel/msg2111345.html [3] https://lkml.org/lkml/2015/11/4/393 Andrew F. Davis (4): Documentation: tps65086: Add DT bindings for the TPS65086 PMIC mfd: tps65086: Add driver for the TPS65086 PMIC regulator: tps65086: Add regulator driver for the TPS65086 PMIC gpio: tps65086: Add GPO driver for the TPS65086 PMIC Documentation/devicetree/bindings/mfd/tps65086.txt | 55 +++++ drivers/gpio/Kconfig | 6 + drivers/gpio/Makefile | 1 + drivers/gpio/gpio-tps65086.c | 144 ++++++++++++ drivers/mfd/Kconfig | 13 ++ drivers/mfd/Makefile | 1 + drivers/mfd/tps65086.c | 150 ++++++++++++ drivers/regulator/Kconfig | 7 + drivers/regulator/Makefile | 1 + drivers/regulator/tps65086-regulator.c | 251 +++++++++++++++++++++ include/linux/mfd/tps65086.h | 118 ++++++++++ 11 files changed, 747 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/tps65086.txt create mode 100644 drivers/gpio/gpio-tps65086.c create mode 100644 drivers/mfd/tps65086.c create mode 100644 drivers/regulator/tps65086-regulator.c create mode 100644 include/linux/mfd/tps65086.h -- 1.9.1