o2mnt.dts 733 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * O2MNT 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,o2mnt";
  15. compatible = "ifm,o2d";
  16. localbus {
  17. flash@0,0 {
  18. partition@60000 {
  19. label = "kernel";
  20. reg = <0x00060000 0x00260000>;
  21. read-only;
  22. };
  23. /* add o2mnt specific partitions */
  24. partition@2c0000 {
  25. label = "o2mnt user defined";
  26. reg = <0x002c0000 0x00d40000>;
  27. };
  28. };
  29. };
  30. };