1/* 2 * Device Tree Source for K2G EVM 3 * 4 * Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/ 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. 9 * 10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any 11 * kind, whether express or implied; without even the implied warranty 12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 */ 15/dts-v1/; 16 17#include "keystone-k2g.dtsi" 18 19/ { 20 compatible = "ti,k2g-evm", "ti,k2g", "ti,keystone"; 21 model = "Texas Instruments K2G General Purpose EVM"; 22 23 memory { 24 device_type = "memory"; 25 reg = <0x00000008 0x00000000 0x00000000 0x80000000>; 26 }; 27 28}; 29 30&k2g_pinctrl { 31 uart0_pins: pinmux_uart0_pins { 32 pinctrl-single,pins = < 33 K2G_CORE_IOPAD(0x11cc) (BUFFER_CLASS_B | PULL_DISABLE | MUX_MODE0) /* uart0_rxd.uart0_rxd */ 34 K2G_CORE_IOPAD(0x11d0) (BUFFER_CLASS_B | PIN_PULLDOWN | MUX_MODE0) /* uart0_txd.uart0_txd */ 35 >; 36 }; 37}; 38 39&uart0 { 40 pinctrl-names = "default"; 41 pinctrl-0 = <&uart0_pins>; 42 status = "okay"; 43}; 44