From patchwork Fri Mar 7 12:16:11 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: R Sricharan X-Patchwork-Id: 3790431 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 5AA559F369 for ; Fri, 7 Mar 2014 12:19:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7EAF220274 for ; Fri, 7 Mar 2014 12:19:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 97E472024C for ; Fri, 7 Mar 2014 12:19:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752982AbaCGMRg (ORCPT ); Fri, 7 Mar 2014 07:17:36 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:38885 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752961AbaCGMRe (ORCPT ); Fri, 7 Mar 2014 07:17:34 -0500 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id s27CH5LM004354; Fri, 7 Mar 2014 06:17:05 -0600 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s27CH5MF018082; Fri, 7 Mar 2014 06:17:05 -0600 Received: from dflp32.itg.ti.com (10.64.6.15) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.174.1; Fri, 7 Mar 2014 06:17:05 -0600 Received: from localhost.localdomain (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id s27CGhw1003967; Fri, 7 Mar 2014 06:17:01 -0600 From: Sricharan R To: , , , , , CC: , , , , , , , Subject: [RFC PATCH 4/9] drivers: omap-dma: Add crossbar line as a resource to omap_chan structure Date: Fri, 7 Mar 2014 17:46:11 +0530 Message-ID: <1394194576-23741-5-git-send-email-r.sricharan@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1394194576-23741-1-git-send-email-r.sricharan@ti.com> References: <1394194576-23741-1-git-send-email-r.sricharan@ti.com> MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 In socs which have crossbar to route the peripheral dma request line to the dma controller, only the peripheral crossbar request line number is fixed and this is passed through the DT nodes. The dma request channel to be used is allocated dynamically. The total number of crossbar channels are registered during probe a the dma request line free is mapped using the registered router's map function during the device_alloc_chan_resource callback and freed with free_resource. When a router is not registered, the dma request number is same as the crossbar number. Signed-off-by: Sricharan R --- drivers/dma/omap-dma.c | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c index 38407f9..05ac480 100644 --- a/drivers/dma/omap-dma.c +++ b/drivers/dma/omap-dma.c @@ -47,6 +47,7 @@ struct omap_chan { struct dma_xbar_device *router; unsigned dma_sig; + unsigned dma_xbar; bool cyclic; bool paused; @@ -530,6 +531,11 @@ static int omap_dma_alloc_chan_resources(struct dma_chan *chan) struct omap_chan *c = to_omap_dma_chan(chan); int ret; + if (c->router) + c->dma_sig = c->router->ops->map(c->dma_xbar, c->router); + else + c->dma_sig = c->dma_xbar; + if (od->legacy) { ret = omap_request_dma(c->dma_sig, "DMA engine", omap_dma_callback, c, &c->dma_ch); @@ -539,7 +545,7 @@ static int omap_dma_alloc_chan_resources(struct dma_chan *chan) } dev_dbg(od->ddev.dev, "allocating channel %u for %u\n", - c->dma_ch, c->dma_sig); + c->dma_ch, c->dma_xbar); if (ret >= 0) { omap_dma_assign(od, c, c->dma_ch); @@ -594,9 +600,14 @@ static void omap_dma_free_chan_resources(struct dma_chan *chan) od->lch_map[c->dma_ch] = NULL; vchan_free_chan_resources(&c->vc); + if (c->router) { + c->router->ops->unmap(c->dma_sig, c->router); + c->dma_sig = 0; + } + omap_free_dma(c->dma_ch); - dev_dbg(od->ddev.dev, "freeing channel for %u\n", c->dma_sig); + dev_dbg(od->ddev.dev, "freeing channel for %u\n", c->dma_xbar); } static size_t omap_dma_sg_size(struct omap_sg *sg) @@ -1064,7 +1075,7 @@ static int omap_dma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd, return ret; } -static int omap_dma_chan_init(struct omap_dmadev *od, int dma_sig) +static int omap_dma_chan_init(struct omap_dmadev *od, int dma_xbar) { struct omap_chan *c; @@ -1073,7 +1084,7 @@ static int omap_dma_chan_init(struct omap_dmadev *od, int dma_sig) return -ENOMEM; c->reg_map = od->reg_map; - c->dma_sig = dma_sig; + c->dma_xbar = dma_xbar; c->vc.desc_free = omap_dma_desc_free; vchan_init(&c->vc, &od->ddev); INIT_LIST_HEAD(&c->node); @@ -1263,7 +1274,7 @@ bool omap_dma_filter_fn(struct dma_chan *chan, void *param) struct omap_chan *c = to_omap_dma_chan(chan); unsigned req = args->chan; - if (req == c->dma_sig) { + if (req == c->dma_xbar) { c->router = args->router_data; return true; }