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