Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions Documentation/devicetree/bindings/ipmi/phytium,kcs-bmc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/ipmi/phytium,kcs-bmc.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Phytium KCS (Keyboard Controller Style) IPMI interface

maintainers:
- Chen Baozi <[email protected]>

description: |
The Phytium E-series SOC can be used in BMC which have the KCS interface to
perform in-band IPMI communication with their host.

properties:
compatible:
const: phytium,kcs-bmc

interrupts:
maxItems: 1

reg:
# maxItems: 3
items:
- description: IDR register
- description: ODR register
- description: STR register

kcs_chan:
deprecated: true
$ref: '/schemas/types.yaml#/definitions/uint32'
description: The LPC channel number in the controller

kcs_addr:
deprecated: true
$ref: '/schemas/types.yaml#/definitions/uint32'
description: The host CPU IO map address

required:
- compatible
- reg
- interrupts
- kcs_chan
- kcs_addr

additionalProperties: false

examples:
- |
kcs0: kcs@24 {
compatible = "phytium,kcs-bmc";
reg = <0x24 0x1>, <0x30 0x1>, <0x3c 0x1>;
interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>;
kcs_chan = <1>;
kcs_addr = <0xca0>;
};