2008-09-10 06:19:48 +00:00
|
|
|
#ifndef __NET_WIRELESS_REG_H
|
|
|
|
#define __NET_WIRELESS_REG_H
|
|
|
|
|
2009-01-30 17:26:42 +00:00
|
|
|
extern const struct ieee80211_regdomain *cfg80211_regdomain;
|
|
|
|
|
2008-09-15 09:10:52 +00:00
|
|
|
bool is_world_regdom(const char *alpha2);
|
|
|
|
bool reg_is_valid_request(const char *alpha2);
|
2008-09-10 06:19:48 +00:00
|
|
|
|
2009-02-21 05:04:30 +00:00
|
|
|
int regulatory_hint_user(const char *alpha2);
|
|
|
|
|
2008-11-12 22:22:02 +00:00
|
|
|
void reg_device_remove(struct wiphy *wiphy);
|
|
|
|
|
2008-09-10 06:19:48 +00:00
|
|
|
int regulatory_init(void);
|
|
|
|
void regulatory_exit(void);
|
|
|
|
|
2008-09-15 09:10:52 +00:00
|
|
|
int set_regdom(const struct ieee80211_regdomain *rd);
|
2008-09-10 06:19:48 +00:00
|
|
|
|
2008-10-21 07:42:38 +00:00
|
|
|
/**
|
|
|
|
* __regulatory_hint - hint to the wireless core a regulatory domain
|
2008-10-24 18:32:21 +00:00
|
|
|
* @wiphy: if the hint comes from country information from an AP, this
|
|
|
|
* is required to be set to the wiphy that received the information
|
2008-10-21 07:42:38 +00:00
|
|
|
* @alpha2: the ISO/IEC 3166 alpha2 being claimed the regulatory domain
|
2008-10-24 18:32:21 +00:00
|
|
|
* should be in.
|
2008-11-12 22:22:02 +00:00
|
|
|
* @country_ie_checksum: checksum of processed country IE, set this to 0
|
|
|
|
* if the hint did not come from a country IE
|
|
|
|
* @country_ie_env: the environment the IE told us we are in, %ENVIRON_*
|
2008-10-21 07:42:38 +00:00
|
|
|
*
|
|
|
|
* The Wireless subsystem can use this function to hint to the wireless core
|
2008-11-12 22:22:02 +00:00
|
|
|
* what it believes should be the current regulatory domain by giving it an
|
|
|
|
* ISO/IEC 3166 alpha2 country code it knows its regulatory domain should be
|
|
|
|
* in.
|
2008-10-21 07:42:38 +00:00
|
|
|
*
|
2008-10-24 18:32:21 +00:00
|
|
|
* Returns zero if all went fine, %-EALREADY if a regulatory domain had
|
|
|
|
* already been set or other standard error codes.
|
2008-10-21 07:42:38 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
extern int __regulatory_hint(struct wiphy *wiphy, enum reg_set_by set_by,
|
2008-11-12 22:22:02 +00:00
|
|
|
const char *alpha2, u32 country_ie_checksum,
|
|
|
|
enum environment_cap country_ie_env);
|
2008-10-21 07:42:38 +00:00
|
|
|
|
2008-09-10 06:19:48 +00:00
|
|
|
#endif /* __NET_WIRELESS_REG_H */
|