* [PATCH] dts: vt8500: Add SDHC node to DTS file for WM8650 [not found] <1421608444-25525-1-git-send-email-v1ron@v1ros.org> @ 2015-02-05 9:54 ` Roman Volkov 2015-02-05 10:07 ` [PATCH v2 RESEND] " Roman Volkov 0 siblings, 1 reply; 20+ messages in thread From: Roman Volkov @ 2015-02-05 9:54 UTC (permalink / raw) To: linux-arm-kernel There is no DT node for SDHC controller for WM8650, while the driver already exists. Add missing node to make the controller working by default. Signed-off-by: Roman Volkov <v1ron@v1ros.org> Reviewed-by: Alexey Charkov <alchark@gmail.com> --- arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/wm8650.dtsi b/arch/arm/boot/dts/wm8650.dtsi index b1c59a7..5d85ccd 100644 --- a/arch/arm/boot/dts/wm8650.dtsi +++ b/arch/arm/boot/dts/wm8650.dtsi @@ -187,6 +187,15 @@ interrupts = <43>; }; + sdhc at d800a000 { + compatible = "wm,wm8505-sdhc"; + reg = <0xd800a000 0x400>; + interrupts = <20>, <21>; + clocks = <&clksdhc>; + bus-width = <4>; + sdon-inverted; + }; + fb: fb at d8050800 { compatible = "wm,wm8505-fb"; reg = <0xd8050800 0x200>; -- 2.2.2 ^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCH v2 RESEND] dts: vt8500: Add SDHC node to DTS file for WM8650 2015-02-05 9:54 ` [PATCH] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov @ 2015-02-05 10:07 ` Roman Volkov 2015-03-01 16:06 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov 0 siblings, 1 reply; 20+ messages in thread From: Roman Volkov @ 2015-02-05 10:07 UTC (permalink / raw) To: linux-arm-kernel There is no DT node for SDHC controller for WM8650, while the driver already exists. Add missing node to make the controller working by default. Signed-off-by: Roman Volkov <v1ron@v1ros.org> Reviewed-by: Alexey Charkov <alchark@gmail.com> --- arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/wm8650.dtsi b/arch/arm/boot/dts/wm8650.dtsi index b1c59a7..e12213d 100644 --- a/arch/arm/boot/dts/wm8650.dtsi +++ b/arch/arm/boot/dts/wm8650.dtsi @@ -187,6 +187,15 @@ interrupts = <43>; }; + sdhc at d800a000 { + compatible = "wm,wm8505-sdhc"; + reg = <0xd800a000 0x400>; + interrupts = <20>, <21>; + clocks = <&clksdhc>; + bus-width = <4>; + sdon-inverted; + }; + fb: fb at d8050800 { compatible = "wm,wm8505-fb"; reg = <0xd8050800 0x200>; -- 2.2.2 ^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-02-05 10:07 ` [PATCH v2 RESEND] " Roman Volkov @ 2015-03-01 16:06 ` Roman Volkov 2015-03-01 16:06 ` [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov ` (2 more replies) 0 siblings, 3 replies; 20+ messages in thread From: Roman Volkov @ 2015-03-01 16:06 UTC (permalink / raw) To: linux-arm-kernel This patch set enables SD controller support for WM8650 and fixes minor errors in WM8505 Device Tree file. Changes in v3: 1. Add minor fixes for WM8505 SDHC node Tested on both WM8505 and WM8650. Roman Volkov (2): dts: vt8500: Add SDHC node to DTS file for WM8650 dts: vt8500: Fix errors in SDHC node for WM8505 arch/arm/boot/dts/wm8505.dtsi | 4 ++-- arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) -- Hi maintainers, I see my previous versions were not applied. Could this little patch set be applied for the linux-next? I don't think this is new functionality, this must be considered as bugfix for existing Device Tree. Any other suggestions? 2.3.1 ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 2015-03-01 16:06 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov @ 2015-03-01 16:06 ` Roman Volkov 2015-03-01 17:59 ` Sergei Shtylyov 2015-03-01 16:06 ` [PATCH v3 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 Roman Volkov 2015-03-01 19:52 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Arnd Bergmann 2 siblings, 1 reply; 20+ messages in thread From: Roman Volkov @ 2015-03-01 16:06 UTC (permalink / raw) To: linux-arm-kernel Since WM8650 has the same 'WMT' SDHC controller as WM8505, and the driver is already in the kernel, this node enables the controller support for WM8650 Signed-off-by: Roman Volkov <rvolkov@v1ros.org> Reviewed-by: Alexey Charkov <alchark@gmail.com> --- arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/wm8650.dtsi b/arch/arm/boot/dts/wm8650.dtsi index b1c59a7..e12213d 100644 --- a/arch/arm/boot/dts/wm8650.dtsi +++ b/arch/arm/boot/dts/wm8650.dtsi @@ -187,6 +187,15 @@ interrupts = <43>; }; + sdhc at d800a000 { + compatible = "wm,wm8505-sdhc"; + reg = <0xd800a000 0x400>; + interrupts = <20>, <21>; + clocks = <&clksdhc>; + bus-width = <4>; + sdon-inverted; + }; + fb: fb at d8050800 { compatible = "wm,wm8505-fb"; reg = <0xd8050800 0x200>; -- 2.3.1 ^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 2015-03-01 16:06 ` [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov @ 2015-03-01 17:59 ` Sergei Shtylyov 2015-03-01 19:49 ` Roman Volkov 0 siblings, 1 reply; 20+ messages in thread From: Sergei Shtylyov @ 2015-03-01 17:59 UTC (permalink / raw) To: linux-arm-kernel On 3/1/2015 7:06 PM, Roman Volkov wrote: > Since WM8650 has the same 'WMT' SDHC controller as WM8505, and the driver > is already in the kernel, this node enables the controller support for > WM8650 > Signed-off-by: Roman Volkov <rvolkov@v1ros.org> > Reviewed-by: Alexey Charkov <alchark@gmail.com> > --- > arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ > 1 file changed, 9 insertions(+) > diff --git a/arch/arm/boot/dts/wm8650.dtsi b/arch/arm/boot/dts/wm8650.dtsi > index b1c59a7..e12213d 100644 > --- a/arch/arm/boot/dts/wm8650.dtsi > +++ b/arch/arm/boot/dts/wm8650.dtsi > @@ -187,6 +187,15 @@ > interrupts = <43>; > }; > > + sdhc at d800a000 { According to the ePAPR standard, the device nodes should have generic names according to their functions, so this node should be named just "sd at d800a000". WBR, Sergei ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 2015-03-01 17:59 ` Sergei Shtylyov @ 2015-03-01 19:49 ` Roman Volkov 2015-03-01 20:50 ` Sergei Shtylyov 0 siblings, 1 reply; 20+ messages in thread From: Roman Volkov @ 2015-03-01 19:49 UTC (permalink / raw) To: linux-arm-kernel ? Sun, 01 Mar 2015 20:59:13 +0300 Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> ?????: > On 3/1/2015 7:06 PM, Roman Volkov wrote: > > > Since WM8650 has the same 'WMT' SDHC controller as WM8505, and the > > driver is already in the kernel, this node enables the controller > > support for WM8650 > > > Signed-off-by: Roman Volkov <rvolkov@v1ros.org> > > Reviewed-by: Alexey Charkov <alchark@gmail.com> > > --- > > arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ > > 1 file changed, 9 insertions(+) > > > diff --git a/arch/arm/boot/dts/wm8650.dtsi > > b/arch/arm/boot/dts/wm8650.dtsi index b1c59a7..e12213d 100644 > > --- a/arch/arm/boot/dts/wm8650.dtsi > > +++ b/arch/arm/boot/dts/wm8650.dtsi > > @@ -187,6 +187,15 @@ > > interrupts = <43>; > > }; > > > > + sdhc at d800a000 { > > According to the ePAPR standard, the device nodes should have > generic names according to their functions, so this node should be > named just "sd at d800a000". > > WBR, Sergei > Sergei, Why not "sdmmc" or "sdhci" or "sdio" then? It would be great to name nodes in same way, but there is no exact requirement in ePAPR v1.1 regarding SD/MMC controllers. Also, in Linux I don't see that someone strictly follows this requirement. This renaming will affect driver, since .compatible strings likely also need changing. Roman ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 2015-03-01 19:49 ` Roman Volkov @ 2015-03-01 20:50 ` Sergei Shtylyov 0 siblings, 0 replies; 20+ messages in thread From: Sergei Shtylyov @ 2015-03-01 20:50 UTC (permalink / raw) To: linux-arm-kernel Hello. On 03/01/2015 10:49 PM, Roman Volkov wrote: >>> Since WM8650 has the same 'WMT' SDHC controller as WM8505, and the >>> driver is already in the kernel, this node enables the controller >>> support for WM8650 >>> Signed-off-by: Roman Volkov <rvolkov@v1ros.org> >>> Reviewed-by: Alexey Charkov <alchark@gmail.com> >>> --- >>> arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ >>> 1 file changed, 9 insertions(+) >>> diff --git a/arch/arm/boot/dts/wm8650.dtsi >>> b/arch/arm/boot/dts/wm8650.dtsi index b1c59a7..e12213d 100644 >>> --- a/arch/arm/boot/dts/wm8650.dtsi >>> +++ b/arch/arm/boot/dts/wm8650.dtsi >>> @@ -187,6 +187,15 @@ >>> interrupts = <43>; >>> }; >>> >>> + sdhc at d800a000 { >> According to the ePAPR standard, the device nodes should have >> generic names according to their functions, so this node should be >> named just "sd at d800a000". >> WBR, Sergei > Sergei, > Why not "sdmmc" or "sdhci" or "sdio" then? It would be great to name SDHCI is the SD host controller standard, while the names should describe "the function of the device and not its precise programming model". SDIO isn't the physical interface name, the physical interface underneath is still SD. "mmcsd" or "mmc-sd" would be appropriate, however just "mmc" is typically used. > nodes in same way, but there is no exact requirement in ePAPR v1.1 > regarding SD/MMC controllers. Yes, MMC/SD node names are not yet standardized. > Also, in Linux I don't see that someone > strictly follows this requirement. Because people for the most part are not aware of it, despite http://www.devicetree.org/Device_Tree_Usage points to ePAPR and the section 2.4 of this page also tells to use generic names. > This renaming will affect driver, > since .compatible strings likely also need changing. Why on earth they'll need change?! > Roman WBR, Sergei ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 2015-03-01 16:06 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov 2015-03-01 16:06 ` [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov @ 2015-03-01 16:06 ` Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov 2015-03-01 19:52 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Arnd Bergmann 2 siblings, 1 reply; 20+ messages in thread From: Roman Volkov @ 2015-03-01 16:06 UTC (permalink / raw) To: linux-arm-kernel According to datasheet, the registers space of SDHC controller is 1Kb, not '0x1000', the correct value should be '0x400'. Bracket interrupt numbers individually per recommendations. Signed-off-by: Roman Volkov <rvolkov@v1ros.org> --- arch/arm/boot/dts/wm8505.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/wm8505.dtsi b/arch/arm/boot/dts/wm8505.dtsi index a1a854b..e9ef539 100644 --- a/arch/arm/boot/dts/wm8505.dtsi +++ b/arch/arm/boot/dts/wm8505.dtsi @@ -281,8 +281,8 @@ sdhc at d800a000 { compatible = "wm,wm8505-sdhc"; - reg = <0xd800a000 0x1000>; - interrupts = <20 21>; + reg = <0xd800a000 0x400>; + interrupts = <20>, <21>; clocks = <&clksdhc>; bus-width = <4>; }; -- 2.3.1 ^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCH v3 RESEND 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-03-01 16:06 ` [PATCH v3 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 Roman Volkov @ 2015-03-01 20:48 ` Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 Roman Volkov 0 siblings, 2 replies; 20+ messages in thread From: Roman Volkov @ 2015-03-01 20:48 UTC (permalink / raw) To: linux-arm-kernel This patch set enables SD controller support for WM8650 and fixes minor errors in WM8505 Device Tree file. Changes in v3: 1. Add minor fixes for WM8505 SDHC node Tested on both WM8505 and WM8650. Roman Volkov (2): dts: vt8500: Add SDHC node to DTS file for WM8650 dts: vt8500: Fix errors in SDHC node for WM8505 arch/arm/boot/dts/wm8505.dtsi | 4 ++-- arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) -- Hi maintainers, I see my previous versions were not applied. Could this little patch set be applied for the linux-next? I don't think this is new functionality, this must be considered as bugfix for existing Device Tree. Any other suggestions? 2.3.1 ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 RESEND 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 2015-03-01 20:48 ` [PATCH v3 RESEND 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov @ 2015-03-01 20:48 ` Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 Roman Volkov 1 sibling, 0 replies; 20+ messages in thread From: Roman Volkov @ 2015-03-01 20:48 UTC (permalink / raw) To: linux-arm-kernel Since WM8650 has the same 'WMT' SDHC controller as WM8505, and the driver is already in the kernel, this node enables the controller support for WM8650 Signed-off-by: Roman Volkov <rvolkov@v1ros.org> Reviewed-by: Alexey Charkov <alchark@gmail.com> --- arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/wm8650.dtsi b/arch/arm/boot/dts/wm8650.dtsi index b1c59a7..e12213d 100644 --- a/arch/arm/boot/dts/wm8650.dtsi +++ b/arch/arm/boot/dts/wm8650.dtsi @@ -187,6 +187,15 @@ interrupts = <43>; }; + sdhc at d800a000 { + compatible = "wm,wm8505-sdhc"; + reg = <0xd800a000 0x400>; + interrupts = <20>, <21>; + clocks = <&clksdhc>; + bus-width = <4>; + sdon-inverted; + }; + fb: fb at d8050800 { compatible = "wm,wm8505-fb"; reg = <0xd8050800 0x200>; -- 2.3.1 ^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCH v3 RESEND 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 2015-03-01 20:48 ` [PATCH v3 RESEND 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov @ 2015-03-01 20:48 ` Roman Volkov 1 sibling, 0 replies; 20+ messages in thread From: Roman Volkov @ 2015-03-01 20:48 UTC (permalink / raw) To: linux-arm-kernel According to datasheet, the registers space of SDHC controller is 1Kb, not '0x1000', the correct value should be '0x400'. Bracket interrupt numbers individually per recommendations. Signed-off-by: Roman Volkov <rvolkov@v1ros.org> --- arch/arm/boot/dts/wm8505.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/wm8505.dtsi b/arch/arm/boot/dts/wm8505.dtsi index a1a854b..e9ef539 100644 --- a/arch/arm/boot/dts/wm8505.dtsi +++ b/arch/arm/boot/dts/wm8505.dtsi @@ -281,8 +281,8 @@ sdhc at d800a000 { compatible = "wm,wm8505-sdhc"; - reg = <0xd800a000 0x1000>; - interrupts = <20 21>; + reg = <0xd800a000 0x400>; + interrupts = <20>, <21>; clocks = <&clksdhc>; bus-width = <4>; }; -- 2.3.1 ^ permalink raw reply related [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-03-01 16:06 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov 2015-03-01 16:06 ` [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov 2015-03-01 16:06 ` [PATCH v3 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 Roman Volkov @ 2015-03-01 19:52 ` Arnd Bergmann 2015-03-01 20:39 ` Roman Volkov 2 siblings, 1 reply; 20+ messages in thread From: Arnd Bergmann @ 2015-03-01 19:52 UTC (permalink / raw) To: linux-arm-kernel On Sunday 01 March 2015 19:06:45 Roman Volkov wrote: > This patch set enables SD controller support for WM8650 and > fixes minor errors in WM8505 Device Tree file. > > Changes in v3: > 1. Add minor fixes for WM8505 SDHC node > > Tested on both WM8505 and WM8650. > > Roman Volkov (2): > dts: vt8500: Add SDHC node to DTS file for WM8650 > dts: vt8500: Fix errors in SDHC node for WM8505 > > arch/arm/boot/dts/wm8505.dtsi | 4 ++-- > arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ > 2 files changed, 11 insertions(+), 2 deletions(-) > > -- > Hi maintainers, I see my previous versions were not applied. Could this > little patch set be applied for the linux-next? I don't think this is new > functionality, this must be considered as bugfix for existing Device Tree. > > Any other suggestions? According to the MAINTAINERS file, Tony Prisk should be the person to pick them up, but he was not the recipient of the mail. Arnd ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-03-01 19:52 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Arnd Bergmann @ 2015-03-01 20:39 ` Roman Volkov 2015-04-04 12:27 ` Roman Volkov 0 siblings, 1 reply; 20+ messages in thread From: Roman Volkov @ 2015-03-01 20:39 UTC (permalink / raw) To: linux-arm-kernel ? Sun, 01 Mar 2015 20:52:55 +0100 Arnd Bergmann <arnd@arndb.de> ?????: > On Sunday 01 March 2015 19:06:45 Roman Volkov wrote: > > This patch set enables SD controller support for WM8650 and > > fixes minor errors in WM8505 Device Tree file. > > > > Changes in v3: > > 1. Add minor fixes for WM8505 SDHC node > > > > Tested on both WM8505 and WM8650. > > > > Roman Volkov (2): > > dts: vt8500: Add SDHC node to DTS file for WM8650 > > dts: vt8500: Fix errors in SDHC node for WM8505 > > > > arch/arm/boot/dts/wm8505.dtsi | 4 ++-- > > arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ > > 2 files changed, 11 insertions(+), 2 deletions(-) > > > > -- > > Hi maintainers, I see my previous versions were not applied. Could > > this little patch set be applied for the linux-next? I don't think > > this is new functionality, this must be considered as bugfix for > > existing Device Tree. > > > > Any other suggestions? > > According to the MAINTAINERS file, Tony Prisk should be the person to > pick them up, but he was not the recipient of the mail. > > Arnd Thanks for the tip. Tony probably need to add these files to his list of maintained files. get_maintainer.pl doesn't mention him. Roman ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-03-01 20:39 ` Roman Volkov @ 2015-04-04 12:27 ` Roman Volkov 2015-12-23 21:48 ` Roman Volkov 0 siblings, 1 reply; 20+ messages in thread From: Roman Volkov @ 2015-04-04 12:27 UTC (permalink / raw) To: linux-arm-kernel ? Sun, 1 Mar 2015 23:39:11 +0300 Roman Volkov <rvolkov@v1ros.org> ?????: > ? Sun, 01 Mar 2015 20:52:55 +0100 > Arnd Bergmann <arnd@arndb.de> ?????: > > > On Sunday 01 March 2015 19:06:45 Roman Volkov wrote: > > > This patch set enables SD controller support for WM8650 and > > > fixes minor errors in WM8505 Device Tree file. > > > > > > Changes in v3: > > > 1. Add minor fixes for WM8505 SDHC node > > > > > > Tested on both WM8505 and WM8650. > > > > > > Roman Volkov (2): > > > dts: vt8500: Add SDHC node to DTS file for WM8650 > > > dts: vt8500: Fix errors in SDHC node for WM8505 > > > > > > arch/arm/boot/dts/wm8505.dtsi | 4 ++-- > > > arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ > > > 2 files changed, 11 insertions(+), 2 deletions(-) > > > > > > -- > > > Hi maintainers, I see my previous versions were not applied. Could > > > this little patch set be applied for the linux-next? I don't think > > > this is new functionality, this must be considered as bugfix for > > > existing Device Tree. > > > > > > Any other suggestions? > > > > According to the MAINTAINERS file, Tony Prisk should be the person > > to pick them up, but he was not the recipient of the mail. > > > > Arnd > > Thanks for the tip. Tony probably need to add these files to his list > of maintained files. get_maintainer.pl doesn't mention him. > > Roman Arnd, No response yet from Tony for over a month. Roman ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-04-04 12:27 ` Roman Volkov @ 2015-12-23 21:48 ` Roman Volkov 2015-12-24 9:24 ` Alexey Charkov 2015-12-31 15:31 ` Arnd Bergmann 0 siblings, 2 replies; 20+ messages in thread From: Roman Volkov @ 2015-12-23 21:48 UTC (permalink / raw) To: linux-arm-kernel ? Sat, 4 Apr 2015 15:27:20 +0300 Roman Volkov <v1ron@v1ros.org> ?????: > ? Sun, 1 Mar 2015 23:39:11 +0300 > Roman Volkov <rvolkov@v1ros.org> ?????: > > > ? Sun, 01 Mar 2015 20:52:55 +0100 > > Arnd Bergmann <arnd@arndb.de> ?????: > > > > > On Sunday 01 March 2015 19:06:45 Roman Volkov wrote: > > > > This patch set enables SD controller support for WM8650 and > > > > fixes minor errors in WM8505 Device Tree file. > > > > > > > > Changes in v3: > > > > 1. Add minor fixes for WM8505 SDHC node > > > > > > > > Tested on both WM8505 and WM8650. > > > > > > > > Roman Volkov (2): > > > > dts: vt8500: Add SDHC node to DTS file for WM8650 > > > > dts: vt8500: Fix errors in SDHC node for WM8505 > > > > > > > > arch/arm/boot/dts/wm8505.dtsi | 4 ++-- > > > > arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ > > > > 2 files changed, 11 insertions(+), 2 deletions(-) > > > > > > > > -- > > > > Hi maintainers, I see my previous versions were not applied. > > > > Could this little patch set be applied for the linux-next? I > > > > don't think this is new functionality, this must be considered > > > > as bugfix for existing Device Tree. > > > > > > > > Any other suggestions? > > > > > > According to the MAINTAINERS file, Tony Prisk should be the person > > > to pick them up, but he was not the recipient of the mail. > > > > > > Arnd > > > > Thanks for the tip. Tony probably need to add these files to his > > list of maintained files. get_maintainer.pl doesn't mention him. > > > > Roman > > Arnd, > > No response yet from Tony for over a month. > > Roman Ping. At least two patch sets for vt8500 are waiting to be picked up. vt8500 maintainer is inactive for over a year. Regards, Roman ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-12-23 21:48 ` Roman Volkov @ 2015-12-24 9:24 ` Alexey Charkov 2015-12-31 15:31 ` Arnd Bergmann 1 sibling, 0 replies; 20+ messages in thread From: Alexey Charkov @ 2015-12-24 9:24 UTC (permalink / raw) To: linux-arm-kernel 2015-12-24 0:48 GMT+03:00 Roman Volkov <v1ron@mail.ru>: > ? Sat, 4 Apr 2015 15:27:20 +0300 > Roman Volkov <v1ron@v1ros.org> ?????: > >> ? Sun, 1 Mar 2015 23:39:11 +0300 >> Roman Volkov <rvolkov@v1ros.org> ?????: >> >> > ? Sun, 01 Mar 2015 20:52:55 +0100 >> > Arnd Bergmann <arnd@arndb.de> ?????: >> > >> > > On Sunday 01 March 2015 19:06:45 Roman Volkov wrote: >> > > > This patch set enables SD controller support for WM8650 and >> > > > fixes minor errors in WM8505 Device Tree file. >> > > > >> > > > Changes in v3: >> > > > 1. Add minor fixes for WM8505 SDHC node >> > > > >> > > > Tested on both WM8505 and WM8650. >> > > > >> > > > Roman Volkov (2): >> > > > dts: vt8500: Add SDHC node to DTS file for WM8650 >> > > > dts: vt8500: Fix errors in SDHC node for WM8505 >> > > > >> > > > arch/arm/boot/dts/wm8505.dtsi | 4 ++-- >> > > > arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ >> > > > 2 files changed, 11 insertions(+), 2 deletions(-) >> > > > >> > > > -- >> > > > Hi maintainers, I see my previous versions were not applied. >> > > > Could this little patch set be applied for the linux-next? I >> > > > don't think this is new functionality, this must be considered >> > > > as bugfix for existing Device Tree. >> > > > >> > > > Any other suggestions? >> > > >> > > According to the MAINTAINERS file, Tony Prisk should be the person >> > > to pick them up, but he was not the recipient of the mail. >> > > >> > > Arnd >> > >> > Thanks for the tip. Tony probably need to add these files to his >> > list of maintained files. get_maintainer.pl doesn't mention him. >> > >> > Roman >> >> Arnd, >> >> No response yet from Tony for over a month. >> >> Roman > > Ping. At least two patch sets for vt8500 are waiting to be picked up. > vt8500 maintainer is inactive for over a year. This series (as available at https://lkml.org/lkml/2015/3/1/172) looks good to me as far as VT8500 is concerned. Tony is unfortunately unresponsive lately, but I was the author of vt8500 code pre-DT, and these changes look all correct. Rob/Grant, any chance you could push these via the OF tree? Best regards, Alexey ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-12-23 21:48 ` Roman Volkov 2015-12-24 9:24 ` Alexey Charkov @ 2015-12-31 15:31 ` Arnd Bergmann 2015-12-31 15:32 ` Arnd Bergmann 1 sibling, 1 reply; 20+ messages in thread From: Arnd Bergmann @ 2015-12-31 15:31 UTC (permalink / raw) To: linux-arm-kernel On Thursday 24 December 2015 00:48:25 Roman Volkov wrote: > ? Sat, 4 Apr 2015 15:27:20 +0300 > Roman Volkov <v1ron@v1ros.org> ?????: > > > ? Sun, 1 Mar 2015 23:39:11 +0300 > > Roman Volkov <rvolkov@v1ros.org> ?????: > > > > > ? Sun, 01 Mar 2015 20:52:55 +0100 > > > Arnd Bergmann <arnd@arndb.de> ?????: > > > > > Any other suggestions? > > > > > > > > According to the MAINTAINERS file, Tony Prisk should be the person > > > > to pick them up, but he was not the recipient of the mail. > > > > > > > > Arnd > > > > > > Thanks for the tip. Tony probably need to add these files to his > > > list of maintained files. get_maintainer.pl doesn't mention him. > > > > > > Roman > > > > Arnd, > > > > No response yet from Tony for over a month. > > > > Roman > > Ping. At least two patch sets for vt8500 are waiting to be picked up. > vt8500 maintainer is inactive for over a year. I seem to have lost the original mails now, as it's been a while. Can you send the entire series of patches to arm at kernel.org please? Arnd ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-12-31 15:31 ` Arnd Bergmann @ 2015-12-31 15:32 ` Arnd Bergmann 2015-12-31 18:19 ` Roman Volkov 0 siblings, 1 reply; 20+ messages in thread From: Arnd Bergmann @ 2015-12-31 15:32 UTC (permalink / raw) To: linux-arm-kernel On Thursday 31 December 2015 16:31:02 Arnd Bergmann wrote: > On Thursday 24 December 2015 00:48:25 Roman Volkov wrote: > > ? Sat, 4 Apr 2015 15:27:20 +0300 > > Roman Volkov <v1ron@v1ros.org> ?????: > > > > > ? Sun, 1 Mar 2015 23:39:11 +0300 > > > Roman Volkov <rvolkov@v1ros.org> ?????: > > > > > > > ? Sun, 01 Mar 2015 20:52:55 +0100 > > > > Arnd Bergmann <arnd@arndb.de> ?????: > > > > > > Any other suggestions? > > > > > > > > > > According to the MAINTAINERS file, Tony Prisk should be the person > > > > > to pick them up, but he was not the recipient of the mail. > > > > > > > > > > Arnd > > > > > > > > Thanks for the tip. Tony probably need to add these files to his > > > > list of maintained files. get_maintainer.pl doesn't mention him. > > > > > > > > Roman > > > > > > Arnd, > > > > > > No response yet from Tony for over a month. > > > > > > Roman > > > > Ping. At least two patch sets for vt8500 are waiting to be picked up. > > vt8500 maintainer is inactive for over a year. > > I seem to have lost the original mails now, as it's been a while. Can you > send the entire series of patches to arm at kernel.org please? To clarify, please first make sure they still apply cleanly on a recent kernel, then send them to arm at kernel.org with all the involved parties and the mailing list(s) in Cc. Arnd ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller 2015-12-31 15:32 ` Arnd Bergmann @ 2015-12-31 18:19 ` Roman Volkov 0 siblings, 0 replies; 20+ messages in thread From: Roman Volkov @ 2015-12-31 18:19 UTC (permalink / raw) To: linux-arm-kernel ? Thu, 31 Dec 2015 16:32:59 +0100 Arnd Bergmann <arnd@arndb.de> ?????: > On Thursday 31 December 2015 16:31:02 Arnd Bergmann wrote: > > On Thursday 24 December 2015 00:48:25 Roman Volkov wrote: > > > ? Sat, 4 Apr 2015 15:27:20 +0300 > > > Roman Volkov <v1ron@v1ros.org> ?????: > > > > > > > ? Sun, 1 Mar 2015 23:39:11 +0300 > > > > Roman Volkov <rvolkov@v1ros.org> ?????: > > > > > > > > > ? Sun, 01 Mar 2015 20:52:55 +0100 > > > > > Arnd Bergmann <arnd@arndb.de> ?????: > > > > > > > Any other suggestions? > > > > > > > > > > > > According to the MAINTAINERS file, Tony Prisk should be the > > > > > > person to pick them up, but he was not the recipient of the > > > > > > mail. > > > > > > > > > > > > Arnd > > > > > > > > > > Thanks for the tip. Tony probably need to add these files to > > > > > his list of maintained files. get_maintainer.pl doesn't > > > > > mention him. > > > > > > > > > > Roman > > > > > > > > Arnd, > > > > > > > > No response yet from Tony for over a month. > > > > > > > > Roman > > > > > > Ping. At least two patch sets for vt8500 are waiting to be picked > > > up. vt8500 maintainer is inactive for over a year. > > > > I seem to have lost the original mails now, as it's been a while. > > Can you send the entire series of patches to arm at kernel.org > > please? > > To clarify, please first make sure they still apply cleanly on a > recent kernel, then send them to arm at kernel.org with all the involved > parties and the mailing list(s) in Cc. > Arnd, These series are still applicable (for next-20151231). I resent both SDHC and clocksource series, and got my emails returned with: > <linux+armsoc@arm.linux.org.uk> (expanded from <arm@kernel.org>): host > mx0.arm.linux.org.uk[78.32.30.218] said: 550-We do not accept > v1ron at mail.ru from mail.kernel.org - please use mail.ru's 550 mail > servers (in reply to RCPT TO command) Please confirm what you received and let me know if I must resend again. Happy New Year, Roman ^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH] dts: vt8500: Add SDHC node to DTS file for WM8650 @ 2015-01-16 10:42 Roman Volkov 0 siblings, 0 replies; 20+ messages in thread From: Roman Volkov @ 2015-01-16 10:42 UTC (permalink / raw) To: linux-arm-kernel The current kernel contains SDHC driver but not DTS node for it. Add missing node to make SDHC controller working by default on WM8650. Signed-off-by: Roman Volkov <v1ron@v1ros.org> --- arch/arm/boot/dts/wm8650.dtsi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/wm8650.dtsi b/arch/arm/boot/dts/wm8650.dtsi index b1c59a7..a7c9989 100644 --- a/arch/arm/boot/dts/wm8650.dtsi +++ b/arch/arm/boot/dts/wm8650.dtsi @@ -187,6 +187,15 @@ interrupts = <43>; }; + sdhc at d800a000 { + compatible = "wm,wm8505-sdhc"; + reg = <0xd800a000 0x1000>; + interrupts = <20 21>; + clocks = <&clksdhc>; + bus-width = <4>; + sdon-inverted; + }; + fb: fb at d8050800 { compatible = "wm,wm8505-fb"; reg = <0xd8050800 0x200>; -- 2.2.1 ^ permalink raw reply related [flat|nested] 20+ messages in thread
end of thread, other threads:[~2015-12-31 18:19 UTC | newest] Thread overview: 20+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <1421608444-25525-1-git-send-email-v1ron@v1ros.org> 2015-02-05 9:54 ` [PATCH] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov 2015-02-05 10:07 ` [PATCH v2 RESEND] " Roman Volkov 2015-03-01 16:06 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov 2015-03-01 16:06 ` [PATCH v3 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov 2015-03-01 17:59 ` Sergei Shtylyov 2015-03-01 19:49 ` Roman Volkov 2015-03-01 20:50 ` Sergei Shtylyov 2015-03-01 16:06 ` [PATCH v3 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 0/2] WM8505/WM8650 DT fixes for SD card controller Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 1/2] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov 2015-03-01 20:48 ` [PATCH v3 RESEND 2/2] dts: vt8500: Fix errors in SDHC node for WM8505 Roman Volkov 2015-03-01 19:52 ` [PATCH v3 0/2] WM8505/WM8650 DT fixes for SD card controller Arnd Bergmann 2015-03-01 20:39 ` Roman Volkov 2015-04-04 12:27 ` Roman Volkov 2015-12-23 21:48 ` Roman Volkov 2015-12-24 9:24 ` Alexey Charkov 2015-12-31 15:31 ` Arnd Bergmann 2015-12-31 15:32 ` Arnd Bergmann 2015-12-31 18:19 ` Roman Volkov 2015-01-16 10:42 [PATCH] dts: vt8500: Add SDHC node to DTS file for WM8650 Roman Volkov
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).