Files
android_kernel_samsung_sm87…/bindings/soc/qcom/qcom,pcie-pdc.yaml
Sneh Mankad e6219eae76 bindings: soc: qcom: Document pcie-pdc compatible for tuna
Document pcie pdc device support for tuna.

Change-Id: I56a2d505fd453ffbebc95dbf202b5f949ded4c4c
Signed-off-by: Sneh Mankad <quic_smankad@quicinc.com>
2024-10-23 10:54:13 +05:30

45 lines
1.0 KiB
YAML

# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/soc/qcom/qcom,pcie-pdc.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Qualcomm Technologies, Inc. (QTI) PCIe PDC Device
maintainers:
- Maulik Shah <quic_mkshah@quicinc.com>
- Rashid Zafar <quic_rzafar@quicinc.com>
description:
Support for configuring IRQ at PCIe PDC interrupt controller.
GPIO IRQs can be made wake up capable at PCIe PDC to allow SoC exit
from deepest low power modes.
properties:
compatible:
enum:
- qcom,sun-pcie-pdc
- qcom,pineapple-pcie-pdc
- qcom,cliffs-pcie-pdc
- qcom,tuna-pcie-pdc
- qcom,pcie-pdc
reg:
maxItems: 1
description: Should specify the base address for the PCIe PDC device.
required:
- compatible
- reg
additionalProperties: false
examples:
# Example of PCIE PDC device
- |
pcie_pdc: pdc@b350000 {
compatible = "qcom,pineapple-pcie-pdc", "qcom,pcie-pdc";
reg = <0xb350000 0x20000>;
};
...