Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.13 42 lines 818 B view raw
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 }; 22 }; 23 24 adc0: adc@f8018000 { 25 status = "disabled"; 26 }; 27 28 tsadcc: tsadcc@f8018000 { 29 status = "okay"; 30 }; 31 32 pinctrl@fffff200 { 33 board { 34 pinctrl_qt1070_irq: qt1070_irq { 35 atmel,pins = 36 <AT91_PIOE 31 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH>; /* PE31 GPIO with pull up deglith */ 37 }; 38 }; 39 }; 40 }; 41 }; 42};