linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
@ 2018-04-25 13:27 Kishon Vijay Abraham I
  2018-04-25 13:27 ` [PATCH 1/3] ARM: dts: keystone-k2g-evm: Add "vqmmc-supply" property for mmc0/mmc1 Kishon Vijay Abraham I
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-04-25 13:27 UTC (permalink / raw)
  To: Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, kishon, linux-mmc, devicetree,
	linux-kernel, Tony Lindgren

Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
binding.

I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
Everyone who use a custom .config should also enable
CONFIG_MMC_SDHCI_OMAP for MMC to work.

This series should be merged only after [1]
[1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2

Kishon Vijay Abraham I (3):
  ARM: dts: keystone-k2g-evm: Add "vqmmc-supply" property for mmc0/mmc1
  ARM: dts: keystone-k2g-evm: Use sdhci-omap programming model
  ARM: configs: keystone: Enable CONFIG_MMC_SDHCI_OMAP

 arch/arm/boot/dts/keystone-k2g-evm.dts | 10 ++++++++++
 arch/arm/boot/dts/keystone-k2g.dtsi    | 12 ++++--------
 arch/arm/configs/keystone_defconfig    |  3 +++
 3 files changed, 17 insertions(+), 8 deletions(-)

-- 
2.17.0

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH 1/3] ARM: dts: keystone-k2g-evm: Add "vqmmc-supply" property for mmc0/mmc1
  2018-04-25 13:27 [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Kishon Vijay Abraham I
@ 2018-04-25 13:27 ` Kishon Vijay Abraham I
  2018-04-25 13:27 ` [PATCH 2/3] ARM: dts: keystone-k2g-evm: Use sdhci-omap programming model Kishon Vijay Abraham I
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-04-25 13:27 UTC (permalink / raw)
  To: Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, kishon, linux-mmc, devicetree,
	linux-kernel, Tony Lindgren

Add "vqmmc-supply" property for mmc0/mmc1 to indicate the supply connected
to the IO lines. Also add dt node for ldo1 regulator required for mmc1
vqmmc-supply.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/boot/dts/keystone-k2g-evm.dts | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/arch/arm/boot/dts/keystone-k2g-evm.dts b/arch/arm/boot/dts/keystone-k2g-evm.dts
index 6a4657799b99..60b4f59899d2 100644
--- a/arch/arm/boot/dts/keystone-k2g-evm.dts
+++ b/arch/arm/boot/dts/keystone-k2g-evm.dts
@@ -37,6 +37,14 @@
 		regulator-max-microvolt = <3300000>;
 		regulator-always-on;
 	};
+
+	vcc1v8_ldo1_reg: fixedregulator-vcc1v8-ldo1 {
+		compatible = "regulator-fixed";
+		regulator-name = "ldo1";
+		regulator-min-microvolt = <1800000>;
+		regulator-max-microvolt = <1800000>;
+		regulator-always-on;
+	};
 };
 
 &k2g_pinctrl {
@@ -130,6 +138,7 @@
 	pinctrl-names = "default";
 	pinctrl-0 = <&mmc0_pins>;
 	vmmc-supply = <&vcc3v3_dcin_reg>;
+	vqmmc-supply = <&vcc3v3_dcin_reg>;
 	cd-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
 	status = "okay";
 };
@@ -138,6 +147,7 @@
 	pinctrl-names = "default";
 	pinctrl-0 = <&mmc1_pins>;
 	vmmc-supply = <&vcc3v3_dcin_reg>; /* VCC3V3_EMMC is connected to VCC3V3_DCIN */
+	vqmmc-supply = <&vcc1v8_ldo1_reg>;
 	ti,non-removable;
 	status = "okay";
 };
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/3] ARM: dts: keystone-k2g-evm: Use sdhci-omap programming model
  2018-04-25 13:27 [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Kishon Vijay Abraham I
  2018-04-25 13:27 ` [PATCH 1/3] ARM: dts: keystone-k2g-evm: Add "vqmmc-supply" property for mmc0/mmc1 Kishon Vijay Abraham I
