1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Device Tree Source for the iWave-RZG1E SODIMM carrier board + HDMI daughter 4*f126890aSEmmanuel Vadot * board 5*f126890aSEmmanuel Vadot * 6*f126890aSEmmanuel Vadot * Copyright (C) 2017 Renesas Electronics Corp. 7*f126890aSEmmanuel Vadot */ 8*f126890aSEmmanuel Vadot 9*f126890aSEmmanuel Vadot#include "r8a7745-iwg22d-sodimm.dts" 10*f126890aSEmmanuel Vadot 11*f126890aSEmmanuel Vadot/ { 12*f126890aSEmmanuel Vadot model = "iWave RainboW-G22D-SODIMM RZ/G1E based board with HDMI add-on"; 13*f126890aSEmmanuel Vadot compatible = "iwave,g22d", "iwave,g22m", "renesas,r8a7745"; 14*f126890aSEmmanuel Vadot 15*f126890aSEmmanuel Vadot aliases { 16*f126890aSEmmanuel Vadot serial0 = &scif1; 17*f126890aSEmmanuel Vadot serial4 = &scif5; 18*f126890aSEmmanuel Vadot serial6 = &hscif2; 19*f126890aSEmmanuel Vadot }; 20*f126890aSEmmanuel Vadot 21*f126890aSEmmanuel Vadot cec_clock: cec-clock { 22*f126890aSEmmanuel Vadot compatible = "fixed-clock"; 23*f126890aSEmmanuel Vadot #clock-cells = <0>; 24*f126890aSEmmanuel Vadot clock-frequency = <12000000>; 25*f126890aSEmmanuel Vadot }; 26*f126890aSEmmanuel Vadot 27*f126890aSEmmanuel Vadot hdmi-out { 28*f126890aSEmmanuel Vadot compatible = "hdmi-connector"; 29*f126890aSEmmanuel Vadot type = "a"; 30*f126890aSEmmanuel Vadot 31*f126890aSEmmanuel Vadot port { 32*f126890aSEmmanuel Vadot hdmi_con: endpoint { 33*f126890aSEmmanuel Vadot remote-endpoint = <&adv7511_out>; 34*f126890aSEmmanuel Vadot }; 35*f126890aSEmmanuel Vadot }; 36*f126890aSEmmanuel Vadot }; 37*f126890aSEmmanuel Vadot}; 38*f126890aSEmmanuel Vadot 39*f126890aSEmmanuel Vadot&du { 40*f126890aSEmmanuel Vadot pinctrl-0 = <&du0_pins>; 41*f126890aSEmmanuel Vadot pinctrl-names = "default"; 42*f126890aSEmmanuel Vadot 43*f126890aSEmmanuel Vadot status = "okay"; 44*f126890aSEmmanuel Vadot 45*f126890aSEmmanuel Vadot ports { 46*f126890aSEmmanuel Vadot port@0 { 47*f126890aSEmmanuel Vadot endpoint { 48*f126890aSEmmanuel Vadot remote-endpoint = <&adv7511_in>; 49*f126890aSEmmanuel Vadot }; 50*f126890aSEmmanuel Vadot }; 51*f126890aSEmmanuel Vadot }; 52*f126890aSEmmanuel Vadot}; 53*f126890aSEmmanuel Vadot 54*f126890aSEmmanuel Vadot&can1 { 55*f126890aSEmmanuel Vadot pinctrl-0 = <&can1_pins>; 56*f126890aSEmmanuel Vadot pinctrl-names = "default"; 57*f126890aSEmmanuel Vadot 58*f126890aSEmmanuel Vadot status = "okay"; 59*f126890aSEmmanuel Vadot}; 60*f126890aSEmmanuel Vadot 61*f126890aSEmmanuel Vadot&hscif2 { 62*f126890aSEmmanuel Vadot pinctrl-0 = <&hscif2_pins>; 63*f126890aSEmmanuel Vadot pinctrl-names = "default"; 64*f126890aSEmmanuel Vadot 65*f126890aSEmmanuel Vadot status = "okay"; 66*f126890aSEmmanuel Vadot}; 67*f126890aSEmmanuel Vadot 68*f126890aSEmmanuel Vadot&i2c1 { 69*f126890aSEmmanuel Vadot pinctrl-0 = <&i2c1_pins>; 70*f126890aSEmmanuel Vadot pinctrl-names = "default"; 71*f126890aSEmmanuel Vadot 72*f126890aSEmmanuel Vadot status = "okay"; 73*f126890aSEmmanuel Vadot clock-frequency = <400000>; 74*f126890aSEmmanuel Vadot 75*f126890aSEmmanuel Vadot hdmi@39 { 76*f126890aSEmmanuel Vadot compatible = "adi,adv7511w"; 77*f126890aSEmmanuel Vadot reg = <0x39>; 78*f126890aSEmmanuel Vadot interrupt-parent = <&gpio1>; 79*f126890aSEmmanuel Vadot interrupts = <0 IRQ_TYPE_LEVEL_LOW>; 80*f126890aSEmmanuel Vadot clocks = <&cec_clock>; 81*f126890aSEmmanuel Vadot clock-names = "cec"; 82*f126890aSEmmanuel Vadot pd-gpios = <&gpio2 24 GPIO_ACTIVE_HIGH>; 83*f126890aSEmmanuel Vadot 84*f126890aSEmmanuel Vadot adi,input-depth = <8>; 85*f126890aSEmmanuel Vadot adi,input-colorspace = "rgb"; 86*f126890aSEmmanuel Vadot adi,input-clock = "1x"; 87*f126890aSEmmanuel Vadot 88*f126890aSEmmanuel Vadot ports { 89*f126890aSEmmanuel Vadot #address-cells = <1>; 90*f126890aSEmmanuel Vadot #size-cells = <0>; 91*f126890aSEmmanuel Vadot 92*f126890aSEmmanuel Vadot port@0 { 93*f126890aSEmmanuel Vadot reg = <0>; 94*f126890aSEmmanuel Vadot adv7511_in: endpoint { 95*f126890aSEmmanuel Vadot remote-endpoint = <&du_out_rgb0>; 96*f126890aSEmmanuel Vadot }; 97*f126890aSEmmanuel Vadot }; 98*f126890aSEmmanuel Vadot 99*f126890aSEmmanuel Vadot port@1 { 100*f126890aSEmmanuel Vadot reg = <1>; 101*f126890aSEmmanuel Vadot adv7511_out: endpoint { 102*f126890aSEmmanuel Vadot remote-endpoint = <&hdmi_con>; 103*f126890aSEmmanuel Vadot }; 104*f126890aSEmmanuel Vadot }; 105*f126890aSEmmanuel Vadot }; 106*f126890aSEmmanuel Vadot }; 107*f126890aSEmmanuel Vadot}; 108*f126890aSEmmanuel Vadot 109*f126890aSEmmanuel Vadot&lcd_panel { 110*f126890aSEmmanuel Vadot status = "disabled"; 111*f126890aSEmmanuel Vadot 112*f126890aSEmmanuel Vadot /delete-node/ port; 113*f126890aSEmmanuel Vadot}; 114*f126890aSEmmanuel Vadot 115*f126890aSEmmanuel Vadot&pfc { 116*f126890aSEmmanuel Vadot can1_pins: can1 { 117*f126890aSEmmanuel Vadot groups = "can1_data_b"; 118*f126890aSEmmanuel Vadot function = "can1"; 119*f126890aSEmmanuel Vadot }; 120*f126890aSEmmanuel Vadot 121*f126890aSEmmanuel Vadot du0_pins: du0 { 122*f126890aSEmmanuel Vadot groups = "du0_rgb888", "du0_sync", "du0_disp", "du0_clk0_out"; 123*f126890aSEmmanuel Vadot function = "du0"; 124*f126890aSEmmanuel Vadot }; 125*f126890aSEmmanuel Vadot 126*f126890aSEmmanuel Vadot hscif2_pins: hscif2 { 127*f126890aSEmmanuel Vadot groups = "hscif2_data"; 128*f126890aSEmmanuel Vadot function = "hscif2"; 129*f126890aSEmmanuel Vadot }; 130*f126890aSEmmanuel Vadot 131*f126890aSEmmanuel Vadot i2c1_pins: i2c1 { 132*f126890aSEmmanuel Vadot groups = "i2c1_d"; 133*f126890aSEmmanuel Vadot function = "i2c1"; 134*f126890aSEmmanuel Vadot }; 135*f126890aSEmmanuel Vadot 136*f126890aSEmmanuel Vadot scif1_pins: scif1 { 137*f126890aSEmmanuel Vadot groups = "scif1_data"; 138*f126890aSEmmanuel Vadot function = "scif1"; 139*f126890aSEmmanuel Vadot }; 140*f126890aSEmmanuel Vadot 141*f126890aSEmmanuel Vadot scif5_pins: scif5 { 142*f126890aSEmmanuel Vadot groups = "scif5_data_d"; 143*f126890aSEmmanuel Vadot function = "scif5"; 144*f126890aSEmmanuel Vadot }; 145*f126890aSEmmanuel Vadot}; 146*f126890aSEmmanuel Vadot 147*f126890aSEmmanuel Vadot&scif1 { 148*f126890aSEmmanuel Vadot pinctrl-0 = <&scif1_pins>; 149*f126890aSEmmanuel Vadot pinctrl-names = "default"; 150*f126890aSEmmanuel Vadot 151*f126890aSEmmanuel Vadot status = "okay"; 152*f126890aSEmmanuel Vadot}; 153*f126890aSEmmanuel Vadot 154*f126890aSEmmanuel Vadot&scif5 { 155*f126890aSEmmanuel Vadot pinctrl-0 = <&scif5_pins>; 156*f126890aSEmmanuel Vadot pinctrl-names = "default"; 157*f126890aSEmmanuel Vadot 158*f126890aSEmmanuel Vadot status = "okay"; 159*f126890aSEmmanuel Vadot}; 160