Linux-mediatek Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Stanislaw Gruszka <stf_xl@wp.pl>
To: Rosen Penev <rosenp@gmail.com>
Cc: linux-wireless@vger.kernel.org,
	Johannes Berg <johannes@sipsolutions.net>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	"open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS"
	<devicetree@vger.kernel.org>,
	open list <linux-kernel@vger.kernel.org>,
	"open list:MIPS" <linux-mips@vger.kernel.org>,
	"moderated list:ARM/Mediatek SoC support"
	<linux-arm-kernel@lists.infradead.org>,
	"moderated list:ARM/Mediatek SoC support"
	<linux-mediatek@lists.infradead.org>
Subject: Re: [PATCHv3 wireless-next 4/7] wifi: rt2800: move 2x00soc to 2800soc
Date: Sat, 12 Jul 2025 12:20:31 +0200	[thread overview]
Message-ID: <20250712102031.GA13264@wp.pl> (raw)
In-Reply-To: <20250710200820.262295-5-rosenp@gmail.com>

On Thu, Jul 10, 2025 at 01:08:17PM -0700, Rosen Penev wrote:
> This driver was written with multiple SOC platforms in mind. However
> since Ralink was aquired by Mediatek, it only effectively got used by
> older platforms. As such, we can slim down the driver slightly by moving
> all of rt2x00soc to rt2800soc in order to benefit from inlining.
> 
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
Acked-by: Stanislaw Gruszka <stf_xl@wp.pl>

