skeleton.dtsi 740 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. /*
  9. * Skeleton device tree; the bare minimum needed to boot; just include and
  10. * add a compatible value.
  11. */
  12. / {
  13. compatible = "snps,arc";
  14. clock-frequency = <80000000>; /* 80 MHZ */
  15. #address-cells = <1>;
  16. #size-cells = <1>;
  17. chosen { };
  18. aliases { };
  19. cpus {
  20. #address-cells = <1>;
  21. #size-cells = <0>;
  22. cpu@0 {
  23. device_type = "cpu";
  24. compatible = "snps,arc770d";
  25. reg = <0>;
  26. };
  27. };
  28. memory {
  29. device_type = "memory";
  30. reg = <0x80000000 0x10000000>; /* 256M */
  31. };
  32. };