devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Damien Le Moal <damien.lemoal@opensource.wdc.com>
To: Guenter Roeck <linux@roeck-us.net>,
	Serge Semin <Sergey.Semin@baikalelectronics.ru>
Cc: Hans de Goede <hdegoede@redhat.com>, Jens Axboe <axboe@kernel.dk>,
	Hannes Reinecke <hare@suse.de>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	Patrice Chotard <patrice.chotard@foss.st.com>,
	Serge Semin <fancer.lancer@gmail.com>,
	Alexey Malahov <Alexey.Malahov@baikalelectronics.ru>,
	Pavel Parkhomenko <Pavel.Parkhomenko@baikalelectronics.ru>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org
Subject: Re: [PATCH v8 09/23] ata: libahci_platform: Parse ports-implemented property in resources getter
Date: Tue, 20 Sep 2022 08:55:59 +0900	[thread overview]
Message-ID: <7872df9d-db4e-0617-84eb-e47394774322@opensource.wdc.com> (raw)
In-Reply-To: <20220919215014.GA336081@roeck-us.net>

On 9/20/22 06:50, Guenter Roeck wrote:
> On Fri, Sep 09, 2022 at 10:36:07PM +0300, Serge Semin wrote:
>> The ports-implemented property is mainly used on the OF-based platforms
>> with no ports mapping initialized by a bootloader/BIOS firmware. Seeing
>> the same of_property_read_u32()-based pattern has already been implemented
>> in the generic AHCI LLDD (glue) driver and in the Mediatek, St AHCI
>> drivers let's move the property read procedure to the generic
>> ahci_platform_get_resources() method. Thus we'll have the forced ports
>> mapping feature supported for each OF-based platform which requires that,
>> and stop re-implementing the same pattern in there a bit simplifying the
>> code.
>>
>> Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
>> ---
>>  drivers/ata/ahci_mtk.c         | 2 --
>>  drivers/ata/ahci_platform.c    | 3 ---
>>  drivers/ata/ahci_st.c          | 3 ---
>>  drivers/ata/libahci_platform.c | 3 +++
>>  4 files changed, 3 insertions(+), 8 deletions(-)
>>
>> diff --git a/drivers/ata/ahci_mtk.c b/drivers/ata/ahci_mtk.c
>> index 1f6c85fde983..c056378e3e72 100644
>> --- a/drivers/ata/ahci_mtk.c
>> +++ b/drivers/ata/ahci_mtk.c
>> @@ -118,8 +118,6 @@ static int mtk_ahci_parse_property(struct ahci_host_priv *hpriv,
>>  				   SYS_CFG_SATA_EN);
>>  	}
>>  
>> -	of_property_read_u32(np, "ports-implemented", &hpriv->force_port_map);
>> -
>>  	return 0;
>>  }
>>  
>> diff --git a/drivers/ata/ahci_platform.c b/drivers/ata/ahci_platform.c
>> index 28a8de5b48b9..9b56490ecbc3 100644
>> --- a/drivers/ata/ahci_platform.c
>> +++ b/drivers/ata/ahci_platform.c
>> @@ -56,9 +56,6 @@ static int ahci_probe(struct platform_device *pdev)
>>  	if (rc)
>>  		return rc;
>>  
>> -	of_property_read_u32(dev->of_node,
>> -			     "ports-implemented", &hpriv->force_port_map);
>> -
>>  	if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
>>  		hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
>>  
>> diff --git a/drivers/ata/ahci_st.c b/drivers/ata/ahci_st.c
>> index 7526653c843b..068621099c00 100644
>> --- a/drivers/ata/ahci_st.c
>> +++ b/drivers/ata/ahci_st.c
>> @@ -168,9 +168,6 @@ static int st_ahci_probe(struct platform_device *pdev)
>>  
>>  	st_ahci_configure_oob(hpriv->mmio);
>>  
>> -	of_property_read_u32(dev->of_node,
>> -			     "ports-implemented", &hpriv->force_port_map);
>> -
> 
> With arm:allmodconfig, this results in:
> 
>   CC [M]  drivers/ata/ahci_st.o
> drivers/ata/ahci_st.c: In function 'st_ahci_probe':
> drivers/ata/ahci_st.c:147:24: error: unused variable 'dev' [-Werror=unused-variable]
>   147 |         struct device *dev = &pdev->dev;
> 
> Guenter

Just pushed a fix for this in ata tree for-next and for-6.1 branches. The
problem should be resolved with the next linux-next merge.

