]> git.baikalelectronics.ru Git - kernel.git/commit
dt-bindings: phy: qcom-qusb2: Fix defaults
authorDouglas Anderson <dianders@chromium.org>
Thu, 23 Apr 2020 18:10:27 +0000 (11:10 -0700)
committerRob Herring <robh@kernel.org>
Fri, 24 Apr 2020 22:53:57 +0000 (17:53 -0500)
commit42e540aa4dce3ff5637f153c2bb08bb505ed22af
tree6f17c93aa6daa2b41bdbfce52150196e9ea76e15
parenteb9942a49452b75378a6da3ae86bbc5de8f43cd5
dt-bindings: phy: qcom-qusb2: Fix defaults

The defaults listed in the bindings don't match what the code is
actually doing.  Presumably existing users care more about keeping
existing behavior the same, so change the bindings to match the code
in Linux.

The "qcom,preemphasis-level" default has been wrong for quite a long
time (May 2018).  The other two were recently added.

As some evidence that these values are wrong, this is from the Linux
driver:
- qcom,preemphasis-level: sets "PORT_TUNE1", lower 2 bits.  Driver
  programs PORT_TUNE1 to 0x30 by default and (0x30 & 0x3) = 0.
- qcom,bias-ctrl-value: sets "PLL_BIAS_CONTROL_2", lower 6 bits.
  Driver programs PLL_BIAS_CONTROL_2 to 0x20 by default and (0x20 &
  0x3f) = 0x20 = 32.
- qcom,hsdisc-trim-value: sets "PORT_TUNE2", lower 2 bits.  Driver
  programs PORT_TUNE2 to 0x29 by default and (0x29 & 0x3) = 1.

Fixes: 7d9c31bc07d6 ("dt-bindings: phy: qcom-qusb2: Add support for overriding Phy tuning parameters")
Fixes: c70c074745e3 ("dt-bindings: phy-qcom-usb2: Add support to override tuning values")
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Rob Herring <robh@kernel.org>
Documentation/devicetree/bindings/phy/qcom,qusb2-phy.yaml