Skip to content
Snippets Groups Projects
Commit a3aa3b11 authored by Robby Cai's avatar Robby Cai Committed by Dong Aisheng
Browse files

MLK-23600-5 Fix the way VIV_VIDIOC_QUERY_EXTMEM used reserved memory


use memory-region to get reserved memory

Signed-off-by: default avatarRobby Cai <robby.cai@nxp.com>
Reviewed-by: default avatarGuoniu.zhou <guoniu.zhou@nxp.com>
(cherry picked from commit 5a28380ef4f4afffdabcfacd062706487cc150f8)
(cherry picked from commit b8f879b7)
parent b63406ab
No related branches found
No related tags found
1 merge request!455CI: Update gitlab-ci
...@@ -196,6 +196,16 @@ dsp_reserved: dsp@92400000 { ...@@ -196,6 +196,16 @@ dsp_reserved: dsp@92400000 {
no-map; no-map;
reg = <0 0x92400000 0 0x2000000>; reg = <0 0x92400000 0 0x2000000>;
}; };
isp0_reserved: isp0@B0000000 {
no-map;
reg = <0 0xB0000000 0 0x10000000>;
};
isp1_reserved: isp1@B0000000 {
no-map;
reg = <0 0xB0000000 0 0x10000000>;
};
}; };
osc_32k: clock-osc-32k { osc_32k: clock-osc-32k {
...@@ -1545,6 +1555,7 @@ isp_0: isp@32e10000 { ...@@ -1545,6 +1555,7 @@ isp_0: isp@32e10000 {
power-domains = <&ispdwp_pd>; power-domains = <&ispdwp_pd>;
id = <0>; id = <0>;
gpr = <&media_blk_ctrl>; gpr = <&media_blk_ctrl>;
memory-region = <&isp0_reserved>;
status = "disabled"; status = "disabled";
}; };
...@@ -1562,6 +1573,7 @@ isp_1: isp@32e20000 { ...@@ -1562,6 +1573,7 @@ isp_1: isp@32e20000 {
power-domains = <&ispdwp_pd>; power-domains = <&ispdwp_pd>;
id = <1>; id = <1>;
gpr = <&media_blk_ctrl>; gpr = <&media_blk_ctrl>;
memory-region = <&isp1_reserved>;
status = "disabled"; status = "disabled";
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment