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:
Suman Tatiraju 2012-10-29 18:24:53 -07:00 committed by Stephen Boyd
parent 9f85467fee
commit c27fdab5fc
2 changed files with 3 additions and 3 deletions

View file

@ -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,
},

View file

@ -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) {