mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
msm: kgsl: Replace 325Mhz with 320 Mhz for 8064 and 8960PRO
325Mhz will not be supported anymore and has to be replaced with 320Mhz. Change-Id: Ibdb678215749d0e57b66e6e6416c5cb978b45b66 Signed-off-by: Suman Tatiraju <sumant@codeaurora.org> Signed-off-by: Neha Pandey <nehap@codeaurora.org>
This commit is contained in:
parent
9f85467fee
commit
c27fdab5fc
2 changed files with 3 additions and 3 deletions
|
@ -226,7 +226,7 @@ static struct kgsl_device_platform_data kgsl_3d0_pdata = {
|
|||
.io_fraction = 0,
|
||||
},
|
||||
{
|
||||
.gpu_freq = 325000000,
|
||||
.gpu_freq = 320000000,
|
||||
.bus_freq = 3,
|
||||
.io_fraction = 33,
|
||||
},
|
||||
|
|
|
@ -2917,8 +2917,8 @@ static void __init msm8960_gfx_init(void)
|
|||
/* Fixup data that needs to change based on GPU ID */
|
||||
if (cpu_is_msm8960ab()) {
|
||||
kgsl_3d0_pdata->chipid = ADRENO_CHIPID(3, 2, 1, 0);
|
||||
/* 8960PRO nominal clock rate is 325Mhz instead of 320Mhz */
|
||||
kgsl_3d0_pdata->pwrlevel[1].gpu_freq = 325000000;
|
||||
/* 8960PRO nominal clock rate is 320Mhz */
|
||||
kgsl_3d0_pdata->pwrlevel[1].gpu_freq = 320000000;
|
||||
} else {
|
||||
kgsl_3d0_pdata->iommu_count = 1;
|
||||
if (SOCINFO_VERSION_MAJOR(soc_platform_version) == 1) {
|
||||
|
|
Loading…
Reference in a new issue