1// SPDX-License-Identifier: GPL-2.0+ 2/* 3 * DTS overlay for converting ti,tilcdc,panel binding to new binding. 4 * 5 * Copyright (C) 2025 Bootlin 6 * Author: Kory Maincent <kory.maincent@bootlin.com> 7 */ 8 9/dts-v1/; 10/plugin/; 11 12&{/} { 13 tilcdc-panel-dpi { 14 compatible = "panel-dpi"; 15 port { 16 panel_in: endpoint@0 { 17 remote-endpoint = <&lcd_0>; 18 }; 19 }; 20 }; 21}; 22 23&lcdc { 24 port { 25 lcd_0: endpoint@0 { 26 remote-endpoint = <&panel_in>; 27 }; 28 }; 29}; 30