From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaehoon Chung Subject: Re: [GIT PULL] Update dw-mmc controller Date: Wed, 21 Oct 2015 13:21:53 +0900 Message-ID: <562712E1.3020107@samsung.com> References: <5626FCB0.5040708@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailout1.samsung.com ([203.254.224.24]:53656 "EHLO mailout1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750990AbbJUEV4 (ORCPT ); Wed, 21 Oct 2015 00:21:56 -0400 Received: from epcpsbgr3.samsung.com (u143.gpu120.samsung.co.kr [203.254.230.143]) by mailout1.samsung.com (Oracle Communications Messaging Server 7.0.5.31.0 64bit (built May 5 2014)) with ESMTP id <0NWJ018FOYSHV920@mailout1.samsung.com> for linux-mmc@vger.kernel.org; Wed, 21 Oct 2015 13:21:53 +0900 (KST) In-reply-to: <5626FCB0.5040708@samsung.com> Sender: linux-mmc-owner@vger.kernel.org List-Id: linux-mmc@vger.kernel.org To: "linux-mmc@vger.kernel.org" Cc: Ulf Hansson , Shawn Lin , Krzysztof Kozlowski , Govindraj Raja , Ralf Baechle , Vineet Gupta , Wei Xu , Joachim Eastwood Dear Ulf. Sorry..previously request-pull is wrong. Could you pull the below..? The following changes since commit 10e2cf053bbbaa76fcd919c0f59ae5bf8463a19c: mmc: sdhci-of-esdhc: avoid writing power control register (2015-10-16 15:04:58 +0200) are available in the git repository at: https://github.com/jh80chung/dw-mmc.git for-ulf for you to fetch changes up to 13ae9dff2fe12409197fbd3620d2308888badbac: arm: zx_defconfig: remove CONFIG_MMC_DW_IDMAC (2015-10-20 23:59:31 +0900) ---------------------------------------------------------------- Shawn Lin (10): mmc: dw_mmc: Add external dma interface support mmc: dw_mmc: use macro for HCON register operations Documentation: synopsys-dw-mshc: add bindings for idmac and edmac mips: pistachio_defconfig: remove CONFIG_MMC_DW_IDMAC arc: axs10x_defconfig: remove CONFIG_MMC_DW_IDMAC arm: exynos_defconfig: remove CONFIG_MMC_DW_IDMAC arm: hisi_defconfig: remove CONFIG_MMC_DW_IDMAC arm: lpc18xx_defconfig: remove CONFIG_MMC_DW_IDMAC arm: multi_v7_defconfig: remove CONFIG_MMC_DW_IDMAC arm: zx_defconfig: remove CONFIG_MMC_DW_IDMAC Documentation/devicetree/bindings/mmc/synopsys-dw-mshc.txt | 25 +++++++++++++ arch/arc/configs/axs101_defconfig | 1 - arch/arc/configs/axs103_defconfig | 1 - arch/arc/configs/axs103_smp_defconfig | 1 - arch/arm/configs/exynos_defconfig | 1 - arch/arm/configs/hisi_defconfig | 1 - arch/arm/configs/lpc18xx_defconfig | 1 - arch/arm/configs/multi_v7_defconfig | 1 - arch/arm/configs/zx_defconfig | 1 - arch/mips/configs/pistachio_defconfig | 1 - drivers/mmc/host/Kconfig | 11 +----- drivers/mmc/host/dw_mmc-pltfm.c | 2 + drivers/mmc/host/dw_mmc.c | 272 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------- drivers/mmc/host/dw_mmc.h | 9 +++++ include/linux/mmc/dw_mmc.h | 23 +++++++++++- 15 files changed, 276 insertions(+), 75 deletions(-) Best Regards, Jaehoon Chung On 10/21/2015 11:47 AM, Jaehoon Chung wrote: > Dear, Ulf. > > Could you pull these patch for mmc-next? > If have any other problem, let me know, plz. > > Best Regards, > Jaehoon Chung > > The following changes since commit 10e2cf053bbbaa76fcd919c0f59ae5bf8463a19c: > > mmc: sdhci-of-esdhc: avoid writing power control register (2015-10-16 15:04:58 +0200) > > are available in the git repository at: > > https://git.linaro.org/people/ulf.hansson/mmc.git > > for you to fetch changes up to 13ae9dff2fe12409197fbd3620d2308888badbac: > > arm: zx_defconfig: remove CONFIG_MMC_DW_IDMAC (2015-10-20 23:59:31 +0900) > > ---------------------------------------------------------------- > Shawn Lin (10): > mmc: dw_mmc: Add external dma interface support > mmc: dw_mmc: use macro for HCON register operations > Documentation: synopsys-dw-mshc: add bindings for idmac and edmac > mips: pistachio_defconfig: remove CONFIG_MMC_DW_IDMAC > arc: axs10x_defconfig: remove CONFIG_MMC_DW_IDMAC > arm: exynos_defconfig: remove CONFIG_MMC_DW_IDMAC > arm: hisi_defconfig: remove CONFIG_MMC_DW_IDMAC > arm: lpc18xx_defconfig: remove CONFIG_MMC_DW_IDMAC > arm: multi_v7_defconfig: remove CONFIG_MMC_DW_IDMAC > arm: zx_defconfig: remove CONFIG_MMC_DW_IDMAC > > Documentation/devicetree/bindings/mmc/synopsys-dw-mshc.txt | 25 +++++++++++++ > arch/arc/configs/axs101_defconfig | 1 - > arch/arc/configs/axs103_defconfig | 1 - > arch/arc/configs/axs103_smp_defconfig | 1 - > arch/arm/configs/exynos_defconfig | 1 - > arch/arm/configs/hisi_defconfig | 1 - > arch/arm/configs/lpc18xx_defconfig | 1 - > arch/arm/configs/multi_v7_defconfig | 1 - > arch/arm/configs/zx_defconfig | 1 - > arch/mips/configs/pistachio_defconfig | 1 - > drivers/mmc/host/Kconfig | 11 +----- > drivers/mmc/host/dw_mmc-pltfm.c | 2 + > drivers/mmc/host/dw_mmc.c | 272 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------- > drivers/mmc/host/dw_mmc.h | 9 +++++ > include/linux/mmc/dw_mmc.h | 23 +++++++++++- > 15 files changed, 276 insertions(+), 75 deletions(-) >