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 83 lines 1.4 kB view raw
1/* 2 * tny_a9260_common.dtsi - Device Tree file for Caloa TNY A926x board 3 * 4 * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 5 * 6 * Licensed under GPLv2. 7 */ 8 9/ { 10 chosen { 11 bootargs = "mem=64M console=ttyS0,115200 root=/dev/mtdblock6 rw rootfstype=ubifs"; 12 }; 13 14 memory { 15 reg = <0x20000000 0x4000000>; 16 }; 17 18 clocks { 19 #address-cells = <1>; 20 #size-cells = <1>; 21 ranges; 22 23 main_clock: clock@0 { 24 compatible = "atmel,osc", "fixed-clock"; 25 clock-frequency = <12000000>; 26 }; 27 }; 28 29 ahb { 30 apb { 31 dbgu: serial@fffff200 { 32 status = "okay"; 33 }; 34 }; 35 36 nand0: nand@40000000 { 37 nand-bus-width = <8>; 38 nand-ecc-mode = "soft"; 39 nand-on-flash-bbt; 40 status = "okay"; 41 42 at91bootstrap@0 { 43 label = "at91bootstrap"; 44 reg = <0x0 0x20000>; 45 }; 46 47 barebox@20000 { 48 label = "barebox"; 49 reg = <0x20000 0x40000>; 50 }; 51 52 bareboxenv@60000 { 53 label = "bareboxenv"; 54 reg = <0x60000 0x20000>; 55 }; 56 57 bareboxenv2@80000 { 58 label = "bareboxenv2"; 59 reg = <0x80000 0x20000>; 60 }; 61 62 oftree@80000 { 63 label = "oftree"; 64 reg = <0xa0000 0x20000>; 65 }; 66 67 kernel@a0000 { 68 label = "kernel"; 69 reg = <0xc0000 0x400000>; 70 }; 71 72 rootfs@4a0000 { 73 label = "rootfs"; 74 reg = <0x4c0000 0x7800000>; 75 }; 76 77 data@7ca0000 { 78 label = "data"; 79 reg = <0x7cc0000 0x8340000>; 80 }; 81 }; 82 }; 83};