Manage atmel_lcdfb FIFO underflow rework Resetting the LCD and DMA allows to fix screen shifting after a FIFO underflow. It follows reset sequence from errata "LCD Screen Shifting After a Reset". Reworked following Andrew Morton comments. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> --- Andrew Morton :This error may append in latency sensitive cases : slow clock, matrix slot cycle bad configuration, too high pixel clock... Ok incremental patch follows. Tell me if you prefer that I send a reworked one. I also added might_sleep() annotation functions. Ok, I try to adapt this comment in the reworked patch. Index: drivers/video/atmel_lcdfb.c =================================================================== --- a/drivers/video/atmel_lcdfb.c +++ b/drivers/video/atmel_lcdfb.c @@ -361,6 +361,8 @@ static int atmel_lcdfb_check_var(struct */ static void atmel_lcdfb_reset(struct atmel_lcdfb_info *sinfo) { + might_sleep(); + /* LCD power off */ lcdc_writel(sinfo, ATMEL_LCDC_PWRCON, sinfo->guard_time << ATMEL_LCDC_GUARDT_OFFSET); @@ -405,6 +407,8 @@ static int atmel_lcdfb_set_par(struct fb unsigned long clk_value_khz; unsigned long bits_per_line; + might_sleep(); + dev_dbg(info->device, "%s:\n", __func__); dev_dbg(info->device, " * resolution: %ux%u (%ux%u virtual)\n", info->var.xres, info->var.yres, @@ -840,7 +844,8 @@ static int __init atmel_lcdfb_probe(stru goto unmap_mmio; } - /* Initialize bottom half workqueue */ + /* Some operations on the LCDC might sleep and + * require a preemptible task context */ INIT_WORK(&sinfo->task, atmel_lcdfb_task); ret = atmel_lcdfb_init_fbinfo(sinfo); @@ -885,6 +890,7 @@ static int __init atmel_lcdfb_probe(stru free_cmap: fb_dealloc_cmap(&info->cmap); unregister_irqs: + cancel_work_sync(&sinfo->task); free_irq(sinfo->irq_base, info); unmap_mmio: exit_backlight(sinfo); @@ -922,6 +928,7 @@ static int __exit atmel_lcdfb_remove(str if (!sinfo) return 0; + cancel_work_sync(&sinfo->task); exit_backlight(sinfo); if (sinfo->atmel_lcdfb_power_control) sinfo->atmel_lcdfb_power_control(0); --
| Greg Kroah-Hartman | [PATCH 004/196] Chinese: add translation of SubmittingPatches |
| Rafael J. Wysocki | [Bug #11210] libata badness |
| Andrea Arcangeli | [PATCH 00 of 11] mmu notifier #v16 |
| Andrew Morton | Re: -mm merge plans for 2.6.23 -- sys_fallocate |
git: | |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Daniel Eischen | Re: error with thread |
| David Miller | Re: [GIT]: Networking |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
