Commit Graph

310 Commits

Author SHA1 Message Date
Anjelique Melendez
c44b16fa34 dt-bindings: leds: leds-qcom-lpg: Add support for LPG PPG
Update leds-qcom-lpg binding to support LPG PPG.

Change-Id: Ib9752426791a43d2fe611929d859c68f745b83fd
Link: https://lore.kernel.org/all/20231221185838.28440-3-quic_amelende@quicinc.com/
Signed-off-by: Anjelique Melendez <quic_amelende@quicinc.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Anjelique Melendez <quic_amelende@quicinc.com>
2024-01-12 14:12:02 -08:00
Anjelique Melendez
7c0534d571 dt-bindings: soc: qcom: Add qcom,pbs bindings
Add binding for the Qualcomm Programmable Boot Sequencer device.

Change-Id: Ia9d32338a4facc9caf5a63c7a376d4595404d0ae
Link: https://lore.kernel.org/all/20231221185838.28440-2-quic_amelende@quicinc.com/#t
Signed-off-by: Anjelique Melendez <quic_amelende@quicinc.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Anjelique Melendez <quic_amelende@quicinc.com>
2024-01-12 14:07:53 -08:00
qctecmdr
43823e428c Merge "dt-bindings: Add bindings for max31760 fan controller" 2023-12-18 11:12:25 -08:00
qctecmdr
d2d0316e63 Merge "bindings: Add bindings for the gunyah rm booster" 2023-12-18 11:12:25 -08:00
Hrishabh Rajput
4f18c23d6b bindings: Add bindings for the gunyah rm booster
Add bindings for gunyah rm booster to accelerate vm bootup.

Change-Id: Id3a3053885209f231c65da0fceb3c3598c5ad798
Signed-off-by: Hrishabh Rajput <quic_hrishabh@quicinc.com>
2023-12-15 15:11:16 +05:30
qctecmdr
6575bbc9b2 Merge "dt-bindings: add dt-binding for qcom coresight static tpdm" 2023-12-14 05:36:13 -08:00
Minghao Zhang
9dc406c3ad dt-bindings: Add bindings for max31760 fan controller
Add a bindings file for max31760 fan controller.

Change-Id: Id6d885d3678a6ffb1b1797b85e37dae121b66fa8
Signed-off-by: Minghao Zhang <quic_minghao@quicinc.com>
2023-12-13 15:27:08 +08:00
Yuanfang Zhang
7072a33acc dt-bindings: add dt-binding for qcom coresight static tpdm
Add devicetree bindings for qcom coresight static tpdm.

Change-Id: I06c39c798beec3a09f68b5363d21f4e6af047bb2
Signed-off-by: Yuanfang Zhang <quic_yuanfang@quicinc.com>
2023-12-12 02:48:38 -08:00
qctecmdr
30a945eb67 Merge "ARM: dts: msm: Add devicetree bindings for bootstat driver" 2023-12-10 17:20:09 -08:00
Mukesh Ojha
4219d26120 ARM: dts: msm: Add devicetree bindings for bootstat driver
Add the device tree binding for mpm sleep counter
so that it device nodes can be added for respective
SoC where it is supported.

