forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'qcom-dt-for-3.18-3' of git://git.kernel.org/pub/scm/linux/…
…kernel/git/galak/linux-qcom into fixes Merge "qcom DT changes for v3.18-3" from Kumar Gala: Qualcomm ARM Based Device Tree Updates for v3.18-3 * Added Board support for CM-QS600 and Sony Xperia Z1 phone * Added SATA support on IPQ8064/AP148 * tag 'qcom-dt-for-3.18-3' of git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom: ARM: dts: qcom: add CM-QS600 board ARM: dts: qcom: Add initial DTS file for Sony Xperia Z1 phone ARM: dts: qcom: Add SATA support on IPQ8064/AP148
- Loading branch information
Showing
6 changed files
with
121 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#include "qcom-apq8064-v2.0.dtsi" | ||
|
||
/ { | ||
model = "CompuLab CM-QS600"; | ||
compatible = "qcom,apq8064-cm-qs600", "qcom,apq8064"; | ||
|
||
soc { | ||
pinctrl@800000 { | ||
i2c1_pins: i2c1 { | ||
mux { | ||
pins = "gpio20", "gpio21"; | ||
function = "gsbi1"; | ||
}; | ||
}; | ||
}; | ||
|
||
gsbi@12440000 { | ||
status = "okay"; | ||
qcom,mode = <GSBI_PROT_I2C>; | ||
|
||
i2c@12460000 { | ||
status = "okay"; | ||
clock-frequency = <200000>; | ||
pinctrl-0 = <&i2c1_pins>; | ||
pinctrl-names = "default"; | ||
|
||
eeprom: eeprom@50 { | ||
compatible = "24c02"; | ||
reg = <0x50>; | ||
pagesize = <32>; | ||
}; | ||
}; | ||
}; | ||
|
||
gsbi@16600000 { | ||
status = "ok"; | ||
qcom,mode = <GSBI_PROT_I2C_UART>; | ||
serial@16640000 { | ||
status = "ok"; | ||
}; | ||
}; | ||
|
||
amba { | ||
/* eMMC */ | ||
sdcc1: sdcc@12400000 { | ||
status = "okay"; | ||
}; | ||
|
||
/* External micro SD card */ | ||
sdcc3: sdcc@12180000 { | ||
status = "okay"; | ||
}; | ||
/* WLAN */ | ||
sdcc4: sdcc@121c0000 { | ||
status = "okay"; | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,5 +81,13 @@ | |
}; | ||
}; | ||
}; | ||
|
||
sata-phy@1b400000 { | ||
status = "ok"; | ||
}; | ||
|
||
sata@29000000 { | ||
status = "ok"; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "qcom-msm8974.dtsi" | ||
|
||
/ { | ||
model = "Sony Xperia Z1"; | ||
compatible = "sony,xperia-honami", "qcom,msm8974"; | ||
|
||
memory@0 { | ||
reg = <0 0x40000000>, <0x40000000 0x40000000>; | ||
device_type = "memory"; | ||
}; | ||
}; | ||
|
||
&soc { | ||
serial@f991e000 { | ||
status = "ok"; | ||
}; | ||
}; |