From nobody Tue Dec 2 02:17:28 2025 Received: from TWMBX01.aspeed.com (mail.aspeedtech.com [211.20.114.72]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5CC7432FA0B; Thu, 20 Nov 2025 11:12:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=211.20.114.72 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763637161; cv=none; b=N5Gy0rGE1Yo5DZOEr/ArA5XKkMBa/rDSEzivk0xPpNFa1vOxJYajTNetZU4kCQuQQ5MN/sBs5USaNonbJ5JugiU13SWjNB1MBldtmDSKQcHSdinbp3uRYJXVL0rnbzUwBW+mkBQhUKhZLm5rcwGOeFOoR60hs72ma6RAZFyTsxg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763637161; c=relaxed/simple; bh=jrpiq8xW/VHPB3RrV1Az+oFlae8Vnr8Mhyy66AqgzTc=; h=From:Date:Subject:MIME-Version:Content-Type:Message-ID:References: In-Reply-To:To:CC; b=eANhk7WQblApujqXvderHLwx+/Jg3KWReuCJlqLyzH48hQ1TUqkErPLgZXKQmG/7+WVY+2HrK0Nai1cp4GUaBiSRVIGTjdYy6ESnpdFtvm+p/r6FZ8N1wQ6YzTkHDPhznxbCRSCfiGwNx+QhfQph/TKBqzNrvZpx7yUMZ+FvvVc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=aspeedtech.com; spf=pass smtp.mailfrom=aspeedtech.com; arc=none smtp.client-ip=211.20.114.72 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=aspeedtech.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=aspeedtech.com Received: from TWMBX01.aspeed.com (192.168.0.62) by TWMBX01.aspeed.com (192.168.0.62) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1748.10; Thu, 20 Nov 2025 19:12:34 +0800 Received: from [127.0.1.1] (192.168.10.13) by TWMBX01.aspeed.com (192.168.0.62) with Microsoft SMTP Server id 15.2.1748.10 via Frontend Transport; Thu, 20 Nov 2025 19:12:34 +0800 From: Billy Tsai Date: Thu, 20 Nov 2025 19:12:31 +0800 Subject: [PATCH v3 1/2] dt-bindings: hwmon: Add AST2700 compatible Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-ID: <20251120-upstream_pwm_tach-v3-1-eaa2f9b300a2@aspeedtech.com> References: <20251120-upstream_pwm_tach-v3-0-eaa2f9b300a2@aspeedtech.com> In-Reply-To: <20251120-upstream_pwm_tach-v3-0-eaa2f9b300a2@aspeedtech.com> To: Guenter Roeck , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Joel Stanley , Andrew Jeffery , Billy Tsai CC: , , , , , X-Mailer: b4 0.14.3 X-Developer-Signature: v=1; a=ed25519-sha256; t=1763637154; l=1136; i=billy_tsai@aspeedtech.com; s=20251118; h=from:subject:message-id; bh=jrpiq8xW/VHPB3RrV1Az+oFlae8Vnr8Mhyy66AqgzTc=; b=M6A3kKIiiCGLB1Q6l96/zkUfNG6Ml7CYM8l6u6kb7CTnAN8GwRcGj+Bj6X8OtBaE20UAsPs6O 0lp+U3FB+LnBJBr+OGdp6nEuHnGVMLJzLrpZ2F8y3fqrLkU3wJr2gzn X-Developer-Key: i=billy_tsai@aspeedtech.com; a=ed25519; pk=/A8qvgZ6CPfnwKgT6/+k+nvXOkN477MshEGJvVdzeeQ= Adds support for the AST2700 PWM/Tach controller by extending the compatible string enumeration in the device tree binding. The AST2700 PWM/Tach hardware is compatible with the existing binding schema and requires no additional properties or modifications beyond the new compatible string. Signed-off-by: Billy Tsai Reviewed-by: Krzysztof Kozlowski --- Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yam= l b/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml index 9e5ed901ae54..851fb16ec7fa 100644 --- a/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml +++ b/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml @@ -18,8 +18,11 @@ description: | =20 properties: compatible: - enum: - - aspeed,ast2600-pwm-tach + oneOf: + - items: + - const: aspeed,ast2700-pwm-tach + - const: aspeed,ast2600-pwm-tach + - const: aspeed,ast2600-pwm-tach =20 reg: maxItems: 1 --=20 2.34.1