Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/pci/mediatek-pcie-cfg.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: MediaTek PCIECFG controller
0008 
0009 maintainers:
0010   - Chuanjia Liu <chuanjia.liu@mediatek.com>
0011   - Jianjun Wang <jianjun.wang@mediatek.com>
0012 
0013 description: |
0014   The MediaTek PCIECFG controller controls some feature about
0015   LTSSM, ASPM and so on.
0016 
0017 properties:
0018   compatible:
0019     items:
0020       - enum:
0021           - mediatek,generic-pciecfg
0022       - const: syscon
0023 
0024   reg:
0025     maxItems: 1
0026 
0027 required:
0028   - compatible
0029   - reg
0030 
0031 additionalProperties: false
0032 
0033 examples:
0034   - |
0035     pciecfg: pciecfg@1a140000 {
0036         compatible = "mediatek,generic-pciecfg", "syscon";
0037         reg = <0x1a140000 0x1000>;
0038     };
0039 ...