blob: 4fef0164cf52e2159bc37ccdd034dc67d1adeffa [file] [log] [blame]
Patrick Delaunaye07a86b2019-11-06 16:16:32 +01001// SPDX-License-Identifier: GPL-2.0+ OR X11
Michael Kurzb1a8de72017-01-22 16:04:23 +01002/*
Patrice Chotardfe63d3c2019-02-19 16:49:05 +01003 * Copyright 2017 - Vikas MANOCHA <vikas.manocha@st.com>
Michael Kurzb1a8de72017-01-22 16:04:23 +01004 *
Michael Kurzb1a8de72017-01-22 16:04:23 +01005 */
6
7/dts-v1/;
8#include "stm32f746.dtsi"
Patrice Chotardfe63d3c2019-02-19 16:49:05 +01009#include "stm32f746-pinctrl.dtsi"
10#include <dt-bindings/input/input.h>
Patrice Chotard6effb562018-08-06 09:38:18 +020011#include <dt-bindings/gpio/gpio.h>
Michael Kurzb1a8de72017-01-22 16:04:23 +010012
13/ {
14 model = "STMicroelectronics STM32F746-DISCO board";
15 compatible = "st,stm32f746-disco", "st,stm32f746";
16
17 chosen {
Patrice Chotardfe63d3c2019-02-19 16:49:05 +010018 bootargs = "root=/dev/ram";
Michael Kurzb1a8de72017-01-22 16:04:23 +010019 stdout-path = "serial0:115200n8";
20 };
21
22 memory {
Patrick Delaunaye07a86b2019-11-06 16:16:32 +010023 device_type = "memory";
Michael Kurzb1a8de72017-01-22 16:04:23 +010024 reg = <0xC0000000 0x800000>;
25 };
26
27 aliases {
Vikas Manocha84bfdc12017-02-12 10:25:47 -080028 serial0 = &usart1;
Michael Kurzb1a8de72017-01-22 16:04:23 +010029 };
Vikas Manocha2f80a9f2017-04-10 15:03:00 -070030
Patrice Chotardfe63d3c2019-02-19 16:49:05 +010031 usbotg_hs_phy: usb-phy {
32 #phy-cells = <0>;
33 compatible = "usb-nop-xceiv";
34 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(OTGHSULPI)>;
35 clock-names = "main_clk";
36 };
37
38 /* This turns on vbus for otg fs for host mode (dwc2) */
39 vcc5v_otg_fs: vcc5v-otg-fs-regulator {
40 compatible = "regulator-fixed";
41 gpio = <&gpiod 5 0>;
42 regulator-name = "vcc5_host1";
43 regulator-always-on;
44 };
45
46 mmc_vcard: mmc_vcard {
47 compatible = "regulator-fixed";
48 regulator-name = "mmc_vcard";
49 regulator-min-microvolt = <3300000>;
50 regulator-max-microvolt = <3300000>;
51 };
Michael Kurzb1a8de72017-01-22 16:04:23 +010052};
53
Vikas Manocha84bfdc12017-02-12 10:25:47 -080054&clk_hse {
55 clock-frequency = <25000000>;
56};
57
Patrice Chotardfe63d3c2019-02-19 16:49:05 +010058&i2c1 {
59 pinctrl-0 = <&i2c1_pins_b>;
60 pinctrl-names = "default";
61 i2c-scl-rising-time-ns = <185>;
62 i2c-scl-falling-time-ns = <20>;
63 status = "okay";
64};
65
66&sdio1 {
67 status = "okay";
68 vmmc-supply = <&mmc_vcard>;
69 cd-gpios = <&gpioc 13 GPIO_ACTIVE_LOW>;
70 pinctrl-names = "default", "opendrain";
71 pinctrl-0 = <&sdio_pins_a>;
72 pinctrl-1 = <&sdio_pins_od_a>;
73 bus-width = <4>;
Vikas Manochabd4a9852017-04-10 15:03:05 -070074};
75
Vikas Manochae34e19f2017-02-12 10:25:51 -080076&usart1 {
Patrice Chotardfe63d3c2019-02-19 16:49:05 +010077 pinctrl-0 = <&usart1_pins_b>;
Vikas Manochae34e19f2017-02-12 10:25:51 -080078 pinctrl-names = "default";
79 status = "okay";
80};
81
Patrice Chotardfe63d3c2019-02-19 16:49:05 +010082&usbotg_fs {
83 dr_mode = "host";
84 pinctrl-0 = <&usbotg_fs_pins_a>;
85 pinctrl-names = "default";
Patrice Chotard77729bd2017-12-12 10:14:59 +010086 status = "okay";
Patrice Chotardfe63d3c2019-02-19 16:49:05 +010087};
88
89&usbotg_hs {
90 dr_mode = "host";
91 phys = <&usbotg_hs_phy>;
92 phy-names = "usb2-phy";
93 pinctrl-0 = <&usbotg_hs_pins_b>;
94 pinctrl-names = "default";
95 status = "okay";
Patrice Chotard77729bd2017-12-12 10:14:59 +010096};