dmaengine.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dave Jiang <dave.jiang@intel.com>
To: Vinod Koul <vkoul@kernel.org>
Cc: dmaengine@vger.kernel.org, swathi.kovvuri@intel.com,
	Dan Williams <dan.j.williams@intel.com>
Subject: Re: [PATCH] dmaengine: cookie bypass for out of order completion
Date: Mon, 4 May 2020 07:59:46 -0700	[thread overview]
Message-ID: <f5207da6-f54e-1402-f5b1-7f52baa58132@intel.com> (raw)
In-Reply-To: <20200504053959.GI1375924@vkoul-mobl>



On 5/3/2020 10:39 PM, Vinod Koul wrote:
> Hi Dave,
> 
> On 30-04-20, 11:35, Dave Jiang wrote:
>> The cookie tracking in dmaengine expects all submissions completed in
> 
> Correct and that is a *very* fundamental assumption of the cookie
> management. Modifying this will cause impact to other as well..

The current modification only impacts drivers that opt out of this. So 
all existing or future driver does not return the out of order flag 
should remain unimpacted.

> 
>> order. Some DMA devices like Intel DSA can complete submissions out of
>> order, especially if configured with a work queue sharing multiple DMA
>> engines. Add a status DMA_OUT_OF_ORDER that tx_status can be returned for
> 
> We should add this as a capability in dmaengine. How else would users
> know if they can expect out of order completion..

Hmmm...this is more an attribute of the hardware rather than a 
capability that a user would request right? Should we add a new function 
that would provide an avenue for users to query the device on such 
attributes and others like channel depth or SGL max size?

> 
>> those DMA devices. The user should use callbacks to track the completion
>> rather than the DMA cookie. This would address the issue of dmatest
>> complaining that descriptors are "busy" when the cookie count goes
>> backwards due to out of order completion.
> 
> Can we add some documentation for this behaviour as well

sure thing.

> 
>>
>> Reported-by: Swathi Kovvuri <swathi.kovvuri@intel.com>
>> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
>> Tested-by: Swathi Kovvuri <swathi.kovvuri@intel.com>
>> ---
>>   drivers/dma/dmatest.c     |    3 ++-
>>   drivers/dma/idxd/dma.c    |    2 +-
>>   include/linux/dmaengine.h |    1 +
>>   3 files changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c
>> index a2cadfa2e6d7..60a4a9cec3c8 100644
>> --- a/drivers/dma/dmatest.c
>> +++ b/drivers/dma/dmatest.c
>> @@ -821,7 +821,8 @@ static int dmatest_func(void *data)
>>   			result("test timed out", total_tests, src->off, dst->off,
>>   			       len, 0);
>>   			goto error_unmap_continue;
>> -		} else if (status != DMA_COMPLETE) {
>> +		} else if (status != DMA_COMPLETE &&
>> +			   status != DMA_OUT_OF_ORDER) {
>>   			result(status == DMA_ERROR ?
>>   			       "completion error status" :
>>   			       "completion busy status", total_tests, src->off,
>> diff --git a/drivers/dma/idxd/dma.c b/drivers/dma/idxd/dma.c
>> index c64c1429d160..3f54826abc12 100644
>> --- a/drivers/dma/idxd/dma.c
>> +++ b/drivers/dma/idxd/dma.c
>> @@ -133,7 +133,7 @@ static enum dma_status idxd_dma_tx_status(struct dma_chan *dma_chan,
>>   					  dma_cookie_t cookie,
>>   					  struct dma_tx_state *txstate)
>>   {
>> -	return dma_cookie_status(dma_chan, cookie, txstate);
>> +	return DMA_OUT_OF_ORDER;
> 
> So you are returning out of order always?

Yes. The hardware does not gaurantee in order processing at all. The 
only way to do so is to submit a batched operation with fence set on 
every descriptor in the batch.

> 
>>   }
>>   
>>   /*
>> diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h
>> index 21065c04c4ac..a0c130131e45 100644
>> --- a/include/linux/dmaengine.h
>> +++ b/include/linux/dmaengine.h
>> @@ -39,6 +39,7 @@ enum dma_status {
>>   	DMA_IN_PROGRESS,
>>   	DMA_PAUSED,
>>   	DMA_ERROR,
>> +	DMA_OUT_OF_ORDER,
>>   };
>>   
>>   /**
> 

  reply	other threads:[~2020-05-04 14:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-30 18:35 [PATCH] dmaengine: cookie bypass for out of order completion Dave Jiang
2020-05-04  5:39 ` Vinod Koul
2020-05-04 14:59   ` Dave Jiang [this message]
2020-05-06 12:32     ` Vinod Koul

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=f5207da6-f54e-1402-f5b1-7f52baa58132@intel.com \
    --to=dave.jiang@intel.com \
    --cc=dan.j.williams@intel.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=swathi.kovvuri@intel.com \
    --cc=vkoul@kernel.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;
as well as URLs for NNTP newsgroup(s).