Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1678188 > unrolled thread
| Started by | Peter Griffin <peter.griffin@linaro.org> |
|---|---|
| First post | 2017-06-29 23:00 +0200 |
| Last post | 2017-06-30 08:00 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[RESEND PATCH] drm/hisilicon: Ensure LDI regs are properly configured. Peter Griffin <peter.griffin@linaro.org> - 2017-06-29 23:00 +0200
Re: [RESEND PATCH] drm/hisilicon: Ensure LDI regs are properly configured. John Stultz <john.stultz@linaro.org> - 2017-06-29 23:20 +0200
Re: [RESEND PATCH] drm/hisilicon: Ensure LDI regs are properly configured. Greg KH <gregkh@linuxfoundation.org> - 2017-06-30 08:00 +0200
| From | Peter Griffin <peter.griffin@linaro.org> |
|---|---|
| Date | 2017-06-29 23:00 +0200 |
| Subject | [RESEND PATCH] drm/hisilicon: Ensure LDI regs are properly configured. |
| Message-ID | <tXOHD-49X-9@gated-at.bofh.it> |
This patch fixes the following soft lockup:
BUG: soft lockup - CPU#0 stuck for 23s! [weston:307]
On weston idle-timeout the IP is powered down and reset
asserted. On weston resume we get a massive vblank
IRQ storm due to the LDI registers having lost some state.
This state loss is caused by ade_crtc_atomic_begin() not
calling ade_ldi_set_mode(). With this patch applied
resuming from Weston idle-timeout works well.
Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
---
drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c b/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c
index c96c228..72c6357 100644
--- a/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c
+++ b/drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c
@@ -519,9 +519,12 @@ static void ade_crtc_atomic_begin(struct drm_crtc *crtc,
{
struct ade_crtc *acrtc = to_ade_crtc(crtc);
struct ade_hw_ctx *ctx = acrtc->ctx;
+ struct drm_display_mode *mode = &crtc->state->mode;
+ struct drm_display_mode *adj_mode = &crtc->state->adjusted_mode;
if (!ctx->power_on)
(void)ade_power_up(ctx);
+ ade_ldi_set_mode(acrtc, mode, adj_mode);
}
static void ade_crtc_atomic_flush(struct drm_crtc *crtc,
--
2.7.4
[toc] | [next] | [standalone]
| From | John Stultz <john.stultz@linaro.org> |
|---|---|
| Date | 2017-06-29 23:20 +0200 |
| Message-ID | <tXP0Z-4yl-7@gated-at.bofh.it> |
| In reply to | #1678188 |
On Thu, Jun 29, 2017 at 1:54 PM, Peter Griffin <peter.griffin@linaro.org> wrote: > This patch fixes the following soft lockup: > BUG: soft lockup - CPU#0 stuck for 23s! [weston:307] > > On weston idle-timeout the IP is powered down and reset > asserted. On weston resume we get a massive vblank > IRQ storm due to the LDI registers having lost some state. > > This state loss is caused by ade_crtc_atomic_begin() not > calling ade_ldi_set_mode(). With this patch applied > resuming from Weston idle-timeout works well. > > Signed-off-by: Peter Griffin <peter.griffin@linaro.org> While the issue hasn't seemingly come up with Android, I've been running with this patch in my tree for a while without issue. So.. Tested-by: John Stultz <john.stultz@linaro.org> thanks -john
[toc] | [prev] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2017-06-30 08:00 +0200 |
| Subject | Re: [RESEND PATCH] drm/hisilicon: Ensure LDI regs are properly configured. |
| Message-ID | <tXX8e-1pk-11@gated-at.bofh.it> |
| In reply to | #1678188 |
On Thu, Jun 29, 2017 at 09:54:38PM +0100, Peter Griffin wrote:
> This patch fixes the following soft lockup:
> BUG: soft lockup - CPU#0 stuck for 23s! [weston:307]
>
> On weston idle-timeout the IP is powered down and reset
> asserted. On weston resume we get a massive vblank
> IRQ storm due to the LDI registers having lost some state.
>
> This state loss is caused by ade_crtc_atomic_begin() not
> calling ade_ldi_set_mode(). With this patch applied
> resuming from Weston idle-timeout works well.
>
> Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
> ---
> drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c | 3 +++
> 1 file changed, 3 insertions(+)
>
<formletter>
This is not the correct way to submit patches for inclusion in the
stable kernel tree. Please read:
https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.
</formletter>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web