On 10/6/25 3:39 AM, Ayushi Makhija wrote:
> Add DSI Controller v2.5.1 support for QCS8300 SoC.
>
> Signed-off-by: Ayushi Makhija <[email protected]>
> ---
> drivers/gpu/drm/msm/dsi/dsi_cfg.c | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/drivers/gpu/drm/msm/dsi/dsi_cfg.c
> b/drivers/gpu/drm/msm/dsi/dsi_cfg.c
> index fed8e9b67011..b60384ea0b32 100644
> --- a/drivers/gpu/drm/msm/dsi/dsi_cfg.c
> +++ b/drivers/gpu/drm/msm/dsi/dsi_cfg.c
> @@ -226,6 +226,17 @@ static const struct regulator_bulk_data
> sa8775p_dsi_regulators[] = {
> { .supply = "refgen" },
> };
>
> +static const struct msm_dsi_config qcs8300_dsi_cfg = {
> + .io_offset = DSI_6G_REG_SHIFT,
> + .regulator_data = sa8775p_dsi_regulators,
> + .num_regulators = ARRAY_SIZE(sa8775p_dsi_regulators),
> + .bus_clk_names = dsi_v2_4_clk_names,
> + .num_bus_clks = ARRAY_SIZE(dsi_v2_4_clk_names),
> + .io_start = {
> + { 0xae94000},
"{ 0xae94000 },"
But there is no need to introduce this ops (vs 8775), if the secondary
IO base is never requested, it will simply be left unused
Konrad