mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
Add Device Tree binding document for the generic PWM based tachometer. Bug 3621819 Change-Id: Ic8184e3e86d8708fd776d276e4d9994e4103b5ed Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2703730 GVS: Gerrit_Virtual_Submit
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/hwmon/generic-pwm-tachometer.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Generic PWM based tachometer HW monitor driver
|
|
|
|
maintainers:
|
|
- Laxman Dewangan <ldewangan@nvidia.com>
|
|
|
|
description: |
|
|
Generic PWM based tachometer driver which captures the PWM signal and reports
|
|
the speed of the device which generates the PWM signal. This helps in monitor
|
|
the speed of fan.
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- generic-pwm-tachometer
|
|
|
|
pwms:
|
|
maxItems: 1
|
|
description: |
|
|
This property contains the phandle of the PWM controller which capture the
|
|
PWM signal.
|
|
|
|
required:
|
|
- compatible
|
|
- pwms
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
tegra_tachometer: tachometer@39c0000 {
|
|
reg = <0x39c0000 0x0>;
|
|
#pwm-cells = <2>;
|
|
/* Other properties of tachometer */
|
|
};
|
|
|
|
generic_pwm_tachometer {
|
|
compatible = "generic-pwm-tachometer";
|
|
pwms = <&tegra_tachometer 0 1000000>;
|
|
};
|
|
...
|