summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/ipmi/aspeed-kcs-bmc.txt
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-05-14 07:10:49 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2020-05-14 07:10:49 +0200
commite4ea8e8bfa7a37fea2d97c3d268206417e196bdf (patch)
tree44e2513021a45b23fdd897ab91e3588101e7e844 /dts/Bindings/ipmi/aspeed-kcs-bmc.txt
parent9859cb41d7d737852d3334d33c6d2c2c9bbc75c6 (diff)
parent65aeb63c89e7b4e701ff1b1880818197b162d9e6 (diff)
downloadbarebox-e4ea8e8bfa7a37fea2d97c3d268206417e196bdf.tar.gz
barebox-e4ea8e8bfa7a37fea2d97c3d268206417e196bdf.tar.xz
Merge branch 'for-next/dts'
Diffstat (limited to 'dts/Bindings/ipmi/aspeed-kcs-bmc.txt')
-rw-r--r--dts/Bindings/ipmi/aspeed-kcs-bmc.txt20
1 files changed, 14 insertions, 6 deletions
diff --git a/dts/Bindings/ipmi/aspeed-kcs-bmc.txt b/dts/Bindings/ipmi/aspeed-kcs-bmc.txt
index d98a9bf45d..193e71ca96 100644
--- a/dts/Bindings/ipmi/aspeed-kcs-bmc.txt
+++ b/dts/Bindings/ipmi/aspeed-kcs-bmc.txt
@@ -1,9 +1,10 @@
-* Aspeed KCS (Keyboard Controller Style) IPMI interface
+# Aspeed KCS (Keyboard Controller Style) IPMI interface
The Aspeed SOCs (AST2400 and AST2500) are commonly used as BMCs
(Baseboard Management Controllers) and the KCS interface can be
used to perform in-band IPMI communication with their host.
+## v1
Required properties:
- compatible : should be one of
"aspeed,ast2400-kcs-bmc"
@@ -12,14 +13,21 @@ Required properties:
- kcs_chan : The LPC channel number in the controller
- kcs_addr : The host CPU IO map address
+## v2
+Required properties:
+- compatible : should be one of
+ "aspeed,ast2400-kcs-bmc-v2"
+ "aspeed,ast2500-kcs-bmc-v2"
+- reg : The address and size of the IDR, ODR and STR registers
+- interrupts : interrupt generated by the controller
+- aspeed,lpc-io-reg : The host CPU LPC IO address for the device
Example:
- kcs3: kcs3@0 {
- compatible = "aspeed,ast2500-kcs-bmc";
- reg = <0x0 0x80>;
+ kcs3: kcs@24 {
+ compatible = "aspeed,ast2500-kcs-bmc-v2";
+ reg = <0x24 0x1>, <0x30 0x1>, <0x3c 0x1>;
+ aspeed,lpc-reg = <0xca2>;
interrupts = <8>;
- kcs_chan = <3>;
- kcs_addr = <0xCA2>;
status = "okay";
};