blob: 045636555dddfc44325ebd4e99e30a3a9239dae7 [file] [log] [blame]
Patrice Chotard23661602019-02-12 16:50:38 +01001// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
2/*
3 * Copyright (C) STMicroelectronics 2019 - All Rights Reserved
4 * Author: Alexandre Torgue <alexandre.torgue@st.com> for STMicroelectronics.
5 */
6
7/dts-v1/;
8
Patrick Delaunay1a4f57c2020-03-06 17:54:41 +01009#include "stm32mp157.dtsi"
10#include "stm32mp15xc.dtsi"
11#include "stm32mp15-pinctrl.dtsi"
12#include "stm32mp15xxac-pinctrl.dtsi"
13#include "stm32mp15xx-dkx.dtsi"
Patrice Chotard23661602019-02-12 16:50:38 +010014
15/ {
16 model = "STMicroelectronics STM32MP157C-DK2 Discovery Board";
17 compatible = "st,stm32mp157c-dk2", "st,stm32mp157";
Patrick Delaunay1a4f57c2020-03-06 17:54:41 +010018
19 aliases {
20 ethernet0 = &ethernet0;
21 serial0 = &uart4;
Patrick Delaunay62f95af2020-09-16 10:01:32 +020022 serial1 = &usart3;
23 serial2 = &uart7;
24 serial3 = &usart2;
Patrick Delaunay1a4f57c2020-03-06 17:54:41 +010025 };
26
27 chosen {
28 stdout-path = "serial0:115200n8";
29 };
Patrice Chotard23661602019-02-12 16:50:38 +010030};
31
32&dsi {
Patrice Chotard23661602019-02-12 16:50:38 +010033 status = "okay";
34 phy-dsi-supply = <&reg18>;
35
36 ports {
Patrice Chotard23661602019-02-12 16:50:38 +010037 port@0 {
38 reg = <0>;
39 dsi_in: endpoint {
40 remote-endpoint = <&ltdc_ep1_out>;
41 };
42 };
43
44 port@1 {
45 reg = <1>;
46 dsi_out: endpoint {
47 remote-endpoint = <&panel_in>;
48 };
49 };
50 };
51
52 panel@0 {
53 compatible = "orisetech,otm8009a";
54 reg = <0>;
55 reset-gpios = <&gpioe 4 GPIO_ACTIVE_LOW>;
Patrick Delaunay35a54d42019-07-11 11:15:28 +020056 power-supply = <&v3v3>;
Patrice Chotard23661602019-02-12 16:50:38 +010057 status = "okay";
58
59 port {
60 panel_in: endpoint {
61 remote-endpoint = <&dsi_out>;
62 };
63 };
64 };
65};
66
Patrick Delaunayd35a5af2020-01-28 10:11:00 +010067&i2c1 {
68 touchscreen@38 {
69 compatible = "focaltech,ft6236";
70 reg = <0x38>;
71 interrupts = <2 2>;
72 interrupt-parent = <&gpiof>;
73 interrupt-controller;
74 touchscreen-size-x = <480>;
75 touchscreen-size-y = <800>;
76 status = "okay";
77 };
78};
79
Patrice Chotard23661602019-02-12 16:50:38 +010080&ltdc {
81 status = "okay";
82
83 port {
Patrice Chotard23661602019-02-12 16:50:38 +010084 ltdc_ep1_out: endpoint@1 {
85 reg = <1>;
86 remote-endpoint = <&dsi_in>;
87 };
88 };
89};
Patrick Delaunay62f95af2020-09-16 10:01:32 +020090
91&usart2 {
92 pinctrl-names = "default", "sleep", "idle";
93 pinctrl-0 = <&usart2_pins_c>;
94 pinctrl-1 = <&usart2_sleep_pins_c>;
95 pinctrl-2 = <&usart2_idle_pins_c>;
96 status = "disabled";
97};