* [PATCH 0/2] wifi: ath5k: add two PCI IDs
@ 2024-09-30 18:07 Rosen Penev
2024-09-30 18:07 ` [PATCH 1/2] wifi: ath5k: add PCI ID for SX76X Rosen Penev
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Rosen Penev @ 2024-09-30 18:07 UTC (permalink / raw)
To: linux-wireless
Cc: kvalo, toke, nbd, yangshiji66, hauke, jirislaby, mickflemm,
mcgrof
These have been hanging around OpenWrt and never upstreamed for some
reason.
Rosen Penev (2):
wifi: ath5k: add PCI ID for SX76X
wifi: ath5k: add PCI ID for Arcadyan devices
drivers/net/wireless/ath/ath5k/pci.c | 2 ++
1 file changed, 2 insertions(+)
--
2.46.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] wifi: ath5k: add PCI ID for SX76X
2024-09-30 18:07 [PATCH 0/2] wifi: ath5k: add two PCI IDs Rosen Penev
@ 2024-09-30 18:07 ` Rosen Penev
2024-09-30 18:07 ` [PATCH 2/2] wifi: ath5k: add PCI ID for Arcadyan devices Rosen Penev
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Rosen Penev @ 2024-09-30 18:07 UTC (permalink / raw)
To: linux-wireless
Cc: kvalo, toke, nbd, yangshiji66, hauke, jirislaby, mickflemm,
mcgrof
This is in two devices made by Gigaset, SX762 and SX763.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
drivers/net/wireless/ath/ath5k/pci.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/wireless/ath/ath5k/pci.c b/drivers/net/wireless/ath/ath5k/pci.c
index b51fce5ae260..b3137f60e879 100644
--- a/drivers/net/wireless/ath/ath5k/pci.c
+++ b/drivers/net/wireless/ath/ath5k/pci.c
@@ -46,6 +46,7 @@ static const struct pci_device_id ath5k_pci_id_table[] = {
{ PCI_VDEVICE(ATHEROS, 0x001b) }, /* 5413 Eagle */
{ PCI_VDEVICE(ATHEROS, 0x001c) }, /* PCI-E cards */
{ PCI_VDEVICE(ATHEROS, 0x001d) }, /* 2417 Nala */
+ { PCI_VDEVICE(ATHEROS, 0xff16) }, /* Gigaset SX76[23] AR241[34]A */
{ PCI_VDEVICE(ATHEROS, 0xff1b) }, /* AR5BXB63 */
{ 0 }
};
--
2.46.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] wifi: ath5k: add PCI ID for Arcadyan devices
2024-09-30 18:07 [PATCH 0/2] wifi: ath5k: add two PCI IDs Rosen Penev
2024-09-30 18:07 ` [PATCH 1/2] wifi: ath5k: add PCI ID for SX76X Rosen Penev
@ 2024-09-30 18:07 ` Rosen Penev
2024-10-11 16:00 ` [PATCH 0/2] wifi: ath5k: add two PCI IDs Jeff Johnson
2024-10-16 15:17 ` Jeff Johnson
3 siblings, 0 replies; 6+ messages in thread
From: Rosen Penev @ 2024-09-30 18:07 UTC (permalink / raw)
To: linux-wireless
Cc: kvalo, toke, nbd, yangshiji66, hauke, jirislaby, mickflemm,
mcgrof
Arcadyan made routers with this PCI ID containing an AR2417.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
drivers/net/wireless/ath/ath5k/pci.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/wireless/ath/ath5k/pci.c b/drivers/net/wireless/ath/ath5k/pci.c
index b3137f60e879..f5ca2fe0d074 100644
--- a/drivers/net/wireless/ath/ath5k/pci.c
+++ b/drivers/net/wireless/ath/ath5k/pci.c
@@ -47,6 +47,7 @@ static const struct pci_device_id ath5k_pci_id_table[] = {
{ PCI_VDEVICE(ATHEROS, 0x001c) }, /* PCI-E cards */
{ PCI_VDEVICE(ATHEROS, 0x001d) }, /* 2417 Nala */
{ PCI_VDEVICE(ATHEROS, 0xff16) }, /* Gigaset SX76[23] AR241[34]A */
+ { PCI_VDEVICE(ATHEROS, 0xff1a) }, /* Arcadyan ARV45XX AR2417 */
{ PCI_VDEVICE(ATHEROS, 0xff1b) }, /* AR5BXB63 */
{ 0 }
};
--
2.46.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] wifi: ath5k: add two PCI IDs
2024-09-30 18:07 [PATCH 0/2] wifi: ath5k: add two PCI IDs Rosen Penev
2024-09-30 18:07 ` [PATCH 1/2] wifi: ath5k: add PCI ID for SX76X Rosen Penev
2024-09-30 18:07 ` [PATCH 2/2] wifi: ath5k: add PCI ID for Arcadyan devices Rosen Penev
@ 2024-10-11 16:00 ` Jeff Johnson
2024-10-11 19:55 ` Rosen Penev
2024-10-16 15:17 ` Jeff Johnson
3 siblings, 1 reply; 6+ messages in thread
From: Jeff Johnson @ 2024-10-11 16:00 UTC (permalink / raw)
To: Rosen Penev, linux-wireless
Cc: kvalo, toke, nbd, yangshiji66, hauke, jirislaby, mickflemm,
mcgrof
On 9/30/2024 11:07 AM, Rosen Penev wrote:
> These have been hanging around OpenWrt and never upstreamed for some
> reason.
>
> Rosen Penev (2):
> wifi: ath5k: add PCI ID for SX76X
> wifi: ath5k: add PCI ID for Arcadyan devices
>
> drivers/net/wireless/ath/ath5k/pci.c | 2 ++
> 1 file changed, 2 insertions(+)
>
Does the upstream driver handle these devices ok, or does actual support
require patches that are present in OpenWrt?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] wifi: ath5k: add two PCI IDs
2024-10-11 16:00 ` [PATCH 0/2] wifi: ath5k: add two PCI IDs Jeff Johnson
@ 2024-10-11 19:55 ` Rosen Penev
0 siblings, 0 replies; 6+ messages in thread
From: Rosen Penev @ 2024-10-11 19:55 UTC (permalink / raw)
To: Jeff Johnson
Cc: linux-wireless, kvalo, toke, nbd, yangshiji66, hauke, jirislaby,
mickflemm, mcgrof
On Fri, Oct 11, 2024 at 9:00 AM Jeff Johnson <quic_jjohnson@quicinc.com> wrote:
>
> On 9/30/2024 11:07 AM, Rosen Penev wrote:
> > These have been hanging around OpenWrt and never upstreamed for some
> > reason.
> >
> > Rosen Penev (2):
> > wifi: ath5k: add PCI ID for SX76X
> > wifi: ath5k: add PCI ID for Arcadyan devices
> >
> > drivers/net/wireless/ath/ath5k/pci.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
>
> Does the upstream driver handle these devices ok, or does actual support
> require patches that are present in OpenWrt?
No, there's no specific OpenWrt handling for these devices.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] wifi: ath5k: add two PCI IDs
2024-09-30 18:07 [PATCH 0/2] wifi: ath5k: add two PCI IDs Rosen Penev
` (2 preceding siblings ...)
2024-10-11 16:00 ` [PATCH 0/2] wifi: ath5k: add two PCI IDs Jeff Johnson
@ 2024-10-16 15:17 ` Jeff Johnson
3 siblings, 0 replies; 6+ messages in thread
From: Jeff Johnson @ 2024-10-16 15:17 UTC (permalink / raw)
To: linux-wireless, Rosen Penev
Cc: kvalo, toke, nbd, yangshiji66, hauke, jirislaby, mickflemm,
mcgrof
On Mon, 30 Sep 2024 11:07:14 -0700, Rosen Penev wrote:
> These have been hanging around OpenWrt and never upstreamed for some
> reason.
>
> Rosen Penev (2):
> wifi: ath5k: add PCI ID for SX76X
> wifi: ath5k: add PCI ID for Arcadyan devices
>
> [...]
Applied, thanks!
[1/2] wifi: ath5k: add PCI ID for SX76X
commit: da0474012402d4729b98799d71a54c35dc5c5de3
[2/2] wifi: ath5k: add PCI ID for Arcadyan devices
commit: f3ced9bb90b0a287a1fa6184d16b0f104a78fa90
Best regards,
--
Jeff Johnson <quic_jjohnson@quicinc.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-10-16 15:18 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-30 18:07 [PATCH 0/2] wifi: ath5k: add two PCI IDs Rosen Penev
2024-09-30 18:07 ` [PATCH 1/2] wifi: ath5k: add PCI ID for SX76X Rosen Penev
2024-09-30 18:07 ` [PATCH 2/2] wifi: ath5k: add PCI ID for Arcadyan devices Rosen Penev
2024-10-11 16:00 ` [PATCH 0/2] wifi: ath5k: add two PCI IDs Jeff Johnson
2024-10-11 19:55 ` Rosen Penev
2024-10-16 15:17 ` Jeff Johnson
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).