Re: wireless coordination and who's working on what?

2019-01-11 Thread Adrian Chadd
>
> Hi,
>

I'm .. mostly trying to help people. Geramy has been helping out hugely on
the ath10k port and I'm updating my laptops (again!) to the latest head so
I can continue rolling with that.

I'd like to get ath10k ready to put into the tree but there are a couple of
net80211 and driver holes that need patching for these newer firmware NICs.
(Around node creation/deletion, crypto key updates, sending frames, etc -
net80211 assumes they're all non-blocking operations but that's definitely
not true for the majority of hardware now shipping.)



-a
___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"


Re: wireless coordination and who's working on what?

2019-01-11 Thread waddlesplash
On Mon, Jan 7, 2019 at 9:47 AM Bjoern A. Zeeb  wrote:
> I’d love to start coordinating efforts and get an overview on who’s
> got his hands dirty in what and who has plans for other “todos”.
>
> Can you please reply to me (here) or (privately *)?  I’ll summarise
> the current state for everyone in a week or two.

I've recently finished upgrading Haiku to FreeBSD 12 net80211 and
drivers. I don't have any major plans at the moment personally, but
some things you might want to note:

 * there are a variety of iwm patches available in DragonFlyBSD that
haven't yet been merged into FreeBSD
 * general driver stability issues, iwn/ath/iwm at least (mostly
failures to initialize on hardware that is theoretically supported, or
other general timing issues)
 * use-after-free panics in certain scenarios (it seems some of these
should be caught by INVARIANTS, but I've only reproduced them on
Haiku, not on FreeBSD)

Additionally, if you want to keep an eye on Haiku's bugtracker, you
can use this query to see tickets reported just in the "network
drivers" category:
https://dev.haiku-os.org/query?status=assigned=in-progress=new=reopened=bug=%5EDrivers%2FNetwork=id=summary=status=owner=type=priority=milestone=1=id

-waddlesplash
___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"


Re: wireless coordination and who's working on what?

2019-01-08 Thread Farhan Khan
Hi all,

I am working on another project which might be a few months, but would
be interested in picking up a driver that is of lower priority.
Ashish, I have two (maybe 3) of those cards from different vendors. I
would not mind testing any code you produce.

--
Farhan Khan
PGP Fingerprint: B28D 2726 E2BC A97E 3854 5ABE 9A9F 00BC D525 16EE

