diff options
author | Stephen Boyd | 2015-06-16 22:31:15 +0200 |
---|---|---|
committer | Andy Gross | 2015-07-23 23:34:12 +0200 |
commit | 724cde479dafcd4a6ee1e39e820ac94c0c7c04c5 (patch) | |
tree | 76fcfaca1e99246e7b8247feb4f46d37f44082e2 /arch/arm/boot/dts/qcom-msm8960.dtsi | |
parent | ARM: dts: qcom: Add MSM8960 CDP RPM regulators (diff) | |
download | kernel-qcow2-linux-724cde479dafcd4a6ee1e39e820ac94c0c7c04c5.tar.gz kernel-qcow2-linux-724cde479dafcd4a6ee1e39e820ac94c0c7c04c5.tar.xz kernel-qcow2-linux-724cde479dafcd4a6ee1e39e820ac94c0c7c04c5.zip |
ARM: dts: qcom: Add ks8851 node for wired ethernet
The micrel ks8851 device is present on MSM8960 CDP boards. It is
connected to two regulators, one controlled via a gpio and
another controlled via the RPM. Add the gsbi, spi, gpio
regulator, and micrel ks8851 nodes so that ethernet works
properly.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Andy Gross <agross@codeaurora.org>
Diffstat (limited to 'arch/arm/boot/dts/qcom-msm8960.dtsi')
-rw-r--r-- | arch/arm/boot/dts/qcom-msm8960.dtsi | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/qcom-msm8960.dtsi b/arch/arm/boot/dts/qcom-msm8960.dtsi index fcf4bb5f9c3f..2096a94c9b52 100644 --- a/arch/arm/boot/dts/qcom-msm8960.dtsi +++ b/arch/arm/boot/dts/qcom-msm8960.dtsi @@ -271,5 +271,30 @@ compatible = "qcom,tcsr-msm8960", "syscon"; reg = <0x1a400000 0x100>; }; + + gsbi@16000000 { + compatible = "qcom,gsbi-v1.0.0"; + cell-index = <1>; + reg = <0x16000000 0x100>; + clocks = <&gcc GSBI1_H_CLK>; + clock-names = "iface"; + #address-cells = <1>; + #size-cells = <1>; + ranges; + + spi@16080000 { + compatible = "qcom,spi-qup-v1.1.1"; + #address-cells = <1>; + #size-cells = <0>; + reg = <0x16080000 0x1000>; + interrupts = <0 147 0>; + spi-max-frequency = <24000000>; + cs-gpios = <&msmgpio 8 0>; + + clocks = <&gcc GSBI1_QUP_CLK>, <&gcc GSBI1_H_CLK>; + clock-names = "core", "iface"; + status = "disabled"; + }; + }; }; }; |