1// SPDX-License-Identifier: BSD-3-Clause 2/* 3 * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2019, Linaro Limited 5 */ 6 7#include <dt-bindings/iio/qcom,spmi-vadc.h> 8#include <dt-bindings/interrupt-controller/irq.h> 9#include <dt-bindings/spmi/spmi.h> 10 11&spmi_bus { 12 pmic@4 { 13 compatible = "qcom,pm8150l", "qcom,spmi-pmic"; 14 reg = <0x4 SPMI_USID>; 15 #address-cells = <1>; 16 #size-cells = <0>; 17 18 power-on@800 { 19 compatible = "qcom,pm8916-pon"; 20 reg = <0x0800>; 21 22 status = "disabled"; 23 }; 24 25 adc@3100 { 26 compatible = "qcom,spmi-adc5"; 27 reg = <0x3100>; 28 #address-cells = <1>; 29 #size-cells = <0>; 30 #io-channel-cells = <1>; 31 interrupts = <0x4 0x31 0x0 IRQ_TYPE_EDGE_RISING>; 32 33 status = "disabled"; 34 35 ref-gnd@0 { 36 reg = <ADC5_REF_GND>; 37 qcom,pre-scaling = <1 1>; 38 label = "ref_gnd"; 39 }; 40 41 vref-1p25@1 { 42 reg = <ADC5_1P25VREF>; 43 qcom,pre-scaling = <1 1>; 44 label = "vref_1p25"; 45 }; 46 47 die-temp@6 { 48 reg = <ADC5_DIE_TEMP>; 49 qcom,pre-scaling = <1 1>; 50 label = "die_temp"; 51 }; 52 }; 53 54 pm8150l_gpios: gpio@c000 { 55 compatible = "qcom,pm8150l-gpio"; 56 reg = <0xc000>; 57 gpio-controller; 58 #gpio-cells = <2>; 59 interrupt-controller; 60 #interrupt-cells = <2>; 61 }; 62 }; 63 64 pmic@5 { 65 compatible = "qcom,pm8150l", "qcom,spmi-pmic"; 66 reg = <0x5 SPMI_USID>; 67 #address-cells = <1>; 68 #size-cells = <0>; 69 }; 70}; 71