diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-5000-hw.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-5000-hw.h | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-5000-hw.h b/drivers/net/wireless/iwlwifi/iwl-5000-hw.h index fa0644321e4f..49ede54bfad9 100644 --- a/drivers/net/wireless/iwlwifi/iwl-5000-hw.h +++ b/drivers/net/wireless/iwlwifi/iwl-5000-hw.h | |||
@@ -76,30 +76,31 @@ | |||
76 | /* EERPROM */ | 76 | /* EERPROM */ |
77 | #define IWL_5000_EEPROM_IMG_SIZE 2048 | 77 | #define IWL_5000_EEPROM_IMG_SIZE 2048 |
78 | 78 | ||
79 | |||
80 | #define IWL50_MAX_WIN_SIZE 64 | ||
81 | #define IWL50_QUEUE_SIZE 256 | ||
82 | #define IWL50_CMD_FIFO_NUM 7 | 79 | #define IWL50_CMD_FIFO_NUM 7 |
83 | #define IWL50_NUM_QUEUES 20 | 80 | #define IWL50_NUM_QUEUES 20 |
84 | #define IWL50_NUM_AMPDU_QUEUES 10 | 81 | #define IWL50_NUM_AMPDU_QUEUES 10 |
85 | #define IWL50_FIRST_AMPDU_QUEUE 10 | 82 | #define IWL50_FIRST_AMPDU_QUEUE 10 |
86 | 83 | ||
87 | #define IWL_sta_id_POS 12 | ||
88 | #define IWL_sta_id_LEN 4 | ||
89 | #define IWL_sta_id_SYM val | ||
90 | |||
91 | /* Fixed (non-configurable) rx data from phy */ | 84 | /* Fixed (non-configurable) rx data from phy */ |
92 | 85 | ||
93 | /* Base physical address of iwl5000_shared is provided to SCD_DRAM_BASE_ADDR | 86 | /** |
94 | * and &iwl5000_shared.val0 is provided to FH_RSCSR_CHNL0_STTS_WPTR_REG */ | 87 | * struct iwl5000_schedq_bc_tbl scheduler byte count table |
95 | struct iwl5000_sched_queue_byte_cnt_tbl { | 88 | * base physical address of iwl5000_shared |
96 | struct iwl4965_queue_byte_cnt_entry tfd_offset[IWL50_QUEUE_SIZE + | 89 | * is provided to SCD_DRAM_BASE_ADDR |
97 | IWL50_MAX_WIN_SIZE]; | 90 | * @tfd_offset 0-12 - tx command byte count |
91 | * 12-16 - station index | ||
92 | */ | ||
93 | struct iwl5000_schedq_bc_tbl { | ||
94 | __le16 tfd_offset[TFD_QUEUE_BC_SIZE]; | ||
98 | } __attribute__ ((packed)); | 95 | } __attribute__ ((packed)); |
99 | 96 | ||
97 | /** | ||
98 | * struct iwl5000_shared | ||
99 | * @rb_closed | ||
100 | * address is provided to FH_RSCSR_CHNL0_STTS_WPTR_REG | ||
101 | */ | ||
100 | struct iwl5000_shared { | 102 | struct iwl5000_shared { |
101 | struct iwl5000_sched_queue_byte_cnt_tbl | 103 | struct iwl5000_schedq_bc_tbl queues_bc_tbls[IWL50_NUM_QUEUES]; |
102 | queues_byte_cnt_tbls[IWL50_NUM_QUEUES]; | ||
103 | __le32 rb_closed; | 104 | __le32 rb_closed; |
104 | 105 | ||
105 | /* __le32 rb_closed_stts_rb_num:12; */ | 106 | /* __le32 rb_closed_stts_rb_num:12; */ |