All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>
To: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>
Cc: Magnus Damm <magnus.damm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Geert Uytterhoeven
	<geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org>,
	Linux I2C <linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Linux-sh list <linux-sh-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Simon Horman <horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org>,
	dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 2/5] i2c: sh_mobile: add DMA support
Date: Wed, 10 Dec 2014 16:19:36 +0200	[thread overview]
Message-ID: <10746939.zT8Pinqvll@avalon> (raw)
In-Reply-To: <20141210080155.GA1148@katana>

(CC'ing the dmaengine mailing list)

On Wednesday 10 December 2014 09:01:55 Wolfram Sang wrote:
> On Wed, Dec 10, 2014 at 02:44:01PM +0900, Magnus Damm wrote:
> > On Tue, Dec 9, 2014 at 11:09 PM, Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org> wrote:
> >> On Tue, Dec 09, 2014 at 11:53:45AM +0100, Geert Uytterhoeven wrote:
> >>> On Fri, Nov 7, 2014 at 11:11 AM, Wolfram Sang wrote:
> >>>> --- a/drivers/i2c/busses/i2c-sh_mobile.c
> >>>> +++ b/drivers/i2c/busses/i2c-sh_mobile.c
> >>>> @@ -727,6 +886,21 @@ static int sh_mobile_i2c_probe(struct
> >>>> platform_device *dev)
> >>>>         if (ret)
> >>>>                 return ret;
> >>>> 
> >>>> +       /* Init DMA */
> >>>> +       sg_init_table(&pd->sg, 1);
> >>>> +       pd->dma_direction = DMA_NONE;
> >>>> +       ret = sh_mobile_i2c_request_dma_chan(pd->dev, DMA_DEV_TO_MEM,
> >>>> +                                            res->start + ICDR,
> >>>> &pd->dma_rx);
> >>>> +       if (ret == -EPROBE_DEFER)
> >>>> +               return ret;
> >>>> +
> >>>> +       ret = sh_mobile_i2c_request_dma_chan(pd->dev, DMA_MEM_TO_DEV,
> >>>> +                                            res->start + ICDR,
> >>>> &pd->dma_tx);
> >>>> +       if (ret == -EPROBE_DEFER) {
> >>>> +               sh_mobile_i2c_release_dma(pd);
> >>>> +               return ret;
> >>>> +       }
> >>>> +
> >>> 
> >>> If the DTS contains "dma" and "dma-names" properties, but
> >>> CONFIG_RCAR_DMAC is disabled, sh_mobile_i2c_request_dma_chan() returns
> >>> -EPROBE_DEFER, and the driver fails to initialize.
> >>> 
> >>> If I remove the "dma" and "dma-names" properties, the driver does fall
> >>> back to PIO mode.
> >>> 
> >>> I think this is a regression.
> >> 
> >> The only solution I can think of is to not bail out here and retry again
> >> before every transfer? Doesn't sound elegant, though...
> > 
> > I think we have to request for each and every transfer. And fall back
> > to PIO as default in a transparent way. This because the number of DMA
> > channels are limited compared to number of potential consumers, so
> > request failure may happen at any time.
> 
> AFAIR this scenario happens when submitting the transfer. The check
> for this is already in place. Requesting the channel is a different
> matter. Still, I'll cook up a patch and we will see what it looks
> like...

We could fix part of the issue by using virtual dma channels. In that case 
channel requests wouldn't fail anymore due to resource starvation with a large 
number of consumers. However, the request could still fail with -EPROBE_DEFER. 
For a driver that wants to fall back to PIO when DMA is unavailable I 
currently don't see another way than moving the channel request at the time of 
the transfer.

-- 
Regards,

Laurent Pinchart

WARNING: multiple messages have this Message-ID (diff)
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>
Cc: Magnus Damm <magnus.damm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Geert Uytterhoeven
	<geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org>,
	Linux I2C <linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Linux-sh list <linux-sh-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Simon Horman <horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org>,
	dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 2/5] i2c: sh_mobile: add DMA support
