mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 09:34:44 +08:00
4aebcc9059
Add to npcm845 KCS compatible string a fallback to npcm750 KCS compatible
string becuase NPCM845 and NPCM750 BMCs are using identical KCS modules.
Fixes: 84261749e5
("dt-bindings: ipmi: Add npcm845 compatible")
Signed-off-by: Tomer Maimon <tmaimon77@gmail.com>
Message-Id: <20220808075452.115907-1-tmaimon77@gmail.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
* Nuvoton NPCM KCS (Keyboard Controller Style) IPMI interface
|
|
|
|
The Nuvoton SOCs (NPCM) are commonly used as BMCs
|
|
(Baseboard Management Controllers) and the KCS interface can be
|
|
used to perform in-band IPMI communication with their host.
|
|
|
|
Required properties:
|
|
- compatible : should be one of
|
|
"nuvoton,npcm750-kcs-bmc"
|
|
"nuvoton,npcm845-kcs-bmc", "nuvoton,npcm750-kcs-bmc"
|
|
- interrupts : interrupt generated by the controller
|
|
- kcs_chan : The KCS channel number in the controller
|
|
|
|
Example:
|
|
|
|
lpc_kcs: lpc_kcs@f0007000 {
|
|
compatible = "nuvoton,npcm750-lpc-kcs", "simple-mfd", "syscon";
|
|
reg = <0xf0007000 0x40>;
|
|
reg-io-width = <1>;
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
ranges = <0x0 0xf0007000 0x40>;
|
|
|
|
kcs1: kcs1@0 {
|
|
compatible = "nuvoton,npcm750-kcs-bmc";
|
|
reg = <0x0 0x40>;
|
|
interrupts = <0 9 4>;
|
|
kcs_chan = <1>;
|
|
status = "disabled";
|
|
};
|
|
|
|
kcs2: kcs2@0 {
|
|
compatible = "nuvoton,npcm750-kcs-bmc";
|
|
reg = <0x0 0x40>;
|
|
interrupts = <0 9 4>;
|
|
kcs_chan = <2>;
|
|
status = "disabled";
|
|
};
|
|
};
|