Change-Id: Ic503641c25a4be7121cbf00ccffe103e641cd2f8
Signed-off-by: Mukesh Ojha <quic_mojha@quicinc.com>
2023-12-06 21:30:15 -08:00
qctecmdr
57c87bca8d Merge "dt-bindings: pci: Remove cesta-l1sub-timeout-ext-int property" 2023-12-06 18:16:01 -08:00
qctecmdr
515031fa4d Merge "dt-bindings: Add devicetree bindings for qcedev" 2023-12-06 18:16:00 -08:00
Prudhvi Yarlagadda
32a0054a70 dt-bindings: pci: Remove cesta-l1sub-timeout-ext-int property
Remove the qcom,cesta-l1sub-timeout-ext-int property as its no
longer required due to recent changes in the pcie driver using the
change commit b53d4aa20ee7 ("pci: msm: Add support to enable
PCIE CESTA clkreq config").

Initially this property was intended to be used to enable the BIT(3):
PARF_CESTA_L1SUB_TIMEOUT_EXT_INT_EN field of
PCIE0_PCIE_PARF_L1SUB_CESTA_CTRL register for platforms where CESTA
is enabled and the platform is not pineapple.

Currently the pcie driver will by default set this BIT(3) when CESTA is
enabled and the qcom,pcie-clkreq-offset property is present. Since the
qcom,pcie-clkreq-offset property will not be present when CESTA
is enabled on pineapple, pcie driver will not touch the
PCIE0_PCIE_PARF_L1SUB_CESTA_CTRL register.

Pcie driver will set only the BIT(0) PARF_CESTA_CLKREQ_SEL field when
qcom,pcie-clkreq-offset property is present and CESTA is not present
which is the case of pineapple platform when CESTA is enabled. And
this case is also taken care of by the pcie driver without the need
for qcom,pcie-clkreq-offset property.

Below are the required cases that needs to be taken care of by the
pcie driver.

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| CESTA is enabled | BIT(0) set | BIT(3) set | platform      |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| YES              | need to set| need to set| non-pineapple |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| YES              | set by     | Not        | pineapple     |
|                  | default    | applicable |               |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| NO               | NO         | NO         | non-pineapple |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| NO               | need to    | Not        | pineapple     |
|                  |  unset     | applicable |               |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.

Above mentioned cases are taken care by using the qcom,pcie-clkreq-offset
property in the following way.

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| CESTA is enabled | qcom,pcie-clkreq-offset | platform      |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| YES              | YES                     | non-pineapple |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| YES              | NO                      | pineapple     |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| NO               | NO                      | non-pineapple |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| NO               | YES                     | pineapple     |
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.

Change-Id: I1bc4985be0080d295153233b0d5d4ce07e006818
Signed-off-by: Prudhvi Yarlagadda <quic_pyarlaga@quicinc.com>
2023-12-06 11:26:31 -08:00
Unnathi Chalicheemala
050593a973 dt-bindings: msm: Add ATP variant in MSM bindings for Sun
Add compatible string for ATP variant on Sun SoC.

Change-Id: Ibaa26b372af475afe291c78c57a1e32d4a76ea93
Signed-off-by: Unnathi Chalicheemala <quic_uchalich@quicinc.com>
2023-11-30 10:35:59 -08:00
Daniel Perez-Zoghbi
ec30ae1563 dt-bindings: Add devicetree bindings for qcedev
Add snapshot of devicetree bindings from commit (bb95f5ff94:
"ARM: dts: msm: Add probe dependency to PMIC PON Log driver")
for qcedev. Update the bindings from .txt to .yaml.

Change-Id: I7e46035c6ac66c14e932c009d4a1291ec6127001
Signed-off-by: Daniel Perez-Zoghbi <quic_dperezzo@quicinc.com>
2023-11-29 16:24:53 -08:00
qctecmdr
edfde0edfd Merge "dt-bindings: Add bindings for qmsgq gunyah transport" 2023-11-28 06:14:19 -08:00
Kishore Kumar Ravi
7401ecc8dc dt-bindings: Add bindings for qmsgq gunyah transport
Add the bindings to describe a device node for the qmsgq gunyah
transport. This device enables communication between VMs through
gunyah message queues.

Change-Id: I4ee9b8b7d7069580a3f43eb9452b17ee13b74805
Signed-off-by: Kishore Kumar Ravi <quic_kiskum@quicinc.com>
2023-11-27 21:46:28 -08:00
qctecmdr
362840c89a Merge "ARM: dts: qcom: bindings: Add compatibility for soccp" 2023-11-26 10:33:56 -08:00
Gokul krishna Krishnakumar
74340c98ff ARM: dts: qcom: bindings: Add compatibility for soccp
Update the compatibility to include soccp for sun SoC.

Change-Id: I40f694364589345d62589211ddac14713e4c3b0d
Signed-off-by: Gokul krishna Krishnakumar <quic_gokukris@quicinc.com>
2023-11-22 10:57:04 -08:00
Melody Olvera
63a048bd89 dt-bindings: power: reset: Add documentation for reboot reason
Document the bindings for the reboot reason driver.

Change-Id: I30dacc4f2c9ca59ed12dc94eb81b5ef39a27d187
Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
2023-11-21 15:29:29 -08:00
qctecmdr
445030433e Merge "bindings: firmware: scm: Add bindings for waitqueue-aware firmware" 2023-11-20 20:37:22 -08:00
qctecmdr
9a08d66578 Merge "dt-bindings: soc: qcom: Add pcie-pdc device bindings" 2023-11-20 11:14:25 -08:00
qctecmdr
ad9dcd7e76 Merge "dt-bindings: cpufreq-hw: Add performance lock feature bindings" 2023-11-20 09:54:34 -08:00
qctecmdr
be0d8e5115 Merge "dt-bindings: Update binding information for st_fts" 2023-11-16 13:28:38 -08:00
qctecmdr
386f1e50c1 Merge "dt-bindings: Add SMMU proxy bindings" 2023-11-16 13:28:38 -08:00
Rashid Zafar
72febc6625 dt-bindings: soc: qcom: Add pcie-pdc device bindings
Document pcie-pdc device bindings.

Change-Id: Iba3a52dc3ac6c08a6ef7bedc6a0ceece9d59ffc0
Signed-off-by: Rashid Zafar <quic_rzafar@quicinc.com>
2023-11-16 13:18:36 -08:00
qctecmdr
a881b8420d Merge "ARM: dts: msm: Add debugcc device for Sun" 2023-11-15 17:05:22 -08:00
Rohith Iyer
54c3ce9051 dt-bindings: Update binding information for st_fts
Update the binding information for the STMicroelectronics
touch driver, adding st_fts compatible string.

Change-Id: I78b31190d75720dd68f2b74c74fa67777fad650c
Signed-off-by: Rohith Iyer <quic_rohiiyer@quicinc.com>
2023-11-15 14:34:21 -08:00
Vivek Aknurwar
ed574458cf dt-bindings: clock: Add binding for sun debugcc clock controller
Add DEBUGCC bindings for sun device.

Change-Id: Id36bce94d6e02e7efafc59390be1c7baaf800f27
Signed-off-by: Vivek Aknurwar <quic_viveka@quicinc.com>
2023-11-13 23:20:34 -08:00
Vivek Aknurwar
703578ed10 dt-bindings: cpufreq-hw: Add performance lock feature bindings
Add performance lock feature bindings for pineapple.

Change-Id: I539e649dea77a172bab3f51a0cb5410ee074b94c
Signed-off-by: Vivek Aknurwar <quic_viveka@quicinc.com>
2023-11-13 22:07:02 -08:00
qctecmdr
e15eef9afa Merge "dt-bindings: Add binding information for llcc_perfmon" 2023-11-13 21:23:26 -08:00
songrui
857715f7ba dt-bindings: Add SMMU proxy bindings
Add the bindings for the SMMU proxy driver.

Change-Id: I8686cdeb5a3066834c8f6b154190cf4956809852
Signed-off-by: songrui <quic_songrui@quicinc.com>
2023-11-14 10:41:41 +08:00
qctecmdr
22971fb84d Merge "dt-bindings: pci: Add device_type, cesta-l1sub-timeout-ext-int property" 2023-11-13 13:43:50 -08:00
qctecmdr
262dc6a1bf Merge "ARM: dts: msm: Add v8 Power Grid DT support on Sun SoC" 2023-11-13 13:43:49 -08:00
Aman Kanwar
6e582c8631 dt-bindings: Add binding information for llcc_perfmon
Add LLCC perfmon child node entry in documentation.

Change-Id: If006d1203c0d6fed639285f9e5bea4903873b7ed
Signed-off-by: Aman Kanwar <quic_akanwar@quicinc.com>
2023-11-10 11:48:14 +05:30
qctecmdr
9e2a98f045 Merge "dt-bindings: platform: msm: Add Q2SPI msm geni bindings for Sun" 2023-11-09 07:43:35 -08:00
Prudhvi Yarlagadda
ad35798b29 dt-bindings: pci: Add device_type, cesta-l1sub-timeout-ext-int property
Add the device_type property in the pci device tree as a mandatory
property so that the ranges property will be read correctly by
the of framework (of.c) file when pci framework is parsing the
pci device tree nodes.

Also add the qcom,cesta-l1sub-timeout-ext-int property as an
optional property for the platforms that have cesta clkreq routing
bit disabled and legacy l1ss timeout enabled by default.
The presence of this property on a cesta enabled platform will
enable routing of the L1ss timeout interrupt to cesta HW block
instead of routing it to APPS subsystem.

Change-Id: I96db05d6cd38f507c7ddba968ee65808b8263076
Signed-off-by: Prudhvi Yarlagadda <quic_pyarlaga@quicinc.com>
2023-11-08 14:34:24 -08:00
qctecmdr
4dee1fc1a6 Merge "ARM: dts: msm: Add entry for hdcp smcinvoke enablement" 2023-11-08 14:30:25 -08:00
qctecmdr
66eb5e14ab Merge "ARM: dts: msm: Disable low power modes for sun" 2023-11-08 14:30:24 -08:00
Unnathi Chalicheemala
ccfdbe9ae8 dt-bindings: msm: Add MSM bindings for SunP SoC
Add compatible strings for APQ variant of Sun SoC on MTP, CDP and
QRD platforms.

Change-Id: I8dd8e0ec70d2c1fd6fe931cc312a114a7c1076cd
Signed-off-by: Unnathi Chalicheemala <quic_uchalich@quicinc.com>
2023-11-07 22:06:29 -08:00
Hrishabh Rajput
40dcea4020 bindings: firmware: scm: Add bindings for waitqueue-aware firmware
Some firmware images support the processing of SMC calls via the
waitqueue mechanism. Add compatible string to support this feature.

Change-Id: I2ccc760a886d1fb9bd0f2a1581933ac93aa0e276
Signed-off-by: Hrishabh Rajput <quic_hrishabh@quicinc.com>
2023-11-07 21:27:33 +05:30
qctecmdr
c66475eb27 Merge "dt-bindings: Add snapshot of remote debugger driver" 2023-11-06 20:48:31 -08:00
qctecmdr
c73e2984f6 Merge "ARM: dts: msm: Add CRM device for camera and PCIe for sun" 2023-11-06 20:48:31 -08:00
qctecmdr
a32c54a6ab Merge "dt-bindings: soc: qcom: Add binding for adsp_sleepmon driver" 2023-11-06 17:25:16 -08:00
qctecmdr
d77d0e6125 Merge "bindings: Update TLMM VM documentation for Sun" 2023-11-06 17:25:16 -08:00
qctecmdr
f933d01fd2 Merge "bindings: Add bindings for the gunyah panic notifier" 2023-11-06 17:25:15 -08:00
Chandana Kishori Chiluveru
3087b9c59a dt-bindings: platform: msm: Add Q2SPI msm geni bindings for Sun
Add DT bindings for SPI which provides the resource management details
for the Q2SPI geni msm driver.

Change-Id: I1142c87b437177ec7587f8c0f1a823fbdb1c7fbb
Signed-off-by: Chandana Kishori Chiluveru <quic_cchiluve@quicinc.com>
2023-11-06 09:29:13 -08:00
Sheik Anwar Shabic Y
b8bc34e76c ARM: dts: msm: Add entry for hdcp smcinvoke enablement
Add entry for hdcp smcinvoke interface enablement.

Change-Id: Id815d8c4577bdf8f68f6b0f20844bbcc3b4f716e
Signed-off-by: Sheik Anwar Shabic Y <quic_sheikanw@quicinc.com>
2023-11-06 05:36:46 -08:00
qctecmdr
7c6eec62b8 Merge "bindings: soc: qcom: Add v2, v3 and v4 bindings" 2023-11-05 18:20:09 -08:00
qctecmdr
b9642d6a79 Merge "dt-bindings: buses: Add SPS (Smart Peripheral Switch) bindings for SUN" 2023-11-05 10:59:11 -08:00