From patchwork Thu May 14 17:53:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Jarzmik X-Patchwork-Id: 6409021 Return-Path: X-Original-To: patchwork-dmaengine@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 51474C0432 for ; Thu, 14 May 2015 17:55:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 793A320357 for ; Thu, 14 May 2015 17:55:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7437620320 for ; Thu, 14 May 2015 17:55:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932576AbbENRzA (ORCPT ); Thu, 14 May 2015 13:55:00 -0400 Received: from smtp05.smtpout.orange.fr ([80.12.242.127]:31779 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161098AbbENRyc (ORCPT ); Thu, 14 May 2015 13:54:32 -0400 Received: from belgarion.home ([92.156.128.44]) by mwinf5d52 with ME id TtuQ1q00N0xcc9003tuXU8; Thu, 14 May 2015 19:54:31 +0200 X-ME-Helo: belgarion.home X-ME-Date: Thu, 14 May 2015 19:54:31 +0200 X-ME-IP: 92.156.128.44 From: Robert Jarzmik To: Vinod Koul , Jonathan Corbet , Daniel Mack , Haojian Zhuang , Robert Jarzmik Cc: dmaengine@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH v3 6/6] Documentation: dmaengine: document DMA_CTRL_ACK Date: Thu, 14 May 2015 19:53:26 +0200 Message-Id: <1431626006-1708-6-git-send-email-robert.jarzmik@free.fr> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1431626006-1708-1-git-send-email-robert.jarzmik@free.fr> References: <1431626006-1708-1-git-send-email-robert.jarzmik@free.fr> Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add documentation about acking the transfers, and their reusability. Signed-off-by: Robert Jarzmik --- Documentation/dmaengine/provider.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Documentation/dmaengine/provider.txt b/Documentation/dmaengine/provider.txt index 05d2280..33a81ce 100644 --- a/Documentation/dmaengine/provider.txt +++ b/Documentation/dmaengine/provider.txt @@ -345,11 +345,12 @@ where to put them) that abstracts it away. * DMA_CTRL_ACK - - Undocumented feature - - No one really has an idea of what it's about, besides being - related to reusing the DMA transaction descriptors or having - additional transactions added to it in the async-tx API - - Useless in the case of the slave API + - if set, the TX transfer can be reused after being completed. + - there is a guarantee the TX won't be freed until it is acked + by async_tx_ack() + - as a consequence, if a device driver wants to skip the dma_map_sg() and + dma_unmap_sg() because the DMA'd data wasn't used, it can resubmit the + transfer right after its completion. General Design Notes --------------------