47 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/fsi/ibm,p9-sbefifo.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: IBM FSI-attached SBEFIFO engine8 9maintainers:10 - Eddie James <eajames@linux.ibm.com>11 12description:13 The SBEFIFO is an FSI CFAM engine that provides an interface to the14 POWER processor Self Boot Engine (SBE). This node will always be a child15 of an FSI CFAM node.16 17properties:18 compatible:19 enum:20 - ibm,p9-sbefifo21 - ibm,odyssey-sbefifo22 23 reg:24 items:25 - description: FSI slave address26 27 occ:28 type: object29 $ref: ibm,p9-occ.yaml#30 31required:32 - compatible33 - reg34 35additionalProperties: false36 37examples:38 - |39 fsi-slave-engine@2400 {40 compatible = "ibm,p9-sbefifo";41 reg = <0x2400 0x400>;42 43 occ {44 compatible = "ibm,p9-occ";45 };46 };47