Linux-ide Archive mirror
 help / color / mirror / Atom feed
From: Damien Le Moal <dlemoal@kernel.org>
To: Niklas Cassel <cassel@kernel.org>,
	Andrey Melnikov <temnota.am@gmail.com>
Cc: Sergei Shtylyov <sergei.shtylyov@gmail.com>,
	linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org,
	hdegoede@redhat.com
Subject: Re: [PATCH] ahci: asm1064: correct count of reported ports
Date: Wed, 14 Feb 2024 09:09:42 +0900	[thread overview]
Message-ID: <e2d6dded-dea6-4832-ba16-6a97e3060992@kernel.org> (raw)
In-Reply-To: <Zcuvbzoo7/7c/F1q@x1-carbon>

On 2/14/24 03:05, Niklas Cassel wrote:
> On Tue, Feb 13, 2024 at 06:19:10PM +0100, Niklas Cassel wrote:
>> On Thu, Feb 08, 2024 at 10:27:11AM +0300, Andrey Melnikov wrote:
>>>> On 2/7/24 12:58 PM, Andrey Jr. Melnikov wrote:
>>>>
>>>>> 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) {
>>>>
>>>>    Maybe *switch* instead?
>>>
>>> Ok.
>>
>> Hello Andrey,
>>
>> do you intend to send out a v2 that uses a switch instead?
>>
>> And perhaps take Damien's patch as patch 1/2
>> (with Suggested-by: Damien ... of course),
>> so that the before/after print in your commit message shows
>> the override value.
> 
> On second thought, just go ahead and respin your patch using a switch,
> as I don't think Damien's patch is fully correct.
> 
> He suggested to use hpriv->saved_port_map.
> 
> However, that will show the wrong result for platforms using
> hpriv->mask_port_map.
> 
> As when hpriv->mask_port_map is used, saved_port_map is not set:
> https://github.com/torvalds/linux/blob/v6.8-rc4/drivers/ata/libahci.c#L536-L548
> 
> However, the local variable "port_map" is updated for both
> saved_port_map and mask_port_map cases.
> 
> And then at the end:
> hpriv->port_map = port_map;
> https://github.com/torvalds/linux/blob/v6.8-rc4/drivers/ata/libahci.c#L597
> 
> So I think we should print hpriv->port_map,
> and not hpriv->saved_port_map.

Indeed, good catch...

> However.. hpriv->port_map is already printed:
> https://github.com/torvalds/linux/blob/v6.8-rc4/drivers/ata/libahci.c#L2617
> in the "0x%x impl" print.
> 
> So
>> before:
>> ahci 0000:04:00.0: AHCI 0001.0301 32 slots 24 ports 6 Gbps 0xffff0f impl SATA mode
> 
>> after:
>> ahci 0000:04:00.0: AHCI 0001.0301 32 slots 24 ports 6 Gbps 0xf impl SATA mode
> 
> Actually prints the number of *implemented* ports.
> 
> 
> I have to admit that this is a bit confusing.
> 
> Personally I would have preferred if we simply printed
> "%u ports", hpriv->port_map,
> 
> and simply dropped the "0x%x impl" part of the print,
> but I'm a bit worried that someone parses this print from user space,
> but I guess we must be allowed to improve prints if they are confusing.
> 
> Damien, what do you think?

...but port_map is a mask, not a count of ports. So this would still be wrong.
I think we simply need a small helper that look something like:

int ahci_nr_ports(struct ata_host *host)
{
        struct ahci_host_priv *hpriv = host->private_data;
	int i, n = 0;

	for_each_set_bit(i, &hpriv->port_map, AHCI_MAX_PORTS)
		n++;

	return n;
}

and print that instead together with the mask.

-- 
Damien Le Moal
Western Digital Research


      reply	other threads:[~2024-02-14  0:09 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e2d6dded-dea6-4832-ba16-6a97e3060992@kernel.org \
    --to=dlemoal@kernel.org \
    --cc=cassel@kernel.org \
    --cc=hdegoede@redhat.com \
    --cc=linux-ide@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sergei.shtylyov@gmail.com \
    --cc=temnota.am@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).