Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | /* * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ /dts-v1/; #include "omap5-board-common.dtsi" / { model = "TI OMAP5 uEVM board"; compatible = "ti,omap5-uevm", "ti,omap5"; memory@80000000 { device_type = "memory"; reg = <0 0x80000000 0 0x7f000000>; /* 2032 MB */ }; aliases { ethernet = ðernet; }; leds { compatible = "gpio-leds"; led1 { label = "omap5:blue:usr1"; gpios = <&gpio5 25 GPIO_ACTIVE_HIGH>; /* gpio5_153 D1 LED */ linux,default-trigger = "heartbeat"; default-state = "off"; }; }; evm_keys { compatible = "gpio-keys"; pinctrl-names = "default"; pinctrl-0 = <&evm_keys_pins>; #address-cells = <7>; #size-cells = <0>; btn1 { label = "BTN1"; linux,code = <169>; gpios = <&gpio3 19 GPIO_ACTIVE_LOW>; /* gpio3_83 */ wakeup-source; autorepeat; debounce_interval = <50>; }; }; evm_leds { compatible = "gpio-leds"; led1 { label = "omap5:red:led"; gpios = <&gpio9 17 GPIO_ACTIVE_HIGH>; linux,default-trigger = "mmc0"; default-state = "off"; }; led2 { label = "omap5:green:led"; gpios = <&gpio9 18 GPIO_ACTIVE_HIGH>; linux,default-trigger = "mmc1"; default-state = "off"; }; led3 { label = "omap5:blue:led"; gpios = <&gpio9 19 GPIO_ACTIVE_HIGH>; linux,default-trigger = "mmc2"; default-state = "off"; }; led4 { label = "omap5:green:led1"; gpios = <&gpio9 2 GPIO_ACTIVE_HIGH>; linux,default-trigger = "heartbeat"; default-state = "off"; }; led5 { label = "omap5:green:led2"; gpios = <&gpio9 3 GPIO_ACTIVE_HIGH>; linux,default-trigger = "default-on"; default-state = "off"; }; led6 { label = "omap5:green:led3"; gpios = <&gpio9 4 GPIO_ACTIVE_HIGH>; linux,default-trigger = "heartbeat"; default-state = "off"; }; led7 { label = "omap5:green:led4"; gpios = <&gpio9 5 GPIO_ACTIVE_HIGH>; linux,default-trigger = "default-on"; default-state = "off"; }; led8 { label = "omap5:green:led5"; gpios = <&gpio9 6 GPIO_ACTIVE_HIGH>; linux,default-trigger = "heartbeat"; default-state = "off"; }; }; }; &hdmi { vdda-supply = <&ldo4_reg>; }; &i2c1 { eeprom@50 { compatible = "atmel,24c02"; reg = <0x50>; }; }; &i2c5 { pinctrl-names = "default"; pinctrl-0 = <&i2c5_pins>; clock-frequency = <400000>; gpio9: gpio@22 { compatible = "ti,tca6424"; reg = <0x22>; gpio-controller; #gpio-cells = <2>; }; }; &omap5_pmx_core { evm_keys_pins: pinmux_evm_keys_gpio_pins { pinctrl-single,pins = < OMAP5_IOPAD(0x0b6, PIN_INPUT | MUX_MODE6) /* gpio3_83 */ >; }; i2c5_pins: pinmux_i2c5_pins { pinctrl-single,pins = < OMAP5_IOPAD(0x1c6, PIN_INPUT | MUX_MODE0) /* i2c5_scl */ OMAP5_IOPAD(0x1c8, PIN_INPUT | MUX_MODE0) /* i2c5_sda */ >; }; }; &tpd12s015 { gpios = <&gpio9 0 GPIO_ACTIVE_HIGH>, /* TCA6424A P01, CT CP HPD */ <&gpio9 1 GPIO_ACTIVE_HIGH>, /* TCA6424A P00, LS OE */ <&gpio7 1 GPIO_ACTIVE_HIGH>; /* GPIO 193, HPD */ }; &twl6040 { ti,audpwron-gpio = <&gpio5 13 GPIO_ACTIVE_HIGH>; /* gpio line 141 */ }; &twl6040_pins { pinctrl-single,pins = < OMAP5_IOPAD(0x1be, PIN_OUTPUT | MUX_MODE6) /* mcspi1_somi.gpio5_141 */ >; }; &usbhsehci { #address-cells = <1>; #size-cells = <0>; hub@2 { compatible = "usb424,3503"; reg = <2>; #address-cells = <1>; #size-cells = <0>; }; ethernet: usbether@3 { compatible = "usb424,9730"; reg = <3>; }; }; &wlcore { compatible = "ti,wl1837"; }; |