Path: blob/master/Documentation/devicetree/bindings/gpu/vivante,gc.yaml
26307 views
# SPDX-License-Identifier: GPL-2.01%YAML 1.22---3$id: http://devicetree.org/schemas/gpu/vivante,gc.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Vivante GPU78description: Vivante GPU core devices910maintainers:11- Lucas Stach <l.stach@pengutronix.de>1213properties:14compatible:15const: vivante,gc1617reg:18maxItems: 11920interrupts:21maxItems: 12223'#cooling-cells':24const: 22526assigned-clock-parents: true27assigned-clock-rates: true28assigned-clocks: true2930clocks:31items:32- description: AXI/master interface clock33- description: GPU core clock34- description: Shader clock (only required if GPU has feature PIPE_3D)35- description: AHB/slave interface clock (only required if GPU can gate36slave interface independently)37minItems: 13839clock-names:40items:41enum: [ bus, core, shader, reg ]42minItems: 143maxItems: 44445resets:46maxItems: 14748power-domains:49maxItems: 15051required:52- compatible53- reg54- interrupts55- clocks56- clock-names5758additionalProperties: false5960examples:61- |62#include <dt-bindings/clock/imx6qdl-clock.h>63#include <dt-bindings/interrupt-controller/arm-gic.h>64gpu@130000 {65compatible = "vivante,gc";66reg = <0x00130000 0x4000>;67interrupts = <0 9 IRQ_TYPE_LEVEL_HIGH>;68clocks = <&clks IMX6QDL_CLK_GPU3D_AXI>,69<&clks IMX6QDL_CLK_GPU3D_CORE>,70<&clks IMX6QDL_CLK_GPU3D_SHADER>;71clock-names = "bus", "core", "shader";72power-domains = <&gpc 1>;73};7475...767778