* [PATCH v2 0/2] Add "aspeed,ast2700-pwm-tach" compatible string
@ 2025-11-18 9:11 Billy Tsai
2025-11-18 9:11 ` [PATCH v2 1/2] dt-bindings: hwmon: Add AST2700 compatible Billy Tsai
2025-11-18 9:11 ` [PATCH v2 2/2] hwmon: (aspeed-g6-pwm-tach): Add AST2700 compatible string Billy Tsai
0 siblings, 2 replies; 4+ messages in thread
From: Billy Tsai @ 2025-11-18 9:11 UTC (permalink / raw)
To: Guenter Roeck, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Joel Stanley, Andrew Jeffery, Billy Tsai
Cc: linux-hwmon, devicetree, linux-arm-kernel, linux-aspeed,
linux-kernel, BMC-SW
Adds the "aspeed,ast2700-pwm-tach" compatible string, which provides
fallback support for the previous version of the hardware design, to
the PWM/TACH dt-binding and driver.
---
Changes in v2:
- Reworked the binding to use a two-level compatible list with
"aspeed,ast2600-pwm-tach" as the fallback.
- Link to v1: https://lore.kernel.org/r/20251104055112.2679087-1-billy_tsai@aspeedtech.com
---
Signed-off-by: Billy Tsai <billy_tsai@aspeedtech.com>
---
Billy Tsai (2):
dt-bindings: hwmon: Add AST2700 compatible
hwmon: (aspeed-g6-pwm-tach): Add AST2700 compatible string
.../devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml | 10 +++++++---
drivers/hwmon/aspeed-g6-pwm-tach.c | 3 +++
2 files changed, 10 insertions(+), 3 deletions(-)
---
base-commit: e7c375b181600caf135cfd03eadbc45eb530f2cb
change-id: 20251118-upstream_pwm_tach-57fba779ce84
Best regards,
--
Billy Tsai <billy_tsai@aspeedtech.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/2] dt-bindings: hwmon: Add AST2700 compatible
2025-11-18 9:11 [PATCH v2 0/2] Add "aspeed,ast2700-pwm-tach" compatible string Billy Tsai
@ 2025-11-18 9:11 ` Billy Tsai
2025-11-19 7:20 ` Krzysztof Kozlowski
2025-11-18 9:11 ` [PATCH v2 2/2] hwmon: (aspeed-g6-pwm-tach): Add AST2700 compatible string Billy Tsai
1 sibling, 1 reply; 4+ messages in thread
From: Billy Tsai @ 2025-11-18 9:11 UTC (permalink / raw)
To: Guenter Roeck, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Joel Stanley, Andrew Jeffery, Billy Tsai
Cc: linux-hwmon, devicetree, linux-arm-kernel, linux-aspeed,
linux-kernel, BMC-SW
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 <billy_tsai@aspeedtech.com>
---
.../devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml b/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml
index 9e5ed901ae54..8b579321915f 100644
--- a/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml
+++ b/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml
@@ -18,9 +18,13 @@ description: |
properties:
compatible:
- enum:
- - aspeed,ast2600-pwm-tach
-
+ oneOf:
+ # AST2700 with fallback to AST2600
+ - items:
+ - const: aspeed,ast2700-pwm-tach
+ - const: aspeed,ast2600-pwm-tach
+ # Only AST2600
+ - const: aspeed,ast2600-pwm-tach
reg:
maxItems: 1
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] hwmon: (aspeed-g6-pwm-tach): Add AST2700 compatible string
2025-11-18 9:11 [PATCH v2 0/2] Add "aspeed,ast2700-pwm-tach" compatible string Billy Tsai
2025-11-18 9:11 ` [PATCH v2 1/2] dt-bindings: hwmon: Add AST2700 compatible Billy Tsai
@ 2025-11-18 9:11 ` Billy Tsai
1 sibling, 0 replies; 4+ messages in thread
From: Billy Tsai @ 2025-11-18 9:11 UTC (permalink / raw)
To: Guenter Roeck, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Joel Stanley, Andrew Jeffery, Billy Tsai
Cc: linux-hwmon, devicetree, linux-arm-kernel, linux-aspeed,
linux-kernel, BMC-SW
Extends device tree support to include the AST2700 chip variant by
adding its compatible string to the device match table.
The AST2700 PWM/TACH hardware is compatible with the existing driver
implementation used for AST2600.
Signed-off-by: Billy Tsai <billy_tsai@aspeedtech.com>
---
drivers/hwmon/aspeed-g6-pwm-tach.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/hwmon/aspeed-g6-pwm-tach.c b/drivers/hwmon/aspeed-g6-pwm-tach.c
index 4174b129d1fc..44e1ecba205d 100644
--- a/drivers/hwmon/aspeed-g6-pwm-tach.c
+++ b/drivers/hwmon/aspeed-g6-pwm-tach.c
@@ -528,6 +528,9 @@ static const struct of_device_id aspeed_pwm_tach_match[] = {
{
.compatible = "aspeed,ast2600-pwm-tach",
},
+ {
+ .compatible = "aspeed,ast2700-pwm-tach",
+ },
{},
};
MODULE_DEVICE_TABLE(of, aspeed_pwm_tach_match);
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: hwmon: Add AST2700 compatible
2025-11-18 9:11 ` [PATCH v2 1/2] dt-bindings: hwmon: Add AST2700 compatible Billy Tsai
@ 2025-11-19 7:20 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-11-19 7:20 UTC (permalink / raw)
To: Billy Tsai
Cc: Guenter Roeck, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Joel Stanley, Andrew Jeffery, linux-hwmon, devicetree,
linux-arm-kernel, linux-aspeed, linux-kernel, BMC-SW
On Tue, Nov 18, 2025 at 05:11:53PM +0800, Billy Tsai wrote:
> 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 <billy_tsai@aspeedtech.com>
> ---
> .../devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml b/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml
> index 9e5ed901ae54..8b579321915f 100644
> --- a/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml
> +++ b/Documentation/devicetree/bindings/hwmon/aspeed,g6-pwm-tach.yaml
> @@ -18,9 +18,13 @@ description: |
>
> properties:
> compatible:
> - enum:
> - - aspeed,ast2600-pwm-tach
> -
> + oneOf:
> + # AST2700 with fallback to AST2600
Drop the comments, useless and redundant. We can read the schema.
Inflating code with obvious comments is not making it better.
> + - items:
> + - const: aspeed,ast2700-pwm-tach
> + - const: aspeed,ast2600-pwm-tach
> + # Only AST2600
> + - const: aspeed,ast2600-pwm-tach
And why are you removing blank line?
> reg:
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-11-19 7:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-18 9:11 [PATCH v2 0/2] Add "aspeed,ast2700-pwm-tach" compatible string Billy Tsai
2025-11-18 9:11 ` [PATCH v2 1/2] dt-bindings: hwmon: Add AST2700 compatible Billy Tsai
2025-11-19 7:20 ` Krzysztof Kozlowski
2025-11-18 9:11 ` [PATCH v2 2/2] hwmon: (aspeed-g6-pwm-tach): Add AST2700 compatible string Billy Tsai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).