@ 2018-04-25 13:27 ` Kishon Vijay Abraham I
  2018-04-25 13:27 ` [PATCH 3/3] ARM: configs: keystone: Enable CONFIG_MMC_SDHCI_OMAP Kishon Vijay Abraham I
  2018-04-25 17:40 ` [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Santosh Shilimkar
  3 siblings, 0 replies; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-04-25 13:27 UTC (permalink / raw)
  To: Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, kishon, linux-mmc, devicetree,
	linux-kernel, Tony Lindgren

Use sdhci-omap programming model based on the generic sdhci
library for programming the MMC/SD controller.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/boot/dts/keystone-k2g.dtsi | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/arch/arm/boot/dts/keystone-k2g.dtsi b/arch/arm/boot/dts/keystone-k2g.dtsi
index da78c0034427..af6bf1301cf5 100644
--- a/arch/arm/boot/dts/keystone-k2g.dtsi
+++ b/arch/arm/boot/dts/keystone-k2g.dtsi
@@ -391,13 +391,10 @@
 		};
 
 		mmc0: mmc@23000000 {
-			compatible = "ti,k2g-hsmmc", "ti,omap4-hsmmc";
+			compatible = "ti,k2g-sdhci";
 			reg = <0x23000000 0x400>;
 			interrupts = <GIC_SPI 96 IRQ_TYPE_EDGE_RISING>;
-			dmas = <&edma1 24 0>, <&edma1 25 0>;
-			dma-names = "tx", "rx";
 			bus-width = <4>;
-			ti,needs-special-reset;
 			no-1-8-v;
 			max-frequency = <96000000>;
 			power-domains = <&k2g_pds 0xb>;
@@ -407,13 +404,12 @@
 		};
 
 		mmc1: mmc@23100000 {
-			compatible = "ti,k2g-hsmmc", "ti,omap4-hsmmc";
+			compatible = "ti,k2g-sdhci";
 			reg = <0x23100000 0x400>;
 			interrupts = <GIC_SPI 97 IRQ_TYPE_EDGE_RISING>;
-			dmas = <&edma1 26 0>, <&edma1 27 0>;
-			dma-names = "tx", "rx";
 			bus-width = <8>;
-			ti,needs-special-reset;
+			no-1-8-v;
+			non-removable;
 			max-frequency = <96000000>;
 			power-domains = <&k2g_pds 0xc>;
 			clocks = <&k2g_clks 0xc 1>, <&k2g_clks 0xc 2>;
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 3/3] ARM: configs: keystone: Enable CONFIG_MMC_SDHCI_OMAP
  2018-04-25 13:27 [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Kishon Vijay Abraham I
  2018-04-25 13:27 ` [PATCH 1/3] ARM: dts: keystone-k2g-evm: Add "vqmmc-supply" property for mmc0/mmc1 Kishon Vijay Abraham I
  2018-04-25 13:27 ` [PATCH 2/3] ARM: dts: keystone-k2g-evm: Use sdhci-omap programming model Kishon Vijay Abraham I
@ 2018-04-25 13:27 ` Kishon Vijay Abraham I
  2018-04-25 17:40 ` [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Santosh Shilimkar
  3 siblings, 0 replies; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-04-25 13:27 UTC (permalink / raw)
  To: Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, kishon, linux-mmc, devicetree,
	linux-kernel, Tony Lindgren

Enable CONFIG_MMC_SDHCI_OMAP so that TI's K2G SoC
can use sdhci-omap driver for MMC/SD controller.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 arch/arm/configs/keystone_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/configs/keystone_defconfig b/arch/arm/configs/keystone_defconfig
index 2536c231eea1..21a6ce4ef9bc 100644
--- a/arch/arm/configs/keystone_defconfig
+++ b/arch/arm/configs/keystone_defconfig
@@ -170,7 +170,10 @@ CONFIG_USB_DWC3=y
 CONFIG_NOP_USB_XCEIV=y
 CONFIG_KEYSTONE_USB_PHY=y
 CONFIG_MMC=y
+CONFIG_MMC_SDHCI=y
+CONFIG_MMC_SDHCI_PLTFM=y
 CONFIG_MMC_OMAP_HS=y
+CONFIG_MMC_SDHCI_OMAP=y
 CONFIG_NEW_LEDS=y
 CONFIG_LEDS_CLASS=y
 CONFIG_LEDS_GPIO=y
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
  2018-04-25 13:27 [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Kishon Vijay Abraham I
                   ` (2 preceding siblings ...)
  2018-04-25 13:27 ` [PATCH 3/3] ARM: configs: keystone: Enable CONFIG_MMC_SDHCI_OMAP Kishon Vijay Abraham I
@ 2018-04-25 17:40 ` Santosh Shilimkar
  2018-04-26  5:42   ` Kishon Vijay Abraham I
  2018-05-03 11:57   ` Kishon Vijay Abraham I
  3 siblings, 2 replies; 11+ messages in thread
