exynos-mfc-reserved-memory.dtsi 734 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Samsung's Exynos SoC MFC (Video Codec) reserved memory common definition.
  3. *
  4. * Copyright (c) 2016 Samsung Electronics Co., Ltd
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. / {
  11. reserved-memory {
  12. #address-cells = <1>;
  13. #size-cells = <1>;
  14. ranges;
  15. mfc_left: region_mfc_left {
  16. compatible = "shared-dma-pool";
  17. no-map;
  18. size = <0x1000000>;
  19. alignment = <0x100000>;
  20. };
  21. mfc_right: region_mfc_right {
  22. compatible = "shared-dma-pool";
  23. no-map;
  24. size = <0x800000>;
  25. alignment = <0x100000>;
  26. };
  27. };
  28. };
  29. &mfc {
  30. memory-region = <&mfc_left>, <&mfc_right>;
  31. };