Re: [PATCH v2 11/11] hwmon: (amc6821) Add support for pwm1_mode attribute

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 7/3/24 08:28, Quentin Schulz wrote:
Hi Guenter,

On 7/1/24 11:23 PM, Guenter Roeck wrote:
AMC6821 supports configuring if a fan is DC or PWM controlled.
Add support for the pwm1_mode attribute to make it runtime configurable.

Signed-off-by: Guenter Roeck <linux@xxxxxxxxxxxx>
---
v2: New patch

  Documentation/hwmon/amc6821.rst |  1 +
  drivers/hwmon/amc6821.c         | 16 +++++++++++++++-
  2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/Documentation/hwmon/amc6821.rst b/Documentation/hwmon/amc6821.rst
index 96e604c5ea8e..dbd544cd1160 100644
--- a/Documentation/hwmon/amc6821.rst
+++ b/Documentation/hwmon/amc6821.rst
@@ -58,6 +58,7 @@ pwm1_enable        rw    regulator mode, 1=open loop, 2=fan controlled
                  remote-sensor temperature,
                  4=fan controlled by target rpm set with
                  fan1_target attribute.
+pwm1_mode        rw    Fan duty control mode (0=DC, 1=PWM)
  pwm1_auto_channels_temp ro    1 if pwm_enable==2, 3 if pwm_enable==3
  pwm1_auto_point1_pwm    ro    Hardwired to 0, shared for both
                  temperature channels.
diff --git a/drivers/hwmon/amc6821.c b/drivers/hwmon/amc6821.c
index 5a3c089ae06f..98a45fe529e0 100644
--- a/drivers/hwmon/amc6821.c
+++ b/drivers/hwmon/amc6821.c
@@ -317,6 +317,12 @@ static int amc6821_pwm_read(struct device *dev, u32 attr, long *val)
              break;
          }
          return 0;
+    case hwmon_pwm_mode:
+        err = regmap_read(regmap, AMC6821_REG_CONF2, &regval);
+        if (err)
+            return err;
+        *val = !!(regval & AMC6821_CONF2_TACH_MODE);
+        return 0;
      case hwmon_pwm_auto_channels_temp:
          err = regmap_read(regmap, AMC6821_REG_CONF1, &regval);
          if (err)
@@ -372,6 +378,13 @@ static int amc6821_pwm_write(struct device *dev, u32 attr, long val)
          return regmap_update_bits(regmap, AMC6821_REG_CONF1,
                        AMC6821_CONF1_FDRC0 | AMC6821_CONF1_FDRC1,
                        mode);
+    case hwmon_pwm_mode:
+        if (val < 0 || val > 1)
+            return -EINVAL;
+        return regmap_update_bits(regmap, AMC6821_REG_CONF1,

Wrong register here, should be AMC6821_REG_CONF2.


Oops. I had a bug in my test script, and thanks to that it failed to report the problem.

Thanks for noticing!
Guenter





[Index of Archives]     [LM Sensors]     [Linux Sound]     [ALSA Users]     [ALSA Devel]     [Linux Audio Users]     [Linux Media]     [Kernel]     [Gimp]     [Yosemite News]     [Linux Media]

  Powered by Linux