treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / ipmi / aspeed-kcs-bmc.txt
blobd98a9bf45d6cba6fbabb9eee79ee75970908baf8
1 * Aspeed KCS (Keyboard Controller Style) IPMI interface
3 The Aspeed SOCs (AST2400 and AST2500) are commonly used as BMCs
4 (Baseboard Management Controllers) and the KCS interface can be
5 used to perform in-band IPMI communication with their host.
7 Required properties:
8 - compatible : should be one of
9     "aspeed,ast2400-kcs-bmc"
10     "aspeed,ast2500-kcs-bmc"
11 - interrupts : interrupt generated by the controller
12 - kcs_chan : The LPC channel number in the controller
13 - kcs_addr : The host CPU IO map address
16 Example:
18     kcs3: kcs3@0 {
19         compatible = "aspeed,ast2500-kcs-bmc";
20         reg = <0x0 0x80>;
21         interrupts = <8>;
22         kcs_chan = <3>;
23         kcs_addr = <0xCA2>;
24         status = "okay";
25     };