diff options
author | Bhadram Varka <vbhadram@nvidia.com> | 2018-05-02 18:14:40 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2018-05-03 12:48:16 +0300 |
commit | 9df50ba76ac1485b844beffa1f3f5d9659d9cdaf (patch) | |
tree | f111022056a1a1b6c3ea8be509d0582b56feea29 /arch/arm64 | |
parent | 60cc43fc888428bb2f18f08997432d426a243338 (diff) | |
download | linux-9df50ba76ac1485b844beffa1f3f5d9659d9cdaf.tar.xz |
arm64: tegra: Make BCM89610 PHY interrupt as active low
Need to configure PHY interrupt as active low for P3310 Tegra186
platform otherwise it results in spurious interrupts.
This issue wasn't seen before because the generic PHY driver without
interrupt support was used.
Signed-off-by: Bhadram Varka <vbhadram@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi b/arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi index a8baad7b80df..13f57fff1477 100644 --- a/arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi +++ b/arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi @@ -46,7 +46,7 @@ compatible = "ethernet-phy-ieee802.3-c22"; reg = <0x0>; interrupt-parent = <&gpio>; - interrupts = <TEGRA_MAIN_GPIO(M, 5) IRQ_TYPE_LEVEL_HIGH>; + interrupts = <TEGRA_MAIN_GPIO(M, 5) IRQ_TYPE_LEVEL_LOW>; }; }; }; |