Skip to content

Commit

Permalink
ENGR00222148 [MX6SL]Shrink GPU reserved memory to 32M
Browse files Browse the repository at this point in the history
MX6SL only has 512M memory.Shrinking GPU reserved memory to 32M
can help out of memory issue on MX6SL.This patch will increase
96M system memory, so it will help the case which requests lots
of system memory.Like multiple application running, etc.

And MX6SL doesn't have 3D, 32M is recommended by vivante.

Signed-off-by: Loren Huang <[email protected]>
  • Loading branch information
Loren Huang authored and Tapani- committed Nov 6, 2013
1 parent 69f28d0 commit ada14b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-mx6/board-mx6sl_arm2.c
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ static struct mxc_dvfs_platform_data mx6sl_arm2_dvfscore_data = {
};

static struct viv_gpu_platform_data imx6q_gpu_pdata __initdata = {
.reserved_mem_size = SZ_128M,
.reserved_mem_size = SZ_32M,
};

void __init early_console_setup(unsigned long base, struct clk *clk);
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-mx6/board-mx6sl_evk.c
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ static struct mxc_dvfs_platform_data mx6sl_evk_dvfscore_data = {
};

static struct viv_gpu_platform_data imx6q_gpu_pdata __initdata = {
.reserved_mem_size = SZ_128M,
.reserved_mem_size = SZ_32M,
};

void __init early_console_setup(unsigned long base, struct clk *clk);
Expand Down

0 comments on commit ada14b8

Please sign in to comment.