From: Santosh Shilimkar @ 2018-04-25 17:40 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, linux-mmc, devicetree, linux-kernel,
	Tony Lindgren

On 4/25/2018 6:27 AM, Kishon Vijay Abraham I wrote:
> Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
> binding.
> 
> I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
> Everyone who use a custom .config should also enable
> CONFIG_MMC_SDHCI_OMAP for MMC to work.
> 
> This series should be merged only after [1]
> [1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2
> 
Keep me posted once the dependency gets merged.

Regards,
Santosh

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
  2018-04-25 17:40 ` [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Santosh Shilimkar
@ 2018-04-26  5:42   ` Kishon Vijay Abraham I
  2018-05-03 11:57   ` Kishon Vijay Abraham I
  1 sibling, 0 replies; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-04-26  5:42 UTC (permalink / raw)
  To: Santosh Shilimkar, Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, linux-mmc, devicetree, linux-kernel,
	Tony Lindgren



On Wednesday 25 April 2018 11:10 PM, Santosh Shilimkar wrote:
> On 4/25/2018 6:27 AM, Kishon Vijay Abraham I wrote:
>> Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
>> binding.
>>
>> I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
>> Everyone who use a custom .config should also enable
>> CONFIG_MMC_SDHCI_OMAP for MMC to work.
>>
>> This series should be merged only after [1]
>> [1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2
>>
> Keep me posted once the dependency gets merged.

sure.

Regards
Kishon

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
  2018-04-25 17:40 ` [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Santosh Shilimkar
  2018-04-26  5:42   ` Kishon Vijay Abraham I
@ 2018-05-03 11:57   ` Kishon Vijay Abraham I
  2018-05-03 18:52     ` santosh.shilimkar
  1 sibling, 1 reply; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-05-03 11:57 UTC (permalink / raw)
  To: Santosh Shilimkar, Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, linux-mmc, devicetree, linux-kernel,
	Tony Lindgren

Hi Santosh,

On Wednesday 25 April 2018 11:10 PM, Santosh Shilimkar wrote:
> On 4/25/2018 6:27 AM, Kishon Vijay Abraham I wrote:
>> Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
>> binding.
>>
>> I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
>> Everyone who use a custom .config should also enable
>> CONFIG_MMC_SDHCI_OMAP for MMC to work.
>>
>> This series should be merged only after [1]
>> [1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2
>>
> Keep me posted once the dependency gets merged.

Ulf has merged the sdhci part and has shared an immutable branch

git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git sdhci_omap
with his signed tag sdhci-omap-v4.17-rc3.

Can you use it as a base for merging this series?

Thanks
Kishon

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
  2018-05-03 11:57   ` Kishon Vijay Abraham I
@ 2018-05-03 18:52     ` santosh.shilimkar
  2018-05-04  8:06       ` Kishon Vijay Abraham I
  0 siblings, 1 reply; 11+ messages in thread
From: santosh.shilimkar @ 2018-05-03 18:52 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, linux-mmc, devicetree, linux-kernel,
	Tony Lindgren

On 5/3/18 4:57 AM, Kishon Vijay Abraham I wrote:
> Hi Santosh,
> 
> On Wednesday 25 April 2018 11:10 PM, Santosh Shilimkar wrote:
>> On 4/25/2018 6:27 AM, Kishon Vijay Abraham I wrote:
>>> Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
>>> binding.
>>>
>>> I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
>>> Everyone who use a custom .config should also enable
>>> CONFIG_MMC_SDHCI_OMAP for MMC to work.
>>>
>>> This series should be merged only after [1]
>>> [1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2
>>>
>> Keep me posted once the dependency gets merged.
> 
> Ulf has merged the sdhci part and has shared an immutable branch
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git sdhci_omap
> with his signed tag sdhci-omap-v4.17-rc3.
> 
> Can you use it as a base for merging this series?
> 
How about I apply only DTS patches and exlude config file update ?
You can send the config patch after the merge window. Are the DTS
changes also going to break anything without basing of this sdhci
branch ?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
  2018-05-03 18:52     ` santosh.shilimkar
@ 2018-05-04  8:06       ` Kishon Vijay Abraham I
  2018-05-04 15:46         ` santosh.shilimkar
  0 siblings, 1 reply; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-05-04  8:06 UTC (permalink / raw)
  To: santosh.shilimkar, Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, linux-mmc, devicetree, linux-kernel,
	Tony Lindgren

Hi Santosh,

On Friday 04 May 2018 12:22 AM, santosh.shilimkar@oracle.com wrote:
> On 5/3/18 4:57 AM, Kishon Vijay Abraham I wrote:
>> Hi Santosh,
>>
>> On Wednesday 25 April 2018 11:10 PM, Santosh Shilimkar wrote:
>>> On 4/25/2018 6:27 AM, Kishon Vijay Abraham I wrote:
>>>> Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
>>>> binding.
>>>>
>>>> I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
>>>> Everyone who use a custom .config should also enable
>>>> CONFIG_MMC_SDHCI_OMAP for MMC to work.
>>>>
>>>> This series should be merged only after [1]
>>>> [1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2
>>>>
>>> Keep me posted once the dependency gets merged.
>>
>> Ulf has merged the sdhci part and has shared an immutable branch
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git sdhci_omap
>> with his signed tag sdhci-omap-v4.17-rc3.
>>
>> Can you use it as a base for merging this series?
>>
> How about I apply only DTS patches and exlude config file update ?
> You can send the config patch after the merge window. Are the DTS
> changes also going to break anything without basing of this sdhci
> branch ?

Yes, the bindings has changed for sdhci-omap.
It should also be fine if this entire series can be merged during the 4.18 -rc
cycle since the dependent patches would have been already merged then.

Thanks
Kishon

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
  2018-05-04  8:06       ` Kishon Vijay Abraham I
@ 2018-05-04 15:46         ` santosh.shilimkar
  2018-06-22 10:12           ` Kishon Vijay Abraham I
  0 siblings, 1 reply; 11+ messages in thread
From: santosh.shilimkar @ 2018-05-04 15:46 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, linux-mmc, devicetree, linux-kernel,
	Tony Lindgren

On 5/4/18 1:06 AM, Kishon Vijay Abraham I wrote:
> Hi Santosh,
> 
> On Friday 04 May 2018 12:22 AM, santosh.shilimkar@oracle.com wrote:
>> On 5/3/18 4:57 AM, Kishon Vijay Abraham I wrote:
>>> Hi Santosh,
>>>
>>> On Wednesday 25 April 2018 11:10 PM, Santosh Shilimkar wrote:
>>>> On 4/25/2018 6:27 AM, Kishon Vijay Abraham I wrote:
>>>>> Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
>>>>> binding.
>>>>>
>>>>> I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
>>>>> Everyone who use a custom .config should also enable
>>>>> CONFIG_MMC_SDHCI_OMAP for MMC to work.
>>>>>
>>>>> This series should be merged only after [1]
>>>>> [1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2
>>>>>
>>>> Keep me posted once the dependency gets merged.
>>>
>>> Ulf has merged the sdhci part and has shared an immutable branch
>>>
>>> git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git sdhci_omap
>>> with his signed tag sdhci-omap-v4.17-rc3.
>>>
>>> Can you use it as a base for merging this series?
>>>
>> How about I apply only DTS patches and exlude config file update ?
>> You can send the config patch after the merge window. Are the DTS
>> changes also going to break anything without basing of this sdhci
>> branch ?
> 
> Yes, the bindings has changed for sdhci-omap.
> It should also be fine if this entire series can be merged during the 4.18 -rc
> cycle since the dependent patches would have been already merged then.
> 
I see. In that, lets wait for 4.18-rcx for all the dependencies to make
it. This series won't qualify for fixes but at least we can get that
into next early in the cycle so that it becomes usable.

Thanks for followup Kishon !!

Regards,
Santosh

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap
  2018-05-04 15:46         ` santosh.shilimkar
@ 2018-06-22 10:12           ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 11+ messages in thread
From: Kishon Vijay Abraham I @ 2018-06-22 10:12 UTC (permalink / raw)
  To: santosh.shilimkar, Santosh Shilimkar
  Cc: Rob Herring, Mark Rutland, linux-mmc, devicetree, linux-kernel,
	Tony Lindgren

Hi Santosh,

On Friday 04 May 2018 09:16 PM, santosh.shilimkar@oracle.com wrote:
> On 5/4/18 1:06 AM, Kishon Vijay Abraham I wrote:
>> Hi Santosh,
>>
>> On Friday 04 May 2018 12:22 AM, santosh.shilimkar@oracle.com wrote:
>>> On 5/3/18 4:57 AM, Kishon Vijay Abraham I wrote:
>>>> Hi Santosh,
>>>>
>>>> On Wednesday 25 April 2018 11:10 PM, Santosh Shilimkar wrote:
>>>>> On 4/25/2018 6:27 AM, Kishon Vijay Abraham I wrote:
>>>>>> Update mmc dt node to use sdhci-omap binding instead of omap_hsmmc
>>>>>> binding.
>>>>>>
>>>>>> I've also updated keystone_defconfig to enable CONFIG_MMC_SDHCI_OMAP.
>>>>>> Everyone who use a custom .config should also enable
>>>>>> CONFIG_MMC_SDHCI_OMAP for MMC to work.
>>>>>>
>>>>>> This series should be merged only after [1]
>>>>>> [1] -> https://marc.info/?l=linux-kernel&m=152465820531802&w=2
>>>>>>
>>>>> Keep me posted once the dependency gets merged.
>>>>
>>>> Ulf has merged the sdhci part and has shared an immutable branch
>>>>
>>>> git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git sdhci_omap
>>>> with his signed tag sdhci-omap-v4.17-rc3.
>>>>
>>>> Can you use it as a base for merging this series?
>>>>
>>> How about I apply only DTS patches and exlude config file update ?
>>> You can send the config patch after the merge window. Are the DTS
>>> changes also going to break anything without basing of this sdhci
>>> branch ?
>>
>> Yes, the bindings has changed for sdhci-omap.
>> It should also be fine if this entire series can be merged during the 4.18 -rc
>> cycle since the dependent patches would have been already merged then.
>>
> I see. In that, lets wait for 4.18-rcx for all the dependencies to make
> it. This series won't qualify for fixes but at least we can get that
> into next early in the cycle so that it becomes usable.
> 
> Thanks for followup Kishon !!

All the dependent patches has got merged. This series applies on latest linus
-master as is without any conflicts. I've also verified MMC works with this series.

This should be good to get merged. Let me know if you want me to repost the series.

Thanks
Kishon

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-06-22 10:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-25 13:27 [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Kishon Vijay Abraham I
2018-04-25 13:27 ` [PATCH 1/3] ARM: dts: keystone-k2g-evm: Add "vqmmc-supply" property for mmc0/mmc1 Kishon Vijay Abraham I
2018-04-25 13:27 ` [PATCH 2/3] ARM: dts: keystone-k2g-evm: Use sdhci-omap programming model Kishon Vijay Abraham I
2018-04-25 13:27 ` [PATCH 3/3] ARM: configs: keystone: Enable CONFIG_MMC_SDHCI_OMAP Kishon Vijay Abraham I
2018-04-25 17:40 ` [PATCH 0/3] K2G: mmc: Update mmc dt node to use sdhci-omap Santosh Shilimkar
2018-04-26  5:42   ` Kishon Vijay Abraham I
2018-05-03 11:57   ` Kishon Vijay Abraham I
2018-05-03 18:52     ` santosh.shilimkar
2018-05-04  8:06       ` Kishon Vijay Abraham I
2018-05-04 15:46         ` santosh.shilimkar
2018-06-22 10:12           ` Kishon Vijay Abraham I

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).