[PATCH 16/45] drm/msm/dp: add support for programming p1 register block
Dmitry Baryshkov
dmitry.baryshkov at linaro.org
Sun Dec 8 06:22:42 UTC 2024
On Thu, Dec 05, 2024 at 08:31:47PM -0800, Abhinav Kumar wrote:
> p1 register block is needed for the second mst stream.
> Add support in the catalog to be able to program this block.
>
> Signed-off-by: Abhinav Kumar <quic_abhinavk at quicinc.com>
> ---
> drivers/gpu/drm/msm/dp/dp_catalog.c | 29 +++++++++++++++++++++++++++++
> 1 file changed, 29 insertions(+)
> @@ -145,6 +148,26 @@ static inline u32 msm_dp_read_p0(struct msm_dp_catalog_private *catalog,
> return readl_relaxed(catalog->io.p0.base + offset);
> }
>
> +static inline void msm_dp_write_p1(struct msm_dp_catalog_private *catalog,
> + u32 offset, u32 data)
> +{
> + /*
> + * To make sure interface reg writes happens before any other operation,
> + * this function uses writel() instread of writel_relaxed()
> + */
> + writel(data, catalog->io.p1.base + offset);
> +}
> +
> +static inline u32 msm_dp_read_p1(struct msm_dp_catalog_private *catalog,
> + u32 offset)
> +{
> + /*
> + * To make sure interface reg writes happens before any other operation,
> + * this function uses writel() instread of writel_relaxed()
> + */
> + return readl_relaxed(catalog->io.p1.base + offset);
> +}
After looking at the actual code, please implement
msm_dp_read_pn(stream_id) / msm_dp_write_pn(stream_id)
> +
> static inline u32 msm_dp_read_link(struct msm_dp_catalog_private *catalog, u32 offset)
> {
> return readl_relaxed(catalog->io.link.base + offset);
--
With best wishes
Dmitry
More information about the dri-devel
mailing list