From patchwork Wed Aug 2 03:32:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Huqiang Qin X-Patchwork-Id: 709540 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 63A6DC001DF for ; Wed, 2 Aug 2023 03:33:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232053AbjHBDdr (ORCPT ); Tue, 1 Aug 2023 23:33:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59706 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232078AbjHBDd1 (ORCPT ); Tue, 1 Aug 2023 23:33:27 -0400 Received: from mail-sh.amlogic.com (mail-sh.amlogic.com [58.32.228.43]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B3D30127; Tue, 1 Aug 2023 20:32:46 -0700 (PDT) Received: from rd02-sz.amlogic.software (10.28.11.83) by mail-sh.amlogic.com (10.18.11.5) with Microsoft SMTP Server id 15.1.2507.13; Wed, 2 Aug 2023 11:32:27 +0800 From: Huqiang Qin To: , , , , , , , , CC: , , , , , Huqiang Qin Subject: [PATCH V2 0/4] Add watchdog support for Amlogic-T7 SoCs Date: Wed, 2 Aug 2023 11:32:18 +0800 Message-ID: <20230802033222.4024946-1-huqiang.qin@amlogic.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 X-Originating-IP: [10.28.11.83] Precedence: bulk List-ID: X-Mailing-List: linux-watchdog@vger.kernel.org Based on the original Amlogic-GXBB watchdog driver, support for Amlogic-T7 watchdog is added. [PATCH 1/4]: V1 -> V2: Unchanged. [PATCH 2/4]: V1 -> V2: Rename rst_shift to rst and use the BIT() macro to build its initial value. [PATCH 3/4]: V1 -> V2: Use the BIT() macro to build rst initial value. [PATCH 4/4]: V1 -> V2: Unchanged. Huqiang Qin (4): dt-bindings: watchdog: Add support for Amlogic-T7 SoCs watchdog: Add a new struct for Amlogic-GXBB driver watchdog: Add support for Amlogic-T7 SoCs arm64: dts: Add watchdog node for Amlogic-T7 SoCs .../watchdog/amlogic,meson-gxbb-wdt.yaml | 1 + arch/arm64/boot/dts/amlogic/amlogic-t7.dtsi | 6 ++++++ drivers/watchdog/meson_gxbb_wdt.c | 21 ++++++++++++++++--- 3 files changed, 25 insertions(+), 3 deletions(-) base-commit: 6f048cc7a635b8736b4c7ae0e5230a92e3e648eb Reviewed-by: Dmitry Rokosov