]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
media: qcom: camss: Add sm8550 compatible
authorDepeng Shao <quic_depengs@quicinc.com>
Mon, 13 Jan 2025 04:31:30 +0000 (10:01 +0530)
committerHans Verkuil <hverkuil@xs4all.nl>
Thu, 6 Feb 2025 12:49:32 +0000 (13:49 +0100)
Add CAMSS_8550 enum, sm8550 compatible and sm8550 camss drvier private
data, the private data just include some basic information now, later
changes will enumerate with csiphy, csid and vfe resources.

Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Depeng Shao <quic_depengs@quicinc.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
drivers/media/platform/qcom/camss/camss.c
drivers/media/platform/qcom/camss/camss.h

index b7ee959f7b31436d3b839dabc339193fde45771b..cbcbcfe46419f520b810af7f099061b7bb11b515 100644 (file)
@@ -1943,6 +1943,19 @@ static const struct resources_icc icc_res_sc8280xp[] = {
        },
 };
 
+static const struct resources_icc icc_res_sm8550[] = {
+       {
+               .name = "ahb",
+               .icc_bw_tbl.avg = 2097152,
+               .icc_bw_tbl.peak = 2097152,
+       },
+       {
+               .name = "hf_0_mnoc",
+               .icc_bw_tbl.avg = 2097152,
+               .icc_bw_tbl.peak = 2097152,
+       },
+};
+
 /*
  * camss_add_clock_margin - Add margin to clock frequency rate
  * @rate: Clock frequency rate
@@ -2979,6 +2992,14 @@ static const struct camss_resources sc7280_resources = {
        .link_entities = camss_link_entities
 };
 
+static const struct camss_resources sm8550_resources = {
+       .version = CAMSS_8550,
+       .pd_name = "top",
+       .icc_res = icc_res_sm8550,
+       .icc_path_num = ARRAY_SIZE(icc_res_sm8550),
+       .link_entities = camss_link_entities
+};
+
 static const struct of_device_id camss_dt_match[] = {
        { .compatible = "qcom,msm8916-camss", .data = &msm8916_resources },
        { .compatible = "qcom,msm8953-camss", .data = &msm8953_resources },
@@ -2988,6 +3009,7 @@ static const struct of_device_id camss_dt_match[] = {
        { .compatible = "qcom,sdm660-camss", .data = &sdm660_resources },
        { .compatible = "qcom,sdm845-camss", .data = &sdm845_resources },
        { .compatible = "qcom,sm8250-camss", .data = &sm8250_resources },
+       { .compatible = "qcom,sm8550-camss", .data = &sm8550_resources },
        { }
 };
 
index bd1d1d2b831dec7ee276212cda7c38ff5dcb2796..58fc61e7cf7ad4a28e7e1dea3cf7f22a0ff5c825 100644 (file)
@@ -85,6 +85,7 @@ enum camss_version {
        CAMSS_8250,
        CAMSS_8280XP,
        CAMSS_845,
+       CAMSS_8550,
 };
 
 enum icc_count {