blob: 7b410c6858b08741a4bf5bcea49b458ebe5c4e79 [file] [log] [blame]
Sujith Manoharanf65c0822013-12-18 09:53:18 +05301/*
2 * Copyright (c) 2013 Qualcomm Atheros, Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef SPECTRAL_H
18#define SPECTRAL_H
19
Sven Eckelmann95752b72014-08-02 09:12:53 +030020#include "../spectral_common.h"
21
Sujith Manoharanf65c0822013-12-18 09:53:18 +053022/* enum spectral_mode:
23 *
24 * @SPECTRAL_DISABLED: spectral mode is disabled
25 * @SPECTRAL_BACKGROUND: hardware sends samples when it is not busy with
26 * something else.
27 * @SPECTRAL_MANUAL: spectral scan is enabled, triggering for samples
28 * is performed manually.
29 * @SPECTRAL_CHANSCAN: Like manual, but also triggered when changing channels
30 * during a channel scan.
31 */
32enum spectral_mode {
33 SPECTRAL_DISABLED = 0,
34 SPECTRAL_BACKGROUND,
35 SPECTRAL_MANUAL,
36 SPECTRAL_CHANSCAN,
37};
38
39#define SPECTRAL_SCAN_BITMASK 0x10
40/* Radar info packet format, used for DFS and spectral formats. */
41struct ath_radar_info {
42 u8 pulse_length_pri;
43 u8 pulse_length_ext;
44 u8 pulse_bw_info;
45} __packed;
46
47/* The HT20 spectral data has 4 bytes of additional information at it's end.
48 *
49 * [7:0]: all bins {max_magnitude[1:0], bitmap_weight[5:0]}
50 * [7:0]: all bins max_magnitude[9:2]
51 * [7:0]: all bins {max_index[5:0], max_magnitude[11:10]}
52 * [3:0]: max_exp (shift amount to size max bin to 8-bit unsigned)
53 */
54struct ath_ht20_mag_info {
55 u8 all_bins[3];
56 u8 max_exp;
57} __packed;
58
Sujith Manoharanf65c0822013-12-18 09:53:18 +053059/* WARNING: don't actually use this struct! MAC may vary the amount of
60 * data by -1/+2. This struct is for reference only.
61 */
62struct ath_ht20_fft_packet {
63 u8 data[SPECTRAL_HT20_NUM_BINS];
64 struct ath_ht20_mag_info mag_info;
65 struct ath_radar_info radar_info;
66} __packed;
67
68#define SPECTRAL_HT20_TOTAL_DATA_LEN (sizeof(struct ath_ht20_fft_packet))
69
70/* Dynamic 20/40 mode:
71 *
72 * [7:0]: lower bins {max_magnitude[1:0], bitmap_weight[5:0]}
73 * [7:0]: lower bins max_magnitude[9:2]
74 * [7:0]: lower bins {max_index[5:0], max_magnitude[11:10]}
75 * [7:0]: upper bins {max_magnitude[1:0], bitmap_weight[5:0]}
76 * [7:0]: upper bins max_magnitude[9:2]
77 * [7:0]: upper bins {max_index[5:0], max_magnitude[11:10]}
78 * [3:0]: max_exp (shift amount to size max bin to 8-bit unsigned)
79 */
80struct ath_ht20_40_mag_info {
81 u8 lower_bins[3];
82 u8 upper_bins[3];
83 u8 max_exp;
84} __packed;
85
Sujith Manoharanf65c0822013-12-18 09:53:18 +053086/* WARNING: don't actually use this struct! MAC may vary the amount of
87 * data. This struct is for reference only.
88 */
89struct ath_ht20_40_fft_packet {
90 u8 data[SPECTRAL_HT20_40_NUM_BINS];
91 struct ath_ht20_40_mag_info mag_info;
92 struct ath_radar_info radar_info;
93} __packed;
94
95
96#define SPECTRAL_HT20_40_TOTAL_DATA_LEN (sizeof(struct ath_ht20_40_fft_packet))
97
98/* grabs the max magnitude from the all/upper/lower bins */
99static inline u16 spectral_max_magnitude(u8 *bins)
100{
101 return (bins[0] & 0xc0) >> 6 |
102 (bins[1] & 0xff) << 2 |
103 (bins[2] & 0x03) << 10;
104}
105
106/* return the max magnitude from the all/upper/lower bins */
107static inline u8 spectral_max_index(u8 *bins)
108{
109 s8 m = (bins[2] & 0xfc) >> 2;
110
111 /* TODO: this still doesn't always report the right values ... */
112 if (m > 32)
113 m |= 0xe0;
114 else
115 m &= ~0xe0;
116
117 return m + 29;
118}
119
120/* return the bitmap weight from the all/upper/lower bins */
121static inline u8 spectral_bitmap_weight(u8 *bins)
122{
123 return bins[0] & 0x3f;
124}
125
Sujith Manoharanf65c0822013-12-18 09:53:18 +0530126void ath9k_spectral_init_debug(struct ath_softc *sc);
127void ath9k_spectral_deinit_debug(struct ath_softc *sc);
128
129void ath9k_spectral_scan_trigger(struct ieee80211_hw *hw);
130int ath9k_spectral_scan_config(struct ieee80211_hw *hw,
131 enum spectral_mode spectral_mode);
132
133#ifdef CONFIG_ATH9K_DEBUGFS
134int ath_process_fft(struct ath_softc *sc, struct ieee80211_hdr *hdr,
135 struct ath_rx_status *rs, u64 tsf);
136#else
137static inline int ath_process_fft(struct ath_softc *sc,
138 struct ieee80211_hdr *hdr,
139 struct ath_rx_status *rs, u64 tsf)
140{
141 return 0;
142}
143#endif /* CONFIG_ATH9K_DEBUGFS */
144
145#endif /* SPECTRAL_H */