1*0e8011faSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only 2*0e8011faSEmmanuel Vadot 3*0e8011faSEmmanuel Vadot/dts-v1/; 4*0e8011faSEmmanuel Vadot 5*0e8011faSEmmanuel Vadot#include "msm8916-pm8916.dtsi" 6*0e8011faSEmmanuel Vadot 7*0e8011faSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 8*0e8011faSEmmanuel Vadot 9*0e8011faSEmmanuel Vadot/ { 10*0e8011faSEmmanuel Vadot model = "LG Leon LTE"; 11*0e8011faSEmmanuel Vadot compatible = "lg,c50", "qcom,msm8916"; 12*0e8011faSEmmanuel Vadot chassis-type = "handset"; 13*0e8011faSEmmanuel Vadot 14*0e8011faSEmmanuel Vadot aliases { 15*0e8011faSEmmanuel Vadot mmc0 = &sdhc_1; /* eMMC */ 16*0e8011faSEmmanuel Vadot mmc1 = &sdhc_2; /* SD card */ 17*0e8011faSEmmanuel Vadot serial0 = &blsp_uart2; 18*0e8011faSEmmanuel Vadot }; 19*0e8011faSEmmanuel Vadot 20*0e8011faSEmmanuel Vadot chosen { 21*0e8011faSEmmanuel Vadot stdout-path = "serial0"; 22*0e8011faSEmmanuel Vadot }; 23*0e8011faSEmmanuel Vadot 24*0e8011faSEmmanuel Vadot gpio-keys { 25*0e8011faSEmmanuel Vadot compatible = "gpio-keys"; 26*0e8011faSEmmanuel Vadot 27*0e8011faSEmmanuel Vadot pinctrl-0 = <&gpio_keys_default>; 28*0e8011faSEmmanuel Vadot pinctrl-names = "default"; 29*0e8011faSEmmanuel Vadot 30*0e8011faSEmmanuel Vadot label = "GPIO Buttons"; 31*0e8011faSEmmanuel Vadot 32*0e8011faSEmmanuel Vadot volume-up-button { 33*0e8011faSEmmanuel Vadot label = "Volume Up"; 34*0e8011faSEmmanuel Vadot gpios = <&tlmm 108 GPIO_ACTIVE_LOW>; 35*0e8011faSEmmanuel Vadot linux,code = <KEY_VOLUMEUP>; 36*0e8011faSEmmanuel Vadot }; 37*0e8011faSEmmanuel Vadot 38*0e8011faSEmmanuel Vadot volume-down-button { 39*0e8011faSEmmanuel Vadot label = "Volume Down"; 40*0e8011faSEmmanuel Vadot gpios = <&tlmm 107 GPIO_ACTIVE_LOW>; 41*0e8011faSEmmanuel Vadot linux,code = <KEY_VOLUMEDOWN>; 42*0e8011faSEmmanuel Vadot }; 43*0e8011faSEmmanuel Vadot }; 44*0e8011faSEmmanuel Vadot 45*0e8011faSEmmanuel Vadot reg_sd_vmmc: regulator-sdcard-vmmc { 46*0e8011faSEmmanuel Vadot compatible = "regulator-fixed"; 47*0e8011faSEmmanuel Vadot regulator-name = "sdcard-vmmc"; 48*0e8011faSEmmanuel Vadot regulator-min-microvolt = <2950000>; 49*0e8011faSEmmanuel Vadot regulator-max-microvolt = <2950000>; 50*0e8011faSEmmanuel Vadot 51*0e8011faSEmmanuel Vadot gpio = <&tlmm 60 GPIO_ACTIVE_HIGH>; 52*0e8011faSEmmanuel Vadot enable-active-high; 53*0e8011faSEmmanuel Vadot 54*0e8011faSEmmanuel Vadot startup-delay-us = <5000>; 55*0e8011faSEmmanuel Vadot 56*0e8011faSEmmanuel Vadot pinctrl-0 = <&sd_vmmc_en_default>; 57*0e8011faSEmmanuel Vadot pinctrl-names = "default"; 58*0e8011faSEmmanuel Vadot }; 59*0e8011faSEmmanuel Vadot}; 60*0e8011faSEmmanuel Vadot 61*0e8011faSEmmanuel Vadot&blsp_uart2 { 62*0e8011faSEmmanuel Vadot status = "okay"; 63*0e8011faSEmmanuel Vadot}; 64*0e8011faSEmmanuel Vadot 65*0e8011faSEmmanuel Vadot&pm8916_usbin { 66*0e8011faSEmmanuel Vadot status = "okay"; 67*0e8011faSEmmanuel Vadot}; 68*0e8011faSEmmanuel Vadot 69*0e8011faSEmmanuel Vadot&pm8916_vib { 70*0e8011faSEmmanuel Vadot status = "okay"; 71*0e8011faSEmmanuel Vadot}; 72*0e8011faSEmmanuel Vadot 73*0e8011faSEmmanuel Vadot&sdhc_1 { 74*0e8011faSEmmanuel Vadot status = "okay"; 75*0e8011faSEmmanuel Vadot}; 76*0e8011faSEmmanuel Vadot 77*0e8011faSEmmanuel Vadot&sdhc_2 { 78*0e8011faSEmmanuel Vadot vmmc-supply = <®_sd_vmmc>; 79*0e8011faSEmmanuel Vadot 80*0e8011faSEmmanuel Vadot pinctrl-0 = <&sdc2_default &sdc2_cd_default>; 81*0e8011faSEmmanuel Vadot pinctrl-1 = <&sdc2_sleep &sdc2_cd_default>; 82*0e8011faSEmmanuel Vadot pinctrl-names = "default", "sleep"; 83*0e8011faSEmmanuel Vadot 84*0e8011faSEmmanuel Vadot cd-gpios = <&tlmm 38 GPIO_ACTIVE_HIGH>; 85*0e8011faSEmmanuel Vadot 86*0e8011faSEmmanuel Vadot status = "okay"; 87*0e8011faSEmmanuel Vadot}; 88*0e8011faSEmmanuel Vadot 89*0e8011faSEmmanuel Vadot&usb { 90*0e8011faSEmmanuel Vadot dr_mode = "peripheral"; 91*0e8011faSEmmanuel Vadot extcon = <&pm8916_usbin>; 92*0e8011faSEmmanuel Vadot status = "okay"; 93*0e8011faSEmmanuel Vadot}; 94*0e8011faSEmmanuel Vadot 95*0e8011faSEmmanuel Vadot&usb_hs_phy { 96*0e8011faSEmmanuel Vadot extcon = <&pm8916_usbin>; 97*0e8011faSEmmanuel Vadot}; 98*0e8011faSEmmanuel Vadot 99*0e8011faSEmmanuel Vadot&venus { 100*0e8011faSEmmanuel Vadot status = "okay"; 101*0e8011faSEmmanuel Vadot}; 102*0e8011faSEmmanuel Vadot 103*0e8011faSEmmanuel Vadot&venus_mem { 104*0e8011faSEmmanuel Vadot status = "okay"; 105*0e8011faSEmmanuel Vadot}; 106*0e8011faSEmmanuel Vadot 107*0e8011faSEmmanuel Vadot&wcnss { 108*0e8011faSEmmanuel Vadot status = "okay"; 109*0e8011faSEmmanuel Vadot}; 110*0e8011faSEmmanuel Vadot 111*0e8011faSEmmanuel Vadot&wcnss_iris { 112*0e8011faSEmmanuel Vadot compatible = "qcom,wcn3620"; 113*0e8011faSEmmanuel Vadot}; 114*0e8011faSEmmanuel Vadot 115*0e8011faSEmmanuel Vadot&wcnss_mem { 116*0e8011faSEmmanuel Vadot status = "okay"; 117*0e8011faSEmmanuel Vadot}; 118*0e8011faSEmmanuel Vadot 119*0e8011faSEmmanuel Vadot&tlmm { 120*0e8011faSEmmanuel Vadot gpio_keys_default: gpio-keys-default-state { 121*0e8011faSEmmanuel Vadot pins = "gpio107", "gpio108"; 122*0e8011faSEmmanuel Vadot function = "gpio"; 123*0e8011faSEmmanuel Vadot drive-strength = <2>; 124*0e8011faSEmmanuel Vadot bias-pull-up; 125*0e8011faSEmmanuel Vadot }; 126*0e8011faSEmmanuel Vadot 127*0e8011faSEmmanuel Vadot sd_vmmc_en_default: sd-vmmc-en-default-state { 128*0e8011faSEmmanuel Vadot pins = "gpio60"; 129*0e8011faSEmmanuel Vadot function = "gpio"; 130*0e8011faSEmmanuel Vadot drive-strength = <2>; 131*0e8011faSEmmanuel Vadot bias-disable; 132*0e8011faSEmmanuel Vadot }; 133*0e8011faSEmmanuel Vadot 134*0e8011faSEmmanuel Vadot sdc2_cd_default: sdc2-cd-default-state { 135*0e8011faSEmmanuel Vadot pins = "gpio38"; 136*0e8011faSEmmanuel Vadot function = "gpio"; 137*0e8011faSEmmanuel Vadot drive-strength = <2>; 138*0e8011faSEmmanuel Vadot bias-pull-down; 139*0e8011faSEmmanuel Vadot }; 140*0e8011faSEmmanuel Vadot}; 141