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.9-rc3 67 lines 1.2 kB view raw
1/* 2 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 */ 8/dts-v1/; 9 10/include/ "omap3.dtsi" 11 12/ { 13 model = "TI OMAP3 BeagleBoard"; 14 compatible = "ti,omap3-beagle", "ti,omap3"; 15 16 memory { 17 device_type = "memory"; 18 reg = <0x80000000 0x10000000>; /* 256 MB */ 19 }; 20 21 leds { 22 compatible = "gpio-leds"; 23 pmu_stat { 24 label = "beagleboard::pmu_stat"; 25 gpios = <&twl_gpio 19 0>; /* LEDB */ 26 }; 27 28 heartbeat { 29 label = "beagleboard::usr0"; 30 gpios = <&gpio5 22 0>; /* 150 -> D6 LED */ 31 linux,default-trigger = "heartbeat"; 32 }; 33 34 mmc { 35 label = "beagleboard::usr1"; 36 gpios = <&gpio5 21 0>; /* 149 -> D7 LED */ 37 linux,default-trigger = "mmc0"; 38 }; 39 }; 40 41}; 42 43&i2c1 { 44 clock-frequency = <2600000>; 45 46 twl: twl@48 { 47 reg = <0x48>; 48 interrupts = <7>; /* SYS_NIRQ cascaded to intc */ 49 interrupt-parent = <&intc>; 50 }; 51}; 52 53/include/ "twl4030.dtsi" 54 55&mmc1 { 56 vmmc-supply = <&vmmc1>; 57 vmmc_aux-supply = <&vsim>; 58 bus-width = <8>; 59}; 60 61&mmc2 { 62 status = "disabled"; 63}; 64 65&mmc3 { 66 status = "disabled"; 67};