2018-02-04 17:46:45 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2016-05-24 15:31:29 +02:00
|
|
|
/*
|
|
|
|
* Samsung's Exynos SoC MFC (Video Codec) reserved memory common definition.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Samsung Electronics Co., Ltd
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
reserved-memory {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
ranges;
|
|
|
|
|
2020-11-05 19:45:05 +01:00
|
|
|
mfc_left: region-mfc-left {
|
2016-05-24 15:31:29 +02:00
|
|
|
compatible = "shared-dma-pool";
|
|
|
|
no-map;
|
2017-01-27 17:10:46 -03:00
|
|
|
size = <0x2400000>;
|
2016-06-07 14:03:36 +02:00
|
|
|
alignment = <0x100000>;
|
2016-05-24 15:31:29 +02:00
|
|
|
};
|
|
|
|
|
2020-11-05 19:45:05 +01:00
|
|
|
mfc_right: region-mfc-right {
|
2016-05-24 15:31:29 +02:00
|
|
|
compatible = "shared-dma-pool";
|
|
|
|
no-map;
|
2016-06-07 14:03:36 +02:00
|
|
|
size = <0x800000>;
|
|
|
|
alignment = <0x100000>;
|
2016-05-24 15:31:29 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2016-06-07 14:03:37 +02:00
|
|
|
|
|
|
|
&mfc {
|
|
|
|
memory-region = <&mfc_left>, <&mfc_right>;
|
|
|
|
};
|