linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: andriy.shevchenko@linux.intel.com (Andy Shevchenko)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/5] dmaengine: dw_dmac: move to generic DMA binding
Date: Tue, 29 Jan 2013 12:54:46 +0200	[thread overview]
Message-ID: <1359456886.31148.37.camel@smile> (raw)
In-Reply-To: <CAKohpo=rD9=dEaPkKYcj55K4_ebdnU7qjv2TZBUwqHAB+Kk+aw@mail.gmail.com>

On Tue, 2013-01-29 at 16:19 +0530, Viresh Kumar wrote: 
> On 29 January 2013 16:05, Arnd Bergmann <arnd@arndb.de> wrote:
> > On Tuesday 29 January 2013, Viresh Kumar wrote:

> >> > +       /* FIXME: This binding is rather clumsy. Can't we use the
> >> > +          request line numbers here instead? */
> >>
> >> yes.
> >
> > Ok, Very good. What is the encoding of the registers then?
> 
> You can still keep fargs as is and just fill them as:
> 
>        fargs.cfg_lo = 0;
> 
> if (DMA_TO_DEV)
>        // dest is periph
>        fargs.cfg_hi = be32_to_cpup(dma_spec->args+0) << 11;
> else if (DEV_TO_DMA)
>        // src is periph
>        fargs.cfg_hi = be32_to_cpup(dma_spec->args+0) << 7;

We have macros for such shifts.

drivers/dma/dw_dmac.c:187:   cfghi = DWC_CFGH_DST_PER(...
drivers/dma/dw_dmac.c:189:   cfghi = DWC_CFGH_SRC_PER(...

-- 
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy

  reply	other threads:[~2013-01-29 10:54 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1359395857-1235-1-git-send-email-arnd@arndb.de>
2013-01-28 21:58 ` [PATCH v2 0/5] dmaengine: convert dw_dmac/spear13xx to generic binding Arnd Bergmann
2013-01-28 21:58   ` [PATCH 1/5] dmaengine: dw_dmac: move to generic DMA binding Arnd Bergmann
2013-01-29  7:24     ` Viresh Kumar
2013-01-29 10:35       ` Arnd Bergmann
2013-01-29 10:49         ` Viresh Kumar
2013-01-29 10:54           ` Andy Shevchenko [this message]
2013-01-29 10:57             ` Viresh Kumar
2013-01-29 11:14               ` Andy Shevchenko
2013-01-29 13:31           ` Arnd Bergmann
2013-01-29 13:45             ` Andy Shevchenko
2013-01-29 14:26               ` Russell King - ARM Linux
2013-01-29 15:28               ` Arnd Bergmann
2013-01-29 15:17             ` Viresh Kumar
2013-01-29 16:21               ` Arnd Bergmann
2013-01-30  2:04                 ` Viresh Kumar
2013-01-30  9:41                   ` Arnd Bergmann
2013-01-30  9:48                     ` Viresh Kumar
2013-01-30 10:08                       ` Arnd Bergmann
2013-01-30 10:32                         ` Viresh Kumar
     [not found]     ` <1359445171.31148.30.camel@smile>
2013-01-29 10:50       ` Arnd Bergmann
2013-01-29 11:18         ` Russell King - ARM Linux
2013-01-29 13:44           ` Arnd Bergmann
2013-01-29 14:24             ` Russell King - ARM Linux
2013-01-29 14:55               ` Arnd Bergmann
2013-01-29 15:44                 ` Russell King - ARM Linux
2013-01-29 16:36                   ` Arnd Bergmann
2013-01-29 17:45                     ` Russell King - ARM Linux
2013-01-29 20:40                       ` Arnd Bergmann
2013-01-29 21:59                         ` Linus Walleij
2013-02-15  8:50     ` Andy Shevchenko
2013-02-15 11:17       ` Arnd Bergmann
2013-01-28 21:58   ` [PATCH 2/5] spi: pl022: use generic DMA slave configuration if possible Arnd Bergmann
2013-01-29  2:41     ` Mark Brown
2013-01-29  7:49     ` Andy Shevchenko
2013-01-29 13:13       ` Arnd Bergmann
2013-02-07 18:29         ` Linus Walleij
2013-02-07 19:42           ` Arnd Bergmann
2013-02-07 20:19             ` Linus Walleij
2013-02-07 21:15               ` Arnd Bergmann
2013-02-08 16:22                 ` Russell King - ARM Linux
2013-02-08 16:28                   ` Arnd Bergmann
2013-02-08 22:10                     ` Linus Walleij
2013-02-08 16:20           ` Russell King - ARM Linux
2013-01-28 21:58   ` [PATCH 3/5] serial: pl011: " Arnd Bergmann
2013-01-30  4:38     ` Greg Kroah-Hartman
2013-01-28 21:58   ` [PATCH 4/5] ata: arasan: remove the need for platform_data Arnd Bergmann
2013-01-29  8:18     ` Viresh Kumar
2013-01-28 21:58   ` [PATCH 5/5] ARM: SPEAr13xx: Pass generic DW DMAC platform data from DT Arnd Bergmann
2013-01-29  8:16     ` Viresh Kumar
2013-01-29 13:21       ` Arnd Bergmann

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=1359456886.31148.37.camel@smile \
    --to=andriy.shevchenko@linux.intel.com \
    --cc=linux-arm-kernel@lists.infradead.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).