-- 
Damien Le Moal
Western Digital Research


  reply	other threads:[~2022-09-19 23:56 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-09 19:35 [PATCH v8 00/23] ata: ahci: Add DWC/Baikal-T1 AHCI SATA support Serge Semin
2022-09-09 19:35 ` [PATCH v8 01/23] dt-bindings: ata: ahci-platform: Move dma-coherent to sata-common.yaml Serge Semin
2022-09-09 19:36 ` [PATCH v8 02/23] dt-bindings: ata: ahci-platform: Detach common AHCI bindings Serge Semin
2022-09-09 19:36 ` [PATCH v8 03/23] dt-bindings: ata: ahci-platform: Clarify common AHCI props constraints Serge Semin
2022-09-09 19:36 ` [PATCH v8 04/23] dt-bindings: ata: sata: Extend number of SATA ports Serge Semin
2022-09-09 19:36 ` [PATCH v8 05/23] dt-bindings: ata: sata-brcm: Apply common AHCI schema Serge Semin
2022-09-09 19:36 ` [PATCH v8 06/23] ata: libahci_platform: Convert to using platform devm-ioremap methods Serge Semin
2022-09-09 19:36 ` [PATCH v8 07/23] ata: libahci_platform: Convert to using devm bulk clocks API Serge Semin
2022-09-09 19:36 ` [PATCH v8 08/23] ata: libahci_platform: Sanity check the DT child nodes number Serge Semin
2022-09-09 19:36 ` [PATCH v8 09/23] ata: libahci_platform: Parse ports-implemented property in resources getter Serge Semin
2022-09-19 21:50   ` Guenter Roeck
2022-09-19 23:55     ` Damien Le Moal [this message]
2022-09-25 16:19       ` Serge Semin
2022-09-09 19:36 ` [PATCH v8 10/23] ata: libahci_platform: Introduce reset assertion/deassertion methods Serge Semin
2022-09-09 19:36 ` [PATCH v8 11/23] dt-bindings: ata: ahci: Add platform capability properties Serge Semin
2022-09-09 19:36 ` [PATCH v8 12/23] ata: libahci: Extend port-cmd flags set with port capabilities Serge Semin
2022-09-09 19:36 ` [PATCH v8 13/23] ata: libahci: Discard redundant force_port_map parameter Serge Semin
2022-09-09 19:36 ` [PATCH v8 14/23] ata: libahci: Don't read AHCI version twice in the save-config method Serge Semin
2022-09-09 19:36 ` [PATCH v8 15/23] ata: ahci: Convert __ahci_port_base to accepting hpriv as arguments Serge Semin
2022-09-09 19:36 ` [PATCH v8 16/23] ata: ahci: Introduce firmware-specific caps initialization Serge Semin
2022-09-09 19:36 ` [PATCH v8 17/23] dt-bindings: ata: ahci: Add DWC AHCI SATA controller DT schema Serge Semin
2022-09-09 19:36 ` [PATCH v8 18/23] ata: libahci_platform: Add function returning a clock-handle by id Serge Semin
2022-09-09 19:36 ` [PATCH v8 19/23] ata: ahci: Add DWC AHCI SATA controller support Serge Semin
2022-09-09 19:36 ` [PATCH v8 20/23] dt-bindings: ata: ahci: Add Baikal-T1 AHCI SATA controller DT schema Serge Semin
2022-09-09 19:36 ` [PATCH v8 21/23] ata: ahci-dwc: Add platform-specific quirks support Serge Semin
2022-09-09 19:36 ` [PATCH v8 22/23] ata: ahci-dwc: Add Baikal-T1 AHCI SATA interface support Serge Semin
2022-09-09 19:36 ` [PATCH v8 23/23] MAINTAINERS: Add maintainers for DWC AHCI SATA driver Serge Semin
2022-09-16 16:47 ` [PATCH v8 00/23] ata: ahci: Add DWC/Baikal-T1 AHCI SATA support Damien Le Moal

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=7872df9d-db4e-0617-84eb-e47394774322@opensource.wdc.com \
    --to=damien.lemoal@opensource.wdc.com \
    --cc=Alexey.Malahov@baikalelectronics.ru \
    --cc=Pavel.Parkhomenko@baikalelectronics.ru \
    --cc=Sergey.Semin@baikalelectronics.ru \
    --cc=axboe@kernel.dk \
    --cc=devicetree@vger.kernel.org \
    --cc=fancer.lancer@gmail.com \
    --cc=hare@suse.de \
    --cc=hdegoede@redhat.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-ide@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux@roeck-us.net \
    --cc=matthias.bgg@gmail.com \
    --cc=patrice.chotard@foss.st.com \
    --cc=robh+dt@kernel.org \
    /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 NNTP newsgroup(s).