exynos-mfc-reserved-memory.dtsi 580 B

1234567891011121314151617181920212223242526272829303132
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Samsung's Exynos SoC MFC (Video Codec) reserved memory common definition.
  4. *
  5. * Copyright (c) 2016 Samsung Electronics Co., Ltd
  6. */
  7. / {
  8. reserved-memory {
  9. #address-cells = <1>;
  10. #size-cells = <1>;
  11. ranges;
  12. mfc_left: region-mfc-left {
  13. compatible = "shared-dma-pool";
  14. no-map;
  15. size = <0x2400000>;
  16. alignment = <0x100000>;
  17. };
  18. mfc_right: region-mfc-right {
  19. compatible = "shared-dma-pool";
  20. no-map;
  21. size = <0x800000>;
  22. alignment = <0x100000>;
  23. };
  24. };
  25. };
  26. &mfc {
  27. memory-region = <&mfc_left>, <&mfc_right>;
  28. };