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/peci/peci-controller.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Generic Device Tree Bindings for PECI
0008 
0009 maintainers:
0010   - Iwona Winiarska <iwona.winiarska@intel.com>
0011 
0012 description:
0013   PECI (Platform Environment Control Interface) is an interface that provides a
0014   communication channel from Intel processors and chipset components to external
0015   monitoring or control devices.
0016 
0017 properties:
0018   $nodename:
0019     pattern: "^peci-controller(@.*)?$"
0020 
0021   cmd-timeout-ms:
0022     description:
0023       Command timeout in units of ms.
0024 
0025 additionalProperties: true
0026 
0027 examples:
0028   - |
0029     peci-controller@1e78b000 {
0030       reg = <0x1e78b000 0x100>;
0031       cmd-timeout-ms = <500>;
0032     };
0033 ...