xref: /freebsd-src/sys/contrib/device-tree/src/arm/st/stm32h743i-eval.dts (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot/*
2*f126890aSEmmanuel Vadot * Copyright 2017 - Alexandre Torgue <alexandre.torgue@st.com>
3*f126890aSEmmanuel Vadot *
4*f126890aSEmmanuel Vadot * This file is dual-licensed: you can use it either under the terms
5*f126890aSEmmanuel Vadot * of the GPL or the X11 license, at your option. Note that this dual
6*f126890aSEmmanuel Vadot * licensing only applies to this file, and not this project as a
7*f126890aSEmmanuel Vadot * whole.
8*f126890aSEmmanuel Vadot *
9*f126890aSEmmanuel Vadot *  a) This file is free software; you can redistribute it and/or
10*f126890aSEmmanuel Vadot *     modify it under the terms of the GNU General Public License as
11*f126890aSEmmanuel Vadot *     published by the Free Software Foundation; either version 2 of the
12*f126890aSEmmanuel Vadot *     License, or (at your option) any later version.
13*f126890aSEmmanuel Vadot *
14*f126890aSEmmanuel Vadot *     This file is distributed in the hope that it will be useful,
15*f126890aSEmmanuel Vadot *     but WITHOUT ANY WARRANTY; without even the implied warranty of
16*f126890aSEmmanuel Vadot *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17*f126890aSEmmanuel Vadot *     GNU General Public License for more details.
18*f126890aSEmmanuel Vadot *
19*f126890aSEmmanuel Vadot * Or, alternatively,
20*f126890aSEmmanuel Vadot *
21*f126890aSEmmanuel Vadot *  b) Permission is hereby granted, free of charge, to any person
22*f126890aSEmmanuel Vadot *     obtaining a copy of this software and associated documentation
23*f126890aSEmmanuel Vadot *     files (the "Software"), to deal in the Software without
24*f126890aSEmmanuel Vadot *     restriction, including without limitation the rights to use,
25*f126890aSEmmanuel Vadot *     copy, modify, merge, publish, distribute, sublicense, and/or
26*f126890aSEmmanuel Vadot *     sell copies of the Software, and to permit persons to whom the
27*f126890aSEmmanuel Vadot *     Software is furnished to do so, subject to the following
28*f126890aSEmmanuel Vadot *     conditions:
29*f126890aSEmmanuel Vadot *
30*f126890aSEmmanuel Vadot *     The above copyright notice and this permission notice shall be
31*f126890aSEmmanuel Vadot *     included in all copies or substantial portions of the Software.
32*f126890aSEmmanuel Vadot *
33*f126890aSEmmanuel Vadot *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
34*f126890aSEmmanuel Vadot *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
35*f126890aSEmmanuel Vadot *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
36*f126890aSEmmanuel Vadot *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
37*f126890aSEmmanuel Vadot *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
38*f126890aSEmmanuel Vadot *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
39*f126890aSEmmanuel Vadot *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
40*f126890aSEmmanuel Vadot *     OTHER DEALINGS IN THE SOFTWARE.
41*f126890aSEmmanuel Vadot */
42*f126890aSEmmanuel Vadot
43*f126890aSEmmanuel Vadot/dts-v1/;
44*f126890aSEmmanuel Vadot#include "stm32h743.dtsi"
45*f126890aSEmmanuel Vadot#include "stm32h7-pinctrl.dtsi"
46*f126890aSEmmanuel Vadot
47*f126890aSEmmanuel Vadot/ {
48*f126890aSEmmanuel Vadot	model = "STMicroelectronics STM32H743i-EVAL board";
49*f126890aSEmmanuel Vadot	compatible = "st,stm32h743i-eval", "st,stm32h743";
50*f126890aSEmmanuel Vadot
51*f126890aSEmmanuel Vadot	chosen {
52*f126890aSEmmanuel Vadot		bootargs = "root=/dev/ram";
53*f126890aSEmmanuel Vadot		stdout-path = "serial0:115200n8";
54*f126890aSEmmanuel Vadot	};
55*f126890aSEmmanuel Vadot
56*f126890aSEmmanuel Vadot	memory@d0000000 {
57*f126890aSEmmanuel Vadot		device_type = "memory";
58*f126890aSEmmanuel Vadot		reg = <0xd0000000 0x2000000>;
59*f126890aSEmmanuel Vadot	};
60*f126890aSEmmanuel Vadot
61*f126890aSEmmanuel Vadot	aliases {
62*f126890aSEmmanuel Vadot		serial0 = &usart1;
63*f126890aSEmmanuel Vadot	};
64*f126890aSEmmanuel Vadot
65*f126890aSEmmanuel Vadot	vdda: regulator-vdda {
66*f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
67*f126890aSEmmanuel Vadot		regulator-name = "vdda";
68*f126890aSEmmanuel Vadot		regulator-min-microvolt = <3300000>;
69*f126890aSEmmanuel Vadot		regulator-max-microvolt = <3300000>;
70*f126890aSEmmanuel Vadot		regulator-always-on;
71*f126890aSEmmanuel Vadot	};
72*f126890aSEmmanuel Vadot
73*f126890aSEmmanuel Vadot	v2v9_sd: regulator-v2v9_sd {
74*f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
75*f126890aSEmmanuel Vadot		regulator-name = "v2v9_sd";
76*f126890aSEmmanuel Vadot		regulator-min-microvolt = <2900000>;
77*f126890aSEmmanuel Vadot		regulator-max-microvolt = <2900000>;
78*f126890aSEmmanuel Vadot		regulator-always-on;
79*f126890aSEmmanuel Vadot	};
80*f126890aSEmmanuel Vadot
81*f126890aSEmmanuel Vadot	usbotg_hs_phy: usb-phy {
82*f126890aSEmmanuel Vadot		#phy-cells = <0>;
83*f126890aSEmmanuel Vadot		compatible = "usb-nop-xceiv";
84*f126890aSEmmanuel Vadot		clocks = <&rcc USB1ULPI_CK>;
85*f126890aSEmmanuel Vadot		clock-names = "main_clk";
86*f126890aSEmmanuel Vadot	};
87*f126890aSEmmanuel Vadot};
88*f126890aSEmmanuel Vadot
89*f126890aSEmmanuel Vadot&adc_12 {
90*f126890aSEmmanuel Vadot	vdda-supply = <&vdda>;
91*f126890aSEmmanuel Vadot	vref-supply = <&vdda>;
92*f126890aSEmmanuel Vadot	status = "okay";
93*f126890aSEmmanuel Vadot	adc1: adc@0 {
94*f126890aSEmmanuel Vadot		/* potentiometer */
95*f126890aSEmmanuel Vadot		st,adc-channels = <0>;
96*f126890aSEmmanuel Vadot		status = "okay";
97*f126890aSEmmanuel Vadot	};
98*f126890aSEmmanuel Vadot};
99*f126890aSEmmanuel Vadot
100*f126890aSEmmanuel Vadot&clk_hse {
101*f126890aSEmmanuel Vadot	clock-frequency = <25000000>;
102*f126890aSEmmanuel Vadot};
103*f126890aSEmmanuel Vadot
104*f126890aSEmmanuel Vadot&i2c1 {
105*f126890aSEmmanuel Vadot	pinctrl-0 = <&i2c1_pins_a>;
106*f126890aSEmmanuel Vadot	pinctrl-names = "default";
107*f126890aSEmmanuel Vadot	i2c-scl-rising-time-ns = <185>;
108*f126890aSEmmanuel Vadot	i2c-scl-falling-time-ns = <20>;
109*f126890aSEmmanuel Vadot	status = "okay";
110*f126890aSEmmanuel Vadot};
111*f126890aSEmmanuel Vadot
112*f126890aSEmmanuel Vadot&rtc {
113*f126890aSEmmanuel Vadot	status = "okay";
114*f126890aSEmmanuel Vadot};
115*f126890aSEmmanuel Vadot
116*f126890aSEmmanuel Vadot&mac {
117*f126890aSEmmanuel Vadot	status = "disabled";
118*f126890aSEmmanuel Vadot	pinctrl-0 = <&ethernet_rmii>;
119*f126890aSEmmanuel Vadot	pinctrl-names = "default";
120*f126890aSEmmanuel Vadot	phy-mode = "rmii";
121*f126890aSEmmanuel Vadot	phy-handle = <&phy0>;
122*f126890aSEmmanuel Vadot
123*f126890aSEmmanuel Vadot	mdio0 {
124*f126890aSEmmanuel Vadot		#address-cells = <1>;
125*f126890aSEmmanuel Vadot		#size-cells = <0>;
126*f126890aSEmmanuel Vadot		compatible = "snps,dwmac-mdio";
127*f126890aSEmmanuel Vadot		phy0: ethernet-phy@0 {
128*f126890aSEmmanuel Vadot			reg = <0>;
129*f126890aSEmmanuel Vadot		};
130*f126890aSEmmanuel Vadot	};
131*f126890aSEmmanuel Vadot};
132*f126890aSEmmanuel Vadot
133*f126890aSEmmanuel Vadot&sdmmc1 {
134*f126890aSEmmanuel Vadot	pinctrl-names = "default", "opendrain", "sleep";
135*f126890aSEmmanuel Vadot	pinctrl-0 = <&sdmmc1_b4_pins_a &sdmmc1_dir_pins_a>;
136*f126890aSEmmanuel Vadot	pinctrl-1 = <&sdmmc1_b4_od_pins_a &sdmmc1_dir_pins_a>;
137*f126890aSEmmanuel Vadot	pinctrl-2 = <&sdmmc1_b4_sleep_pins_a &sdmmc1_dir_sleep_pins_a>;
138*f126890aSEmmanuel Vadot	broken-cd;
139*f126890aSEmmanuel Vadot	st,sig-dir;
140*f126890aSEmmanuel Vadot	st,neg-edge;
141*f126890aSEmmanuel Vadot	st,use-ckin;
142*f126890aSEmmanuel Vadot	bus-width = <4>;
143*f126890aSEmmanuel Vadot	vmmc-supply = <&v2v9_sd>;
144*f126890aSEmmanuel Vadot	status = "okay";
145*f126890aSEmmanuel Vadot};
146*f126890aSEmmanuel Vadot
147*f126890aSEmmanuel Vadot&usart1 {
148*f126890aSEmmanuel Vadot	pinctrl-0 = <&usart1_pins>;
149*f126890aSEmmanuel Vadot	pinctrl-names = "default";
150*f126890aSEmmanuel Vadot	status = "okay";
151*f126890aSEmmanuel Vadot};
152*f126890aSEmmanuel Vadot
153*f126890aSEmmanuel Vadot&usbotg_hs {
154*f126890aSEmmanuel Vadot	pinctrl-0 = <&usbotg_hs_pins_a>;
155*f126890aSEmmanuel Vadot	pinctrl-names = "default";
156*f126890aSEmmanuel Vadot	phys = <&usbotg_hs_phy>;
157*f126890aSEmmanuel Vadot	phy-names = "usb2-phy";
158*f126890aSEmmanuel Vadot	dr_mode = "otg";
159*f126890aSEmmanuel Vadot	status = "okay";
160*f126890aSEmmanuel Vadot};
161