blob: dc2ce23cde0545be93f0e7dd9dded52d3c528772 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/* Copyright 2018 Google LLC. */
3
4#include <dt-bindings/iio/qcom,spmi-vadc.h>
5#include <dt-bindings/input/linux-event-codes.h>
6#include <dt-bindings/interrupt-controller/irq.h>
7#include <dt-bindings/spmi/spmi.h>
8#include <dt-bindings/thermal/thermal.h>
9
10/ {
11 thermal-zones {
12 pm8998 {
13 polling-delay-passive = <250>;
14 polling-delay = <1000>;
15
16 thermal-sensors = <&pm8998_temp>;
17
18 trips {
19 pm8998_alert0: pm8998-alert0 {
20 temperature = <105000>;
21 hysteresis = <2000>;
22 type = "passive";
23 };
24 pm8998_crit: pm8998-crit {
25 temperature = <125000>;
26 hysteresis = <2000>;
27 type = "critical";
28 };
29 };
30 };
31 };
32};
33
34&spmi_bus {
35 pm8998_lsid0: pmic@0 {
36 compatible = "qcom,pm8998", "qcom,spmi-pmic";
37 reg = <0x0 SPMI_USID>;
38 #address-cells = <1>;
39 #size-cells = <0>;
40
41 pm8998_pon: pon@800 {
42 compatible = "qcom,pm8998-pon";
43
44 reg = <0x800>;
45 mode-bootloader = <0x2>;
46 mode-recovery = <0x1>;
47
48 pwrkey {
49 compatible = "qcom,pm8941-pwrkey";
50 interrupts = <0x0 0x8 0 IRQ_TYPE_EDGE_BOTH>;
51 debounce = <15625>;
52 bias-pull-up;
53 linux,code = <KEY_POWER>;
54 };
55 };
56
57 pm8998_temp: temp-alarm@2400 {
58 compatible = "qcom,spmi-temp-alarm";
59 reg = <0x2400>;
60 interrupts = <0x0 0x24 0x0 IRQ_TYPE_EDGE_RISING>;
61 io-channels = <&pm8998_adc ADC5_DIE_TEMP>;
62 io-channel-names = "thermal";
63 #thermal-sensor-cells = <0>;
64 };
65
66 pm8998_coincell: coincell@2800 {
67 compatible = "qcom,pm8941-coincell";
68 reg = <0x2800>;
69
70 status = "disabled";
71 };
72
73 pm8998_adc: adc@3100 {
74 compatible = "qcom,spmi-adc-rev2";
75 reg = <0x3100>;
76 interrupts = <0x0 0x31 0x0 IRQ_TYPE_EDGE_RISING>;
77 #address-cells = <1>;
78 #size-cells = <0>;
79 #io-channel-cells = <1>;
80
81 adc-chan@6 {
82 reg = <ADC5_DIE_TEMP>;
83 label = "die_temp";
84 };
85 };
86
87 rtc@6000 {
88 compatible = "qcom,pm8941-rtc";
89 reg = <0x6000>, <0x6100>;
90 reg-names = "rtc", "alarm";
91 interrupts = <0x0 0x61 0x1 IRQ_TYPE_EDGE_RISING>;
92 };
93
94 pm8998_gpio: gpios@c000 {
95 compatible = "qcom,pm8998-gpio", "qcom,spmi-gpio";
96 reg = <0xc000>;
97 gpio-controller;
98 gpio-ranges = <&pm8998_gpio 0 0 26>;
99 #gpio-cells = <2>;
100 interrupt-controller;
101 #interrupt-cells = <2>;
102 };
103
104 };
105
106 pm8998_lsid1: pmic@1 {
107 compatible = "qcom,pm8998", "qcom,spmi-pmic";
108 reg = <0x1 SPMI_USID>;
109 #address-cells = <1>;
110 #size-cells = <0>;
111 };
112};