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 FSI Hub Controller

Document the FSI Hub Controller CFAM engine.

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-11-eajames@linux.ibm.com
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>

authored by

Eddie James and committed by
Rob Herring (Arm)
51a3f7c5 7a609bc3

+45
+45
Documentation/devicetree/bindings/fsi/ibm,p9-fsi-controller.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-fsi-controller.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: IBM FSI-attached FSI Hub Controller 8 + 9 + maintainers: 10 + - Eddie James <eajames@linux.ibm.com> 11 + 12 + description: 13 + The FSI Hub Controller is an FSI controller, providing a number of FSI links, 14 + located on a CFAM. Therefore this node will always be a child of an FSI CFAM 15 + node. 16 + 17 + properties: 18 + compatible: 19 + enum: 20 + - ibm,p9-fsi-controller 21 + 22 + reg: 23 + items: 24 + - description: FSI slave address 25 + 26 + allOf: 27 + - $ref: fsi-controller.yaml# 28 + 29 + unevaluatedProperties: false 30 + 31 + examples: 32 + - | 33 + fsi@3400 { 34 + compatible = "ibm,p9-fsi-controller"; 35 + reg = <0x3400 0x400>; 36 + #address-cells = <2>; 37 + #size-cells = <0>; 38 + 39 + cfam@0,0 { 40 + reg = <0 0>; 41 + #address-cells = <1>; 42 + #size-cells = <1>; 43 + chip-id = <0>; 44 + }; 45 + };