2012-04-03 19:15:49 +04:00
/*
* Copyright ( c ) 2012 Neratec Solutions AG
*
* 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 DFS_PATTERN_DETECTOR_H
# define DFS_PATTERN_DETECTOR_H
# include <linux/types.h>
# include <linux/list.h>
# include <linux/nl80211.h>
2015-09-17 14:29:08 +03:00
/* tolerated deviation of radar time stamp in usecs on both sides
* TODO : this might need to be HW - dependent
*/
# define PRI_TOLERANCE 16
2013-10-14 13:06:04 +04:00
/**
* struct ath_dfs_pool_stats - DFS Statistics for global pools
*/
struct ath_dfs_pool_stats {
u32 pool_reference ;
u32 pulse_allocated ;
u32 pulse_alloc_error ;
u32 pulse_used ;
u32 pseq_allocated ;
u32 pseq_alloc_error ;
u32 pseq_used ;
} ;
2012-04-03 19:15:49 +04:00
/**
* struct pulse_event - describing pulses reported by PHY
* @ ts : pulse time stamp in us
* @ freq : channel frequency in MHz
* @ width : pulse duration in us
* @ rssi : rssi of radar event
2015-03-04 16:43:45 +03:00
* @ chirp : chirp detected in pulse
2012-04-03 19:15:49 +04:00
*/
struct pulse_event {
u64 ts ;
u16 freq ;
u8 width ;
u8 rssi ;
2015-03-04 16:43:45 +03:00
bool chirp ;
2012-04-03 19:15:49 +04:00
} ;
/**
* struct radar_detector_specs - detector specs for a radar pattern type
* @ type_id : pattern type , as defined by regulatory
* @ width_min : minimum radar pulse width in [ us ]
* @ width_max : maximum radar pulse width in [ us ]
* @ pri_min : minimum pulse repetition interval in [ us ] ( including tolerance )
* @ pri_max : minimum pri in [ us ] ( including tolerance )
* @ num_pri : maximum number of different pri for this type
* @ ppb : pulses per bursts for this type
* @ ppb_thresh : number of pulses required to trigger detection
* @ max_pri_tolerance : pulse time stamp tolerance on both sides [ us ]
2015-03-04 16:43:45 +03:00
* @ chirp : chirp required for the radar pattern
2012-04-03 19:15:49 +04:00
*/
struct radar_detector_specs {
u8 type_id ;
u8 width_min ;
u8 width_max ;
u16 pri_min ;
u16 pri_max ;
u8 num_pri ;
u8 ppb ;
u8 ppb_thresh ;
u8 max_pri_tolerance ;
2015-03-04 16:43:45 +03:00
bool chirp ;
2012-04-03 19:15:49 +04:00
} ;
/**
* struct dfs_pattern_detector - DFS pattern detector
* @ exit ( ) : destructor
2012-10-31 15:21:56 +04:00
* @ set_dfs_domain ( ) : set DFS domain , resets detector lines upon domain changes
2012-04-03 19:15:49 +04:00
* @ add_pulse ( ) : add radar pulse to detector , returns true on detection
* @ region : active DFS region , NL80211_DFS_UNSET until set
* @ num_radar_types : number of different radar types
* @ last_pulse_ts : time stamp of last valid pulse in usecs
* @ radar_detector_specs : array of radar detection specs
* @ channel_detectors : list connecting channel_detector elements
*/
struct dfs_pattern_detector {
void ( * exit ) ( struct dfs_pattern_detector * dpd ) ;
2012-10-31 15:21:56 +04:00
bool ( * set_dfs_domain ) ( struct dfs_pattern_detector * dpd ,
2012-04-03 19:15:49 +04:00
enum nl80211_dfs_regions region ) ;
bool ( * add_pulse ) ( struct dfs_pattern_detector * dpd ,
struct pulse_event * pe ) ;
2013-10-14 13:06:04 +04:00
struct ath_dfs_pool_stats ( * get_stats ) ( struct dfs_pattern_detector * dpd ) ;
2012-04-03 19:15:49 +04:00
enum nl80211_dfs_regions region ;
u8 num_radar_types ;
u64 last_pulse_ts ;
2013-04-15 13:29:06 +04:00
/* needed for ath_dbg() */
2013-10-14 13:06:03 +04:00
struct ath_common * common ;
2012-04-03 19:15:49 +04:00
const struct radar_detector_specs * radar_spec ;
struct list_head channel_detectors ;
} ;
/**
* dfs_pattern_detector_init ( ) - constructor for pattern detector class
* @ param region : DFS domain to be used , can be NL80211_DFS_UNSET at creation
* @ return instance pointer on success , NULL otherwise
*/
extern struct dfs_pattern_detector *
2013-10-14 13:06:03 +04:00
dfs_pattern_detector_init ( struct ath_common * common ,
enum nl80211_dfs_regions region ) ;
2012-04-03 19:15:49 +04:00
# endif /* DFS_PATTERN_DETECTOR_H */