]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ARC: [axs101] STAR 9000799830: Fix SD cards support
authorAlexey Brodkin <abrodkin@synopsys.com>
Wed, 15 Apr 2015 12:32:29 +0000 (15:32 +0300)
committerVineet Gupta <vgupta@synopsys.com>
Fri, 19 Jun 2015 12:39:31 +0000 (18:09 +0530)
As DW Mobile Storage databook says it's required to use "Hold Register"
if card is enumerated in SDR12 or SDR25 modes.
It means we need to act in the same way as in Altera's Socfpga
implementation - set "use hold reg" bit in commad.

Note that for upstream proper solution would be to remove
dw_mci_pltfm_prepare_command() at all and set the bit right in
dw_mci_prepare_command() for all platforms.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
arch/arc/boot/dts/axs10x_mb.dtsi

index 255c7121ea8075004205f50eef0ed8ec2da94d36..5d06f1fb4266580c5a8b76a885ab7c73aadc75f1 100644 (file)
                        interrupts = < 8 >;
                };
 
+               /*
+                * According to DW Mobile Storage databook it is required
+                * to use  "Hold Register" if card is enumerated in SDR12 or
+                * SDR25 modes.
+                *
+                * Utilization of "Hold Register" is already implemented via
+                * dw_mci_pltfm_prepare_command() which in its turn gets
+                * used through dw_mci_drv_data->prepare_command call-back.
+                * This call-back is used in Altera Socfpga platform and so
+                * we may reuse it saying that we're compatible with their
+                * "altr,socfpga-dw-mshc".
+                *
+                * Most probably "Hold Register" utilization is platform-
+                * independent requirement which means that single unified
+                * "snps,dw-mshc" should be enough for all users of DW MMC once
+                * dw_mci_pltfm_prepare_command() is used in generic platform
+                * code.
+                */
                mmc@0x15000 {
-                       compatible = "snps,dw-mshc";
+                       compatible = "altr,socfpga-dw-mshc";
                        reg = < 0x15000 0x400 >;
                        num-slots = < 1 >;
                        fifo-depth = < 16 >;