1/* 2 * Copyright (c) 2024 Renesas Electronics Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&pinctrl { 8 iic1_default: iic1_default { 9 group1 { 10 /* SCL1 SDA1 */ 11 psels = <RA_PSEL(RA_PSEL_I2C, 5, 12)>, 12 <RA_PSEL(RA_PSEL_I2C, 5, 11)>; 13 drive-strength = "medium"; 14 }; 15 }; 16}; 17 18&iic1 { 19 status = "okay"; 20 #address-cells = <1>; 21 #size-cells = <0>; 22 clock-frequency = <DT_FREQ_K(100)>; 23 pinctrl-0 = <&iic1_default>; 24 pinctrl-names = "default"; 25}; 26 27&zephyr_lcdif { 28 input-pixel-format = <PANEL_PIXEL_FORMAT_RGB_565>; 29}; 30 31&mipi_dsi { 32 status = "okay"; 33 pll-div = <1>; 34 pll-mul-int = <50>; 35 pll-mul-frac = "0.00"; 36 lp-divisor = <5>; 37 ulps-wakeup-period = <97>; 38 video-mode-delay = <186>; 39 timing = <1183 11 26 40>; 40 41 phys-timing { 42 t-init = <71999>; 43 t-clk-prep = <8>; 44 t-hs-prep = <5>; 45 t-lp-exit = <7>; 46 dphytim4 = <27 1 19 7>; 47 dphytim5 = <19 8 11>; 48 }; 49}; 50