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 | /* * animeo_ip.dts - Device Tree file for Somfy Animeo IP Boards * * Copyright (C) 2011-2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> * * Licensed under GPLv2 only. */ /dts-v1/; #include "at91sam9260.dtsi" / { model = "Somfy Animeo IP"; compatible = "somfy,animeo-ip", "atmel,at91sam9260", "atmel,at91sam9"; aliases { serial0 = &usart1; serial1 = &usart2; serial2 = &usart0; serial3 = &dbgu; serial4 = &usart3; serial5 = &uart0; serial6 = &uart1; }; chosen { linux,stdout-path = &usart2; }; memory { reg = <0x20000000 0x4000000>; }; clocks { slow_xtal { clock-frequency = <32768>; }; main_xtal { clock-frequency = <18432000>; }; }; ahb { apb { usart0: serial@fffb0000 { pinctrl-0 = <&pinctrl_usart0 &pinctrl_usart0_rts>; linux,rs485-enabled-at-boot-time; status = "okay"; }; usart1: serial@fffb4000 { pinctrl-0 = <&pinctrl_usart1 &pinctrl_usart1_rts>; linux,rs485-enabled-at-boot-time; status = "okay"; }; usart2: serial@fffb8000 { pinctrl-0 = <&pinctrl_usart2>; status = "okay"; }; macb0: ethernet@fffc4000 { pinctrl-0 = <&pinctrl_macb_rmii &pinctrl_macb_rmii_mii>; phy-mode = "mii"; status = "okay"; }; mmc0: mmc@fffa8000 { pinctrl-0 = <&pinctrl_mmc0_clk &pinctrl_mmc0_slot1_cmd_dat0 &pinctrl_mmc0_slot1_dat1_3>; status = "okay"; slot@1 { reg = <1>; bus-width = <4>; }; }; watchdog@fffffd40 { status = "okay"; }; }; nand0: nand@40000000 { nand-bus-width = <8>; nand-ecc-mode = "soft"; nand-on-flash-bbt; status = "okay"; barebox@0 { label = "barebox"; reg = <0x0 0x58000>; }; u_boot_env@58000 { label = "u_boot_env"; reg = <0x58000 0x8000>; }; ubi@60000 { label = "ubi"; reg = <0x60000 0x1FA0000>; }; }; usb0: ohci@500000 { num-ports = <2>; atmel,vbus-gpio = <&pioB 15 GPIO_ACTIVE_LOW>; status = "okay"; }; }; leds { compatible = "gpio-leds"; power_green { label = "power_green"; gpios = <&pioC 17 GPIO_ACTIVE_HIGH>; linux,default-trigger = "heartbeat"; }; power_red { label = "power_red"; gpios = <&pioA 2 GPIO_ACTIVE_HIGH>; }; tx_green { label = "tx_green"; gpios = <&pioC 19 GPIO_ACTIVE_HIGH>; }; tx_red { label = "tx_red"; gpios = <&pioC 18 GPIO_ACTIVE_HIGH>; }; }; gpio_keys { compatible = "gpio-keys"; #address-cells = <1>; #size-cells = <0>; keyswitch_in { label = "keyswitch_in"; gpios = <&pioB 1 GPIO_ACTIVE_HIGH>; linux,code = <28>; wakeup-source; }; error_in { label = "error_in"; gpios = <&pioB 2 GPIO_ACTIVE_HIGH>; linux,code = <29>; wakeup-source; }; btn { label = "btn"; gpios = <&pioC 23 GPIO_ACTIVE_HIGH>; linux,code = <31>; wakeup-source; }; }; }; |