This adds sdm845 DT compatible string with it's resource
data table.

Reviewed-by: Rob Herring <r...@kernel.org>
Signed-off-by: Stanimir Varbanov <stanimir.varba...@linaro.org>
---
 .../devicetree/bindings/media/qcom,venus.txt       |  1 +
 drivers/media/platform/qcom/venus/core.c           | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/Documentation/devicetree/bindings/media/qcom,venus.txt 
b/Documentation/devicetree/bindings/media/qcom,venus.txt
index 2693449daf73..00d0d1bf7647 100644
--- a/Documentation/devicetree/bindings/media/qcom,venus.txt
+++ b/Documentation/devicetree/bindings/media/qcom,venus.txt
@@ -6,6 +6,7 @@
        Definition: Value should contain one of:
                - "qcom,msm8916-venus"
                - "qcom,msm8996-venus"
+               - "qcom,sdm845-venus"
 - reg:
        Usage: required
        Value type: <prop-encoded-array>
diff --git a/drivers/media/platform/qcom/venus/core.c 
b/drivers/media/platform/qcom/venus/core.c
index 381bfdd688db..bb6add9d340e 100644
--- a/drivers/media/platform/qcom/venus/core.c
+++ b/drivers/media/platform/qcom/venus/core.c
@@ -450,9 +450,31 @@ static const struct venus_resources msm8996_res = {
        .fwname = "qcom/venus-4.2/venus.mdt",
 };
 
+static const struct freq_tbl sdm845_freq_table[] = {
+       { 1944000, 380000000 }, /* 4k UHD @ 60 */
+       {  972000, 320000000 }, /* 4k UHD @ 30 */
+       {  489600, 200000000 }, /* 1080p @ 60 */
+       {  244800, 100000000 }, /* 1080p @ 30 */
+};
+
+static const struct venus_resources sdm845_res = {
+       .freq_tbl = sdm845_freq_table,
+       .freq_tbl_size = ARRAY_SIZE(sdm845_freq_table),
+       .clks = {"core", "iface", "bus" },
+       .clks_num = 3,
+       .max_load = 2563200,
+       .hfi_version = HFI_VERSION_4XX,
+       .vmem_id = VIDC_RESOURCE_NONE,
+       .vmem_size = 0,
+       .vmem_addr = 0,
+       .dma_mask = 0xe0000000 - 1,
+       .fwname = "qcom/venus-5.2/venus.mdt",
+};
+
 static const struct of_device_id venus_dt_match[] = {
        { .compatible = "qcom,msm8916-venus", .data = &msm8916_res, },
        { .compatible = "qcom,msm8996-venus", .data = &msm8996_res, },
+       { .compatible = "qcom,sdm845-venus", .data = &sdm845_res, },
        { }
 };
 MODULE_DEVICE_TABLE(of, venus_dt_match);
-- 
2.14.1

Reply via email to