diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-11-14 10:09:31 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-11-14 11:44:36 -0500 |
commit | 35c16a8f0b994461d49ce2479c67903f95045159 (patch) | |
tree | c779e69f1a71326f3fc12106ed4c30776bf1f9b7 | |
parent | f9ca5ab832e7ac5bc2b6fe0e82ad46d536f436f9 (diff) |
ahci_sunxi: Make AHCI_HFLAG_NO_PMP flag configurable with a module option
The use of the AHCI_HFLAG_NO_PMP flag is something which we inherited from
the Allwinner android kernel sources, and I've always wanted to test if this
is really necessary.
So recently I've bought a sata port multiplexer, and I've given this a test
spin on both A10 and A20 devices, and it seems to work fine:
[ 2.154456] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.161092] ata1.15: Port Multiplier 1.2, 0x197b:0x0325 r0, 5 ports, feat 0x5/0xf
[ 2.175511] ata1.00: hard resetting link
[ 2.524929] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 320)
[ 2.531430] ata1.01: hard resetting link
[ 2.974465] ata1.01: link resume succeeded after 1 retries
[ 3.094932] ata1.01: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.101431] ata1.02: hard resetting link
[ 4.174466] ata1.02: failed to resume link (SControl 0)
[ 4.180065] ata1.02: SATA link down (SStatus 0 SControl 0)
(and the same for links 3 and 4)
Once the NO_PMP flag is removed it correctly sees the 2 disks which I've
attached, and I can mount and use them just fine.
Unfortunately when I then directly attached a disk to the sata port on the
sunxi SoC, and booted a kernel without the AHCI_HFLAG_NO_PMP flag, it would
not recognize that disk.
It turns out that the sata controller in the sunxi SoCs fails to handle
soft-resets issued to directly attached disks, and when pmp support is
enabled the kernel will always issue a soft-reset.
So add a module parameter to enable pmp usage, and default this to off, so
that directly attached disks keep working normally.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r-- | drivers/ata/ahci_sunxi.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/drivers/ata/ahci_sunxi.c b/drivers/ata/ahci_sunxi.c index e44d675a30ec..b5aedca5ea3c 100644 --- a/drivers/ata/ahci_sunxi.c +++ b/drivers/ata/ahci_sunxi.c | |||
@@ -27,6 +27,12 @@ | |||
27 | #include <linux/regulator/consumer.h> | 27 | #include <linux/regulator/consumer.h> |
28 | #include "ahci.h" | 28 | #include "ahci.h" |
29 | 29 | ||
30 | /* Insmod parameters */ | ||
31 | static bool enable_pmp; | ||
32 | module_param(enable_pmp, bool, 0); | ||
33 | MODULE_PARM_DESC(enable_pmp, | ||
34 | "Enable support for sata port multipliers, only use if you use a pmp!"); | ||
35 | |||
30 | #define AHCI_BISTAFR 0x00a0 | 36 | #define AHCI_BISTAFR 0x00a0 |
31 | #define AHCI_BISTCR 0x00a4 | 37 | #define AHCI_BISTCR 0x00a4 |
32 | #define AHCI_BISTFCTR 0x00a8 | 38 | #define AHCI_BISTFCTR 0x00a8 |
@@ -184,7 +190,15 @@ static int ahci_sunxi_probe(struct platform_device *pdev) | |||
184 | goto disable_resources; | 190 | goto disable_resources; |
185 | 191 | ||
186 | hpriv->flags = AHCI_HFLAG_32BIT_ONLY | AHCI_HFLAG_NO_MSI | | 192 | hpriv->flags = AHCI_HFLAG_32BIT_ONLY | AHCI_HFLAG_NO_MSI | |
187 | AHCI_HFLAG_NO_PMP | AHCI_HFLAG_YES_NCQ; | 193 | AHCI_HFLAG_YES_NCQ; |
194 | |||
195 | /* | ||
196 | * The sunxi sata controller seems to be unable to successfully do a | ||
197 | * soft reset if no pmp is attached, so disable pmp use unless | ||
198 | * requested, otherwise directly attached disks do not work. | ||
199 | */ | ||
200 | if (!enable_pmp) | ||
201 | hpriv->flags |= AHCI_HFLAG_NO_PMP; | ||
188 | 202 | ||
189 | rc = ahci_platform_init_host(pdev, hpriv, &ahci_sunxi_port_info); | 203 | rc = ahci_platform_init_host(pdev, hpriv, &ahci_sunxi_port_info); |
190 | if (rc) | 204 | if (rc) |