Path: blob/master/Documentation/devicetree/bindings/gpu/aspeed,ast2400-gfx.yaml
29282 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/gpu/aspeed,ast2400-gfx.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: ASPEED GFX Display Controller78maintainers:9- Joel Stanley <joel@jms.id.au>1011properties:12compatible:13items:14- enum:15- aspeed,ast2400-gfx16- aspeed,ast2500-gfx17- aspeed,ast2600-gfx18- const: syscon1920reg:21maxItems: 12223clocks:24maxItems: 12526resets:27maxItems: 12829interrupts:30maxItems: 13132memory-region:33maxItems: 134description:35a reserved-memory region to use for the framebuffer.3637syscon:38$ref: /schemas/types.yaml#/definitions/phandle39description: Phandle to SCU4041required:42- compatible43- reg44- interrupts45- clocks46- resets47- memory-region4849additionalProperties: false5051examples:52- |53#include <dt-bindings/clock/aspeed-clock.h>5455display@1e6e6000 {56compatible = "aspeed,ast2500-gfx", "syscon";57reg = <0x1e6e6000 0x1000>;58clocks = <&syscon ASPEED_CLK_GATE_D1CLK>;59resets = <&syscon ASPEED_RESET_CRT1>;60interrupts = <0x19>;61memory-region = <&gfx_memory>;62};636465