Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dt-bindings: ipmi: Add bindings for Phytium KCS #125

Merged
merged 1 commit into from
May 11, 2024
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 <chenbaozi@phytium.com.cn>

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>;
};