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