public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@intel.com>
To: Ulf Hansson <ulf.hansson@linaro.org>, Chris Ball <chris@printf.net>
Cc: linux-mmc <linux-mmc@vger.kernel.org>,
	"arnd@arndb.de >> Arnd Bergmann" <arnd@arndb.de>
Subject: Re: [PATCH 00/15] mmc: sdhci: Add 64-bit ADMA support
Date: Mon, 03 Nov 2014 10:28:33 +0200	[thread overview]
Message-ID: <54573CB1.9030907@intel.com> (raw)
In-Reply-To: <5451E802.1010704@intel.com>

On 30/10/14 09:25, Adrian Hunter wrote:
> On 21/10/14 12:26, Adrian Hunter wrote:
>> Hi
>>
>> Here are patches to add 64-bit ADMA support to the SDHCI driver.
>>
>> The patchset starts with 3 minor fixes related to SDHCI ADMA,
>> then there are 8 preparatory patches, then 3 main patches, then
>> the mmc_test "Badly aligned" tests are extended slightly.
> 
> Hi Ulf
> 
> Can you take these?  Note that there was a V2 of
> "mmc: sdhci-acpi: Add 64-bit DMA support".  Also
> that patch is dependent (for functionality not
> compilation) on a patch in v3.18-rc2 so it is slightly
> preferable if you pull v3.18-rc2 first.

Can you take these now?

> 
> Regards
> Adrian
> 
>>
>>
>> Adrian Hunter (15):
>>       mmc: sdhci: Fix incorrect ADMA2 descriptor table size
>>       mmc: sdhci: Fix ADMA page boundary warnings
>>       mmc: sdhci: Fix ADMA table size warning
>>       mmc: sdhci: Rename two ADMA-related functions for consistency
>>       mmc: sdhci: Rename adma_desc to adma_table
>>       mmc: sdhci: Add sdhci_adma_mark_end()
>>       mmc: sdhci: Use 'void *' for not 'u8 *' for ADMA data
>>       mmc: sdhci: Parameterize ADMA sizes and alignment
>>       mmc: sdhci: Define maximum segments
>>       mmc: sdhci: Define ADMA constants
>>       mmc: sdhci: Define ADMA descriptor structure
>>       mmc: sdhci: Add 64-bit ADMA support
>>       mmc: sdhci-acpi: Add 64-bit DMA support
>>       mmc: sdhci-pci: Add 64-bit DMA support
>>       mmc: mmc_test: Extend "Badly aligned" tests for 8-byte alignment
>>
>>  drivers/mmc/card/mmc_test.c   |  10 +-
>>  drivers/mmc/host/sdhci-acpi.c |  41 +++++---
>>  drivers/mmc/host/sdhci-pci.c  |  14 ++-
>>  drivers/mmc/host/sdhci.c      | 226 +++++++++++++++++++++++++++---------------
>>  drivers/mmc/host/sdhci.h      |  41 ++++++++
>>  include/linux/mmc/sdhci.h     |  14 ++-
>>  6 files changed, 241 insertions(+), 105 deletions(-)
>>
>>
>> Regards
>> Adrian
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>>
>>
> 
> 
> 


  parent reply	other threads:[~2014-11-03  8:30 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-21  9:26 [PATCH 00/15] mmc: sdhci: Add 64-bit ADMA support Adrian Hunter
2014-10-21  9:26 ` [PATCH 01/15] mmc: sdhci: Fix incorrect ADMA2 descriptor table size Adrian Hunter
2014-10-21  9:26 ` [PATCH 02/15] mmc: sdhci: Fix ADMA page boundary warnings Adrian Hunter
2014-10-21  9:26 ` [PATCH 03/15] mmc: sdhci: Fix ADMA table size warning Adrian Hunter
2014-10-21  9:26 ` [PATCH 04/15] mmc: sdhci: Rename two ADMA-related functions for consistency Adrian Hunter
2014-10-21  9:26 ` [PATCH 05/15] mmc: sdhci: Rename adma_desc to adma_table Adrian Hunter
2014-10-21  9:26 ` [PATCH 06/15] mmc: sdhci: Add sdhci_adma_mark_end() Adrian Hunter
2014-10-21  9:26 ` [PATCH 07/15] mmc: sdhci: Use 'void *' for not 'u8 *' for ADMA data Adrian Hunter
2014-10-21  9:26 ` [PATCH 08/15] mmc: sdhci: Parameterize ADMA sizes and alignment Adrian Hunter
2014-10-21  9:26 ` [PATCH 09/15] mmc: sdhci: Define maximum segments Adrian Hunter
2014-10-21  9:26 ` [PATCH 10/15] mmc: sdhci: Define ADMA constants Adrian Hunter
2014-10-21  9:26 ` [PATCH 11/15] mmc: sdhci: Define ADMA descriptor structure Adrian Hunter
2014-10-21  9:26 ` [PATCH 12/15] mmc: sdhci: Add 64-bit ADMA support Adrian Hunter
2014-10-21  9:26 ` [PATCH 13/15] mmc: sdhci-acpi: Add 64-bit DMA support Adrian Hunter
2014-10-21  9:33   ` Arnd Bergmann
2014-10-21 10:45     ` Adrian Hunter
2014-10-21 11:05       ` Arnd Bergmann
2014-10-28  8:37         ` [PATCH V2] " Adrian Hunter
2014-10-28  9:43           ` Arnd Bergmann
2014-10-28 10:05             ` Adrian Hunter
2014-10-28 10:18               ` Arnd Bergmann
2014-10-28 11:41                 ` Adrian Hunter
2014-10-28 13:54                   ` Arnd Bergmann
2014-10-28 14:14                     ` Adrian Hunter
2014-10-28 15:08                       ` Arnd Bergmann
2014-10-28 15:14                         ` Adrian Hunter
2014-10-28 15:38                           ` Arnd Bergmann
2014-10-29  8:53                             ` Adrian Hunter
2014-10-21  9:26 ` [PATCH 14/15] mmc: sdhci-pci: " Adrian Hunter
2014-10-21  9:26 ` [PATCH 15/15] mmc: mmc_test: Extend "Badly aligned" tests for 8-byte alignment Adrian Hunter
2014-10-30  7:25 ` [PATCH 00/15] mmc: sdhci: Add 64-bit ADMA support Adrian Hunter
2014-10-30  8:05   ` Arnd Bergmann
2014-10-30  8:40     ` Adrian Hunter
2014-10-30 10:00       ` Arnd Bergmann
2014-10-30 10:50         ` Adrian Hunter
2014-10-30 12:15           ` Arnd Bergmann
2014-10-30 12:55             ` Adrian Hunter
2014-11-03  8:28   ` Adrian Hunter [this message]
2014-11-03 14:40     ` Ulf Hansson

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=54573CB1.9030907@intel.com \
    --to=adrian.hunter@intel.com \
    --cc=arnd@arndb.de \
    --cc=chris@printf.net \
    --cc=linux-mmc@vger.kernel.org \
    --cc=ulf.hansson@linaro.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