30 lines
643 B
Plaintext
30 lines
643 B
Plaintext
![]() |
/*
|
||
|
* Samsung's Exynos SoC MFC (Video Codec) reserved memory common definition.
|
||
|
*
|
||
|
* Copyright (c) 2016 Samsung Electronics Co., Ltd
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*/
|
||
|
|
||
|
/ {
|
||
|
reserved-memory {
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <1>;
|
||
|
ranges;
|
||
|
|
||
|
mfc_left: region@51000000 {
|
||
|
compatible = "shared-dma-pool";
|
||
|
no-map;
|
||
|
reg = <0x51000000 0x800000>;
|
||
|
};
|
||
|
|
||
|
mfc_right: region@43000000 {
|
||
|
compatible = "shared-dma-pool";
|
||
|
no-map;
|
||
|
reg = <0x43000000 0x800000>;
|
||
|
};
|
||
|
};
|
||
|
};
|