Documentation/devicetree/bindings/power/allwinner,sun20i-d1-ppu.yaml

Source file repositories/reference/linux-study-clean/Documentation/devicetree/bindings/power/allwinner,sun20i-d1-ppu.yaml

File Facts

System
Linux kernel
Corpus path
Documentation/devicetree/bindings/power/allwinner,sun20i-d1-ppu.yaml
Extension
.yaml
Size
1546 bytes
Lines
73
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/power/allwinner,sun20i-d1-ppu.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Allwinner SoCs PPU power domain controller

maintainers:
  - Samuel Holland <samuel@sholland.org>

description:
  D1 and related SoCs contain a power domain controller for the CPUs, GPU, and
  video-related hardware.

properties:
  compatible:
    enum:
      - allwinner,sun8i-v853-ppu
      - allwinner,sun20i-d1-ppu
      - allwinner,sun55i-a523-pck-600
      - allwinner,sun55i-a523-ppu
      - allwinner,sun60i-a733-pck-600

  reg:
    maxItems: 1

  clocks:
    description: Bus Clock
    maxItems: 1

  resets:
    maxItems: 1

  '#power-domain-cells':
    const: 1

required:
  - compatible
  - reg
  - clocks
  - '#power-domain-cells'

allOf:
  - if:
      properties:
        compatible:
          contains:
            enum:
              - allwinner,sun8i-v853-ppu
              - allwinner,sun20i-d1-ppu
              - allwinner,sun55i-a523-pck-600
              - allwinner,sun55i-a523-ppu

    then:
      required:
        - resets

additionalProperties: false

examples:
  - |
    #include <dt-bindings/clock/sun20i-d1-r-ccu.h>
    #include <dt-bindings/reset/sun20i-d1-r-ccu.h>

    ppu: power-controller@7001000 {
        compatible = "allwinner,sun20i-d1-ppu";
        reg = <0x7001000 0x1000>;
        clocks = <&r_ccu CLK_BUS_R_PPU>;
        resets = <&r_ccu RST_BUS_R_PPU>;

Annotation

Implementation Notes