From patchwork Wed Jun 17 13:11:41 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Ceresoli X-Patchwork-Id: 198930 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 23D9BC433DF for ; Wed, 17 Jun 2020 13:12:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F300420FC3 for ; Wed, 17 Jun 2020 13:12:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726454AbgFQNL6 (ORCPT ); Wed, 17 Jun 2020 09:11:58 -0400 Received: from hostingweb31-40.netsons.net ([89.40.174.40]:33230 "EHLO hostingweb31-40.netsons.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726044AbgFQNL6 (ORCPT ); Wed, 17 Jun 2020 09:11:58 -0400 Received: from [5.157.120.79] (port=34860 helo=melee.fritz.box) by hostingweb31.netsons.net with esmtpa (Exim 4.93) (envelope-from ) id 1jlXr9-000Frj-4Y; Wed, 17 Jun 2020 15:11:55 +0200 From: Luca Ceresoli To: Liam Girdwood , Mark Brown Cc: Luca Ceresoli , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Lee Jones , Rob Herring , Keerthy , Axel Lin Subject: [PATCH v2 0/4] mfd: lp87565: convert DT to yaml, ignore ENx pins and add LP87524-Q1 Date: Wed, 17 Jun 2020 15:11:41 +0200 Message-Id: <20200617131145.15696-1-luca@lucaceresoli.net> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - hostingweb31.netsons.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - lucaceresoli.net X-Get-Message-Sender-Via: hostingweb31.netsons.net: authenticated_id: luca+lucaceresoli.net/only user confirmed/virtual account not confirmed X-Authenticated-Sender: hostingweb31.netsons.net: luca@lucaceresoli.net X-Source: X-Source-Args: X-Source-Dir: Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hi, the first patch in this series is a small but significant variation in how the lp87565 driver enables the output rails, to allow the kernel to always know when it is enabling an output. However it can change existing behaviour (depending on the hardware setup) and thus it should be carefully evaluated. The following patches are a fairly straightforward addition of a new chip variant along DT bindings conversion to yaml. RFC,v1: https://lkml.org/lkml/2020/6/3/908 Luca Luca Ceresoli (4): regulator: lp87565: enable voltage regardless of ENx pin dt-bindings: mfd: lp87565: convert to yaml dt-bindings: mfd: lp87565: add LP87524-Q1 variant mfd: lp87565: add LP87524-Q1 variant .../devicetree/bindings/mfd/lp87565.txt | 79 ------- .../devicetree/bindings/mfd/ti,lp875xx.yaml | 213 ++++++++++++++++++ drivers/mfd/lp87565.c | 4 + drivers/regulator/lp87565-regulator.c | 21 +- include/linux/mfd/lp87565.h | 1 + 5 files changed, 237 insertions(+), 81 deletions(-) delete mode 100644 Documentation/devicetree/bindings/mfd/lp87565.txt create mode 100644 Documentation/devicetree/bindings/mfd/ti,lp875xx.yaml