1 1.1 christos /* 2 1.1 christos * GDB Simulator device tree. 3 1.1 christos * 4 1.1 christos * (C) Copyright 2009 Anthony Green 5 1.1 christos * 6 1.1 christos * Anthony Green <green (at) moxielogic.com> 7 1.1 christos * 8 1.1 christos * This program is free software; you can redistribute it and/or 9 1.1 christos * modify it under the terms of the GNU General Public License as 10 1.1 christos * published by the Free Software Foundation; either version 3 of 11 1.1 christos * the License, or (at your option) any later version. 12 1.1 christos * 13 1.1 christos * This program is distributed in the hope that it will be useful, 14 1.1 christos * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 1.1 christos * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 1.1 christos * GNU General Public License for more details. 17 1.1 christos * 18 1.1 christos * You should have received a copy of the GNU General Public License 19 1.1 christos * along with this program; if not, see <http://www.gnu.org/licenses/>. 20 1.1 christos * 21 1.1 christos */ 22 1.1 christos 23 1.1 christos /dts-v1/; 24 1.1 christos / { 25 1.1 christos #address-cells = <1>; 26 1.1 christos #size-cells = <1>; 27 1.1 christos compatible = "gdb,moxie-elf-gdb"; 28 1.1 christos model = "testing"; 29 1.1 christos DDR2_SDRAM: memory@00000000 { 30 1.1 christos device_type = "memory"; 31 1.1 christos reg = < 0x00000000 0x04000000 >; 32 1.1 christos } ; 33 1.1 christos chosen { 34 1.1 christos bootargs = "lpj=1000 console=earlyser0"; 35 1.1 christos } ; 36 1.1 christos cpus { 37 1.1 christos #address-cells = <1>; 38 1.1 christos #cpus = <0x1>; 39 1.1 christos #size-cells = <0>; 40 1.1 christos moxie_0: cpu@0 { 41 1.1 christos compatible = "moxie,moxie-0.99"; 42 1.1 christos device_type = "cpu"; 43 1.1 christos model = "moxie,0.99"; 44 1.1 christos reg = <0>; 45 1.1 christos } ; 46 1.1 christos } ; 47 1.1 christos } ; 48