123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*
- * 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
- */
- /dts-v1/;
- /include/ "imx53.dtsi"
- / {
- model = "Freescale i.MX53 Automotive Reference Design Board";
- compatible = "fsl,imx53-ard", "fsl,imx53";
- chosen {
- bootargs = "console=ttymxc0,115200 root=/dev/mmcblk0p3 rootwait";
- };
- memory {
- reg = <0x70000000 0x40000000>;
- };
- soc {
- aips@50000000 { /* AIPS1 */
- spba@50000000 {
- esdhc@50004000 { /* ESDHC1 */
- cd-gpios = <&gpio1 1 0>;
- wp-gpios = <&gpio1 9 0>;
- status = "okay";
- };
- };
- wdog@53f98000 { /* WDOG1 */
- status = "okay";
- };
- iomuxc@53fa8000 {
- compatible = "fsl,imx53-iomuxc-ard";
- reg = <0x53fa8000 0x4000>;
- };
- uart1: uart@53fbc000 {
- status = "okay";
- };
- };
- aips@60000000 { /* AIPS2 */
- sdma@63fb0000 {
- fsl,sdma-ram-script-name = "imx/sdma/sdma-imx53.bin";
- };
- };
- };
- eim-cs1@f4000000 {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "fsl,eim-bus", "simple-bus";
- reg = <0xf4000000 0x3ff0000>;
- ranges;
- lan9220@f4000000 {
- compatible = "smsc,lan9220", "smsc,lan9115";
- reg = <0xf4000000 0x2000000>;
- phy-mode = "mii";
- interrupt-parent = <&gpio2>;
- interrupts = <31>;
- reg-io-width = <4>;
- smsc,irq-push-pull;
- };
- };
- gpio-keys {
- compatible = "gpio-keys";
- home {
- label = "Home";
- gpios = <&gpio5 10 0>;
- linux,code = <102>; /* KEY_HOME */
- gpio-key,wakeup;
- };
- back {
- label = "Back";
- gpios = <&gpio5 11 0>;
- linux,code = <158>; /* KEY_BACK */
- gpio-key,wakeup;
- };
- program {
- label = "Program";
- gpios = <&gpio5 12 0>;
- linux,code = <362>; /* KEY_PROGRAM */
- gpio-key,wakeup;
- };
- volume-up {
- label = "Volume Up";
- gpios = <&gpio5 13 0>;
- linux,code = <115>; /* KEY_VOLUMEUP */
- };
- volume-down {
- label = "Volume Down";
- gpios = <&gpio4 0 0>;
- linux,code = <114>; /* KEY_VOLUMEDOWN */
- };
- };
- };
|