1/* 2 * sama5d3dm.dtsi - Device Tree file for SAMA5 display module 3 * 4 * Copyright (C) 2013 Atmel, 5 * 2013 Ludovic Desroches <ludovic.desroches@atmel.com> 6 * 7 * Licensed under GPLv2 or later. 8 */ 9 10/ { 11 ahb { 12 apb { 13 i2c1: i2c@f0018000 { 14 qt1070: keyboard@1b { 15 compatible = "qt1070"; 16 reg = <0x1b>; 17 interrupt-parent = <&pioE>; 18 interrupts = <31 0x0>; 19 pinctrl-names = "default"; 20 pinctrl-0 = <&pinctrl_qt1070_irq>; 21 wakeup-source; 22 }; 23 }; 24 25 adc0: adc@f8018000 { 26 atmel,adc-ts-wires = <4>; 27 atmel,adc-ts-pressure-threshold = <10000>; 28 status = "okay"; 29 }; 30 31 pinctrl@fffff200 { 32 board { 33 pinctrl_qt1070_irq: qt1070_irq { 34 atmel,pins = 35 <AT91_PIOE 31 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH>; /* PE31 GPIO with pull up deglith */ 36 }; 37 }; 38 }; 39 }; 40 }; 41}; 42