On Tue, Jan 8, 2019 at 2:29 PM Adrian Chadd  wrote:
>
> Hi!
>
> If you can put some code up then we can poke at it together and see how to
> get the firmware load and USB framework bits into if_ath(4).
>
> You don't want to load it via userland; you really want the driver to load
> it at attach time and if it wants to power things fully down off or not.
> (You can do a reset command over USB to reset the chip back to "wait for
> firmware" which is nice for things like low power modes.)
>
>
> -a
>
>
> On Tue, 8 Jan 2019 at 02:12, Ashish Gupta  wrote:
>
> > Hi,
> >
> > I'm trying to add USB glue to the ath driver in order to support Atheros
> > USB cards (I'm working with the AR9271 chip specifically).
> >
> > The code for downloading firmware to the card, similar to uathload, is
> > ready but untested. I'm trying to wrap my head around the existing driver
> > (thanks Adrian!) and will add register read / write methods next to
> > initialize the chip.
> >
> > On Mon, 7 Jan 2019, 10:04 Shawn Webb  >
> > > On Mon, Jan 07, 2019 at 08:57:40AM -0600, Kyle Evans wrote:
> > > > On Mon, Jan 7, 2019 at 8:47 AM Bjoern A. Zeeb  wrote:
> > > > >
> > > > > Hi,
> > > > >
> > > > > I???ve been and am involved in two projects over the last 6 months
> > > > > related to FreeBSD wireless.
> > > > > I know there are some out there like me working on this or that;
> > some
> > > > > known better some less.
> > > > >
> > > > > I???d love to start coordinating efforts and get an overview on
> > who???s
> > > > > got his hands dirty in what and who has plans for other ???todos???.
> > > > >
> > > >
> > > > I've got "try fixing up mesh" on my TODO list. I have four Carambola 2
> > > > nodes imaged for it so that I can do testing under a couple of more
> > > > interesting topologies, it's mostly a matter of finding time and
> > > > putting together a couple of 'console servers' for them.
> > >
> > > I would absolutely love working mesh support. That would drastically
> > > help some of the human rights efforts I'm watching and helping.
> > >
> > > If you need someone to help test experimental code, please ping me. I
> > > have a lab specifically for this work.
> > >
> > > Thanks,
> > >
> > > --
> > > Shawn Webb
> > > Cofounder and Security Engineer
> > > HardenedBSD
> > >
> > > Tor-ified Signal:+1 443-546-8752
> > > Tor+XMPP+OTR:latt...@is.a.hacker.sx
> > > GPG Key ID:  0x6A84658F52456EEE
> > > GPG Key Fingerprint: 2ABA B6BD EF6A F486 BE89  3D9E 6A84 658F 5245 6EEE
> > >
> > ___
> > freebsd-wireless@freebsd.org mailing list
> > https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
> > To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org
> > "
> >
> ___
> freebsd-wireless@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
> To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"
___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"


Re: wireless coordination and who's working on what?

2019-01-08 Thread Adrian Chadd
Hi!

If you can put some code up then we can poke at it together and see how to
get the firmware load and USB framework bits into if_ath(4).

You don't want to load it via userland; you really want the driver to load
it at attach time and if it wants to power things fully down off or not.
(You can do a reset command over USB to reset the chip back to "wait for
firmware" which is nice for things like low power modes.)


-a


On Tue, 8 Jan 2019 at 02:12, Ashish Gupta  wrote:

> Hi,
>
> I'm trying to add USB glue to the ath driver in order to support Atheros
> USB cards (I'm working with the AR9271 chip specifically).
>
> The code for downloading firmware to the card, similar to uathload, is
> ready but untested. I'm trying to wrap my head around the existing driver
> (thanks Adrian!) and will add register read / write methods next to
> initialize the chip.
>
> On Mon, 7 Jan 2019, 10:04 Shawn Webb 
> > On Mon, Jan 07, 2019 at 08:57:40AM -0600, Kyle Evans wrote:
> > > On Mon, Jan 7, 2019 at 8:47 AM Bjoern A. Zeeb  wrote:
> > > >
> > > > Hi,
> > > >
> > > > I???ve been and am involved in two projects over the last 6 months
> > > > related to FreeBSD wireless.
> > > > I know there are some out there like me working on this or that;
> some
> > > > known better some less.
> > > >
> > > > I???d love to start coordinating efforts and get an overview on
> who???s
> > > > got his hands dirty in what and who has plans for other ???todos???.
> > > >
> > >
> > > I've got "try fixing up mesh" on my TODO list. I have four Carambola 2
> > > nodes imaged for it so that I can do testing under a couple of more
> > > interesting topologies, it's mostly a matter of finding time and
> > > putting together a couple of 'console servers' for them.
> >
> > I would absolutely love working mesh support. That would drastically
> > help some of the human rights efforts I'm watching and helping.
> >
> > If you need someone to help test experimental code, please ping me. I
> > have a lab specifically for this work.
> >
> > Thanks,
> >
> > --
> > Shawn Webb
> > Cofounder and Security Engineer
> > HardenedBSD
> >
> > Tor-ified Signal:+1 443-546-8752
> > Tor+XMPP+OTR:latt...@is.a.hacker.sx
> > GPG Key ID:  0x6A84658F52456EEE
> > GPG Key Fingerprint: 2ABA B6BD EF6A F486 BE89  3D9E 6A84 658F 5245 6EEE
> >
> ___
> freebsd-wireless@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
> To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org
> "
>
___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"


Re: wireless coordination and who's working on what?

2019-01-08 Thread Ashish Gupta
Hi,

I'm trying to add USB glue to the ath driver in order to support Atheros
USB cards (I'm working with the AR9271 chip specifically).

The code for downloading firmware to the card, similar to uathload, is
ready but untested. I'm trying to wrap my head around the existing driver
(thanks Adrian!) and will add register read / write methods next to
initialize the chip.

On Mon, 7 Jan 2019, 10:04 Shawn Webb  On Mon, Jan 07, 2019 at 08:57:40AM -0600, Kyle Evans wrote:
> > On Mon, Jan 7, 2019 at 8:47 AM Bjoern A. Zeeb  wrote:
> > >
> > > Hi,
> > >
> > > I???ve been and am involved in two projects over the last 6 months
> > > related to FreeBSD wireless.
> > > I know there are some out there like me working on this or that;  some
> > > known better some less.
> > >
> > > I???d love to start coordinating efforts and get an overview on who???s
> > > got his hands dirty in what and who has plans for other ???todos???.
> > >
> >
> > I've got "try fixing up mesh" on my TODO list. I have four Carambola 2
> > nodes imaged for it so that I can do testing under a couple of more
> > interesting topologies, it's mostly a matter of finding time and
> > putting together a couple of 'console servers' for them.
>
> I would absolutely love working mesh support. That would drastically
> help some of the human rights efforts I'm watching and helping.
>
> If you need someone to help test experimental code, please ping me. I
> have a lab specifically for this work.
>
> Thanks,
>
> --
> Shawn Webb
> Cofounder and Security Engineer
> HardenedBSD
>
> Tor-ified Signal:+1 443-546-8752
> Tor+XMPP+OTR:latt...@is.a.hacker.sx
> GPG Key ID:  0x6A84658F52456EEE
> GPG Key Fingerprint: 2ABA B6BD EF6A F486 BE89  3D9E 6A84 658F 5245 6EEE
>
___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"


Re: wireless coordination and who's working on what?

2019-01-07 Thread Shawn Webb
On Mon, Jan 07, 2019 at 08:57:40AM -0600, Kyle Evans wrote:
> On Mon, Jan 7, 2019 at 8:47 AM Bjoern A. Zeeb  wrote:
> >
> > Hi,
> >
> > I???ve been and am involved in two projects over the last 6 months
> > related to FreeBSD wireless.
> > I know there are some out there like me working on this or that;  some
> > known better some less.
> >
> > I???d love to start coordinating efforts and get an overview on who???s
> > got his hands dirty in what and who has plans for other ???todos???.
> >
> 
> I've got "try fixing up mesh" on my TODO list. I have four Carambola 2
> nodes imaged for it so that I can do testing under a couple of more
> interesting topologies, it's mostly a matter of finding time and
> putting together a couple of 'console servers' for them.

I would absolutely love working mesh support. That would drastically
help some of the human rights efforts I'm watching and helping.

If you need someone to help test experimental code, please ping me. I
have a lab specifically for this work.

Thanks,

-- 
Shawn Webb
Cofounder and Security Engineer
HardenedBSD

Tor-ified Signal:+1 443-546-8752
Tor+XMPP+OTR:latt...@is.a.hacker.sx
GPG Key ID:  0x6A84658F52456EEE
GPG Key Fingerprint: 2ABA B6BD EF6A F486 BE89  3D9E 6A84 658F 5245 6EEE


signature.asc
Description: PGP signature


Re: wireless coordination and who's working on what?

2019-01-07 Thread Andriy Voskoboinyk
Mon, 07 Jan 2019 16:47:12 +0200 було написано Bjoern A. Zeeb  
:



Hi,

I’ve been and am involved in two projects over the last 6 months related  
to FreeBSD wireless.
I know there are some out there like me working on this or that;  some  
known better some less.




Hi,

I'm currently working on rtwn(4) (and subparts) plus have access to
rum(4) / rsu(4) hardware.

There are also some wpi(4) / iwn(4) chips nearby; while wpi(4) seems to be
in good shape, I don't have time to look on iwn(4) more closely (4965 is
unstable, I know about that).

I’d love to start coordinating efforts and get an overview on who’s got  
his hands dirty in what and who has plans for other “todos”.


Can you please reply to me (here) or (privately *)?  I’ll summarise the  
current state for everyone in a week or two.



/bz

PS: Please do not (yet) reply with a “user’s wishlist”;  that’s a thread  
I’ll start another day.



(*) In case you are working on something but cannot talk about it in  
public I may also appreciate a private reply with at least minimalistic  
details; or drop me a note

___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to  
"freebsd-wireless-unsubscr...@freebsd.org"

___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"


Re: wireless coordination and who's working on what?

2019-01-07 Thread Kyle Evans
On Mon, Jan 7, 2019 at 8:47 AM Bjoern A. Zeeb  wrote:
>
> Hi,
>
> I’ve been and am involved in two projects over the last 6 months
> related to FreeBSD wireless.
> I know there are some out there like me working on this or that;  some
> known better some less.
>
> I’d love to start coordinating efforts and get an overview on who’s
> got his hands dirty in what and who has plans for other “todos”.
>

I've got "try fixing up mesh" on my TODO list. I have four Carambola 2
nodes imaged for it so that I can do testing under a couple of more
interesting topologies, it's mostly a matter of finding time and
putting together a couple of 'console servers' for them.

Thanks,

Kyle Evans
___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"


wireless coordination and who's working on what?

2019-01-07 Thread Bjoern A. Zeeb

Hi,

I’ve been and am involved in two projects over the last 6 months 
related to FreeBSD wireless.
I know there are some out there like me working on this or that;  some 
known better some less.


I’d love to start coordinating efforts and get an overview on who’s 
got his hands dirty in what and who has plans for other “todos”.


Can you please reply to me (here) or (privately *)?  I’ll summarise 
the current state for everyone in a week or two.



/bz

PS: Please do not (yet) reply with a “user’s wishlist”;  that’s 
a thread I’ll start another day.



(*) In case you are working on something but cannot talk about it in 
public I may also appreciate a private reply with at least minimalistic 
details; or drop me a note

___
freebsd-wireless@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to "freebsd-wireless-unsubscr...@freebsd.org"