media: venus: core: fix max load for msm8996 and sdm845
authorAlexandre Courbot <acourbot@chromium.org>
Tue, 26 Feb 2019 08:17:46 +0000 (03:17 -0500)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Tue, 21 May 2019 13:01:30 +0000 (09:01 -0400)
Patch commit de5a0bafcfc4 ("media: venus: core: correct maximum hardware
load for sdm845") meant to increase the maximum hardware load for sdm845,
but ended up changing the one for msm8996 instead.

Fixes: de5a0bafcfc4 ("media: venus: core: correct maximum hardware load for sdm845")

Signed-off-by: Alexandre Courbot <acourbot@chromium.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/qcom/venus/core.c

index 739366744e0f3fcebdc716932ce84064de51a3d1..435c7b68bbeda896707e95561dfbc85cccb2677a 100644 (file)
@@ -455,7 +455,7 @@ static const struct venus_resources msm8996_res = {
        .reg_tbl_size = ARRAY_SIZE(msm8996_reg_preset),
        .clks = {"core", "iface", "bus", "mbus" },
        .clks_num = 4,
-       .max_load = 3110400,    /* 4096x2160@90 */
+       .max_load = 2563200,
        .hfi_version = HFI_VERSION_3XX,
        .vmem_id = VIDC_RESOURCE_NONE,
        .vmem_size = 0,
@@ -478,7 +478,7 @@ static const struct venus_resources sdm845_res = {
        .freq_tbl_size = ARRAY_SIZE(sdm845_freq_table),
        .clks = {"core", "iface", "bus" },
        .clks_num = 3,
-       .max_load = 2563200,
+       .max_load = 3110400,    /* 4096x2160@90 */
        .hfi_version = HFI_VERSION_4XX,
        .vmem_id = VIDC_RESOURCE_NONE,
        .vmem_size = 0,