diff options
author | Iwona Winiarska <iwona.winiarska@intel.com> | 2022-05-09 15:55:48 +0300 |
---|---|---|
committer | Iwona Winiarska <iwona.winiarska@intel.com> | 2022-05-23 15:06:36 +0300 |
commit | 81ccbc296937c00f183c04bad033d83edd6a6524 (patch) | |
tree | 2279d562a787af3e967ba0177c02cb8887462f26 | |
parent | b0f89c7de8f3cac4952acc5f09539c0b879e58d9 (diff) | |
download | linux-81ccbc296937c00f183c04bad033d83edd6a6524.tar.xz |
dt-bindings: Extend peci-client bindings with Domain ID
Add "domain" field to specify the corresponding Domain ID for
peci-client instance.
Signed-off-by: Iwona Winiarska <iwona.winiarska@intel.com>
-rw-r--r-- | Documentation/devicetree/bindings/peci/peci-client.yaml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/peci/peci-client.yaml b/Documentation/devicetree/bindings/peci/peci-client.yaml index fc7c4110e929..e4a3ddbbd089 100644 --- a/Documentation/devicetree/bindings/peci/peci-client.yaml +++ b/Documentation/devicetree/bindings/peci/peci-client.yaml @@ -20,6 +20,11 @@ properties: addresses start from 0x30. maxItems: 1 + domain: + description: | + PECI client Domain ID from 0 to 15. + maxItems: 1 + examples: - | #include <dt-bindings/interrupt-controller/arm-gic.h> @@ -40,14 +45,16 @@ examples: resets = <&syscon ASPEED_RESET_PECI>; clock-frequency = <24000000>; - peci-client@30 { + peci-client@0 { compatible = "intel,peci-client"; reg = <0x30>; + domain = <0>; }; - peci-client@31 { + peci-client@1 { compatible = "intel,peci-client"; reg = <0x31>; + domain = <0>; }; }; }; |