* rfkill API
@ 2011-02-02 4:35 Ben Greear
2011-02-02 4:51 ` Ben Greear
0 siblings, 1 reply; 5+ messages in thread
From: Ben Greear @ 2011-02-02 4:35 UTC (permalink / raw)
To: linux-wireless@vger.kernel.org
Hello!
I was looking at using one rfkill socket in wpa_supplicant, instead
of one per vif.
Current wpa_supplicant code seems to treat the API as if there is only
as single rfkill object for the entire kernel. I would assume that
instead different NICs could have different rfkill status.
Is there any way to coorelate a netdevice (or devices)
to the rfkill->idx in the
struct rfkill_event {
u32 idx;
u8 type;
u8 op;
u8 soft;
u8 hard;
} STRUCT_PACKED;
?
Thanks,
Ben
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: rfkill API 2011-02-02 4:35 rfkill API Ben Greear @ 2011-02-02 4:51 ` Ben Greear 2011-02-03 18:42 ` Dan Williams 0 siblings, 1 reply; 5+ messages in thread From: Ben Greear @ 2011-02-02 4:51 UTC (permalink / raw) To: linux-wireless@vger.kernel.org On 02/01/2011 08:35 PM, Ben Greear wrote: > Hello! > > I was looking at using one rfkill socket in wpa_supplicant, instead > of one per vif. > > Current wpa_supplicant code seems to treat the API as if there is only > as single rfkill object for the entire kernel. I would assume that > instead different NICs could have different rfkill status. > > Is there any way to coorelate a netdevice (or devices) > to the rfkill->idx in the > > struct rfkill_event { > u32 idx; > u8 type; > u8 op; > u8 soft; > u8 hard; > } STRUCT_PACKED; > > > ? > > Thanks, > Ben > Err, nevermind..looks like you can grub around in sysfs and find the phy, and from there, find the devices.... Thanks, Ben -- Ben Greear <greearb@candelatech.com> Candela Technologies Inc http://www.candelatech.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: rfkill API 2011-02-02 4:51 ` Ben Greear @ 2011-02-03 18:42 ` Dan Williams 2011-02-03 18:58 ` Ben Greear 0 siblings, 1 reply; 5+ messages in thread From: Dan Williams @ 2011-02-03 18:42 UTC (permalink / raw) To: Ben Greear; +Cc: linux-wireless@vger.kernel.org On Tue, 2011-02-01 at 20:51 -0800, Ben Greear wrote: > On 02/01/2011 08:35 PM, Ben Greear wrote: > > Hello! > > > > I was looking at using one rfkill socket in wpa_supplicant, instead > > of one per vif. > > > > Current wpa_supplicant code seems to treat the API as if there is only > > as single rfkill object for the entire kernel. I would assume that > > instead different NICs could have different rfkill status. > > > > Is there any way to coorelate a netdevice (or devices) > > to the rfkill->idx in the > > > > struct rfkill_event { > > u32 idx; > > u8 type; > > u8 op; > > u8 soft; > > u8 hard; > > } STRUCT_PACKED; > > > > > > ? > > > > Thanks, > > Ben > > > > Err, nevermind..looks like you can grub around in sysfs and find the phy, > and from there, find the devices.... Remember about platform devices. An rfkill device is not always associated with a netdevice, and sometimes platform rfkill devices can block the netdevice rfkill. So, if you have a laptop with a BIOS rfkill switch, setting that rfkill switch "softblocked" will hardblock the netdevice rfkill device. Thus you cannot unblock the netdevice rfkill until you unblock the platform/BIOS device rfkill. Yes, this sucks. Dan ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: rfkill API 2011-02-03 18:42 ` Dan Williams @ 2011-02-03 18:58 ` Ben Greear 2011-02-10 18:21 ` Dan Williams 0 siblings, 1 reply; 5+ messages in thread From: Ben Greear @ 2011-02-03 18:58 UTC (permalink / raw) To: Dan Williams; +Cc: linux-wireless@vger.kernel.org On 02/03/2011 10:42 AM, Dan Williams wrote: > On Tue, 2011-02-01 at 20:51 -0800, Ben Greear wrote: >> On 02/01/2011 08:35 PM, Ben Greear wrote: >>> Hello! >>> >>> I was looking at using one rfkill socket in wpa_supplicant, instead >>> of one per vif. >>> >>> Current wpa_supplicant code seems to treat the API as if there is only >>> as single rfkill object for the entire kernel. I would assume that >>> instead different NICs could have different rfkill status. >>> >>> Is there any way to coorelate a netdevice (or devices) >>> to the rfkill->idx in the >>> >>> struct rfkill_event { >>> u32 idx; >>> u8 type; >>> u8 op; >>> u8 soft; >>> u8 hard; >>> } STRUCT_PACKED; >>> >>> >>> ? >>> >>> Thanks, >>> Ben >>> >> >> Err, nevermind..looks like you can grub around in sysfs and find the phy, >> and from there, find the devices.... > > Remember about platform devices. An rfkill device is not always > associated with a netdevice, and sometimes platform rfkill devices can > block the netdevice rfkill. > > So, if you have a laptop with a BIOS rfkill switch, setting that rfkill > switch "softblocked" will hardblock the netdevice rfkill device. Thus > you cannot unblock the netdevice rfkill until you unblock the > platform/BIOS device rfkill. > > Yes, this sucks. I tried to make my patch treat anything that wasn't specifically a phy as 'all'..but likely it could still use some work. I'll send it to the list for review/suggestions..in case you have the time. Is there any specific way to tell if an rfkill device is a platform device? For the platform rfkill blocking the netdevice rfkill: Is this something that must be done in software (ie, supplicant), or is that already handled by the kernel/drivers/hardware? Thanks, Ben -- Ben Greear <greearb@candelatech.com> Candela Technologies Inc http://www.candelatech.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: rfkill API 2011-02-03 18:58 ` Ben Greear @ 2011-02-10 18:21 ` Dan Williams 0 siblings, 0 replies; 5+ messages in thread From: Dan Williams @ 2011-02-10 18:21 UTC (permalink / raw) To: Ben Greear; +Cc: linux-wireless@vger.kernel.org On Thu, 2011-02-03 at 10:58 -0800, Ben Greear wrote: > On 02/03/2011 10:42 AM, Dan Williams wrote: > > On Tue, 2011-02-01 at 20:51 -0800, Ben Greear wrote: > >> On 02/01/2011 08:35 PM, Ben Greear wrote: > >>> Hello! > >>> > >>> I was looking at using one rfkill socket in wpa_supplicant, instead > >>> of one per vif. > >>> > >>> Current wpa_supplicant code seems to treat the API as if there is only > >>> as single rfkill object for the entire kernel. I would assume that > >>> instead different NICs could have different rfkill status. > >>> > >>> Is there any way to coorelate a netdevice (or devices) > >>> to the rfkill->idx in the > >>> > >>> struct rfkill_event { > >>> u32 idx; > >>> u8 type; > >>> u8 op; > >>> u8 soft; > >>> u8 hard; > >>> } STRUCT_PACKED; > >>> > >>> > >>> ? > >>> > >>> Thanks, > >>> Ben > >>> > >> > >> Err, nevermind..looks like you can grub around in sysfs and find the phy, > >> and from there, find the devices.... > > > > Remember about platform devices. An rfkill device is not always > > associated with a netdevice, and sometimes platform rfkill devices can > > block the netdevice rfkill. > > > > So, if you have a laptop with a BIOS rfkill switch, setting that rfkill > > switch "softblocked" will hardblock the netdevice rfkill device. Thus > > you cannot unblock the netdevice rfkill until you unblock the > > platform/BIOS device rfkill. > > > > Yes, this sucks. > > I tried to make my patch treat anything that wasn't specifically a phy > as 'all'..but likely it could still use some work. I'll send it to the > list for review/suggestions..in case you have the time. > > Is there any specific way to tell if an rfkill device is a platform > device? > > For the platform rfkill blocking the netdevice rfkill: Is this something > that must be done in software (ie, supplicant), or is that already handled > by the kernel/drivers/hardware? It's something usually done in hardware/BIOS. On my laptop (HP 2530p), the iwlagn phy killswitch will be hardblocked when the BIOS switch (a physical button) is flipped. The BIOS presumably tells the EC to toggle the 5350's rfkill GPIO or something. So when I hit the laptop killswitch, I get: hpwmi - softblocked iwlagn - hardblocked and no amount of "rfkill unblock" will make the iwlagn switch change. I must first unblock the hpwmi switch, which then magically unblocks the iwlagn one. Yay. This is the case with most of the platform devices I've seen from mainstream vendors. Dan ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-02-10 18:20 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-02-02 4:35 rfkill API Ben Greear 2011-02-02 4:51 ` Ben Greear 2011-02-03 18:42 ` Dan Williams 2011-02-03 18:58 ` Ben Greear 2011-02-10 18:21 ` Dan Williams
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).