1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/display/imx/fsl,imx6qp-pre.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: Freescale i.MX PRE (Prefetch Resolve Engine) 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotmaintainers: 10*ae5de77eSEmmanuel Vadot - Frank Li <Frank.Li@nxp.com> 11*ae5de77eSEmmanuel Vadot 12*ae5de77eSEmmanuel Vadotproperties: 13*ae5de77eSEmmanuel Vadot compatible: 14*ae5de77eSEmmanuel Vadot const: fsl,imx6qp-pre 15*ae5de77eSEmmanuel Vadot 16*ae5de77eSEmmanuel Vadot reg: 17*ae5de77eSEmmanuel Vadot maxItems: 1 18*ae5de77eSEmmanuel Vadot 19*ae5de77eSEmmanuel Vadot interrupts: 20*ae5de77eSEmmanuel Vadot maxItems: 1 21*ae5de77eSEmmanuel Vadot 22*ae5de77eSEmmanuel Vadot clocks: 23*ae5de77eSEmmanuel Vadot maxItems: 1 24*ae5de77eSEmmanuel Vadot 25*ae5de77eSEmmanuel Vadot clock-names: 26*ae5de77eSEmmanuel Vadot items: 27*ae5de77eSEmmanuel Vadot - const: axi 28*ae5de77eSEmmanuel Vadot fsl,iram: 29*ae5de77eSEmmanuel Vadot $ref: /schemas/types.yaml#/definitions/phandle 30*ae5de77eSEmmanuel Vadot description: 31*ae5de77eSEmmanuel Vadot phandle pointing to the mmio-sram device node, that should be 32*ae5de77eSEmmanuel Vadot used for the PRE SRAM double buffer. 33*ae5de77eSEmmanuel Vadot 34*ae5de77eSEmmanuel Vadotrequired: 35*ae5de77eSEmmanuel Vadot - compatible 36*ae5de77eSEmmanuel Vadot - reg 37*ae5de77eSEmmanuel Vadot - interrupts 38*ae5de77eSEmmanuel Vadot - clocks 39*ae5de77eSEmmanuel Vadot - clock-names 40*ae5de77eSEmmanuel Vadot 41*ae5de77eSEmmanuel VadotadditionalProperties: false 42*ae5de77eSEmmanuel Vadot 43*ae5de77eSEmmanuel Vadotexamples: 44*ae5de77eSEmmanuel Vadot - | 45*ae5de77eSEmmanuel Vadot #include <dt-bindings/clock/imx6qdl-clock.h> 46*ae5de77eSEmmanuel Vadot #include <dt-bindings/interrupt-controller/arm-gic.h> 47*ae5de77eSEmmanuel Vadot 48*ae5de77eSEmmanuel Vadot pre@21c8000 { 49*ae5de77eSEmmanuel Vadot compatible = "fsl,imx6qp-pre"; 50*ae5de77eSEmmanuel Vadot reg = <0x021c8000 0x1000>; 51*ae5de77eSEmmanuel Vadot interrupts = <GIC_SPI 90 IRQ_TYPE_EDGE_RISING>; 52*ae5de77eSEmmanuel Vadot clocks = <&clks IMX6QDL_CLK_PRE0>; 53*ae5de77eSEmmanuel Vadot clock-names = "axi"; 54*ae5de77eSEmmanuel Vadot fsl,iram = <&ocram2>; 55*ae5de77eSEmmanuel Vadot }; 56