1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Copyright (C) STMicroelectronics 2019 - All Rights Reserved 4*f126890aSEmmanuel Vadot * Author: Alexandre Torgue <alexandre.torgue@st.com> for STMicroelectronics. 5*f126890aSEmmanuel Vadot */ 6*f126890aSEmmanuel Vadot 7*f126890aSEmmanuel Vadot#include "stm32mp153.dtsi" 8*f126890aSEmmanuel Vadot 9*f126890aSEmmanuel Vadot/ { 10*f126890aSEmmanuel Vadot soc { 11*f126890aSEmmanuel Vadot gpu: gpu@59000000 { 12*f126890aSEmmanuel Vadot compatible = "vivante,gc"; 13*f126890aSEmmanuel Vadot reg = <0x59000000 0x800>; 14*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>; 15*f126890aSEmmanuel Vadot clocks = <&rcc GPU>, <&rcc GPU_K>; 16*f126890aSEmmanuel Vadot clock-names = "bus" ,"core"; 17*f126890aSEmmanuel Vadot resets = <&rcc GPU_R>; 18*f126890aSEmmanuel Vadot }; 19*f126890aSEmmanuel Vadot 20*f126890aSEmmanuel Vadot dsi: dsi@5a000000 { 21*f126890aSEmmanuel Vadot compatible = "st,stm32-dsi"; 22*f126890aSEmmanuel Vadot reg = <0x5a000000 0x800>; 23*f126890aSEmmanuel Vadot clocks = <&rcc DSI_K>, <&clk_hse>, <&rcc DSI_PX>; 24*f126890aSEmmanuel Vadot clock-names = "pclk", "ref", "px_clk"; 25*f126890aSEmmanuel Vadot resets = <&rcc DSI_R>; 26*f126890aSEmmanuel Vadot reset-names = "apb"; 27*f126890aSEmmanuel Vadot status = "disabled"; 28*f126890aSEmmanuel Vadot }; 29*f126890aSEmmanuel Vadot }; 30*f126890aSEmmanuel Vadot}; 31