arm64: zynqmp: Fix pwm-fan polarity

The correct operating mode for the fan is inversed (1). The previous pwm
driver implementation had a bug and the polarity information was propagated
incorrectly to the kernel. The normal (0) polarity specified in the device
tree was incorrectly clearing the polarity bit in the counter control
register. After the bug fix, setting the polarity to inversed (1) in the
device tree will clear the polarity bit.
Also provide label for custom description based on this SOM.

Signed-off-by: Vishal Patel <vishal.patel@amd.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/e6dc9ce1e0b97c9d9b073c323cc94a5d7a88b94a.1752835502.git.michal.simek@amd.com
This commit is contained in:
Vishal Patel 2025-07-18 12:45:10 +02:00 committed by Michal Simek
parent 0f961857d3
commit 7cf18a364e

View File

@ -90,10 +90,10 @@ ds36-led {
};
};
pwm-fan {
pwm_fan: pwm-fan {
compatible = "pwm-fan";
status = "okay";
pwms = <&ttc0 2 40000 0>;
pwms = <&ttc0 2 40000 1>;
};
};