From: Tomi Valkeinen <tomi.valkeinen@nokia.com>
To: rick@efn.org
Cc: imre.deak@nokia.com, aam@ridgerun.com, juha.yrjola@nokia.com,
dirk.behme@de.bosch.com, linux-omap@vger.kernel.org
Subject: Re: Fix for dispc's error "omapfb omapfb: irq error status 4020"
Date: Mon, 10 Nov 2008 10:30:38 +0200 [thread overview]
Message-ID: <1226305838.7185.5.camel@tubuntu> (raw)
In-Reply-To: <E1KyYMw-0003Ob-5e@amazonia.comcast.net>
Hi,
On Fri, 2008-11-07 at 12:55 -0800, ext Rick Bronson wrote:
> Folks,
>
> Please take a look at this change to drivers/video/omap/dispc.c. It
> addresses a problem seen on some boots of OMAP's. On about 1 in 30
> boots one gets an endless stream of interrupts from the
> DISPC_IRQ_SYNC_LOST bit in the DISPC_IRQSTATUS register. The
> following messages are printed.
>
> omapfb omapfb: irq error status 4020
>
> The correct solution to this problem is to perform a "soft reset"
> but that requires a bit of re-architecturing of the code as the init
> routine would have to be split up, etc. See the OMAP pdf, search for
> "To clear a synchronization lost interrupt".
>
> This patch allows the above error message to get printed once and
> then disables further DISPC_IRQ_SYNC_LOST interrups.
>
> Comments?
I think the correct solution would be to find out why we get sync lost
errors and fix that. Your patch just hides the problem.
However, I agree that it's not good to just keep spamming the error,
possibly making the board freeze. The new DSS turns the display off
after 100 error messages. But I don't think just hiding the interrupt is
a good change.
>
> Thanks,
>
> Rick
Tomi
>
> --- linux-omap-2.6/drivers/video/omap/dispc.c.~1~ 2008-11-04 14:23:38.000000000 -0800
> +++ linux-omap-2.6/drivers/video/omap/dispc.c 2008-11-07 12:34:54.000000000 -0800
> @@ -157,7 +157,7 @@ struct resmap {
>
> #define MAX_IRQ_HANDLERS 4
>
> -static struct {
> +static struct omapfb_dispc {
> void __iomem *base;
>
> struct omapfb_mem_desc mem_desc;
> @@ -169,6 +169,7 @@ static struct {
>
> int ext_mode;
>
> + u32 irq_error_mask; /* mask used for errors */
> struct {
> u32 irq_mask;
> void (*callback)(void *);
> @@ -812,16 +813,16 @@ static void set_lcd_timings(void)
> panel->pixel_clock = fck / lck_div / pck_div / 1000;
> }
>
> -static void recalc_irq_mask(void)
> +static void recalc_irq_mask(struct omapfb_dispc *p_dispc)
> {
> int i;
> - unsigned long irq_mask = DISPC_IRQ_MASK_ERROR;
> + unsigned long irq_mask = p_dispc->irq_error_mask;
>
> for (i = 0; i < MAX_IRQ_HANDLERS; i++) {
> - if (!dispc.irq_handlers[i].callback)
> + if (!p_dispc->irq_handlers[i].callback)
> continue;
>
> - irq_mask |= dispc.irq_handlers[i].irq_mask;
> + irq_mask |= p_dispc->irq_handlers[i].irq_mask;
> }
>
> enable_lcd_clocks(1);
> @@ -843,7 +844,7 @@ int omap_dispc_request_irq(unsigned long
> dispc.irq_handlers[i].irq_mask = irq_mask;
> dispc.irq_handlers[i].callback = callback;
> dispc.irq_handlers[i].data = data;
> - recalc_irq_mask();
> + recalc_irq_mask(&dispc);
>
> return 0;
> }
> @@ -863,7 +864,7 @@ void omap_dispc_free_irq(unsigned long i
> dispc.irq_handlers[i].irq_mask = 0;
> dispc.irq_handlers[i].callback = NULL;
> dispc.irq_handlers[i].data = NULL;
> - recalc_irq_mask();
> + recalc_irq_mask(&dispc);
> return;
> }
> }
> @@ -884,6 +885,10 @@ static irqreturn_t omap_dispc_irq_handle
> complete(&dispc.frame_done);
>
> if (stat & DISPC_IRQ_MASK_ERROR) {
> + if (stat & DISPC_IRQ_SYNC_LOST) { /* only allow sync lost once or we end up... */
> + dispc.irq_error_mask &= ~DISPC_IRQ_SYNC_LOST; /* with a barrage of interrupts */
> + recalc_irq_mask(&dispc);
> + }
> if (printk_ratelimit()) {
> dev_err(dispc.fbdev->dev, "irq error status %04x\n",
> stat & 0x7fff);
> @@ -897,6 +902,7 @@ static irqreturn_t omap_dispc_irq_handle
> }
>
> dispc_write_reg(DISPC_IRQSTATUS, stat);
> + stat = dispc_read_reg(DISPC_IRQSTATUS);
>
> enable_lcd_clocks(0);
>
> @@ -1432,7 +1438,8 @@ static int omap_dispc_init(struct omapfb
> l = dispc_read_reg(DISPC_IRQSTATUS);
> dispc_write_reg(DISPC_IRQSTATUS, l);
>
> - recalc_irq_mask();
> + dispc.irq_error_mask = DISPC_IRQ_MASK_ERROR; /* init error mask */
> + recalc_irq_mask(&dispc);
>
> if ((r = request_irq(INT_24XX_DSS_IRQ, omap_dispc_irq_handler,
> 0, MODULE_NAME, fbdev)) < 0) {
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2008-11-10 8:31 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-07 20:55 Fix for dispc's error "omapfb omapfb: irq error status 4020" Rick Bronson
2008-11-07 21:37 ` Koen Kooi
2008-11-10 8:30 ` Tomi Valkeinen [this message]
2008-11-10 8:39 ` Hiremath, Vaibhav
2008-11-13 14:06 ` Tomi Valkeinen
2008-11-26 17:32 ` Tony Lindgren
2009-01-09 21:57 ` Grazvydas Ignotas
-- strict thread matches above, loose matches on Subject: below --
2008-11-11 17:25 Rick Bronson
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=1226305838.7185.5.camel@tubuntu \
--to=tomi.valkeinen@nokia.com \
--cc=aam@ridgerun.com \
--cc=dirk.behme@de.bosch.com \
--cc=imre.deak@nokia.com \
--cc=juha.yrjola@nokia.com \
--cc=linux-omap@vger.kernel.org \
--cc=rick@efn.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox