All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ahci: asm1064: correct count of reported ports
@ 2024-02-07  9:58 Andrey Jr. Melnikov
  2024-02-07 11:15 ` Hans de Goede
  2024-02-07 11:28 ` Sergei Shtylyov
  0 siblings, 2 replies; 11+ messages in thread
From: Andrey Jr. Melnikov @ 2024-02-07  9:58 UTC (permalink / raw)
  To: linux-ide, linux-kernel; +Cc: dlemoal, hdegoede

The ASM1064 SATA host controller always reports wrongly,
that it has 24 ports. But in reality, it only has four ports.

before:
ahci 0000:04:00.0: SSS flag set, parallel bus scan disabled
ahci 0000:04:00.0: AHCI 0001.0301 32 slots 24 ports 6 Gbps 0xffff0f impl SATA mode
ahci 0000:04:00.0: flags: 64bit ncq sntf stag pm led only pio sxs deso sadm sds apst 

after:
ahci 0000:04:00.0: ASM1064 has only four ports
ahci 0000:04:00.0: forcing port_map 0xffff0f -> 0xf
ahci 0000:04:00.0: SSS flag set, parallel bus scan disabled
ahci 0000:04:00.0: AHCI 0001.0301 32 slots 24 ports 6 Gbps 0xf impl SATA mode
ahci 0000:04:00.0: flags: 64bit ncq sntf stag pm led only pio sxs deso sadm sds apst 


Signed-off-by: Andrey Jr. Melnikov <temnota.am@gmail.com>

diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
index da2e74fce2d9..ec30d8330d16 100644
--- a/drivers/ata/ahci.c
+++ b/drivers/ata/ahci.c
@@ -671,9 +671,14 @@ MODULE_PARM_DESC(mobile_lpm_policy, "Default LPM policy for mobile chipsets");
 static void ahci_pci_save_initial_config(struct pci_dev *pdev,
 					 struct ahci_host_priv *hpriv)
 {
-	if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && pdev->device == 0x1166) {
-		dev_info(&pdev->dev, "ASM1166 has only six ports\n");
-		hpriv->saved_port_map = 0x3f;
+	if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA) {
+		if (pdev->device == 0x1166) {
+			dev_info(&pdev->dev, "ASM1166 has only six ports\n");
+			hpriv->saved_port_map = 0x3f;
+		} else if (pdev->device == 0x1064) {
+			dev_info(&pdev->dev, "ASM1064 has only four ports\n");
+			hpriv->saved_port_map = 0xf;
+		}
 	}
 
 	if (pdev->vendor == PCI_VENDOR_ID_JMICRON && pdev->device == 0x2361) {

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

end of thread, other threads:[~2024-02-14  0:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-07  9:58 [PATCH] ahci: asm1064: correct count of reported ports Andrey Jr. Melnikov
2024-02-07 11:15 ` Hans de Goede
2024-02-08  7:21   ` Andrey Melnikov
2024-02-08  7:44     ` Damien Le Moal
2024-02-07 11:28 ` Sergei Shtylyov
2024-02-08  7:27   ` Andrey Melnikov
2024-02-08  8:37     ` Niklas Cassel
2024-02-08 12:04       ` Andrey Melnikov
2024-02-13 17:19     ` Niklas Cassel
2024-02-13 18:05       ` Niklas Cassel
2024-02-14  0:09         ` Damien Le Moal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.