o2d.dts 785 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * O2D Device Tree Source
  4. *
  5. * Copyright (C) 2012 DENX Software Engineering
  6. * Anatolij Gustschin <[email protected]>
  7. */
  8. /include/ "o2d.dtsi"
  9. / {
  10. model = "ifm,o2d";
  11. compatible = "ifm,o2d";
  12. memory@0 {
  13. reg = <0x00000000 0x08000000>; // 128MB
  14. };
  15. localbus {
  16. ranges = <0 0 0xfc000000 0x02000000
  17. 3 0 0xe3000000 0x00100000>;
  18. flash@0,0 {
  19. compatible = "cfi-flash";
  20. reg = <0 0 0x02000000>;
  21. bank-width = <2>;
  22. device-width = <2>;
  23. #size-cells = <1>;
  24. #address-cells = <1>;
  25. partition@60000 {
  26. label = "kernel";
  27. reg = <0x00060000 0x00260000>;
  28. read-only;
  29. };
  30. /* o2d specific partitions */
  31. partition@2c0000 {
  32. label = "o2d user defined";
  33. reg = <0x002c0000 0x01d40000>;
  34. };
  35. };
  36. };
  37. };