linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: "Hadli, Manjunath" <manjunath.hadli@ti.com>
Cc: "davinci-linux-open-source@linux.davincidsp.com"
	<davinci-linux-open-source@linux.davincidsp.com>,
	LMML <linux-media@vger.kernel.org>
Subject: Re: [PATCH v2 01/13] davinci: vpif: add check for genuine interrupts in the isr
Date: Mon, 14 May 2012 09:49:40 +0200	[thread overview]
Message-ID: <1390817.t9BWAtM4KH@avalon> (raw)
In-Reply-To: <E99FAA59F8D8D34D8A118DD37F7C8F753E927D78@DBDE01.ent.ti.com>

Hi Manjunath,

On Friday 11 May 2012 05:32:13 Hadli, Manjunath wrote:
> On Tue, Apr 17, 2012 at 15:36:16, Laurent Pinchart wrote:
> > On Tuesday 17 April 2012 14:22:59 Manjunath Hadli wrote:
> > > As the same interrupt is shared between capture and display devices,
> > > sometimes we get isr calls where the interrupt might not genuinely
> > > belong to capture or display. Hence, add a condition in the isr to
> > > check for interrupt ownership and channel number to make sure we do
> > > not service wrong interrupts.
> > > 
> > > Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
> > > ---
> > > 
> > >  drivers/media/video/davinci/vpif_capture.c |    5 +++++
> > >  drivers/media/video/davinci/vpif_display.c |    5 +++++
> > >  include/media/davinci/vpif_types.h         |    2 ++
> > >  3 files changed, 12 insertions(+), 0 deletions(-)
> > > 
> > > diff --git a/drivers/media/video/davinci/vpif_capture.c
> > > b/drivers/media/video/davinci/vpif_capture.c index 6504e40..33d865d
> > > 100644
> > > --- a/drivers/media/video/davinci/vpif_capture.c
> > > +++ b/drivers/media/video/davinci/vpif_capture.c
> > > @@ -333,6 +333,7 @@ static void vpif_schedule_next_buffer(struct
> > > common_obj
> > > *common) */
> > > 
> > >  static irqreturn_t vpif_channel_isr(int irq, void *dev_id)  {
> > > 
> > > +	struct vpif_capture_config *config = vpif_dev->platform_data;
> > > 
> > >  	struct vpif_device *dev = &vpif_obj;
> > >  	struct common_obj *common;
> > >  	struct channel_obj *ch;
> > > 
> > > @@ -341,6 +342,10 @@ static irqreturn_t vpif_channel_isr(int irq, void
> > > *dev_id) int fid = -1, i;
> > > 
> > >  	channel_id = *(int *)(dev_id);
> > > 
> > > +	if (!config->intr_status ||
> > > +			!config->intr_status(vpif_base, channel_id))
> > > +		return IRQ_NONE;
> > > +
> > 
> > I don't think this is the right way to handle the situation. You should
> > instead read the interrupt source register for the VPIF capture device,
> > and return IRQ_NONE if you find that no interrupt source has been flagged
> > (and similarly for the display device below).
>
> Agreed, and this is what is being done in intr_status() function, which
> is implemented in the board file. This function checks the interrupt source
> register for VPIF capture and display devices the way you mentioned.

Why do you need to do that in board code ? You can just check whether the VPIF 
capture hardware has generated an interrupt here exactly the same way as you 
do in your board code, and return IRQ_NONE if it hasn't. There's no need for 
the VPIF capture driver to be aware of the VPIF display driver (and vice 
versa).

> > >  	ch = dev->dev[channel_id];
> > >  	
> > >  	field = ch->common[VPIF_VIDEO_INDEX].fmt.fmt.pix.field;

-- 
Regards,

Laurent Pinchart


  reply	other threads:[~2012-05-14  7:49 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1334652791-15833-1-git-send-email-manjunath.hadli@ti.com>
     [not found] ` <1334652791-15833-8-git-send-email-manjunath.hadli@ti.com>
2012-04-17  9:46   ` [PATCH v2 07/13] davinci: vpif: add support to use videobuf_iolock() Laurent Pinchart
2012-05-11  5:26     ` Hadli, Manjunath
     [not found] ` <1334652791-15833-6-git-send-email-manjunath.hadli@ti.com>
2012-04-17 10:02   ` [PATCH v2 05/13] davinci: vpif display: declare contiguous region of memory handled by dma_alloc_coherent Laurent Pinchart
2012-05-11  5:30     ` Hadli, Manjunath
2012-05-14  7:46       ` Laurent Pinchart
2012-06-07 11:15         ` Hadli, Manjunath
     [not found] ` <1334652791-15833-2-git-send-email-manjunath.hadli@ti.com>
2012-04-17 10:06   ` [PATCH v2 01/13] davinci: vpif: add check for genuine interrupts in the isr Laurent Pinchart
2012-05-11  5:32     ` Hadli, Manjunath
2012-05-14  7:49       ` Laurent Pinchart [this message]
2012-06-07 11:25         ` Hadli, Manjunath

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=1390817.t9BWAtM4KH@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=davinci-linux-open-source@linux.davincidsp.com \
    --cc=linux-media@vger.kernel.org \
    --cc=manjunath.hadli@ti.com \
    /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;
as well as URLs for NNTP newsgroup(s).