From: tanmay@codeaurora.org
To: Stephen Boyd <swboyd@chromium.org>
Cc: robh+dt@kernel.org, sam@ravnborg.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org,
seanpaul@chromium.org, robdclark@gmail.com,
aravindh@codeaurora.org, abhinavk@codeaurora.org
Subject: Re: [PATCH v6 0/5] Add support for DisplayPort driver on
Date: Mon, 15 Jun 2020 15:51:45 -0700 [thread overview]
Message-ID: <1eda01da33b620ddee5162be3326853f@codeaurora.org> (raw)
In-Reply-To: <159200440578.62212.5195358467251573190@swboyd.mtv.corp.google.com>
On 2020-06-12 16:26, Stephen Boyd wrote:
Thanks for reviews Stephen.
> Quoting Tanmay Shah (2020-06-11 18:50:25)
>> These patches add support for Display-Port driver on SnapDragon
>> hardware. It adds
>> DP driver and DP PLL driver files along with the needed device-tree
>> bindings.
>>
>> The block diagram of DP driver is shown below:
>>
>>
>> +-------------+
>> |DRM FRAMEWORK|
>> +------+------+
>> |
>> +----v----+
>> | DP DRM |
>> +----+----+
>> |
>> +----v----+
>> +------------+| DP +----------++------+
>> + +---+| DISPLAY |+---+ | |
>> | + +-+-----+-+ | | |
>> | | | | | | |
>> | | | | | | |
>> | | | | | | |
>> v v v v v v v
>> +------+ +------+ +---+ +----+ +----+ +---+ +-----+
>> | DP | | DP | |DP | | DP | | DP | |DP | | DP |
>> |PARSER| | HPD | |AUX| |LINK| |CTRL| |PHY| |POWER|
>> +--+---+ +---+--+ +---+ +----+ +--+-+ +-+-+ +-----+
>> | | |
>> +--v---+ +v-----v+
>> |DEVICE| | DP |
>> | TREE | |CATALOG|
>> +------+ +---+---+
>> |
>> +---v----+
>> |CTRL/PHY|
>> | HW |
>> +--------+
>>
>
> I've never seen a block diagram for a driver before...
>
It is here for v5. https://patchwork.freedesktop.org/series/74312/
>>
>> These patches have dependency on clock driver changes mentioned below:
>> https://patchwork.kernel.org/patch/11245895/
>> https://patchwork.kernel.org/cover/11069083/
>
> These are merged right? Don't need to include this if it's already
> merged.
>
Ok Thanks.
> Can you include a changelog in the cover letter too so we know what has
> changed between versions of the patchset?
>
Sure.
>>
>> Chandan Uddaraju (4):
>> dt-bindings: msm/dp: add bindings of DP/DP-PLL driver for Snapdragon
>> drm: add constant N value in helper file
>> drm/msm/dp: add displayPort driver support
>> drm/msm/dp: add support for DP PLL driver
>>
>> Jeykumar Sankaran (1):
>> drm/msm/dpu: add display port support in DPU
>>
> [...]
>>
>>
>> base-commit: 48f99181fc118d82dc8bf6c7221ad1c654cb8bc2
>
> What is this commit? I don't see it in linux-next.
Here:
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=next-20200603&id=48f99181fc118d82dc8bf6c7221ad1c654cb8bc2
WARNING: multiple messages have this Message-ID (diff)
From: tanmay@codeaurora.org
To: Stephen Boyd <swboyd@chromium.org>
Cc: devicetree@vger.kernel.org, aravindh@codeaurora.org,
linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
dri-devel@lists.freedesktop.org, robh+dt@kernel.org,
seanpaul@chromium.org, abhinavk@codeaurora.org,
freedreno@lists.freedesktop.org, sam@ravnborg.org
Subject: Re: [PATCH v6 0/5] Add support for DisplayPort driver on
Date: Mon, 15 Jun 2020 15:51:45 -0700 [thread overview]
Message-ID: <1eda01da33b620ddee5162be3326853f@codeaurora.org> (raw)
In-Reply-To: <159200440578.62212.5195358467251573190@swboyd.mtv.corp.google.com>
On 2020-06-12 16:26, Stephen Boyd wrote:
Thanks for reviews Stephen.
> Quoting Tanmay Shah (2020-06-11 18:50:25)
>> These patches add support for Display-Port driver on SnapDragon
>> hardware. It adds
>> DP driver and DP PLL driver files along with the needed device-tree
>> bindings.
>>
>> The block diagram of DP driver is shown below:
>>
>>
>> +-------------+
>> |DRM FRAMEWORK|
>> +------+------+
>> |
>> +----v----+
>> | DP DRM |
>> +----+----+
>> |
>> +----v----+
>> +------------+| DP +----------++------+
>> + +---+| DISPLAY |+---+ | |
>> | + +-+-----+-+ | | |
>> | | | | | | |
>> | | | | | | |
>> | | | | | | |
>> v v v v v v v
>> +------+ +------+ +---+ +----+ +----+ +---+ +-----+
>> | DP | | DP | |DP | | DP | | DP | |DP | | DP |
>> |PARSER| | HPD | |AUX| |LINK| |CTRL| |PHY| |POWER|
>> +--+---+ +---+--+ +---+ +----+ +--+-+ +-+-+ +-----+
>> | | |
>> +--v---+ +v-----v+
>> |DEVICE| | DP |
>> | TREE | |CATALOG|
>> +------+ +---+---+
>> |
>> +---v----+
>> |CTRL/PHY|
>> | HW |
>> +--------+
>>
>
> I've never seen a block diagram for a driver before...
>
It is here for v5. https://patchwork.freedesktop.org/series/74312/
>>
>> These patches have dependency on clock driver changes mentioned below:
>> https://patchwork.kernel.org/patch/11245895/
>> https://patchwork.kernel.org/cover/11069083/
>
> These are merged right? Don't need to include this if it's already
> merged.
>
Ok Thanks.
> Can you include a changelog in the cover letter too so we know what has
> changed between versions of the patchset?
>
Sure.
>>
>> Chandan Uddaraju (4):
>> dt-bindings: msm/dp: add bindings of DP/DP-PLL driver for Snapdragon
>> drm: add constant N value in helper file
>> drm/msm/dp: add displayPort driver support
>> drm/msm/dp: add support for DP PLL driver
>>
>> Jeykumar Sankaran (1):
>> drm/msm/dpu: add display port support in DPU
>>
> [...]
>>
>>
>> base-commit: 48f99181fc118d82dc8bf6c7221ad1c654cb8bc2
>
> What is this commit? I don't see it in linux-next.
Here:
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?h=next-20200603&id=48f99181fc118d82dc8bf6c7221ad1c654cb8bc2
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2020-06-15 22:51 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-12 1:50 [PATCH v6 0/5] Add support for DisplayPort driver on Tanmay Shah
2020-06-12 1:50 ` Tanmay Shah
2020-06-12 1:50 ` [PATCH v6 1/5] dt-bindings: msm/dp: add bindings of DP/DP-PLL driver for Snapdragon Tanmay Shah
2020-06-12 1:50 ` Tanmay Shah
2020-06-12 16:21 ` Rob Herring
2020-06-12 16:21 ` Rob Herring
2020-06-16 11:15 ` Stephen Boyd
2020-06-16 11:15 ` Stephen Boyd
2020-06-17 15:38 ` Rob Herring
2020-06-17 15:38 ` Rob Herring
2020-06-17 19:52 ` Stephen Boyd
2020-06-12 1:50 ` [PATCH v6 2/5] drm: add constant N value in helper file Tanmay Shah
2020-06-12 1:50 ` Tanmay Shah
2020-06-12 1:50 ` [PATCH v6 3/5] drm/msm/dp: add displayPort driver support Tanmay Shah
2020-06-12 1:50 ` Tanmay Shah
2020-06-12 1:50 ` [PATCH v6 4/5] drm/msm/dp: add support for DP PLL driver Tanmay Shah
2020-06-12 1:50 ` Tanmay Shah
2020-06-12 1:50 ` [PATCH v6 5/5] drm/msm/dpu: add display port support in DPU Tanmay Shah
2020-06-12 1:50 ` Tanmay Shah
2020-06-12 23:26 ` [PATCH v6 0/5] Add support for DisplayPort driver on Stephen Boyd
2020-06-12 23:26 ` Stephen Boyd
2020-06-15 22:51 ` tanmay [this message]
2020-06-15 22:51 ` tanmay
2020-06-15 23:04 ` [Freedreno] " Jeffrey Hugo
2020-06-15 23:04 ` Jeffrey Hugo
2020-06-15 23:36 ` tanmay
2020-06-15 23:36 ` tanmay
2020-06-16 10:58 ` Stephen Boyd
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1eda01da33b620ddee5162be3326853f@codeaurora.org \
--to=tanmay@codeaurora.org \
--cc=abhinavk@codeaurora.org \
--cc=aravindh@codeaurora.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robdclark@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sam@ravnborg.org \
--cc=seanpaul@chromium.org \
--cc=swboyd@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.