mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
ba08220aa8
* Move SoC peripherals into an SoC container node * Move serial enabling into board file (qcom-apq8074-dragonboard.dts) * Move spi pinctrl into board file * Cleanup cpu node to match binding spec, enable-method and compatible should be per cpu, not part of the container * Drop interrupts property from l2-cache node as its not part of the binding spec * Move timer node out of SoC container Signed-off-by: Kumar Gala <galak@codeaurora.org>
46 lines
689 B
Plaintext
46 lines
689 B
Plaintext
#include "qcom-msm8974.dtsi"
|
|
|
|
/ {
|
|
model = "Qualcomm APQ8074 Dragonboard";
|
|
compatible = "qcom,apq8074-dragonboard", "qcom,apq8074";
|
|
|
|
soc {
|
|
serial@f991e000 {
|
|
status = "ok";
|
|
};
|
|
|
|
sdhci@f9824900 {
|
|
bus-width = <8>;
|
|
non-removable;
|
|
status = "ok";
|
|
};
|
|
|
|
sdhci@f98a4900 {
|
|
cd-gpios = <&msmgpio 62 0x1>;
|
|
bus-width = <4>;
|
|
};
|
|
|
|
|
|
pinctrl@fd510000 {
|
|
spi8_default: spi8_default {
|
|
mosi {
|
|
pins = "gpio45";
|
|
function = "blsp_spi8";
|
|
};
|
|
miso {
|
|
pins = "gpio46";
|
|
function = "blsp_spi8";
|
|
};
|
|
cs {
|
|
pins = "gpio47";
|
|
function = "blsp_spi8";
|
|
};
|
|
clk {
|
|
pins = "gpio48";
|
|
function = "blsp_spi8";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|