o3dnt.dts 1007 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * O3DNT Device Tree Source
  3. *
  4. * Copyright (C) 2012 DENX Software Engineering
  5. * Anatolij Gustschin <agust@denx.de>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. */
  12. /include/ "o2d.dtsi"
  13. / {
  14. model = "ifm,o3dnt";
  15. compatible = "ifm,o2d";
  16. memory {
  17. reg = <0x00000000 0x04000000>; // 64MB
  18. };
  19. localbus {
  20. ranges = <0 0 0xfc000000 0x01000000
  21. 3 0 0xe3000000 0x00100000>;
  22. flash@0,0 {
  23. compatible = "cfi-flash";
  24. reg = <0 0 0x01000000>;
  25. bank-width = <2>;
  26. device-width = <2>;
  27. #size-cells = <1>;
  28. #address-cells = <1>;
  29. partition@60000 {
  30. label = "kernel";
  31. reg = <0x00060000 0x00260000>;
  32. read-only;
  33. };
  34. /* o3dnt specific partitions */
  35. partition@2c0000 {
  36. label = "o3dnt user defined";
  37. reg = <0x002c0000 0x00d40000>;
  38. };
  39. };
  40. };
  41. };