Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,qe-firmware.yaml

Source file repositories/reference/linux-study-clean/Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,qe-firmware.yaml

File Facts

System
Linux kernel
Corpus path
Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,qe-firmware.yaml
Extension
.yaml
Size
1489 bytes
Lines
49
Domain
Support Tooling And Documentation
Bucket
Documentation
Inferred role
Support Tooling And Documentation: configuration, schema, or hardware description
Status
atlas-only

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/soc/fsl/cpm_qe/fsl,qe-firmware.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Freescale QUICC Engine module Firmware Node

maintainers:
  - Frank Li <Frank.Li@nxp.com>

description: |
  This node defines a firmware binary that is embedded in the device tree, for
  the purpose of passing the firmware from bootloader to the kernel, or from
  the hypervisor to the guest.

  The firmware node itself contains the firmware binary contents, a compatible
  property, and any firmware-specific properties.  The node should be placed
  inside a QE node that needs it.  Doing so eliminates the need for a
  fsl,firmware-phandle property.  Other QE nodes that need the same firmware
  should define an fsl,firmware-phandle property that points to the firmware node
  in the first QE node.

  The fsl,firmware property can be specified in the DTS (possibly using incbin)
  or can be inserted by the boot loader at boot time.

properties:
  compatible:
    enum:
      - fsl,qe-firmware

  fsl,firmware:
    $ref: /schemas/types.yaml#/definitions/uint8-array
    description:
      A standard property.  This property contains the firmware binary "blob".

required:
  - compatible
  - fsl,firmware

additionalProperties: false

examples:
  - |
    qe-firmware {
        compatible = "fsl,qe-firmware";
        fsl,firmware = <0x70 0xcd 0x00 0x00 0x01 0x46 0x45>;
    };

Annotation

Implementation Notes