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.6 74 lines 1.2 kB view raw
1/* 2 * at91sam9x5cm.dtsi - Device Tree Include file for AT91SAM9x5 CPU Module 3 * 4 * Copyright (C) 2012 Atmel, 5 * 2012 Nicolas Ferre <nicolas.ferre@atmel.com> 6 * 7 * Licensed under GPLv2 or later. 8 */ 9 10/ { 11 memory { 12 reg = <0x20000000 0x8000000>; 13 }; 14 15 clocks { 16 #address-cells = <1>; 17 #size-cells = <1>; 18 ranges; 19 20 main_clock: clock@0 { 21 compatible = "atmel,osc", "fixed-clock"; 22 clock-frequency = <12000000>; 23 }; 24 }; 25 26 ahb { 27 nand0: nand@40000000 { 28 nand-bus-width = <8>; 29 nand-ecc-mode = "soft"; 30 nand-on-flash-bbt; 31 status = "okay"; 32 33 at91bootstrap@0 { 34 label = "at91bootstrap"; 35 reg = <0x0 0x40000>; 36 }; 37 38 uboot@40000 { 39 label = "u-boot"; 40 reg = <0x40000 0x80000>; 41 }; 42 43 ubootenv@c0000 { 44 label = "U-Boot Env"; 45 reg = <0xc0000 0x140000>; 46 }; 47 48 kernel@200000 { 49 label = "kernel"; 50 reg = <0x200000 0x600000>; 51 }; 52 53 rootfs@800000 { 54 label = "rootfs"; 55 reg = <0x800000 0x1f800000>; 56 }; 57 }; 58 }; 59 60 leds { 61 compatible = "gpio-leds"; 62 63 pb18 { 64 label = "pb18"; 65 gpios = <&pioB 18 1>; 66 linux,default-trigger = "heartbeat"; 67 }; 68 69 pd21 { 70 label = "pd21"; 71 gpios = <&pioD 21 0>; 72 }; 73 }; 74};