1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0-or-later OR MIT) 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Copyright 2018-2022 TQ-Systems GmbH 4*f126890aSEmmanuel Vadot * Author: Markus Niebel <Markus.Niebel@tq-group.com> 5*f126890aSEmmanuel Vadot */ 6*f126890aSEmmanuel Vadot 7*f126890aSEmmanuel Vadot/* 8*f126890aSEmmanuel Vadot * Common for 9*f126890aSEmmanuel Vadot * - TQMa6ULxL 10*f126890aSEmmanuel Vadot * - TQMa6ULLxL 11*f126890aSEmmanuel Vadot */ 12*f126890aSEmmanuel Vadot 13*f126890aSEmmanuel Vadot/ { 14*f126890aSEmmanuel Vadot reg_vin: reg-vin { 15*f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 16*f126890aSEmmanuel Vadot regulator-name = "VIN"; 17*f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 18*f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 19*f126890aSEmmanuel Vadot regulator-always-on; 20*f126890aSEmmanuel Vadot }; 21*f126890aSEmmanuel Vadot}; 22*f126890aSEmmanuel Vadot 23*f126890aSEmmanuel Vadot&m24c64_50 { 24*f126890aSEmmanuel Vadot vcc-supply = <®_vin>; 25*f126890aSEmmanuel Vadot}; 26*f126890aSEmmanuel Vadot 27*f126890aSEmmanuel Vadot&m24c02_52 { 28*f126890aSEmmanuel Vadot vcc-supply = <®_vin>; 29*f126890aSEmmanuel Vadot}; 30*f126890aSEmmanuel Vadot 31*f126890aSEmmanuel Vadot/* eMMC */ 32*f126890aSEmmanuel Vadot&usdhc2 { 33*f126890aSEmmanuel Vadot vmmc-supply = <®_vin>; 34*f126890aSEmmanuel Vadot vqmmc-supply = <®_vldo4>; 35*f126890aSEmmanuel Vadot}; 36*f126890aSEmmanuel Vadot 37*f126890aSEmmanuel Vadot&iomuxc { 38*f126890aSEmmanuel Vadot pinctrl_qspi: qspigrp { 39*f126890aSEmmanuel Vadot fsl,pins = < 40*f126890aSEmmanuel Vadot MX6UL_PAD_NAND_WP_B__QSPI_A_SCLK 0x70a9 41*f126890aSEmmanuel Vadot MX6UL_PAD_NAND_READY_B__QSPI_A_DATA00 0x70a9 42*f126890aSEmmanuel Vadot MX6UL_PAD_NAND_CE0_B__QSPI_A_DATA01 0x70a9 43*f126890aSEmmanuel Vadot MX6UL_PAD_NAND_CE1_B__QSPI_A_DATA02 0x70a9 44*f126890aSEmmanuel Vadot MX6UL_PAD_NAND_CLE__QSPI_A_DATA03 0x70a9 45*f126890aSEmmanuel Vadot MX6UL_PAD_NAND_DQS__QSPI_A_SS0_B 0x70a1 46*f126890aSEmmanuel Vadot >; 47*f126890aSEmmanuel Vadot }; 48*f126890aSEmmanuel Vadot}; 49