Linux MIPS Architecture development
 help / color / mirror / Atom feed
From: Ezequiel Garcia <ezequiel@collabora.com>
To: Ulf Hansson <ulf.hansson@linaro.org>
Cc: linux-mmc@vger.kernel.org, linux-mips@linux-mips.org,
	James Hogan <jhogan@kernel.org>,
	kernel@collabora.com, Ezequiel Garcia <ezequiel@collabora.co.uk>,
	Mathieu Malaterre <malat@debian.org>,
	Paul Cercueil <paul@crapouillou.net>
Subject: Re: [PATCH v3 00/14] Enable SD/MMC on JZ4780 SoCs
Date: Mon, 26 Mar 2018 14:16:50 -0300	[thread overview]
Message-ID: <1522084610.31319.2.camel@collabora.com> (raw)
In-Reply-To: <20180321192741.25872-1-ezequiel@vanguardiasur.com.ar>

Hi Ulf,

On Wed, 2018-03-21 at 16:27 -0300, Ezequiel Garcia wrote:
> From: Ezequiel Garcia <ezequiel@collabora.co.uk>
> 
> This patchset adds support for SD/MMC on JZ4780 based
> platforms, such as the MIPS Creator CI20 board.
> 
> Most of the work has been done by Alex, Paul and Zubair,
> while I've only prepared the upstream submission, cleaned
> some patches, and written some commit logs where needed.
> 
> All praises should go to them, all rants to me.
> 
> The series is based on v4.16-rc4.
> 
> Changes from v2:
>   * Fix commit log in "mmc: dt-bindings: add MMC support to JZ4740
> SoC"
> 
> Changes from v1:
>   * Reordered patches, fixes first, for easier backporting.
>   * Added Link and Fixes tags to patch "Fix race condition",
>     for easier backporting.
>   * Enabled the DMA in the dtsi for jz4780, dropped it from the ci20
> dts.
>   * Reworded config and help user visible text.
>   * Reworded commit logs, using imperative.
>   * Re-authored my patches, as Collabora is partially
>     sponsoring them.
> 
> 
> Alex Smith (3):
>   mmc: jz4740: Fix race condition in IRQ mask update
>   mmc: jz4740: Set clock rate to mmc->f_max rather than
> JZ_MMC_CLK_RATE
>   mmc: jz4740: Add support for the JZ4780
> 
> Ezequiel Garcia (9):
>   mmc: jz4780: Order headers alphabetically
>   mmc: jz4740: Use dev_get_platdata
>   mmc: jz4740: Introduce devicetree probe
>   mmc: dt-bindings: add MMC support to JZ4740 SoC
>   mmc: jz4740: Use dma_request_chan()
>   MIPS: dts: jz4780: Add DMA controller node to the devicetree
>   MIPS: dts: jz4780: Add MMC controller node to the devicetree
>   MIPS: dts: ci20: Enable MMC in the devicetree
>   MIPS: configs: ci20: Enable DMA and MMC support
> 
> Paul Cercueil (1):
>   mmc: jz4740: Fix error exit path in driver's probe
> 
> Zubair Lutfullah Kakakhel (1):
>   mmc: jz4740: Reset the device requesting the interrupt
> 
>  Documentation/devicetree/bindings/mmc/jz4740.txt |  38 ++++
>  arch/mips/boot/dts/ingenic/ci20.dts              |  34 ++++
>  arch/mips/boot/dts/ingenic/jz4780.dtsi           |  52 +++++
>  arch/mips/configs/ci20_defconfig                 |   3 +
>  drivers/mmc/host/Kconfig                         |   9 +-
>  drivers/mmc/host/jz4740_mmc.c                    | 230
> ++++++++++++++++-------
>  include/dt-bindings/dma/jz4780-dma.h             |  49 +++++
>  7 files changed, 345 insertions(+), 70 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/mmc/jz4740.txt
>  create mode 100644 include/dt-bindings/dma/jz4780-dma.h
> 

Any chance this gets queued for 4.17 ?

Thanks,
Eze

      parent reply	other threads:[~2018-03-26 17:17 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-21 19:27 [PATCH v3 00/14] Enable SD/MMC on JZ4780 SoCs Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 01/14] mmc: jz4740: Fix race condition in IRQ mask update Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 02/14] mmc: jz4740: Fix error exit path in driver's probe Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 03/14] mmc: jz4780: Order headers alphabetically Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 04/14] mmc: jz4740: Use dev_get_platdata Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 05/14] mmc: jz4740: Reset the device requesting the interrupt Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 06/14] mmc: jz4740: Introduce devicetree probe Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 07/14] mmc: dt-bindings: add MMC support to JZ4740 SoC Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 08/14] mmc: jz4740: Set clock rate to mmc->f_max rather than JZ_MMC_CLK_RATE Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 09/14] mmc: jz4740: Add support for the JZ4780 Ezequiel Garcia
2018-03-28 15:19   ` [PATCH 09/14] mmc: jz4740: Add support for the JZ4780, Paul Cercueil
2018-03-28 20:26     ` [PATCH 09/14] mmc: jz4740: Add support for the JZ4780 Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 10/14] mmc: jz4740: Use dma_request_chan() Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 11/14] MIPS: dts: jz4780: Add DMA controller node to the devicetree Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 12/14] MIPS: dts: jz4780: Add MMC " Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 13/14] MIPS: dts: ci20: Enable MMC in " Ezequiel Garcia
2018-03-21 19:27 ` [PATCH 14/14] MIPS: configs: ci20: Enable DMA and MMC support Ezequiel Garcia
2018-03-26 17:16 ` Ezequiel Garcia [this message]

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=1522084610.31319.2.camel@collabora.com \
    --to=ezequiel@collabora.com \
    --cc=ezequiel@collabora.co.uk \
    --cc=jhogan@kernel.org \
    --cc=kernel@collabora.com \
    --cc=linux-mips@linux-mips.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=malat@debian.org \
    --cc=paul@crapouillou.net \
    --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