1724ba675SRob Herring/* 2724ba675SRob Herring * Copyright 2017 - Vikas MANOCHA <vikas.manocha@st.com> 3724ba675SRob Herring * 4724ba675SRob Herring * This file is dual-licensed: you can use it either under the terms 5724ba675SRob Herring * of the GPL or the X11 license, at your option. Note that this dual 6724ba675SRob Herring * licensing only applies to this file, and not this project as a 7724ba675SRob Herring * whole. 8724ba675SRob Herring * 9724ba675SRob Herring * a) This file is free software; you can redistribute it and/or 10724ba675SRob Herring * modify it under the terms of the GNU General Public License as 11724ba675SRob Herring * published by the Free Software Foundation; either version 2 of the 12724ba675SRob Herring * License, or (at your option) any later version. 13724ba675SRob Herring * 14724ba675SRob Herring * This file is distributed in the hope that it will be useful, 15724ba675SRob Herring * but WITHOUT ANY WARRANTY; without even the implied warranty of 16724ba675SRob Herring * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17724ba675SRob Herring * GNU General Public License for more details. 18724ba675SRob Herring * 19724ba675SRob Herring * Or, alternatively, 20724ba675SRob Herring * 21724ba675SRob Herring * b) Permission is hereby granted, free of charge, to any person 22724ba675SRob Herring * obtaining a copy of this software and associated documentation 23724ba675SRob Herring * files (the "Software"), to deal in the Software without 24724ba675SRob Herring * restriction, including without limitation the rights to use, 25724ba675SRob Herring * copy, modify, merge, publish, distribute, sublicense, and/or 26724ba675SRob Herring * sell copies of the Software, and to permit persons to whom the 27724ba675SRob Herring * Software is furnished to do so, subject to the following 28724ba675SRob Herring * conditions: 29724ba675SRob Herring * 30724ba675SRob Herring * The above copyright notice and this permission notice shall be 31724ba675SRob Herring * included in all copies or substantial portions of the Software. 32724ba675SRob Herring * 33724ba675SRob Herring * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 34724ba675SRob Herring * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 35724ba675SRob Herring * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 36724ba675SRob Herring * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 37724ba675SRob Herring * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 38724ba675SRob Herring * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 39724ba675SRob Herring * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 40724ba675SRob Herring * OTHER DEALINGS IN THE SOFTWARE. 41724ba675SRob Herring */ 42724ba675SRob Herring 43724ba675SRob Herring/dts-v1/; 44724ba675SRob Herring#include "stm32f746.dtsi" 45724ba675SRob Herring#include "stm32f746-pinctrl.dtsi" 46724ba675SRob Herring#include <dt-bindings/gpio/gpio.h> 47*f0215440SDario Binacchi#include <dt-bindings/input/input.h> 48*f0215440SDario Binacchi#include <dt-bindings/interrupt-controller/irq.h> 49724ba675SRob Herring 50724ba675SRob Herring/ { 51724ba675SRob Herring model = "STMicroelectronics STM32F746-DISCO board"; 52724ba675SRob Herring compatible = "st,stm32f746-disco", "st,stm32f746"; 53724ba675SRob Herring 54724ba675SRob Herring chosen { 55724ba675SRob Herring bootargs = "root=/dev/ram"; 56724ba675SRob Herring stdout-path = "serial0:115200n8"; 57724ba675SRob Herring }; 58724ba675SRob Herring 59724ba675SRob Herring memory@c0000000 { 60724ba675SRob Herring device_type = "memory"; 61724ba675SRob Herring reg = <0xC0000000 0x800000>; 62724ba675SRob Herring }; 63724ba675SRob Herring 64724ba675SRob Herring aliases { 65724ba675SRob Herring serial0 = &usart1; 66724ba675SRob Herring }; 67724ba675SRob Herring 68724ba675SRob Herring usbotg_hs_phy: usb-phy { 69724ba675SRob Herring #phy-cells = <0>; 70724ba675SRob Herring compatible = "usb-nop-xceiv"; 71724ba675SRob Herring clocks = <&rcc 0 STM32F7_AHB1_CLOCK(OTGHSULPI)>; 72724ba675SRob Herring clock-names = "main_clk"; 73724ba675SRob Herring }; 74724ba675SRob Herring 75724ba675SRob Herring /* This turns on vbus for otg fs for host mode (dwc2) */ 76724ba675SRob Herring vcc5v_otg_fs: vcc5v-otg-fs-regulator { 77724ba675SRob Herring compatible = "regulator-fixed"; 78724ba675SRob Herring gpio = <&gpiod 5 0>; 79724ba675SRob Herring regulator-name = "vcc5_host1"; 80724ba675SRob Herring regulator-always-on; 81724ba675SRob Herring }; 82724ba675SRob Herring 83724ba675SRob Herring mmc_vcard: mmc_vcard { 84724ba675SRob Herring compatible = "regulator-fixed"; 85724ba675SRob Herring regulator-name = "mmc_vcard"; 86724ba675SRob Herring regulator-min-microvolt = <3300000>; 87724ba675SRob Herring regulator-max-microvolt = <3300000>; 88724ba675SRob Herring }; 89724ba675SRob Herring}; 90724ba675SRob Herring 91724ba675SRob Herring&clk_hse { 92724ba675SRob Herring clock-frequency = <25000000>; 93724ba675SRob Herring}; 94724ba675SRob Herring 95724ba675SRob Herring&i2c1 { 96724ba675SRob Herring pinctrl-0 = <&i2c1_pins_b>; 97724ba675SRob Herring pinctrl-names = "default"; 98724ba675SRob Herring i2c-scl-rising-time-ns = <185>; 99724ba675SRob Herring i2c-scl-falling-time-ns = <20>; 100724ba675SRob Herring status = "okay"; 101724ba675SRob Herring}; 102724ba675SRob Herring 103*f0215440SDario Binacchi&i2c3 { 104*f0215440SDario Binacchi pinctrl-0 = <&i2c3_pins_a>; 105*f0215440SDario Binacchi pinctrl-names = "default"; 106*f0215440SDario Binacchi clock-frequency = <400000>; 107*f0215440SDario Binacchi status = "okay"; 108*f0215440SDario Binacchi 109*f0215440SDario Binacchi touchscreen@38 { 110*f0215440SDario Binacchi compatible = "edt,edt-ft5306"; 111*f0215440SDario Binacchi reg = <0x38>; 112*f0215440SDario Binacchi interrupt-parent = <&gpioi>; 113*f0215440SDario Binacchi interrupts = <13 IRQ_TYPE_EDGE_FALLING>; 114*f0215440SDario Binacchi touchscreen-size-x = <480>; 115*f0215440SDario Binacchi touchscreen-size-y = <272>; 116*f0215440SDario Binacchi }; 117*f0215440SDario Binacchi}; 118*f0215440SDario Binacchi 119724ba675SRob Herring&sdio1 { 120724ba675SRob Herring status = "okay"; 121724ba675SRob Herring vmmc-supply = <&mmc_vcard>; 122724ba675SRob Herring cd-gpios = <&gpioc 13 GPIO_ACTIVE_LOW>; 123724ba675SRob Herring pinctrl-names = "default", "opendrain"; 124724ba675SRob Herring pinctrl-0 = <&sdio_pins_a>; 125724ba675SRob Herring pinctrl-1 = <&sdio_pins_od_a>; 126724ba675SRob Herring bus-width = <4>; 127724ba675SRob Herring}; 128724ba675SRob Herring 129724ba675SRob Herring&timers5 { 130724ba675SRob Herring /* Override timer5 to act as clockevent */ 131724ba675SRob Herring compatible = "st,stm32-timer"; 132724ba675SRob Herring interrupts = <50>; 133724ba675SRob Herring status = "okay"; 134724ba675SRob Herring /delete-property/#address-cells; 135724ba675SRob Herring /delete-property/#size-cells; 136724ba675SRob Herring /delete-property/clock-names; 137724ba675SRob Herring /delete-node/pwm; 138724ba675SRob Herring /delete-node/timer@4; 139724ba675SRob Herring}; 140724ba675SRob Herring 141724ba675SRob Herring&usart1 { 142724ba675SRob Herring pinctrl-0 = <&usart1_pins_b>; 143724ba675SRob Herring pinctrl-names = "default"; 144724ba675SRob Herring status = "okay"; 145724ba675SRob Herring}; 146724ba675SRob Herring 147724ba675SRob Herring&usbotg_fs { 148724ba675SRob Herring dr_mode = "host"; 149724ba675SRob Herring pinctrl-0 = <&usbotg_fs_pins_a>; 150724ba675SRob Herring pinctrl-names = "default"; 151724ba675SRob Herring status = "okay"; 152724ba675SRob Herring}; 153724ba675SRob Herring 154724ba675SRob Herring&usbotg_hs { 155724ba675SRob Herring dr_mode = "host"; 156724ba675SRob Herring phys = <&usbotg_hs_phy>; 157724ba675SRob Herring phy-names = "usb2-phy"; 158724ba675SRob Herring pinctrl-0 = <&usbotg_hs_pins_b>; 159724ba675SRob Herring pinctrl-names = "default"; 160724ba675SRob Herring status = "okay"; 161724ba675SRob Herring}; 162