Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: fsi: Document the IBM SCOM engine

The SCOM engine provides an interface to the POWER processor PIB
(Pervasive Interconnect Bus).

Signed-off-by: Eddie James <eajames@linux.ibm.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20240522192524.3286237-4-eajames@linux.ibm.com
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>

authored by

Eddie James and committed by
Rob Herring (Arm)
29aa58d5 c7bcbb8e

+37
+37
Documentation/devicetree/bindings/fsi/ibm,p9-scom.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/fsi/ibm,p9-scom.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: IBM FSI-attached SCOM engine 8 + 9 + maintainers: 10 + - Eddie James <eajames@linux.ibm.com> 11 + 12 + description: 13 + The SCOM engine is an interface to the POWER processor PIB (Pervasive 14 + Interconnect Bus). This node will always be a child of an FSI CFAM node. 15 + 16 + properties: 17 + compatible: 18 + enum: 19 + - ibm,p9-scom 20 + - ibm,i2cr-scom 21 + 22 + reg: 23 + items: 24 + - description: FSI slave address 25 + 26 + required: 27 + - compatible 28 + - reg 29 + 30 + additionalProperties: false 31 + 32 + examples: 33 + - | 34 + scom@1000 { 35 + compatible = "ibm,p9-scom"; 36 + reg = <0x1000 0x400>; 37 + };