18c2ecf20Sopenharmony_ci/*
28c2ecf20Sopenharmony_ci * Copyright 2017 - Vikas MANOCHA <vikas.manocha@st.com>
38c2ecf20Sopenharmony_ci *
48c2ecf20Sopenharmony_ci * This file is dual-licensed: you can use it either under the terms
58c2ecf20Sopenharmony_ci * of the GPL or the X11 license, at your option. Note that this dual
68c2ecf20Sopenharmony_ci * licensing only applies to this file, and not this project as a
78c2ecf20Sopenharmony_ci * whole.
88c2ecf20Sopenharmony_ci *
98c2ecf20Sopenharmony_ci *  a) This file is free software; you can redistribute it and/or
108c2ecf20Sopenharmony_ci *     modify it under the terms of the GNU General Public License as
118c2ecf20Sopenharmony_ci *     published by the Free Software Foundation; either version 2 of the
128c2ecf20Sopenharmony_ci *     License, or (at your option) any later version.
138c2ecf20Sopenharmony_ci *
148c2ecf20Sopenharmony_ci *     This file is distributed in the hope that it will be useful,
158c2ecf20Sopenharmony_ci *     but WITHOUT ANY WARRANTY; without even the implied warranty of
168c2ecf20Sopenharmony_ci *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
178c2ecf20Sopenharmony_ci *     GNU General Public License for more details.
188c2ecf20Sopenharmony_ci *
198c2ecf20Sopenharmony_ci * Or, alternatively,
208c2ecf20Sopenharmony_ci *
218c2ecf20Sopenharmony_ci *  b) Permission is hereby granted, free of charge, to any person
228c2ecf20Sopenharmony_ci *     obtaining a copy of this software and associated documentation
238c2ecf20Sopenharmony_ci *     files (the "Software"), to deal in the Software without
248c2ecf20Sopenharmony_ci *     restriction, including without limitation the rights to use,
258c2ecf20Sopenharmony_ci *     copy, modify, merge, publish, distribute, sublicense, and/or
268c2ecf20Sopenharmony_ci *     sell copies of the Software, and to permit persons to whom the
278c2ecf20Sopenharmony_ci *     Software is furnished to do so, subject to the following
288c2ecf20Sopenharmony_ci *     conditions:
298c2ecf20Sopenharmony_ci *
308c2ecf20Sopenharmony_ci *     The above copyright notice and this permission notice shall be
318c2ecf20Sopenharmony_ci *     included in all copies or substantial portions of the Software.
328c2ecf20Sopenharmony_ci *
338c2ecf20Sopenharmony_ci *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
348c2ecf20Sopenharmony_ci *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
358c2ecf20Sopenharmony_ci *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
368c2ecf20Sopenharmony_ci *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
378c2ecf20Sopenharmony_ci *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
388c2ecf20Sopenharmony_ci *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
398c2ecf20Sopenharmony_ci *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
408c2ecf20Sopenharmony_ci *     OTHER DEALINGS IN THE SOFTWARE.
418c2ecf20Sopenharmony_ci */
428c2ecf20Sopenharmony_ci
438c2ecf20Sopenharmony_ci/dts-v1/;
448c2ecf20Sopenharmony_ci#include "stm32f746.dtsi"
458c2ecf20Sopenharmony_ci#include "stm32f769-pinctrl.dtsi"
468c2ecf20Sopenharmony_ci#include <dt-bindings/input/input.h>
478c2ecf20Sopenharmony_ci#include <dt-bindings/gpio/gpio.h>
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci/ {
508c2ecf20Sopenharmony_ci	model = "STMicroelectronics STM32F769-DISCO board";
518c2ecf20Sopenharmony_ci	compatible = "st,stm32f769-disco", "st,stm32f769";
528c2ecf20Sopenharmony_ci
538c2ecf20Sopenharmony_ci	chosen {
548c2ecf20Sopenharmony_ci		bootargs = "root=/dev/ram";
558c2ecf20Sopenharmony_ci		stdout-path = "serial0:115200n8";
568c2ecf20Sopenharmony_ci	};
578c2ecf20Sopenharmony_ci
588c2ecf20Sopenharmony_ci	memory@c0000000 {
598c2ecf20Sopenharmony_ci		device_type = "memory";
608c2ecf20Sopenharmony_ci		reg = <0xC0000000 0x1000000>;
618c2ecf20Sopenharmony_ci	};
628c2ecf20Sopenharmony_ci
638c2ecf20Sopenharmony_ci	aliases {
648c2ecf20Sopenharmony_ci		serial0 = &usart1;
658c2ecf20Sopenharmony_ci	};
668c2ecf20Sopenharmony_ci
678c2ecf20Sopenharmony_ci	leds {
688c2ecf20Sopenharmony_ci		compatible = "gpio-leds";
698c2ecf20Sopenharmony_ci		led-green {
708c2ecf20Sopenharmony_ci			gpios = <&gpioj 5 GPIO_ACTIVE_HIGH>;
718c2ecf20Sopenharmony_ci			linux,default-trigger = "heartbeat";
728c2ecf20Sopenharmony_ci		};
738c2ecf20Sopenharmony_ci		led-red {
748c2ecf20Sopenharmony_ci			gpios = <&gpioj 13 GPIO_ACTIVE_HIGH>;
758c2ecf20Sopenharmony_ci		};
768c2ecf20Sopenharmony_ci	};
778c2ecf20Sopenharmony_ci
788c2ecf20Sopenharmony_ci	gpio-keys {
798c2ecf20Sopenharmony_ci		compatible = "gpio-keys";
808c2ecf20Sopenharmony_ci		autorepeat;
818c2ecf20Sopenharmony_ci		button-0 {
828c2ecf20Sopenharmony_ci			label = "User";
838c2ecf20Sopenharmony_ci			linux,code = <KEY_HOME>;
848c2ecf20Sopenharmony_ci			gpios = <&gpioa 0 GPIO_ACTIVE_HIGH>;
858c2ecf20Sopenharmony_ci		};
868c2ecf20Sopenharmony_ci	};
878c2ecf20Sopenharmony_ci
888c2ecf20Sopenharmony_ci	usbotg_hs_phy: usb-phy {
898c2ecf20Sopenharmony_ci		#phy-cells = <0>;
908c2ecf20Sopenharmony_ci		compatible = "usb-nop-xceiv";
918c2ecf20Sopenharmony_ci		clocks = <&rcc 0 STM32F7_AHB1_CLOCK(OTGHSULPI)>;
928c2ecf20Sopenharmony_ci		clock-names = "main_clk";
938c2ecf20Sopenharmony_ci	};
948c2ecf20Sopenharmony_ci
958c2ecf20Sopenharmony_ci	mmc_vcard: mmc_vcard {
968c2ecf20Sopenharmony_ci		compatible = "regulator-fixed";
978c2ecf20Sopenharmony_ci		regulator-name = "mmc_vcard";
988c2ecf20Sopenharmony_ci		regulator-min-microvolt = <3300000>;
998c2ecf20Sopenharmony_ci		regulator-max-microvolt = <3300000>;
1008c2ecf20Sopenharmony_ci	};
1018c2ecf20Sopenharmony_ci};
1028c2ecf20Sopenharmony_ci
1038c2ecf20Sopenharmony_ci&rcc {
1048c2ecf20Sopenharmony_ci	compatible = "st,stm32f769-rcc", "st,stm32f746-rcc", "st,stm32-rcc";
1058c2ecf20Sopenharmony_ci};
1068c2ecf20Sopenharmony_ci
1078c2ecf20Sopenharmony_ci&cec {
1088c2ecf20Sopenharmony_ci	pinctrl-0 = <&cec_pins_a>;
1098c2ecf20Sopenharmony_ci	pinctrl-names = "default";
1108c2ecf20Sopenharmony_ci	status = "okay";
1118c2ecf20Sopenharmony_ci};
1128c2ecf20Sopenharmony_ci
1138c2ecf20Sopenharmony_ci&clk_hse {
1148c2ecf20Sopenharmony_ci	clock-frequency = <25000000>;
1158c2ecf20Sopenharmony_ci};
1168c2ecf20Sopenharmony_ci
1178c2ecf20Sopenharmony_ci&i2c1 {
1188c2ecf20Sopenharmony_ci	pinctrl-0 = <&i2c1_pins_b>;
1198c2ecf20Sopenharmony_ci	pinctrl-names = "default";
1208c2ecf20Sopenharmony_ci	i2c-scl-rising-time-ns = <185>;
1218c2ecf20Sopenharmony_ci	i2c-scl-falling-time-ns = <20>;
1228c2ecf20Sopenharmony_ci	status = "okay";
1238c2ecf20Sopenharmony_ci};
1248c2ecf20Sopenharmony_ci
1258c2ecf20Sopenharmony_ci&rtc {
1268c2ecf20Sopenharmony_ci	status = "okay";
1278c2ecf20Sopenharmony_ci};
1288c2ecf20Sopenharmony_ci
1298c2ecf20Sopenharmony_ci&sdio2 {
1308c2ecf20Sopenharmony_ci	status = "okay";
1318c2ecf20Sopenharmony_ci	vmmc-supply = <&mmc_vcard>;
1328c2ecf20Sopenharmony_ci	cd-gpios = <&gpioi 15 GPIO_ACTIVE_LOW>;
1338c2ecf20Sopenharmony_ci	broken-cd;
1348c2ecf20Sopenharmony_ci	pinctrl-names = "default", "opendrain";
1358c2ecf20Sopenharmony_ci	pinctrl-0 = <&sdio_pins_b>;
1368c2ecf20Sopenharmony_ci	pinctrl-1 = <&sdio_pins_od_b>;
1378c2ecf20Sopenharmony_ci	bus-width = <4>;
1388c2ecf20Sopenharmony_ci};
1398c2ecf20Sopenharmony_ci
1408c2ecf20Sopenharmony_ci&usart1 {
1418c2ecf20Sopenharmony_ci	pinctrl-0 = <&usart1_pins_a>;
1428c2ecf20Sopenharmony_ci	pinctrl-names = "default";
1438c2ecf20Sopenharmony_ci	status = "okay";
1448c2ecf20Sopenharmony_ci};
1458c2ecf20Sopenharmony_ci
1468c2ecf20Sopenharmony_ci&usbotg_hs {
1478c2ecf20Sopenharmony_ci	dr_mode = "otg";
1488c2ecf20Sopenharmony_ci	phys = <&usbotg_hs_phy>;
1498c2ecf20Sopenharmony_ci	phy-names = "usb2-phy";
1508c2ecf20Sopenharmony_ci	pinctrl-0 = <&usbotg_hs_pins_a>;
1518c2ecf20Sopenharmony_ci	pinctrl-names = "default";
1528c2ecf20Sopenharmony_ci	status = "okay";
1538c2ecf20Sopenharmony_ci};
154