From patchwork Sat Dec 2 19:25:24 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 749679 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 3FA6811A; Sat, 2 Dec 2023 11:25:51 -0800 (PST) X-IronPort-AV: E=Sophos;i="6.04,246,1695654000"; d="scan'208";a="185089874" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 03 Dec 2023 04:25:49 +0900 Received: from localhost.localdomain (unknown [10.226.92.28]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 2369340764EE; Sun, 3 Dec 2023 04:25:40 +0900 (JST) From: Biju Das To: Wim Van Sebroeck , Guenter Roeck , Dmitry Torokhov , Lee Jones , Rob Herring , Krzysztof Kozlowski , Conor Dooley Cc: Biju Das , Steve Twiss , Support Opensource , linux-watchdog@vger.kernel.org, linux-input@vger.kernel.org, "Rafael J. Wysocki" , Daniel Lezcano , Zhang Rui , Lukasz Luba , linux-pm@vger.kernel.org, devicetree@vger.kernel.org, Geert Uytterhoeven , Prabhakar Mahadev Lad , Biju Das , linux-renesas-soc@vger.kernel.org Subject: [PATCH v2 00/11] Convert DA906{1,2} bindings to json-schema Date: Sat, 2 Dec 2023 19:25:24 +0000 Message-Id: <20231202192536.266885-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.39.2 Precedence: bulk X-Mailing-List: linux-pm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Convert the below bindings to json-schema 1) DA906{1,2} mfd bindings 2) DA906{1,2,3} onkey bindings 3) DA906{1,2,3} thermal bindings Also add fallback for DA9061 watchdog device and document DA9063 watchdog device. v1->v2: Ref : https://lore.kernel.org/all/20231201110840.37408-5-biju.das.jz@bp.renesas.com/ * Made as a separate series * DA9062 and DA9061 merged with DA9063 * Sorted the child devices * mfd,onkey and thermal are pointing to child bindings Biju Das (11): dt-bindings: watchdog: dlg,da9062-watchdog: Add fallback for DA9061 watchdog dt-bindings: watchdog: dlg,da9062-watchdog: Document DA9063 watchdog dt-bindings: input: Convert da906{1,2,3} onkey to json-schema dt-bindings: thermal: Convert da906{1,2} thermal to json-schema dt-bindings: mfd: dlg,da9063: Update watchdog property dt-bindings: mfd: dlg,da9063: Update onkey property dt-bindings: mfd: dlg,da9063: Sort child devices dt-bindings: mfd: da9062: Update watchdog description dt-bindings: mfd: da9062: Update onkey description dt-bindings: mfd: da9062: Update thermal description dt-bindings: mfd: dlg,da9063: Convert da9062 to json-schema .../bindings/input/da9062-onkey.txt | 47 ---- .../bindings/input/dlg,da9062-onkey.yaml | 61 +++++ .../devicetree/bindings/mfd/da9062.txt | 124 ---------- .../devicetree/bindings/mfd/dlg,da9063.yaml | 220 +++++++++++++++--- .../bindings/thermal/da9062-thermal.txt | 36 --- .../bindings/thermal/dlg,da9062-thermal.yaml | 58 +++++ .../watchdog/dlg,da9062-watchdog.yaml | 12 +- 7 files changed, 313 insertions(+), 245 deletions(-) delete mode 100644 Documentation/devicetree/bindings/input/da9062-onkey.txt create mode 100644 Documentation/devicetree/bindings/input/dlg,da9062-onkey.yaml delete mode 100644 Documentation/devicetree/bindings/mfd/da9062.txt delete mode 100644 Documentation/devicetree/bindings/thermal/da9062-thermal.txt create mode 100644 Documentation/devicetree/bindings/thermal/dlg,da9062-thermal.yaml Reviewed-by: Rob Herring