Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

msm8909: add device tree for zte sapphire #379

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions arch/arm/boot/dts/qcom/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dtb-$(CONFIG_ARCH_QCOM) += \
qcom-msm8909-acer-t01.dtb \
qcom-msm8909-nokia-leo.dtb \
qcom-msm8909-nokia-sparkler.dtb \
qcom-msm8909-zte-sapphire.dtb \
qcom-msm8916-samsung-e5.dtb \
qcom-msm8916-samsung-e7.dtb \
qcom-msm8916-samsung-grandmax.dtb \
Expand Down
203 changes: 203 additions & 0 deletions arch/arm/boot/dts/qcom/qcom-msm8909-zte-sapphire.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
// SPDX-License-Identifier: GPL-2.0-only

/dts-v1/;

#include "qcom-msm8909-pm8909.dtsi"

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include <dt-bindings/interrupt-controller/irq.h>
#include <dt-bindings/leds/common.h>
#include <dt-bindings/pinctrl/qcom,pmic-mpp.h>

/ {
model = "ZTE sapphire";
compatible = "zte,sapphire", "qcom,msm8909";
chassis-type = "handset";

aliases {
serial0 = &blsp_uart1;
};

chosen {
#address-cells = <1>;
#size-cells = <1>;
ranges;
stdout-path = "serial0";

framebuffer@83200036 {
compatible = "simple-framebuffer";
reg = <0x83200036 (480 * 800 * 3)>;

width = <480>;
height = <800>;
stride = <(480 * 3)>;
format = "r8g8b8";

power-domains = <&gcc MDSS_GDSC>;

clocks = <&gcc GCC_MDSS_AHB_CLK>,
<&gcc GCC_MDSS_AXI_CLK>,
<&gcc GCC_MDSS_VSYNC_CLK>,
<&gcc GCC_MDSS_MDP_CLK>,
<&gcc GCC_MDSS_BYTE0_CLK>,
<&gcc GCC_MDSS_PCLK0_CLK>,
<&gcc GCC_MDSS_ESC0_CLK>;
};
};

reserved-memory {
cont_splash_mem: memory@83000000 {
reg = <0x83000000 0xc00000>;
no-map;
};
};

backlight: backlight {
compatible = "pwm-backlight";
pwms = <&pm8909_pwm 0 100000>;

brightness-levels = <0 255>;
num-interpolated-steps = <255>;
default-brightness-level = <255>;
};

};

&blsp_uart1 {
status = "okay";
};

&pm8909_vib {
status = "okay";
};

&sdhc_1 {
status = "okay";
};

&sdhc_2 {
non-removable;
status = "okay";
};

&pm8909_usbin {
status = "okay";
};

&usb {
extcon = <&pm8909_usbin>;
dr_mode = "peripheral";
status = "okay";
};

&usb_hs_phy {
extcon = <&pm8909_usbin>;
};

&wcnss {
status = "okay";
};

&wcnss_iris {
compatible = "qcom,wcn3620";
};

&smd_rpm_regulators {
s2 {
regulator-min-microvolt = <1850000>;
regulator-max-microvolt = <1850000>;
};

l1 {
regulator-min-microvolt = <1000000>;
regulator-max-microvolt = <1000000>;
};

l2 {
regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <1200000>;
};

l4 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
};

l5 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
};

l6 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
};

l7 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
};

l8 {
regulator-min-microvolt = <2850000>;
regulator-max-microvolt = <2900000>;
};

l9 {
regulator-min-microvolt = <3000000>;
regulator-max-microvolt = <3300000>;
};

l10 {
regulator-min-microvolt = <1225000>;
regulator-max-microvolt = <1300000>;
};

l11 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <2950000>;
regulator-system-load = <200000>;
regulator-allow-set-load;
};

l12 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <2950000>;
};

l13 {
regulator-min-microvolt = <3075000>;
regulator-max-microvolt = <3075000>;
};

l14 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <3000000>;
};

l15 {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <3000000>;
};

l17 {
regulator-min-microvolt = <2850000>;
regulator-max-microvolt = <2850000>;
};

l18 {
regulator-min-microvolt = <2700000>;
regulator-max-microvolt = <2700000>;
};
};

&pm8909_mpps {
pwm_out: mpp2-state {
pins = "mpp2";
function = "digital";
power-source = <PM8916_MPP_VPH>;
output-low;
qcom,dtest = <1>;
};
};
Loading