> ---
>  drivers/net/wireless/ralink/rt2x00/Kconfig    |   5 -
>  drivers/net/wireless/ralink/rt2x00/Makefile   |   1 -
>  .../net/wireless/ralink/rt2x00/rt2800soc.c    | 119 +++++++++++++-
>  .../net/wireless/ralink/rt2x00/rt2x00soc.c    | 151 ------------------
>  .../net/wireless/ralink/rt2x00/rt2x00soc.h    |  29 ----
>  5 files changed, 118 insertions(+), 187 deletions(-)
>  delete mode 100644 drivers/net/wireless/ralink/rt2x00/rt2x00soc.c
>  delete mode 100644 drivers/net/wireless/ralink/rt2x00/rt2x00soc.h
> 
> diff --git a/drivers/net/wireless/ralink/rt2x00/Kconfig b/drivers/net/wireless/ralink/rt2x00/Kconfig
> index a0dc9a751234..4d98b7723c56 100644
> --- a/drivers/net/wireless/ralink/rt2x00/Kconfig
> +++ b/drivers/net/wireless/ralink/rt2x00/Kconfig
> @@ -203,7 +203,6 @@ endif
>  config RT2800SOC
>  	tristate "Ralink WiSoC support"
>  	depends on OF && (SOC_RT288X || SOC_RT305X || SOC_MT7620 || COMPILE_TEST)
> -	select RT2X00_LIB_SOC
>  	select RT2X00_LIB_MMIO
>  	select RT2X00_LIB_CRYPTO
>  	select RT2X00_LIB_FIRMWARE
> @@ -231,10 +230,6 @@ config RT2X00_LIB_PCI
>  	tristate
>  	select RT2X00_LIB
>  
> -config RT2X00_LIB_SOC
> -	tristate
> -	select RT2X00_LIB
> -
>  config RT2X00_LIB_USB
>  	tristate
>  	select RT2X00_LIB
> diff --git a/drivers/net/wireless/ralink/rt2x00/Makefile b/drivers/net/wireless/ralink/rt2x00/Makefile
> index de030ebcdf6e..48d84d243606 100644
> --- a/drivers/net/wireless/ralink/rt2x00/Makefile
> +++ b/drivers/net/wireless/ralink/rt2x00/Makefile
> @@ -12,7 +12,6 @@ rt2x00lib-$(CONFIG_RT2X00_LIB_LEDS)	+= rt2x00leds.o
>  obj-$(CONFIG_RT2X00_LIB)		+= rt2x00lib.o
>  obj-$(CONFIG_RT2X00_LIB_MMIO)		+= rt2x00mmio.o
>  obj-$(CONFIG_RT2X00_LIB_PCI)		+= rt2x00pci.o
> -obj-$(CONFIG_RT2X00_LIB_SOC)		+= rt2x00soc.o
>  obj-$(CONFIG_RT2X00_LIB_USB)		+= rt2x00usb.o
>  obj-$(CONFIG_RT2800_LIB)		+= rt2800lib.o
>  obj-$(CONFIG_RT2800_LIB_MMIO)		+= rt2800mmio.o
> diff --git a/drivers/net/wireless/ralink/rt2x00/rt2800soc.c b/drivers/net/wireless/ralink/rt2x00/rt2800soc.c
> index db8d01f0cdc3..a19906c35d0a 100644
> --- a/drivers/net/wireless/ralink/rt2x00/rt2800soc.c
> +++ b/drivers/net/wireless/ralink/rt2x00/rt2800soc.c
> @@ -22,7 +22,6 @@
>  
>  #include "rt2x00.h"
>  #include "rt2x00mmio.h"
> -#include "rt2x00soc.h"
>  #include "rt2800.h"
>  #include "rt2800lib.h"
>  #include "rt2800mmio.h"
> @@ -131,6 +130,124 @@ static int rt2800soc_write_firmware(struct rt2x00_dev *rt2x00dev,
>  	return 0;
>  }
>  
> +static void rt2x00soc_free_reg(struct rt2x00_dev *rt2x00dev)
> +{
> +	kfree(rt2x00dev->rf);
> +	rt2x00dev->rf = NULL;
> +
> +	kfree(rt2x00dev->eeprom);
> +	rt2x00dev->eeprom = NULL;
> +
> +	iounmap(rt2x00dev->csr.base);
> +}
> +
> +static int rt2x00soc_alloc_reg(struct rt2x00_dev *rt2x00dev)
> +{
> +	struct platform_device *pdev = to_platform_device(rt2x00dev->dev);
> +	struct resource *res;
> +
> +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> +	if (!res)
> +		return -ENODEV;
> +
> +	rt2x00dev->csr.base = ioremap(res->start, resource_size(res));
> +	if (!rt2x00dev->csr.base)
> +		return -ENOMEM;
> +
> +	rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
> +	if (!rt2x00dev->eeprom)
> +		goto exit;
> +
> +	rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
> +	if (!rt2x00dev->rf)
> +		goto exit;
> +
> +	return 0;
> +
> +exit:
> +	rt2x00_probe_err("Failed to allocate registers\n");
> +	rt2x00soc_free_reg(rt2x00dev);
> +
> +	return -ENOMEM;
> +}
> +
> +static int rt2x00soc_probe(struct platform_device *pdev, const struct rt2x00_ops *ops)
> +{
> +	struct ieee80211_hw *hw;
> +	struct rt2x00_dev *rt2x00dev;
> +	int retval;
> +
> +	hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
> +	if (!hw) {
> +		rt2x00_probe_err("Failed to allocate hardware\n");
> +		return -ENOMEM;
> +	}
> +
> +	platform_set_drvdata(pdev, hw);
> +
> +	rt2x00dev = hw->priv;
> +	rt2x00dev->dev = &pdev->dev;
> +	rt2x00dev->ops = ops;
> +	rt2x00dev->hw = hw;
> +	rt2x00dev->irq = platform_get_irq(pdev, 0);
> +	rt2x00dev->name = pdev->dev.driver->name;
> +
> +	rt2x00dev->clk = clk_get(&pdev->dev, NULL);
> +	if (IS_ERR(rt2x00dev->clk))
> +		rt2x00dev->clk = NULL;
> +
> +	rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_SOC);
> +
> +	retval = rt2x00soc_alloc_reg(rt2x00dev);
> +	if (retval)
> +		goto exit_free_device;
> +
> +	retval = rt2x00lib_probe_dev(rt2x00dev);
> +	if (retval)
> +		goto exit_free_reg;
> +
> +	return 0;
> +
> +exit_free_reg:
> +	rt2x00soc_free_reg(rt2x00dev);
> +
> +exit_free_device:
> +	ieee80211_free_hw(hw);
> +
> +	return retval;
> +}
> +
> +static void rt2x00soc_remove(struct platform_device *pdev)
> +{
> +	struct ieee80211_hw *hw = platform_get_drvdata(pdev);
> +	struct rt2x00_dev *rt2x00dev = hw->priv;
> +
> +	/*
> +	 * Free all allocated data.
> +	 */
> +	rt2x00lib_remove_dev(rt2x00dev);
> +	rt2x00soc_free_reg(rt2x00dev);
> +	ieee80211_free_hw(hw);
> +}
> +
> +#ifdef CONFIG_PM
> +static int rt2x00soc_suspend(struct platform_device *pdev, pm_message_t state)
> +{
> +	struct ieee80211_hw *hw = platform_get_drvdata(pdev);
> +	struct rt2x00_dev *rt2x00dev = hw->priv;
> +
> +	return rt2x00lib_suspend(rt2x00dev);
> +}
> +
> +static int rt2x00soc_resume(struct platform_device *pdev)
> +{
> +	struct ieee80211_hw *hw = platform_get_drvdata(pdev);
> +	struct rt2x00_dev *rt2x00dev = hw->priv;
> +
> +	return rt2x00lib_resume(rt2x00dev);
> +}
> +#endif /* CONFIG_PM */
> +
>  static const struct ieee80211_ops rt2800soc_mac80211_ops = {
>  	.add_chanctx = ieee80211_emulate_add_chanctx,
>  	.remove_chanctx = ieee80211_emulate_remove_chanctx,
> diff --git a/drivers/net/wireless/ralink/rt2x00/rt2x00soc.c b/drivers/net/wireless/ralink/rt2x00/rt2x00soc.c
> deleted file mode 100644
> index f7f3a2340c39..000000000000
> --- a/drivers/net/wireless/ralink/rt2x00/rt2x00soc.c
> +++ /dev/null
> @@ -1,151 +0,0 @@
> -// SPDX-License-Identifier: GPL-2.0-or-later
> -/*
> -	Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
> -	Copyright (C) 2004 - 2009 Felix Fietkau <nbd@openwrt.org>
> -	<http://rt2x00.serialmonkey.com>
> -
> - */
> -
> -/*
> -	Module: rt2x00soc
> -	Abstract: rt2x00 generic soc device routines.
> - */
> -
> -#include <linux/bug.h>
> -#include <linux/kernel.h>
> -#include <linux/module.h>
> -#include <linux/platform_device.h>
> -#include <linux/slab.h>
> -
> -#include "rt2x00.h"
> -#include "rt2x00soc.h"
> -
> -static void rt2x00soc_free_reg(struct rt2x00_dev *rt2x00dev)
> -{
> -	kfree(rt2x00dev->rf);
> -	rt2x00dev->rf = NULL;
> -
> -	kfree(rt2x00dev->eeprom);
> -	rt2x00dev->eeprom = NULL;
> -
> -	iounmap(rt2x00dev->csr.base);
> -}
> -
> -static int rt2x00soc_alloc_reg(struct rt2x00_dev *rt2x00dev)
> -{
> -	struct platform_device *pdev = to_platform_device(rt2x00dev->dev);
> -	struct resource *res;
> -
> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -	if (!res)
> -		return -ENODEV;
> -
> -	rt2x00dev->csr.base = ioremap(res->start, resource_size(res));
> -	if (!rt2x00dev->csr.base)
> -		return -ENOMEM;
> -
> -	rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
> -	if (!rt2x00dev->eeprom)
> -		goto exit;
> -
> -	rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
> -	if (!rt2x00dev->rf)
> -		goto exit;
> -
> -	return 0;
> -
> -exit:
> -	rt2x00_probe_err("Failed to allocate registers\n");
> -	rt2x00soc_free_reg(rt2x00dev);
> -
> -	return -ENOMEM;
> -}
> -
> -int rt2x00soc_probe(struct platform_device *pdev, const struct rt2x00_ops *ops)
> -{
> -	struct ieee80211_hw *hw;
> -	struct rt2x00_dev *rt2x00dev;
> -	int retval;
> -
> -	hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
> -	if (!hw) {
> -		rt2x00_probe_err("Failed to allocate hardware\n");
> -		return -ENOMEM;
> -	}
> -
> -	platform_set_drvdata(pdev, hw);
> -
> -	rt2x00dev = hw->priv;
> -	rt2x00dev->dev = &pdev->dev;
> -	rt2x00dev->ops = ops;
> -	rt2x00dev->hw = hw;
> -	rt2x00dev->irq = platform_get_irq(pdev, 0);
> -	rt2x00dev->name = pdev->dev.driver->name;
> -
> -	rt2x00dev->clk = clk_get(&pdev->dev, NULL);
> -	if (IS_ERR(rt2x00dev->clk))
> -		rt2x00dev->clk = NULL;
> -
> -	rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_SOC);
> -
> -	retval = rt2x00soc_alloc_reg(rt2x00dev);
> -	if (retval)
> -		goto exit_free_device;
> -
> -	retval = rt2x00lib_probe_dev(rt2x00dev);
> -	if (retval)
> -		goto exit_free_reg;
> -
> -	return 0;
> -
> -exit_free_reg:
> -	rt2x00soc_free_reg(rt2x00dev);
> -
> -exit_free_device:
> -	ieee80211_free_hw(hw);
> -
> -	return retval;
> -}
> -EXPORT_SYMBOL_GPL(rt2x00soc_probe);
> -
> -void rt2x00soc_remove(struct platform_device *pdev)
> -{
> -	struct ieee80211_hw *hw = platform_get_drvdata(pdev);
> -	struct rt2x00_dev *rt2x00dev = hw->priv;
> -
> -	/*
> -	 * Free all allocated data.
> -	 */
> -	rt2x00lib_remove_dev(rt2x00dev);
> -	rt2x00soc_free_reg(rt2x00dev);
> -	ieee80211_free_hw(hw);
> -}
> -EXPORT_SYMBOL_GPL(rt2x00soc_remove);
> -
> -#ifdef CONFIG_PM
> -int rt2x00soc_suspend(struct platform_device *pdev, pm_message_t state)
> -{
> -	struct ieee80211_hw *hw = platform_get_drvdata(pdev);
> -	struct rt2x00_dev *rt2x00dev = hw->priv;
> -
> -	return rt2x00lib_suspend(rt2x00dev);
> -}
> -EXPORT_SYMBOL_GPL(rt2x00soc_suspend);
> -
> -int rt2x00soc_resume(struct platform_device *pdev)
> -{
> -	struct ieee80211_hw *hw = platform_get_drvdata(pdev);
> -	struct rt2x00_dev *rt2x00dev = hw->priv;
> -
> -	return rt2x00lib_resume(rt2x00dev);
> -}
> -EXPORT_SYMBOL_GPL(rt2x00soc_resume);
> -#endif /* CONFIG_PM */
> -
> -/*
> - * rt2x00soc module information.
> - */
> -MODULE_AUTHOR(DRV_PROJECT);
> -MODULE_VERSION(DRV_VERSION);
> -MODULE_DESCRIPTION("rt2x00 soc library");
> -MODULE_LICENSE("GPL");
> diff --git a/drivers/net/wireless/ralink/rt2x00/rt2x00soc.h b/drivers/net/wireless/ralink/rt2x00/rt2x00soc.h
> deleted file mode 100644
> index d6226b8a10e0..000000000000
> --- a/drivers/net/wireless/ralink/rt2x00/rt2x00soc.h
> +++ /dev/null
> @@ -1,29 +0,0 @@
> -/* SPDX-License-Identifier: GPL-2.0-or-later */
> -/*
> -	Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
> -	<http://rt2x00.serialmonkey.com>
> -
> - */
> -
> -/*
> -	Module: rt2x00soc
> -	Abstract: Data structures for the rt2x00soc module.
> - */
> -
> -#ifndef RT2X00SOC_H
> -#define RT2X00SOC_H
> -
> -/*
> - * SoC driver handlers.
> - */
> -int rt2x00soc_probe(struct platform_device *pdev, const struct rt2x00_ops *ops);
> -void rt2x00soc_remove(struct platform_device *pdev);
> -#ifdef CONFIG_PM
> -int rt2x00soc_suspend(struct platform_device *pdev, pm_message_t state);
> -int rt2x00soc_resume(struct platform_device *pdev);
> -#else
> -#define rt2x00soc_suspend	NULL
> -#define rt2x00soc_resume	NULL
> -#endif /* CONFIG_PM */
> -
> -#endif /* RT2X00SOC_H */
> -- 
> 2.50.0
> 


  reply	other threads:[~2025-07-12 10:23 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-10 20:08 [PATCHv3 wireless-next 0/7] wifi: rt2x00: add OF bindings + cleanup Rosen Penev
2025-07-10 20:08 ` [PATCHv3 wireless-next 1/7] wifi: rt2x00: add COMPILE_TEST Rosen Penev
2025-07-12  8:59   ` Stanislaw Gruszka
2025-07-10 20:08 ` [PATCHv3 wireless-next 2/7] wifi: rt2x00: remove mod_name from platform_driver Rosen Penev
2025-07-12  8:59   ` Stanislaw Gruszka
2025-07-10 20:08 ` [PATCHv3 wireless-next 3/7] wifi: rt2800soc: allow loading from OF Rosen Penev
2025-07-12 10:14   ` Stanislaw Gruszka
2025-07-12 19:02     ` Rosen Penev
2025-07-13  7:15       ` Stanislaw Gruszka
2025-07-13  8:49         ` Johannes Berg
2025-07-13 11:06           ` Johannes Berg
2025-07-10 20:08 ` [PATCHv3 wireless-next 4/7] wifi: rt2800: move 2x00soc to 2800soc Rosen Penev
2025-07-12 10:20   ` Stanislaw Gruszka [this message]
2025-07-10 20:08 ` [PATCHv3 wireless-next 5/7] wifi: rt2x00: soc: modernize probe Rosen Penev
2025-07-11 14:01   ` Alexander Savchenko
2025-07-11 20:33     ` Rosen Penev
2025-07-10 20:08 ` [PATCHv3 wireless-next 6/7] MIPS: dts: ralink: mt7620a: add wifi Rosen Penev
2025-07-10 20:08 ` [PATCHv3 wireless-next 7/7] dt-bindings: net: wireless: rt2800: add Rosen Penev
2025-07-10 21:39   ` Krzysztof Kozlowski
2025-07-10 22:40     ` Rosen Penev
2025-07-11  7:48       ` Krzysztof Kozlowski
2025-07-12 10:40         ` Stanislaw Gruszka
2025-07-12 16:53           ` Krzysztof Kozlowski
2025-07-12 16:59             ` Krzysztof Kozlowski
2025-07-12 23:20               ` Julian Calaby
2025-07-13  8:53                 ` Krzysztof Kozlowski

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=20250712102031.GA13264@wp.pl \
    --to=stf_xl@wp.pl \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=johannes@sipsolutions.net \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=matthias.bgg@gmail.com \
    --cc=robh@kernel.org \
    --cc=rosenp@gmail.com \
    --cc=tsbogend@alpha.franken.de \
    /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