/* * Copyright 2016 Gianluca Renzi, Eurek Elettronica S.R.L. * Copyright 2014 Raphaƫl Poggi * Copyright 2011 Freescale Semiconductor, Inc. * Copyright 2011 Linaro Ltd. * * The code contained herein is licensed under the GNU General Public * License. You may obtain a copy of the GNU General Public License * Version 2 or later at the following locations: * * http://www.opensource.org/licenses/gpl-license.html * http://www.gnu.org/copyleft/gpl.html */ #include #include / { model = "EK360 Eurek i.MX6 Quad"; compatible = "eurek,ek360", "fsl,imx6q"; memory { reg = <0x10000000 0x40000000>; }; regulators { compatible = "simple-bus"; #address-cells = <1>; #size-cells = <0>; reg_2p5v: regulator@0 { compatible = "regulator-fixed"; reg = <0>; regulator-name = "2P5V"; regulator-min-microvolt = <2500000>; regulator-max-microvolt = <2500000>; regulator-always-on; }; reg_3p3v: regulator@1 { compatible = "regulator-fixed"; reg = <1>; regulator-name = "3P3V"; regulator-min-microvolt = <3300000>; regulator-max-microvolt = <3300000>; regulator-always-on; }; }; }; &iomuxc { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart3>; imx6q-ek380 { pinctrl_uart3: uart3grp { /* debug port, serial console */ fsl,pins = < MX6QDL_PAD_EIM_D24__UART3_TX_DATA 0x1b0b1 MX6QDL_PAD_EIM_D25__UART3_RX_DATA 0x1b0b1 >; }; }; }; &uart3 { /* Debug port / console */ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart3>; status = "okay"; };