0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/arm/primecell.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: ARM Primecell Peripherals
0008
0009 maintainers:
0010 - Rob Herring <robh@kernel.org>
0011
0012 description: |+
0013 ARM, Ltd. Primecell peripherals have a standard id register that can be used to
0014 identify the peripheral type, vendor, and revision. This value can be used for
0015 driver matching.
0016
0017 properties:
0018 compatible:
0019 contains:
0020 const: arm,primecell
0021 description:
0022 Should be a specific name for the peripheral followed by "arm,primecell".
0023 The specific name will match the ARM engineering name for the logic block
0024 in the form "arm,pl???"
0025
0026 arm,primecell-periphid:
0027 $ref: /schemas/types.yaml#/definitions/uint32
0028 description: Value to override the h/w ID value
0029 clocks:
0030 minItems: 1
0031 maxItems: 32
0032 clock-names:
0033 contains:
0034 const: apb_pclk
0035 additionalItems: true
0036
0037 additionalProperties: true
0038
0039 ...