Date: Wed, 10 Dec 2014 14:19:36 +0000	[thread overview]
Message-ID: <10746939.zT8Pinqvll@avalon> (raw)
In-Reply-To: <20141210080155.GA1148@katana>

(CC'ing the dmaengine mailing list)

On Wednesday 10 December 2014 09:01:55 Wolfram Sang wrote:
> On Wed, Dec 10, 2014 at 02:44:01PM +0900, Magnus Damm wrote:
> > On Tue, Dec 9, 2014 at 11:09 PM, Wolfram Sang <wsa@the-dreams.de> wrote:
> >> On Tue, Dec 09, 2014 at 11:53:45AM +0100, Geert Uytterhoeven wrote:
> >>> On Fri, Nov 7, 2014 at 11:11 AM, Wolfram Sang wrote:
> >>>> --- a/drivers/i2c/busses/i2c-sh_mobile.c
> >>>> +++ b/drivers/i2c/busses/i2c-sh_mobile.c
> >>>> @@ -727,6 +886,21 @@ static int sh_mobile_i2c_probe(struct
> >>>> platform_device *dev)
> >>>>         if (ret)
> >>>>                 return ret;
> >>>> 
> >>>> +       /* Init DMA */
> >>>> +       sg_init_table(&pd->sg, 1);
> >>>> +       pd->dma_direction = DMA_NONE;
> >>>> +       ret = sh_mobile_i2c_request_dma_chan(pd->dev, DMA_DEV_TO_MEM,
> >>>> +                                            res->start + ICDR,
> >>>> &pd->dma_rx);
> >>>> +       if (ret = -EPROBE_DEFER)
> >>>> +               return ret;
> >>>> +
> >>>> +       ret = sh_mobile_i2c_request_dma_chan(pd->dev, DMA_MEM_TO_DEV,
> >>>> +                                            res->start + ICDR,
> >>>> &pd->dma_tx);
> >>>> +       if (ret = -EPROBE_DEFER) {
> >>>> +               sh_mobile_i2c_release_dma(pd);
> >>>> +               return ret;
> >>>> +       }
> >>>> +
> >>> 
> >>> If the DTS contains "dma" and "dma-names" properties, but
> >>> CONFIG_RCAR_DMAC is disabled, sh_mobile_i2c_request_dma_chan() returns
> >>> -EPROBE_DEFER, and the driver fails to initialize.
> >>> 
> >>> If I remove the "dma" and "dma-names" properties, the driver does fall
> >>> back to PIO mode.
> >>> 
> >>> I think this is a regression.
> >> 
> >> The only solution I can think of is to not bail out here and retry again
> >> before every transfer? Doesn't sound elegant, though...
> > 
> > I think we have to request for each and every transfer. And fall back
> > to PIO as default in a transparent way. This because the number of DMA
> > channels are limited compared to number of potential consumers, so
> > request failure may happen at any time.
> 
> AFAIR this scenario happens when submitting the transfer. The check
> for this is already in place. Requesting the channel is a different
> matter. Still, I'll cook up a patch and we will see what it looks
> like...

We could fix part of the issue by using virtual dma channels. In that case 
channel requests wouldn't fail anymore due to resource starvation with a large 
number of consumers. However, the request could still fail with -EPROBE_DEFER. 
For a driver that wants to fall back to PIO when DMA is unavailable I 
currently don't see another way than moving the channel request at the time of 
the transfer.

-- 
Regards,

Laurent Pinchart


  reply	other threads:[~2014-12-10 14:19 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-07 10:11 [PATCH 0/5] i2c: sh_mobile: add DMA support Wolfram Sang
2014-11-07 10:11 ` Wolfram Sang
2014-11-07 10:11 ` [PATCH 1/5] i2c: sh_mobile: sort includes alphabetically Wolfram Sang
2014-11-07 10:11   ` Wolfram Sang
2014-11-12 16:10   ` Wolfram Sang
2014-11-12 16:10     ` Wolfram Sang
2014-11-07 10:11 ` [PATCH 2/5] i2c: sh_mobile: add DMA support Wolfram Sang
2014-11-07 10:11   ` Wolfram Sang
2014-11-12 16:11   ` Wolfram Sang
2014-11-12 16:11     ` Wolfram Sang
2014-12-09 10:53   ` Geert Uytterhoeven
2014-12-09 10:53     ` Geert Uytterhoeven
2014-12-09 14:09     ` Wolfram Sang
2014-12-09 14:09       ` Wolfram Sang
2014-12-10  5:44       ` Magnus Damm
2014-12-10  5:44         ` Magnus Damm
2014-12-10  8:01         ` Wolfram Sang
2014-12-10  8:01           ` Wolfram Sang
2014-12-10 14:19           ` Laurent Pinchart [this message]
2014-12-10 14:19             ` Laurent Pinchart
2014-12-10 14:23             ` Wolfram Sang
2014-12-10 14:23               ` Wolfram Sang
2014-12-11  5:02               ` Vinod Koul
2014-12-11  5:14                 ` Vinod Koul
2014-12-11  7:37                 ` Wolfram Sang
2014-12-11  7:37                   ` Wolfram Sang
2014-12-11  7:47                   ` Laurent Pinchart
2014-12-11  7:47                     ` Laurent Pinchart
2014-12-11  8:28                     ` Wolfram Sang
2014-12-11  8:28                       ` Wolfram Sang
2014-12-11 21:42               ` Laurent Pinchart
2014-12-11 21:42                 ` Laurent Pinchart
2014-12-11 21:47                 ` Wolfram Sang
2014-12-11 21:47                   ` Wolfram Sang
2014-12-11 21:52                   ` Laurent Pinchart
2014-12-11 21:52                     ` Laurent Pinchart
2014-12-12 11:07                     ` Wolfram Sang
2014-12-12 11:07                       ` Wolfram Sang
2014-12-15  6:43                     ` Vinod Koul
2014-12-15  6:55                       ` Vinod Koul
2014-12-15  8:31                       ` Geert Uytterhoeven
2014-12-15  8:31                         ` Geert Uytterhoeven
2014-12-15  9:06                         ` Wolfram Sang
2014-12-15  9:06                           ` Wolfram Sang
2014-12-15  9:32                           ` Geert Uytterhoeven
2014-12-15  9:32                             ` Geert Uytterhoeven
2014-12-15  9:13                         ` Vinod Koul
2014-12-15  9:25                           ` Vinod Koul
     [not found]                           ` <20141215091314.GQ16827-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-12-15  9:42                             ` Laurent Pinchart
2014-12-15  9:42                               ` Laurent Pinchart
2014-12-15 14:48                               ` Vinod Koul
2014-12-15 14:48                                 ` Vinod Koul
2014-12-15  9:45                           ` Wolfram Sang
2014-12-15  9:45                             ` Wolfram Sang
2014-12-15 14:50                             ` Vinod Koul
2014-12-15 14:50                               ` Vinod Koul
2014-11-07 10:11 ` [PATCH 3/5] i2c: sh_mobile: improve success message Wolfram Sang
2014-11-07 10:11   ` Wolfram Sang
2014-11-12 16:12   ` Wolfram Sang
2014-11-12 16:12     ` Wolfram Sang
2014-11-13  0:27     ` Simon Horman
2014-11-13  0:27       ` Simon Horman
2014-11-07 10:11 ` [PATCH 4/5] ARM: shmobile: r8a7790: add DMA nodes for IIC Wolfram Sang
2014-11-07 10:11   ` Wolfram Sang
2014-11-13  0:26   ` Simon Horman
2014-11-13  0:26     ` Simon Horman
2014-11-07 10:11 ` [PATCH 5/5] ARM: shmobile: r8a7791: " Wolfram Sang
2014-11-07 10:11   ` Wolfram Sang
2014-11-13  0:26   ` Simon Horman
2014-11-13  0:26     ` Simon Horman

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=10746939.zT8Pinqvll@avalon \
    --to=laurent.pinchart-rylnwiuwjnjg/c1bvhzhaw@public.gmane.org \
    --cc=dmaengine-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org \
    --cc=horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org \
    --cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-sh-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=magnus.damm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.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.