From patchwork Tue Nov 1 09:01:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Allen-KH Cheng X-Patchwork-Id: 620541 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 96391FA3747 for ; Tue, 1 Nov 2022 09:01:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230015AbiKAJBt (ORCPT ); Tue, 1 Nov 2022 05:01:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46940 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229492AbiKAJBq (ORCPT ); Tue, 1 Nov 2022 05:01:46 -0400 Received: from mailgw01.mediatek.com (unknown [60.244.123.138]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BC8FE60D8; Tue, 1 Nov 2022 02:01:39 -0700 (PDT) X-UUID: 405e77d4e6e740c59bfc61c99a703aa1-20221101 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mediatek.com; s=dk; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:Date:Subject:CC:To:From; bh=KajTHLzpEN0YFJj2S7xlPAotHDiov+2vzD/u1x7W78M=; b=J3x0PTp4PKtHBH56KxRfm+uCvHckB4dUzzDGPA9DLHX73cZUTEWaEi2X7TjXjw0eI6cXsztwOTj0ZB2hThsl7nNQuwy8Dtip/ZuRtEYYXAkDn+6WuF6Q1FlZYDBYXuZp3tEKibTEi3avhZVP92a2+GlWy3CVWNQIhN5qYlzUmOE=; X-CID-P-RULE: Release_Ham X-CID-O-INFO: VERSION:1.1.12, REQID:f3304fb1-0cfe-45f0-94de-7efa6d1bc89b, IP:0, U RL:0,TC:0,Content:-25,EDM:0,RT:0,SF:95,FILE:0,BULK:0,RULE:Release_Ham,ACTI ON:release,TS:70 X-CID-INFO: VERSION:1.1.12, REQID:f3304fb1-0cfe-45f0-94de-7efa6d1bc89b, IP:0, URL :0,TC:0,Content:-25,EDM:0,RT:0,SF:95,FILE:0,BULK:0,RULE:Spam_GS981B3D,ACTI ON:quarantine,TS:70 X-CID-META: VersionHash:62cd327, CLOUDID:82544481-3116-4fbc-b86b-83475c3df513, B ulkID:221101170129AUL700IQ,BulkQuantity:0,Recheck:0,SF:38|28|17|19|48,TC:n il,Content:0,EDM:-3,IP:nil,URL:1,File:nil,Bulk:nil,QS:nil,BEC:nil,COL:0 X-UUID: 405e77d4e6e740c59bfc61c99a703aa1-20221101 Received: from mtkmbs13n1.mediatek.inc [(172.21.101.193)] by mailgw01.mediatek.com (envelope-from ) (Generic MTA with TLSv1.2 ECDHE-RSA-AES256-GCM-SHA384 256/256) with ESMTP id 1626355597; Tue, 01 Nov 2022 17:01:26 +0800 Received: from mtkmbs13n2.mediatek.inc (172.21.101.108) by mtkmbs13n2.mediatek.inc (172.21.101.108) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.792.15; Tue, 1 Nov 2022 17:01:25 +0800 Received: from mtksdccf07.mediatek.inc (172.21.84.99) by mtkmbs13n2.mediatek.inc (172.21.101.73) with Microsoft SMTP Server id 15.2.792.15 via Frontend Transport; Tue, 1 Nov 2022 17:01:24 +0800 From: Allen-KH Cheng To: Wim Van Sebroeck , Guenter Roeck , Krzysztof Kozlowski , Matthias Brugger , Rob Herring CC: , , , , , , , , Allen-KH Cheng Subject: [PATCH v3 0/7] MediaTek watchdog: Convert mtk-wdt.txt to dt-schema Date: Tue, 1 Nov 2022 17:01:09 +0800 Message-ID: <20221101090116.27130-1-allen-kh.cheng@mediatek.com> X-Mailer: git-send-email 2.18.0 MIME-Version: 1.0 X-MTK: N Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Based on git/groeck/linux-staging.git, watchdog-next. We use [1] and [2] as references to send a new series. This series converts mtk-wdt.txt to dt-schema and contains - Fix watchdog compatibles for MT7986, MT8186, MT8188 and MT8195, - Fix the watchdog name of mt8516 - Add mt6795 and MT8173 watchdog compatible Changes since v2: - Drop Add-support-for-MT6795-Helio-X10-watchdog from series (merged) - Rebase to watchdog-next (for mt8188) Changes since v1: - Drop "items" for a single enumĀ· Changes since [1]: - Update the commit message with some details - Drop "timeout-sec: true" and use unevaluatedProperties [1] https://lore.kernel.org/all/20221005113517.70628-1-angelogioacchino.delregno@collabora.com/ [2] https://lore.kernel.org/all/20220422121017.23920-3-allen-kh.cheng@mediatek.com/ Allen-KH Cheng (3): arm64: dts: mediatek: mt7986: Fix watchdog compatible arm64: dts: mediatek: mt8516: Fix the watchdog node name dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT8173 AngeloGioacchino Del Regno (4): arm64: dts: mediatek: mt8186: Fix watchdog compatible arm64: dts: mediatek: mt8195: Fix watchdog compatible dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795 .../bindings/watchdog/mediatek,mtk-wdt.yaml | 80 +++++++++++++++++++ .../devicetree/bindings/watchdog/mtk-wdt.txt | 43 ---------- arch/arm64/boot/dts/mediatek/mt7986a.dtsi | 3 +- arch/arm64/boot/dts/mediatek/mt8186.dtsi | 3 +- arch/arm64/boot/dts/mediatek/mt8195.dtsi | 3 +- arch/arm64/boot/dts/mediatek/mt8516.dtsi | 2 +- 6 files changed, 84 insertions(+), 50 deletions(-) create mode 100644 Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml delete mode 100644 Documentation/devicetree/bindings/watchdog/mtk-wdt.txt