1*4882a593Smuzhiyun/* 2*4882a593Smuzhiyun * Copyright 2015 Hans de Goede <hdegoede@redhat.com> 3*4882a593Smuzhiyun * 4*4882a593Smuzhiyun * This file is dual-licensed: you can use it either under the terms 5*4882a593Smuzhiyun * of the GPL or the X11 license, at your option. Note that this dual 6*4882a593Smuzhiyun * licensing only applies to this file, and not this project as a 7*4882a593Smuzhiyun * whole. 8*4882a593Smuzhiyun * 9*4882a593Smuzhiyun * a) This file is free software; you can redistribute it and/or 10*4882a593Smuzhiyun * modify it under the terms of the GNU General Public License as 11*4882a593Smuzhiyun * published by the Free Software Foundation; either version 2 of the 12*4882a593Smuzhiyun * License, or (at your option) any later version. 13*4882a593Smuzhiyun * 14*4882a593Smuzhiyun * This file is distributed in the hope that it will be useful, 15*4882a593Smuzhiyun * but WITHOUT ANY WARRANTY; without even the implied warranty of 16*4882a593Smuzhiyun * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17*4882a593Smuzhiyun * GNU General Public License for more details. 18*4882a593Smuzhiyun * 19*4882a593Smuzhiyun * Or, alternatively, 20*4882a593Smuzhiyun * 21*4882a593Smuzhiyun * b) Permission is hereby granted, free of charge, to any person 22*4882a593Smuzhiyun * obtaining a copy of this software and associated documentation 23*4882a593Smuzhiyun * files (the "Software"), to deal in the Software without 24*4882a593Smuzhiyun * restriction, including without limitation the rights to use, 25*4882a593Smuzhiyun * copy, modify, merge, publish, distribute, sublicense, and/or 26*4882a593Smuzhiyun * sell copies of the Software, and to permit persons to whom the 27*4882a593Smuzhiyun * Software is furnished to do so, subject to the following 28*4882a593Smuzhiyun * conditions: 29*4882a593Smuzhiyun * 30*4882a593Smuzhiyun * The above copyright notice and this permission notice shall be 31*4882a593Smuzhiyun * included in all copies or substantial portions of the Software. 32*4882a593Smuzhiyun * 33*4882a593Smuzhiyun * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 34*4882a593Smuzhiyun * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 35*4882a593Smuzhiyun * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 36*4882a593Smuzhiyun * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 37*4882a593Smuzhiyun * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 38*4882a593Smuzhiyun * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 39*4882a593Smuzhiyun * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 40*4882a593Smuzhiyun * OTHER DEALINGS IN THE SOFTWARE. 41*4882a593Smuzhiyun */ 42*4882a593Smuzhiyun 43*4882a593Smuzhiyun/dts-v1/; 44*4882a593Smuzhiyun#include "sun4i-a10.dtsi" 45*4882a593Smuzhiyun#include "sunxi-common-regulators.dtsi" 46*4882a593Smuzhiyun#include <dt-bindings/gpio/gpio.h> 47*4882a593Smuzhiyun#include <dt-bindings/input/input.h> 48*4882a593Smuzhiyun#include <dt-bindings/interrupt-controller/irq.h> 49*4882a593Smuzhiyun 50*4882a593Smuzhiyun/ { 51*4882a593Smuzhiyun model = "iNet-9F Rev 03"; 52*4882a593Smuzhiyun compatible = "inet-tek,inet9f-rev03", "allwinner,sun4i-a10"; 53*4882a593Smuzhiyun 54*4882a593Smuzhiyun aliases { 55*4882a593Smuzhiyun serial0 = &uart0; 56*4882a593Smuzhiyun }; 57*4882a593Smuzhiyun 58*4882a593Smuzhiyun chosen { 59*4882a593Smuzhiyun stdout-path = "serial0:115200n8"; 60*4882a593Smuzhiyun }; 61*4882a593Smuzhiyun 62*4882a593Smuzhiyun gpio-keys { 63*4882a593Smuzhiyun compatible = "gpio-keys-polled"; 64*4882a593Smuzhiyun poll-interval = <20>; 65*4882a593Smuzhiyun 66*4882a593Smuzhiyun left-joystick-left { 67*4882a593Smuzhiyun label = "Left Joystick Left"; 68*4882a593Smuzhiyun linux,code = <ABS_X>; 69*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 70*4882a593Smuzhiyun linux,input-value = <0xffffffff>; /* -1 */ 71*4882a593Smuzhiyun gpios = <&pio 0 6 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA6 */ 72*4882a593Smuzhiyun }; 73*4882a593Smuzhiyun 74*4882a593Smuzhiyun left-joystick-right { 75*4882a593Smuzhiyun label = "Left Joystick Right"; 76*4882a593Smuzhiyun linux,code = <ABS_X>; 77*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 78*4882a593Smuzhiyun linux,input-value = <1>; 79*4882a593Smuzhiyun gpios = <&pio 0 5 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA5 */ 80*4882a593Smuzhiyun }; 81*4882a593Smuzhiyun 82*4882a593Smuzhiyun left-joystick-up { 83*4882a593Smuzhiyun label = "Left Joystick Up"; 84*4882a593Smuzhiyun linux,code = <ABS_Y>; 85*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 86*4882a593Smuzhiyun linux,input-value = <0xffffffff>; /* -1 */ 87*4882a593Smuzhiyun gpios = <&pio 0 8 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA8 */ 88*4882a593Smuzhiyun }; 89*4882a593Smuzhiyun 90*4882a593Smuzhiyun left-joystick-down { 91*4882a593Smuzhiyun label = "Left Joystick Down"; 92*4882a593Smuzhiyun linux,code = <ABS_Y>; 93*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 94*4882a593Smuzhiyun linux,input-value = <1>; 95*4882a593Smuzhiyun gpios = <&pio 0 9 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA9 */ 96*4882a593Smuzhiyun }; 97*4882a593Smuzhiyun 98*4882a593Smuzhiyun right-joystick-left { 99*4882a593Smuzhiyun label = "Right Joystick Left"; 100*4882a593Smuzhiyun linux,code = <ABS_Z>; 101*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 102*4882a593Smuzhiyun linux,input-value = <0xffffffff>; /* -1 */ 103*4882a593Smuzhiyun gpios = <&pio 0 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA1 */ 104*4882a593Smuzhiyun }; 105*4882a593Smuzhiyun 106*4882a593Smuzhiyun right-joystick-right { 107*4882a593Smuzhiyun label = "Right Joystick Right"; 108*4882a593Smuzhiyun linux,code = <ABS_Z>; 109*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 110*4882a593Smuzhiyun linux,input-value = <1>; 111*4882a593Smuzhiyun gpios = <&pio 0 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA0 */ 112*4882a593Smuzhiyun }; 113*4882a593Smuzhiyun 114*4882a593Smuzhiyun right-joystick-up { 115*4882a593Smuzhiyun label = "Right Joystick Up"; 116*4882a593Smuzhiyun linux,code = <ABS_RZ>; 117*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 118*4882a593Smuzhiyun linux,input-value = <0xffffffff>; /* -1 */ 119*4882a593Smuzhiyun gpios = <&pio 0 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA3 */ 120*4882a593Smuzhiyun }; 121*4882a593Smuzhiyun 122*4882a593Smuzhiyun right-joystick-down { 123*4882a593Smuzhiyun label = "Right Joystick Down"; 124*4882a593Smuzhiyun linux,code = <ABS_RZ>; 125*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 126*4882a593Smuzhiyun linux,input-value = <1>; 127*4882a593Smuzhiyun gpios = <&pio 0 4 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA4 */ 128*4882a593Smuzhiyun }; 129*4882a593Smuzhiyun 130*4882a593Smuzhiyun dpad-left { 131*4882a593Smuzhiyun label = "DPad Left"; 132*4882a593Smuzhiyun linux,code = <ABS_HAT0X>; 133*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 134*4882a593Smuzhiyun linux,input-value = <0xffffffff>; /* -1 */ 135*4882a593Smuzhiyun gpios = <&pio 7 23 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PH23 */ 136*4882a593Smuzhiyun }; 137*4882a593Smuzhiyun 138*4882a593Smuzhiyun dpad-right { 139*4882a593Smuzhiyun label = "DPad Right"; 140*4882a593Smuzhiyun linux,code = <ABS_HAT0X>; 141*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 142*4882a593Smuzhiyun linux,input-value = <1>; 143*4882a593Smuzhiyun gpios = <&pio 7 24 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PH24 */ 144*4882a593Smuzhiyun }; 145*4882a593Smuzhiyun 146*4882a593Smuzhiyun dpad-up { 147*4882a593Smuzhiyun label = "DPad Up"; 148*4882a593Smuzhiyun linux,code = <ABS_HAT0Y>; 149*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 150*4882a593Smuzhiyun linux,input-value = <0xffffffff>; /* -1 */ 151*4882a593Smuzhiyun gpios = <&pio 7 25 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PH25 */ 152*4882a593Smuzhiyun }; 153*4882a593Smuzhiyun 154*4882a593Smuzhiyun dpad-down { 155*4882a593Smuzhiyun label = "DPad Down"; 156*4882a593Smuzhiyun linux,code = <ABS_HAT0Y>; 157*4882a593Smuzhiyun linux,input-type = <EV_ABS>; 158*4882a593Smuzhiyun linux,input-value = <1>; 159*4882a593Smuzhiyun gpios = <&pio 7 26 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PH26 */ 160*4882a593Smuzhiyun }; 161*4882a593Smuzhiyun 162*4882a593Smuzhiyun x { 163*4882a593Smuzhiyun label = "Button X"; 164*4882a593Smuzhiyun linux,code = <BTN_X>; 165*4882a593Smuzhiyun gpios = <&pio 0 16 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA16 */ 166*4882a593Smuzhiyun }; 167*4882a593Smuzhiyun 168*4882a593Smuzhiyun y { 169*4882a593Smuzhiyun label = "Button Y"; 170*4882a593Smuzhiyun linux,code = <BTN_Y>; 171*4882a593Smuzhiyun gpios = <&pio 0 14 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA14 */ 172*4882a593Smuzhiyun }; 173*4882a593Smuzhiyun 174*4882a593Smuzhiyun a { 175*4882a593Smuzhiyun label = "Button A"; 176*4882a593Smuzhiyun linux,code = <BTN_A>; 177*4882a593Smuzhiyun gpios = <&pio 0 17 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA17 */ 178*4882a593Smuzhiyun }; 179*4882a593Smuzhiyun 180*4882a593Smuzhiyun b { 181*4882a593Smuzhiyun label = "Button B"; 182*4882a593Smuzhiyun linux,code = <BTN_B>; 183*4882a593Smuzhiyun gpios = <&pio 0 15 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA15 */ 184*4882a593Smuzhiyun }; 185*4882a593Smuzhiyun 186*4882a593Smuzhiyun select { 187*4882a593Smuzhiyun label = "Select Button"; 188*4882a593Smuzhiyun linux,code = <BTN_SELECT>; 189*4882a593Smuzhiyun gpios = <&pio 0 11 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA11 */ 190*4882a593Smuzhiyun }; 191*4882a593Smuzhiyun 192*4882a593Smuzhiyun start { 193*4882a593Smuzhiyun label = "Start Button"; 194*4882a593Smuzhiyun linux,code = <BTN_START>; 195*4882a593Smuzhiyun gpios = <&pio 0 12 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA12 */ 196*4882a593Smuzhiyun }; 197*4882a593Smuzhiyun 198*4882a593Smuzhiyun top-left { 199*4882a593Smuzhiyun label = "Top Left Button"; 200*4882a593Smuzhiyun linux,code = <BTN_TL>; 201*4882a593Smuzhiyun gpios = <&pio 7 22 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PH22 */ 202*4882a593Smuzhiyun }; 203*4882a593Smuzhiyun 204*4882a593Smuzhiyun top-right { 205*4882a593Smuzhiyun label = "Top Right Button"; 206*4882a593Smuzhiyun linux,code = <BTN_TR>; 207*4882a593Smuzhiyun gpios = <&pio 0 13 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; /* PA13 */ 208*4882a593Smuzhiyun }; 209*4882a593Smuzhiyun }; 210*4882a593Smuzhiyun}; 211*4882a593Smuzhiyun 212*4882a593Smuzhiyun&cpu0 { 213*4882a593Smuzhiyun cpu-supply = <®_dcdc2>; 214*4882a593Smuzhiyun}; 215*4882a593Smuzhiyun 216*4882a593Smuzhiyun&ehci1 { 217*4882a593Smuzhiyun status = "okay"; 218*4882a593Smuzhiyun}; 219*4882a593Smuzhiyun 220*4882a593Smuzhiyun&i2c0 { 221*4882a593Smuzhiyun status = "okay"; 222*4882a593Smuzhiyun 223*4882a593Smuzhiyun axp209: pmic@34 { 224*4882a593Smuzhiyun reg = <0x34>; 225*4882a593Smuzhiyun interrupts = <0>; 226*4882a593Smuzhiyun }; 227*4882a593Smuzhiyun}; 228*4882a593Smuzhiyun 229*4882a593Smuzhiyun#include "axp209.dtsi" 230*4882a593Smuzhiyun 231*4882a593Smuzhiyun&i2c1 { 232*4882a593Smuzhiyun status = "okay"; 233*4882a593Smuzhiyun 234*4882a593Smuzhiyun /* Accelerometer */ 235*4882a593Smuzhiyun bma250@18 { 236*4882a593Smuzhiyun compatible = "bosch,bma250"; 237*4882a593Smuzhiyun reg = <0x18>; 238*4882a593Smuzhiyun interrupt-parent = <&pio>; 239*4882a593Smuzhiyun interrupts = <7 0 IRQ_TYPE_EDGE_RISING>; /* PH0 / EINT0 */ 240*4882a593Smuzhiyun }; 241*4882a593Smuzhiyun}; 242*4882a593Smuzhiyun 243*4882a593Smuzhiyun&i2c2 { 244*4882a593Smuzhiyun status = "okay"; 245*4882a593Smuzhiyun 246*4882a593Smuzhiyun ft5406ee8: touchscreen@38 { 247*4882a593Smuzhiyun compatible = "edt,edt-ft5406"; 248*4882a593Smuzhiyun reg = <0x38>; 249*4882a593Smuzhiyun interrupt-parent = <&pio>; 250*4882a593Smuzhiyun interrupts = <7 21 IRQ_TYPE_EDGE_FALLING>; 251*4882a593Smuzhiyun touchscreen-size-x = <800>; 252*4882a593Smuzhiyun touchscreen-size-y = <480>; 253*4882a593Smuzhiyun }; 254*4882a593Smuzhiyun}; 255*4882a593Smuzhiyun 256*4882a593Smuzhiyun&lradc { 257*4882a593Smuzhiyun vref-supply = <®_ldo2>; 258*4882a593Smuzhiyun status = "okay"; 259*4882a593Smuzhiyun 260*4882a593Smuzhiyun button-200 { 261*4882a593Smuzhiyun label = "Menu"; 262*4882a593Smuzhiyun linux,code = <KEY_MENU>; 263*4882a593Smuzhiyun channel = <0>; 264*4882a593Smuzhiyun voltage = <200000>; 265*4882a593Smuzhiyun }; 266*4882a593Smuzhiyun 267*4882a593Smuzhiyun button-600 { 268*4882a593Smuzhiyun label = "Volume Up"; 269*4882a593Smuzhiyun linux,code = <KEY_VOLUMEUP>; 270*4882a593Smuzhiyun channel = <0>; 271*4882a593Smuzhiyun voltage = <600000>; 272*4882a593Smuzhiyun }; 273*4882a593Smuzhiyun 274*4882a593Smuzhiyun button-800 { 275*4882a593Smuzhiyun label = "Volume Down"; 276*4882a593Smuzhiyun linux,code = <KEY_VOLUMEDOWN>; 277*4882a593Smuzhiyun channel = <0>; 278*4882a593Smuzhiyun voltage = <800000>; 279*4882a593Smuzhiyun }; 280*4882a593Smuzhiyun 281*4882a593Smuzhiyun button-1000 { 282*4882a593Smuzhiyun label = "Home"; 283*4882a593Smuzhiyun linux,code = <KEY_HOMEPAGE>; 284*4882a593Smuzhiyun channel = <0>; 285*4882a593Smuzhiyun voltage = <1000000>; 286*4882a593Smuzhiyun }; 287*4882a593Smuzhiyun 288*4882a593Smuzhiyun button-1200 { 289*4882a593Smuzhiyun label = "Esc"; 290*4882a593Smuzhiyun linux,code = <KEY_ESC>; 291*4882a593Smuzhiyun channel = <0>; 292*4882a593Smuzhiyun voltage = <1200000>; 293*4882a593Smuzhiyun }; 294*4882a593Smuzhiyun}; 295*4882a593Smuzhiyun 296*4882a593Smuzhiyun&mmc0 { 297*4882a593Smuzhiyun vmmc-supply = <®_vcc3v3>; 298*4882a593Smuzhiyun bus-width = <4>; 299*4882a593Smuzhiyun cd-gpios = <&pio 7 1 GPIO_ACTIVE_LOW>; /* PH1 */ 300*4882a593Smuzhiyun status = "okay"; 301*4882a593Smuzhiyun}; 302*4882a593Smuzhiyun 303*4882a593Smuzhiyun&otg_sram { 304*4882a593Smuzhiyun status = "okay"; 305*4882a593Smuzhiyun}; 306*4882a593Smuzhiyun 307*4882a593Smuzhiyun®_dcdc2 { 308*4882a593Smuzhiyun regulator-always-on; 309*4882a593Smuzhiyun regulator-min-microvolt = <1000000>; 310*4882a593Smuzhiyun regulator-max-microvolt = <1400000>; 311*4882a593Smuzhiyun regulator-name = "vdd-cpu"; 312*4882a593Smuzhiyun}; 313*4882a593Smuzhiyun 314*4882a593Smuzhiyun®_dcdc3 { 315*4882a593Smuzhiyun regulator-always-on; 316*4882a593Smuzhiyun regulator-min-microvolt = <1250000>; 317*4882a593Smuzhiyun regulator-max-microvolt = <1250000>; 318*4882a593Smuzhiyun regulator-name = "vdd-int-dll"; 319*4882a593Smuzhiyun}; 320*4882a593Smuzhiyun 321*4882a593Smuzhiyun®_ldo1 { 322*4882a593Smuzhiyun regulator-name = "vdd-rtc"; 323*4882a593Smuzhiyun}; 324*4882a593Smuzhiyun 325*4882a593Smuzhiyun®_ldo2 { 326*4882a593Smuzhiyun regulator-always-on; 327*4882a593Smuzhiyun regulator-min-microvolt = <3000000>; 328*4882a593Smuzhiyun regulator-max-microvolt = <3000000>; 329*4882a593Smuzhiyun regulator-name = "avcc"; 330*4882a593Smuzhiyun}; 331*4882a593Smuzhiyun 332*4882a593Smuzhiyun®_usb0_vbus { 333*4882a593Smuzhiyun status = "okay"; 334*4882a593Smuzhiyun}; 335*4882a593Smuzhiyun 336*4882a593Smuzhiyun®_usb2_vbus { 337*4882a593Smuzhiyun status = "okay"; 338*4882a593Smuzhiyun}; 339*4882a593Smuzhiyun 340*4882a593Smuzhiyun&uart0 { 341*4882a593Smuzhiyun pinctrl-names = "default"; 342*4882a593Smuzhiyun pinctrl-0 = <&uart0_pb_pins>; 343*4882a593Smuzhiyun status = "okay"; 344*4882a593Smuzhiyun}; 345*4882a593Smuzhiyun 346*4882a593Smuzhiyun&usb_otg { 347*4882a593Smuzhiyun dr_mode = "otg"; 348*4882a593Smuzhiyun status = "okay"; 349*4882a593Smuzhiyun}; 350*4882a593Smuzhiyun 351*4882a593Smuzhiyun&usbphy { 352*4882a593Smuzhiyun usb0_id_det-gpios = <&pio 7 4 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>; /* PH4 */ 353*4882a593Smuzhiyun usb0_vbus_det-gpios = <&pio 7 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>; /* PH5 */ 354*4882a593Smuzhiyun usb0_vbus-supply = <®_usb0_vbus>; 355*4882a593Smuzhiyun usb2_vbus-supply = <®_usb2_vbus>; 356*4882a593Smuzhiyun status = "okay"; 357*4882a593Smuzhiyun}; 358