| .. | .. |
|---|
| 173 | 173 | #define ATH9K_NUM_QUEUES 10 |
|---|
| 174 | 174 | |
|---|
| 175 | 175 | #define MAX_RATE_POWER 63 |
|---|
| 176 | +#define MAX_COMBINED_POWER 254 /* 128 dBm, chosen to fit in u8 */ |
|---|
| 176 | 177 | #define AH_WAIT_TIMEOUT 100000 /* (us) */ |
|---|
| 177 | 178 | #define AH_TSF_WRITE_TIMEOUT 100 /* (us) */ |
|---|
| 178 | 179 | #define AH_TIME_QUANTUM 10 |
|---|
| .. | .. |
|---|
| 426 | 427 | TXIQCAL_DONE, |
|---|
| 427 | 428 | TXCLCAL_DONE, |
|---|
| 428 | 429 | SW_PKDET_DONE, |
|---|
| 430 | + LONGCAL_PENDING, |
|---|
| 429 | 431 | }; |
|---|
| 430 | 432 | |
|---|
| 431 | 433 | struct ath9k_hw_cal_data { |
|---|
| .. | .. |
|---|
| 833 | 835 | |
|---|
| 834 | 836 | /* Calibration */ |
|---|
| 835 | 837 | u32 supp_cals; |
|---|
| 838 | + unsigned long cal_start_time; |
|---|
| 836 | 839 | struct ath9k_cal_list iq_caldata; |
|---|
| 837 | 840 | struct ath9k_cal_list adcgain_caldata; |
|---|
| 838 | 841 | struct ath9k_cal_list adcdc_caldata; |
|---|