o2i.dts 505 B

1234567891011121314151617181920212223242526272829
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * O2I 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,o2i";
  11. compatible = "ifm,o2d";
  12. localbus {
  13. flash@0,0 {
  14. partition@60000 {
  15. label = "kernel";
  16. reg = <0x00060000 0x00260000>;
  17. read-only;
  18. };
  19. /* o2i specific partitions */
  20. partition@2c0000 {
  21. label = "o2i user defined";
  22. reg = <0x002c0000 0x00d40000>;
  23. };
  24. };
  25. };
  26. };