From: Inki Dae <inki.dae@samsung.com>
To: Gustavo Padovan <gustavo@padovan.org>,
linux-samsung-soc@vger.kernel.org,
dri-devel@lists.freedesktop.org, jy0922.shim@samsung.com
Subject: Re: drm/exynos: Add atomic modesetting support
Date: Thu, 07 May 2015 11:45:18 +0900 [thread overview]
Message-ID: <554AD1BE.8040103@samsung.com> (raw)
In-Reply-To: <20150506214504.GA25751@joana>
Hi,
On 2015년 05월 07일 06:45, Gustavo Padovan wrote:
> Hi Inki and Joonyoung.
>
> Any thoughts on this?
You need to resolve one issue that booting is still halted when one more
crtc drivers are enabled, which is a dead lock issue incurred by
register_framebuffer call. For this, I pointed out already at v3.
The last patch may resolve invalid memory access which state->crtc had
NULL while modetest is being performed but it didn't resolve above
booting halt issue.
So as of now, I have merged this patch series for more reviews to
exynos-drm-next-todo yesterday. I will move them to exynos-drm-next if
the issue is resolved.
Thanks,
Inki Dae
>
> 2015-04-30 Gustavo Padovan <gustavo@padovan.org>:
>
>> Hi,
>>
>> Here goes the full support for atomic modesetting on exynos. I've
>> split the patches in the various phases of atomic support.
>>
>> v2: fixes comments by Joonyoung
>> - remove unused var in patch 09
>> - use ->disable instead of outdated ->dpms in hdmi code
>> - remove WARN_ON from crtc enable/disable
>>
>> v3: fixes comment by Joonyoung
>> - move the removal of drm_helper_disable_unused_functions() to
>> separated patch
>>
>> v4: add patches that remove unnecessary calls to disable_plane()
>>
>> Gustavo
>>
>> ---
>> Gustavo Padovan (12):
>> drm/exynos: atomic phase 1: use drm_plane_helper_update()
>> drm/exynos: atomic phase 1: use drm_plane_helper_disable()
>> drm/exynos: atomic phase 1: add .mode_set_nofb() callback
>> drm/exynos: atomic phase 2: wire up state reset(), duplicate() and destroy()
>> drm/exynos: atomic phase 2: keep track of framebuffer pointer
>> drm/exynos: atomic phase 3: atomic updates of planes
>> drm/exynos: atomic phase 3: use atomic .set_config helper
>> drm/exynos: atomic phase 3: convert page flips
>> drm/exynos: remove exported functions from exynos_drm_plane
>> drm/exynos: don't disable unused functions at init
>> drm/exynos: atomic dpms support
>> drm/exynos: remove unnecessary calls to disable_plane()
>>
>> drivers/gpu/drm/bridge/ps8622.c | 6 +-
>> drivers/gpu/drm/bridge/ptn3460.c | 6 +-
>> drivers/gpu/drm/exynos/exynos_dp_core.c | 6 +-
>> drivers/gpu/drm/exynos/exynos_drm_crtc.c | 215 +++++++++----------------------
>> drivers/gpu/drm/exynos/exynos_drm_dpi.c | 6 +-
>> drivers/gpu/drm/exynos/exynos_drm_drv.c | 2 +
>> drivers/gpu/drm/exynos/exynos_drm_drv.h | 4 +-
>> drivers/gpu/drm/exynos/exynos_drm_dsi.c | 6 +-
>> drivers/gpu/drm/exynos/exynos_drm_encoder.c | 35 +----
>> drivers/gpu/drm/exynos/exynos_drm_fb.c | 12 +-
>> drivers/gpu/drm/exynos/exynos_drm_fbdev.c | 3 -
>> drivers/gpu/drm/exynos/exynos_drm_plane.c | 115 +++++++++--------
>> drivers/gpu/drm/exynos/exynos_drm_plane.h | 11 --
>> drivers/gpu/drm/exynos/exynos_drm_vidi.c | 6 +-
>> drivers/gpu/drm/exynos/exynos_hdmi.c | 10 +-
>> 15 files changed, 178 insertions(+), 265 deletions(-)
>>
>
> Gustavo
>
next prev parent reply other threads:[~2015-05-07 2:45 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-30 21:50 drm/exynos: Add atomic modesetting support Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 01/12] drm/exynos: atomic phase 1: use drm_plane_helper_update() Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 02/12] drm/exynos: atomic phase 1: use drm_plane_helper_disable() Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 03/12] drm/exynos: atomic phase 1: add .mode_set_nofb() callback Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 04/12] drm/exynos: atomic phase 2: wire up state reset(), duplicate() and destroy() Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 05/12] drm/exynos: atomic phase 2: keep track of framebuffer pointer Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 06/12] drm/exynos: atomic phase 3: atomic updates of planes Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 07/12] drm/exynos: atomic phase 3: use atomic .set_config helper Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 08/12] drm/exynos: atomic phase 3: convert page flips Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 09/12] drm/exynos: remove exported functions from exynos_drm_plane Gustavo Padovan
2015-05-08 23:36 ` Tobias Jakobi
2015-04-30 21:50 ` [PATCH v4 10/12] drm/exynos: don't disable unused functions at init Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 11/12] drm/exynos: atomic dpms support Gustavo Padovan
2015-04-30 21:50 ` [PATCH v4 12/12] drm/exynos: remove unnecessary calls to disable_plane() Gustavo Padovan
2015-05-06 21:45 ` drm/exynos: Add atomic modesetting support Gustavo Padovan
2015-05-07 2:45 ` Inki Dae [this message]
2015-05-08 21:45 ` Gustavo Padovan
2015-05-08 21:51 ` Tobias Jakobi
2015-05-09 10:23 ` Inki Dae
2015-05-09 12:13 ` Tobias Jakobi
2015-05-09 12:20 ` Tobias Jakobi
2015-05-09 12:30 ` Tobias Jakobi
2015-05-10 13:54 ` Inki Dae
2015-05-12 18:29 ` Gustavo Padovan
2015-05-14 18:41 ` Gustavo Padovan
-- strict thread matches above, loose matches on Subject: below --
2015-05-15 10:16 Tobias Jakobi
2015-05-15 11:44 Tobias Jakobi
2015-05-18 19:51 ` Gustavo Padovan
2015-05-18 20:35 ` Daniel Stone
2015-05-18 21:02 ` Gustavo Padovan
2015-05-19 13:53 ` Tobias Jakobi
2015-05-19 14:06 ` Daniel Stone
2015-05-19 14:52 ` Tobias Jakobi
2015-05-19 17:27 ` Tobias Jakobi
2015-05-19 18:43 ` Gustavo Padovan
2015-05-19 18:54 ` Daniel Stone
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=554AD1BE.8040103@samsung.com \
--to=inki.dae@samsung.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=gustavo@padovan.org \
--cc=jy0922.shim@samsung.com \
--cc=linux-samsung-soc@vger.kernel.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.