1999159a5SVineet Gupta/* 2999159a5SVineet Gupta * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com) 3999159a5SVineet Gupta * 4999159a5SVineet Gupta * This program is free software; you can redistribute it and/or modify 5999159a5SVineet Gupta * it under the terms of the GNU General Public License version 2 as 6999159a5SVineet Gupta * published by the Free Software Foundation. 7999159a5SVineet Gupta */ 8999159a5SVineet Gupta 9999159a5SVineet Gupta/* 10999159a5SVineet Gupta * Skeleton device tree; the bare minimum needed to boot; just include and 11999159a5SVineet Gupta * add a compatible value. 12999159a5SVineet Gupta */ 13999159a5SVineet Gupta 14999159a5SVineet Gupta/ { 15999159a5SVineet Gupta compatible = "snps,arc"; 16*450dd430SVineet Gupta clock-frequency = <80000000>; /* 80 MHZ */ 17999159a5SVineet Gupta #address-cells = <1>; 18999159a5SVineet Gupta #size-cells = <1>; 19999159a5SVineet Gupta chosen { }; 20999159a5SVineet Gupta aliases { }; 21*450dd430SVineet Gupta memory { 22*450dd430SVineet Gupta device_type = "memory"; 23*450dd430SVineet Gupta reg = <0x00000000 0x10000000>; /* 256M */ 24*450dd430SVineet Gupta }; 25999159a5SVineet Gupta}; 26