* [PATCHv2 0/3] wifi: ath9k: remove platform_data support
@ 2024-09-06 19:53 Rosen Penev
2024-09-06 19:53 ` [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data Rosen Penev
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Rosen Penev @ 2024-09-06 19:53 UTC (permalink / raw)
To: linux-wireless; +Cc: kvalo, toke, nbd, yangshiji66, hauke
This series removes platform_data support as it's deprecated, unused,
and replaced by OF.
v2: just remove platform data.
Rosen Penev (3):
wifi: ath9k: eeprom: remove platform data
wifi: ath9k: btcoex: remove platform_data
wifi: ath9k: remove ath9k_platform_data
.../wireless/ath/ath9k/ath9k_pci_owl_loader.c | 1 -
drivers/net/wireless/ath/ath9k/btcoex.c | 16 ++----
drivers/net/wireless/ath/ath9k/eeprom.c | 12 -----
drivers/net/wireless/ath/ath9k/hw.c | 2 +-
drivers/net/wireless/ath/ath9k/init.c | 52 +------------------
include/linux/ath9k_platform.h | 51 ------------------
6 files changed, 6 insertions(+), 128 deletions(-)
delete mode 100644 include/linux/ath9k_platform.h
--
2.46.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data
2024-09-06 19:53 [PATCHv2 0/3] wifi: ath9k: remove platform_data support Rosen Penev
@ 2024-09-06 19:53 ` Rosen Penev
2024-09-13 15:19 ` Toke Høiland-Jørgensen
2024-09-18 17:01 ` Kalle Valo
2024-09-06 19:53 ` [PATCHv2 2/3] wifi: ath9k: btcoex: remove platform_data Rosen Penev
2024-09-06 19:53 ` [PATCHv2 3/3] wifi: ath9k: remove ath9k_platform_data Rosen Penev
2 siblings, 2 replies; 8+ messages in thread
From: Rosen Penev @ 2024-09-06 19:53 UTC (permalink / raw)
To: linux-wireless; +Cc: kvalo, toke, nbd, yangshiji66, hauke
There are no more board files defining platform data for this driver and
eeprom support through NVMEM has already been implemented. No need to
keep this old functionality around.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
drivers/net/wireless/ath/ath9k/eeprom.c | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/eeprom.c b/drivers/net/wireless/ath/ath9k/eeprom.c
index efb7889142d4..df58dc02e104 100644
--- a/drivers/net/wireless/ath/ath9k/eeprom.c
+++ b/drivers/net/wireless/ath/ath9k/eeprom.c
@@ -15,7 +15,6 @@
*/
#include "hw.h"
-#include <linux/ath9k_platform.h>
void ath9k_hw_analog_shift_regwrite(struct ath_hw *ah, u32 reg, u32 val)
{
@@ -119,14 +118,6 @@ static bool ath9k_hw_nvram_read_array(u16 *blob, size_t blob_size,
return true;
}
-static bool ath9k_hw_nvram_read_pdata(struct ath9k_platform_data *pdata,
- off_t offset, u16 *data)
-{
- return ath9k_hw_nvram_read_array(pdata->eeprom_data,
- ARRAY_SIZE(pdata->eeprom_data),
- offset, data);
-}
-
static bool ath9k_hw_nvram_read_firmware(const struct firmware *eeprom_blob,
off_t offset, u16 *data)
{
@@ -146,15 +137,12 @@ static bool ath9k_hw_nvram_read_nvmem(struct ath_hw *ah, off_t offset,
bool ath9k_hw_nvram_read(struct ath_hw *ah, u32 off, u16 *data)
{
struct ath_common *common = ath9k_hw_common(ah);
- struct ath9k_platform_data *pdata = ah->dev->platform_data;
bool ret;
if (ah->nvmem_blob)
ret = ath9k_hw_nvram_read_nvmem(ah, off, data);
else if (ah->eeprom_blob)
ret = ath9k_hw_nvram_read_firmware(ah->eeprom_blob, off, data);
- else if (pdata && !pdata->use_eeprom)
- ret = ath9k_hw_nvram_read_pdata(pdata, off, data);
else
ret = common->bus_ops->eeprom_read(common, off, data);
--
2.46.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCHv2 2/3] wifi: ath9k: btcoex: remove platform_data
2024-09-06 19:53 [PATCHv2 0/3] wifi: ath9k: remove platform_data support Rosen Penev
2024-09-06 19:53 ` [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data Rosen Penev
@ 2024-09-06 19:53 ` Rosen Penev
2024-09-13 15:19 ` Toke Høiland-Jørgensen
2024-09-06 19:53 ` [PATCHv2 3/3] wifi: ath9k: remove ath9k_platform_data Rosen Penev
2 siblings, 1 reply; 8+ messages in thread
From: Rosen Penev @ 2024-09-06 19:53 UTC (permalink / raw)
To: linux-wireless; +Cc: kvalo, toke, nbd, yangshiji66, hauke
This is completely unused as platform files are no longer used anywhere.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
drivers/net/wireless/ath/ath9k/btcoex.c | 16 +++-------------
1 file changed, 3 insertions(+), 13 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/btcoex.c b/drivers/net/wireless/ath/ath9k/btcoex.c
index 9b393a8f7c3a..ad3a3fda1b9c 100644
--- a/drivers/net/wireless/ath/ath9k/btcoex.c
+++ b/drivers/net/wireless/ath/ath9k/btcoex.c
@@ -16,7 +16,6 @@
#include <linux/export.h>
#include <linux/types.h>
-#include <linux/ath9k_platform.h>
#include "hw.h"
enum ath_bt_mode {
@@ -115,23 +114,14 @@ static void ath9k_hw_btcoex_pin_init(struct ath_hw *ah, u8 wlanactive_gpio,
u8 btactive_gpio, u8 btpriority_gpio)
{
struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
- struct ath9k_platform_data *pdata = ah->dev->platform_data;
if (btcoex_hw->scheme != ATH_BTCOEX_CFG_2WIRE &&
btcoex_hw->scheme != ATH_BTCOEX_CFG_3WIRE)
return;
- /* bt priority GPIO will be ignored by 2 wire scheme */
- if (pdata && (pdata->bt_active_pin || pdata->bt_priority_pin ||
- pdata->wlan_active_pin)) {
- btcoex_hw->btactive_gpio = pdata->bt_active_pin;
- btcoex_hw->wlanactive_gpio = pdata->wlan_active_pin;
- btcoex_hw->btpriority_gpio = pdata->bt_priority_pin;
- } else {
- btcoex_hw->btactive_gpio = btactive_gpio;
- btcoex_hw->wlanactive_gpio = wlanactive_gpio;
- btcoex_hw->btpriority_gpio = btpriority_gpio;
- }
+ btcoex_hw->btactive_gpio = btactive_gpio;
+ btcoex_hw->wlanactive_gpio = wlanactive_gpio;
+ btcoex_hw->btpriority_gpio = btpriority_gpio;
}
void ath9k_hw_btcoex_init_scheme(struct ath_hw *ah)
--
2.46.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCHv2 3/3] wifi: ath9k: remove ath9k_platform_data
2024-09-06 19:53 [PATCHv2 0/3] wifi: ath9k: remove platform_data support Rosen Penev
2024-09-06 19:53 ` [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data Rosen Penev
2024-09-06 19:53 ` [PATCHv2 2/3] wifi: ath9k: btcoex: remove platform_data Rosen Penev
@ 2024-09-06 19:53 ` Rosen Penev
2024-09-13 15:19 ` Toke Høiland-Jørgensen
2 siblings, 1 reply; 8+ messages in thread
From: Rosen Penev @ 2024-09-06 19:53 UTC (permalink / raw)
To: linux-wireless; +Cc: kvalo, toke, nbd, yangshiji66, hauke
Completely unused here in favor of Device Tree based setup. The DT code
in here should currently match what is available with platform files.
Any such lapse can always be added.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
.../wireless/ath/ath9k/ath9k_pci_owl_loader.c | 1 -
drivers/net/wireless/ath/ath9k/hw.c | 2 +-
drivers/net/wireless/ath/ath9k/init.c | 52 +------------------
include/linux/ath9k_platform.h | 51 ------------------
4 files changed, 3 insertions(+), 103 deletions(-)
delete mode 100644 include/linux/ath9k_platform.h
diff --git a/drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.c b/drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.c
index 004ca5f536be..fe1013a3a588 100644
--- a/drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.c
+++ b/drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.c
@@ -18,7 +18,6 @@
#include <linux/pci.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
-#include <linux/ath9k_platform.h>
#include <linux/nvmem-consumer.h>
#include <linux/workqueue.h>
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index 04a4b9ea61c3..36db734c74ae 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -490,7 +490,7 @@ static void ath9k_hw_init_macaddr(struct ath_hw *ah)
u16 eeval;
static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
- /* MAC address may already be loaded via ath9k_platform_data */
+ /* MAC address may already be loaded via NVMEM */
if (is_valid_ether_addr(common->macaddr))
return;
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c
index 7fad7e75af6a..f9e77c4624d9 100644
--- a/drivers/net/wireless/ath/ath9k/init.c
+++ b/drivers/net/wireless/ath/ath9k/init.c
@@ -18,7 +18,6 @@
#include <linux/dma-mapping.h>
#include <linux/slab.h>
-#include <linux/ath9k_platform.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_net.h>
@@ -583,8 +582,8 @@ static int ath9k_nvmem_request_eeprom(struct ath_softc *sc)
/* nvmem cell might not be defined, or the nvmem
* subsystem isn't included. In this case, follow
- * the established "just return 0;" convention of
- * ath9k_init_platform to say:
+ * the established "just return 0;" convention
+ * to say:
* "All good. Nothing to see here. Please go on."
*/
if (err == -ENOENT || err == -EOPNOTSUPP)
@@ -620,49 +619,6 @@ static int ath9k_nvmem_request_eeprom(struct ath_softc *sc)
return 0;
}
-static int ath9k_init_platform(struct ath_softc *sc)
-{
- struct ath9k_platform_data *pdata = sc->dev->platform_data;
- struct ath_hw *ah = sc->sc_ah;
- struct ath_common *common = ath9k_hw_common(ah);
- int ret;
-
- if (!pdata)
- return 0;
-
- if (!pdata->use_eeprom) {
- ah->ah_flags &= ~AH_USE_EEPROM;
- ah->gpio_mask = pdata->gpio_mask;
- ah->gpio_val = pdata->gpio_val;
- ah->led_pin = pdata->led_pin;
- ah->is_clk_25mhz = pdata->is_clk_25mhz;
- ah->get_mac_revision = pdata->get_mac_revision;
- ah->external_reset = pdata->external_reset;
- ah->disable_2ghz = pdata->disable_2ghz;
- ah->disable_5ghz = pdata->disable_5ghz;
-
- if (!pdata->endian_check)
- ah->ah_flags |= AH_NO_EEP_SWAP;
- }
-
- if (pdata->eeprom_name) {
- ret = ath9k_eeprom_request(sc, pdata->eeprom_name);
- if (ret)
- return ret;
- }
-
- if (pdata->led_active_high)
- ah->config.led_active_high = true;
-
- if (pdata->tx_gain_buffalo)
- ah->config.tx_gain_buffalo = true;
-
- if (pdata->macaddr)
- ether_addr_copy(common->macaddr, pdata->macaddr);
-
- return 0;
-}
-
static int ath9k_of_init(struct ath_softc *sc)
{
struct device_node *np = sc->dev->of_node;
@@ -748,10 +704,6 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
*/
ath9k_init_pcoem_platform(sc);
- ret = ath9k_init_platform(sc);
- if (ret)
- return ret;
-
ret = ath9k_of_init(sc);
if (ret)
return ret;
diff --git a/include/linux/ath9k_platform.h b/include/linux/ath9k_platform.h
deleted file mode 100644
index 76860a461ed2..000000000000
--- a/include/linux/ath9k_platform.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (c) 2008 Atheros Communications Inc.
- * Copyright (c) 2009 Gabor Juhos <juhosg@openwrt.org>
- * Copyright (c) 2009 Imre Kaloz <kaloz@openwrt.org>
- *
- * Permission to use, copy, modify, and/or distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#ifndef _LINUX_ATH9K_PLATFORM_H
-#define _LINUX_ATH9K_PLATFORM_H
-
-#define ATH9K_PLAT_EEP_MAX_WORDS 2048
-
-struct ath9k_platform_data {
- const char *eeprom_name;
-
- u16 eeprom_data[ATH9K_PLAT_EEP_MAX_WORDS];
- u8 *macaddr;
-
- int led_pin;
- u32 gpio_mask;
- u32 gpio_val;
-
- u32 bt_active_pin;
- u32 bt_priority_pin;
- u32 wlan_active_pin;
-
- bool endian_check;
- bool is_clk_25mhz;
- bool tx_gain_buffalo;
- bool disable_2ghz;
- bool disable_5ghz;
- bool led_active_high;
-
- int (*get_mac_revision)(void);
- int (*external_reset)(void);
-
- bool use_eeprom;
-};
-
-#endif /* _LINUX_ATH9K_PLATFORM_H */
--
2.46.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data
2024-09-06 19:53 ` [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data Rosen Penev
@ 2024-09-13 15:19 ` Toke Høiland-Jørgensen
2024-09-18 17:01 ` Kalle Valo
1 sibling, 0 replies; 8+ messages in thread
From: Toke Høiland-Jørgensen @ 2024-09-13 15:19 UTC (permalink / raw)
To: Rosen Penev, linux-wireless; +Cc: kvalo, nbd, yangshiji66, hauke
Rosen Penev <rosenp@gmail.com> writes:
> There are no more board files defining platform data for this driver and
> eeprom support through NVMEM has already been implemented. No need to
> keep this old functionality around.
>
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCHv2 2/3] wifi: ath9k: btcoex: remove platform_data
2024-09-06 19:53 ` [PATCHv2 2/3] wifi: ath9k: btcoex: remove platform_data Rosen Penev
@ 2024-09-13 15:19 ` Toke Høiland-Jørgensen
0 siblings, 0 replies; 8+ messages in thread
From: Toke Høiland-Jørgensen @ 2024-09-13 15:19 UTC (permalink / raw)
To: Rosen Penev, linux-wireless; +Cc: kvalo, nbd, yangshiji66, hauke
Rosen Penev <rosenp@gmail.com> writes:
> This is completely unused as platform files are no longer used anywhere.
>
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCHv2 3/3] wifi: ath9k: remove ath9k_platform_data
2024-09-06 19:53 ` [PATCHv2 3/3] wifi: ath9k: remove ath9k_platform_data Rosen Penev
@ 2024-09-13 15:19 ` Toke Høiland-Jørgensen
0 siblings, 0 replies; 8+ messages in thread
From: Toke Høiland-Jørgensen @ 2024-09-13 15:19 UTC (permalink / raw)
To: Rosen Penev, linux-wireless; +Cc: kvalo, nbd, yangshiji66, hauke
Rosen Penev <rosenp@gmail.com> writes:
> Completely unused here in favor of Device Tree based setup. The DT code
> in here should currently match what is available with platform files.
> Any such lapse can always be added.
>
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data
2024-09-06 19:53 ` [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data Rosen Penev
2024-09-13 15:19 ` Toke Høiland-Jørgensen
@ 2024-09-18 17:01 ` Kalle Valo
1 sibling, 0 replies; 8+ messages in thread
From: Kalle Valo @ 2024-09-18 17:01 UTC (permalink / raw)
To: Rosen Penev; +Cc: linux-wireless, toke, nbd, yangshiji66, hauke
Rosen Penev <rosenp@gmail.com> wrote:
> There are no more board files defining platform data for this driver and
> eeprom support through NVMEM has already been implemented. No need to
> keep this old functionality around.
>
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
> Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
3 patches applied to ath-next branch of ath.git, thanks.
841e1ff5369f wifi: ath9k: eeprom: remove platform data
e46333b41e43 wifi: ath9k: btcoex: remove platform_data
2b0996c76462 wifi: ath9k: remove ath9k_platform_data
--
https://patchwork.kernel.org/project/linux-wireless/patch/20240906195359.6982-2-rosenp@gmail.com/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
https://docs.kernel.org/process/submitting-patches.html
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-09-18 17:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-06 19:53 [PATCHv2 0/3] wifi: ath9k: remove platform_data support Rosen Penev
2024-09-06 19:53 ` [PATCHv2 1/3] wifi: ath9k: eeprom: remove platform data Rosen Penev
2024-09-13 15:19 ` Toke Høiland-Jørgensen
2024-09-18 17:01 ` Kalle Valo
2024-09-06 19:53 ` [PATCHv2 2/3] wifi: ath9k: btcoex: remove platform_data Rosen Penev
2024-09-13 15:19 ` Toke Høiland-Jørgensen
2024-09-06 19:53 ` [PATCHv2 3/3] wifi: ath9k: remove ath9k_platform_data Rosen Penev
2024-09-13 15:19 ` Toke Høiland-Jørgensen
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).