Back to home page

OSCL-LXR

 
 

    


0001 STMicroelectronics stih4xx platforms
0002 
0003 bdisp: 2D blitter for STMicroelectronics SoC.
0004 
0005 Required properties:
0006 - compatible: should be "st,stih407-bdisp".
0007 - reg: BDISP physical address location and length.
0008 - interrupts: BDISP interrupt number.
0009 - clocks: from common clock binding: handle hardware IP needed clocks, the
0010   number of clocks may depend on the SoC type.
0011   See ../clocks/clock-bindings.txt for details.
0012 - clock-names: names of the clocks listed in clocks property in the same order.
0013 
0014 Example:
0015 
0016         bdisp0:bdisp@9f10000 {
0017                 compatible = "st,stih407-bdisp";
0018                 reg = <0x9f10000 0x1000>;
0019                 interrupts = <GIC_SPI 38 IRQ_TYPE_NONE>;
0020                 clock-names = "bdisp";
0021                 clocks = <&clk_s_c0_flexgen CLK_IC_BDISP_0>;
0022         };
0023 
0024 Aliases:
0025 Each BDISP should have a numbered alias in the aliases node, in the form of
0026 bdispN, N = 0 or 1.
0027 
0028 Example:
0029 
0030         aliases {
0031                 bdisp0 = &bdisp0;
0032         };