2012-08-31 16:06:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Florian Vaussard, EPFL Mobots group
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tobi expansion board is manufactured by Gumstix Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
leds {
|
|
|
|
compatible = "gpio-leds";
|
|
|
|
heartbeat {
|
|
|
|
label = "overo:red:gpio21";
|
2013-06-11 14:49:48 +00:00
|
|
|
gpios = <&gpio1 21 GPIO_ACTIVE_LOW>;
|
2012-08-31 16:06:11 +00:00
|
|
|
linux,default-trigger = "heartbeat";
|
|
|
|
};
|
|
|
|
};
|
2013-06-11 14:49:47 +00:00
|
|
|
};
|
|
|
|
|
2014-03-07 19:22:12 +00:00
|
|
|
&omap3_pmx_core {
|
|
|
|
i2c3_pins: pinmux_i2c3_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
OMAP3_CORE1_IOPAD(0x21c2, PIN_INPUT | MUX_MODE0) /* i2c3_scl.i2c3_scl */
|
|
|
|
OMAP3_CORE1_IOPAD(0x21c4, PIN_INPUT | MUX_MODE0) /* i2c3_sda.i2c3_sda */
|
|
|
|
>;
|
|
|
|
};
|
2014-03-07 19:22:19 +00:00
|
|
|
|
|
|
|
uart3_pins: pinmux_uart3_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
OMAP3_CORE1_IOPAD(0x219e, PIN_INPUT | PIN_OFF_WAKEUPENABLE | MUX_MODE0) /* uart3_rx_irrx.uart3_rx_irrx */
|
|
|
|
OMAP3_CORE1_IOPAD(0x21a0, PIN_OUTPUT | MUX_MODE0) /* uart3_tx_irtx.uart3_tx_irtx */
|
|
|
|
>;
|
|
|
|
};
|
2014-03-07 19:22:12 +00:00
|
|
|
};
|
|
|
|
|
2014-03-07 19:22:17 +00:00
|
|
|
#include "omap-gpmc-smsc9221.dtsi"
|
|
|
|
|
2013-06-11 14:49:47 +00:00
|
|
|
&gpmc {
|
|
|
|
ranges = <5 0 0x2c000000 0x1000000>; /* CS5 */
|
|
|
|
|
2014-03-07 19:22:17 +00:00
|
|
|
ethernet@gpmc {
|
2013-06-11 14:49:47 +00:00
|
|
|
reg = <5 0 0xff>;
|
|
|
|
interrupt-parent = <&gpio6>;
|
|
|
|
interrupts = <16 IRQ_TYPE_LEVEL_LOW>; /* GPIO 176 */
|
|
|
|
};
|
2012-08-31 16:06:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
&i2c3 {
|
2014-03-07 19:22:12 +00:00
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&i2c3_pins>;
|
2012-08-31 16:06:11 +00:00
|
|
|
clock-frequency = <100000>;
|
2014-03-07 19:22:18 +00:00
|
|
|
|
|
|
|
/* optional 1K EEPROM with revision information */
|
|
|
|
eeprom@51 {
|
|
|
|
compatible = "atmel,24c01";
|
|
|
|
reg = <0x51>;
|
|
|
|
pagesize = <8>;
|
|
|
|
};
|
2012-08-31 16:06:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
&mmc3 {
|
|
|
|
status = "disabled";
|
|
|
|
};
|
2014-03-07 19:22:19 +00:00
|
|
|
|
|
|
|
&uart3 {
|
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&uart3_pins>;
|
|
|
|
};
|
|
|
|
|