summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko@sntech.de>2026-01-04 20:33:10 +0300
committerLee Jones <lee@kernel.org>2026-01-22 17:23:32 +0300
commita212772791d7bb44440d60485bd1102fbedb0bb1 (patch)
treeb3939426542e22612a3d1ce52851e63a5f6f40c6
parent321c8fa2b6c8475634af246c6b2d51c31dbb60aa (diff)
downloadlinux-a212772791d7bb44440d60485bd1102fbedb0bb1.tar.xz
mfd: qnap-mcu: Add driver data for TS133 variant
Add the TS133 compatible and affiliated driver data to qnap-mcu. The TS133 is mostly similar to the TS233/TS433, except only having one drive and no USB-LED. The fan pwm-limits from the vendor-configuration also are the same as for the TS233/TS433 variants. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Link: https://patch.msgid.link/20260104173310.2685852-3-heiko@sntech.de Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r--drivers/mfd/qnap-mcu.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/mfd/qnap-mcu.c b/drivers/mfd/qnap-mcu.c
index f81c69f22254..8de974ddac3e 100644
--- a/drivers/mfd/qnap-mcu.c
+++ b/drivers/mfd/qnap-mcu.c
@@ -316,6 +316,14 @@ static int qnap_mcu_power_off(struct sys_off_data *data)
return NOTIFY_DONE;
}
+static const struct qnap_mcu_variant qnap_ts133_mcu = {
+ .baud_rate = 115200,
+ .num_drives = 1,
+ .fan_pwm_min = 51, /* Specified in original model.conf */
+ .fan_pwm_max = 255,
+ .usb_led = false,
+};
+
static const struct qnap_mcu_variant qnap_ts233_mcu = {
.baud_rate = 115200,
.num_drives = 2,
@@ -397,6 +405,7 @@ static int qnap_mcu_probe(struct serdev_device *serdev)
}
static const struct of_device_id qnap_mcu_dt_ids[] = {
+ { .compatible = "qnap,ts133-mcu", .data = &qnap_ts133_mcu },
{ .compatible = "qnap,ts233-mcu", .data = &qnap_ts233_mcu },
{ .compatible = "qnap,ts433-mcu", .data = &qnap_ts433_mcu },
{ /* sentinel */ }