1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#ifndef __ACX_H__
26#define __ACX_H__
27
28#include "wl12xx.h"
29#include "cmd.h"
30
31
32
33
34
35
36
37#define WL1271_ACX_INTR_WATCHDOG BIT(0)
38
39#define WL1271_ACX_INTR_INIT_COMPLETE BIT(1)
40
41#define WL1271_ACX_INTR_EVENT_A BIT(2)
42
43#define WL1271_ACX_INTR_EVENT_B BIT(3)
44
45#define WL1271_ACX_INTR_CMD_COMPLETE BIT(4)
46
47#define WL1271_ACX_INTR_HW_AVAILABLE BIT(5)
48
49#define WL1271_ACX_INTR_DATA BIT(6)
50
51#define WL1271_ACX_INTR_TRACE_A BIT(7)
52
53#define WL1271_ACX_INTR_TRACE_B BIT(8)
54
55#define WL1271_ACX_INTR_ALL 0xFFFFFFFF
56#define WL1271_ACX_ALL_EVENTS_VECTOR (WL1271_ACX_INTR_WATCHDOG | \
57 WL1271_ACX_INTR_INIT_COMPLETE | \
58 WL1271_ACX_INTR_EVENT_A | \
59 WL1271_ACX_INTR_EVENT_B | \
60 WL1271_ACX_INTR_CMD_COMPLETE | \
61 WL1271_ACX_INTR_HW_AVAILABLE | \
62 WL1271_ACX_INTR_DATA)
63
64#define WL1271_INTR_MASK (WL1271_ACX_INTR_WATCHDOG | \
65 WL1271_ACX_INTR_EVENT_A | \
66 WL1271_ACX_INTR_EVENT_B | \
67 WL1271_ACX_INTR_HW_AVAILABLE | \
68 WL1271_ACX_INTR_DATA)
69
70
71struct acx_header {
72 struct wl1271_cmd_header cmd;
73
74
75 __le16 id;
76
77
78 __le16 len;
79} __packed;
80
81struct acx_error_counter {
82 struct acx_header header;
83
84
85
86
87 __le32 PLCP_error;
88
89
90
91
92 __le32 FCS_error;
93
94
95
96
97 __le32 valid_frame;
98
99
100
101 __le32 seq_num_miss;
102} __packed;
103
104enum wl12xx_role {
105 WL1271_ROLE_STA = 0,
106 WL1271_ROLE_IBSS,
107 WL1271_ROLE_AP,
108 WL1271_ROLE_DEVICE,
109 WL1271_ROLE_P2P_CL,
110 WL1271_ROLE_P2P_GO,
111
112 WL12XX_INVALID_ROLE_TYPE = 0xff
113};
114
115enum wl1271_psm_mode {
116
117 WL1271_PSM_CAM = 0,
118
119
120 WL1271_PSM_PS = 1,
121
122
123 WL1271_PSM_ELP = 2,
124};
125
126struct acx_sleep_auth {
127 struct acx_header header;
128
129
130
131
132
133 u8 sleep_auth;
134 u8 padding[3];
135} __packed;
136
137enum {
138 HOSTIF_PCI_MASTER_HOST_INDIRECT,
139 HOSTIF_PCI_MASTER_HOST_DIRECT,
140 HOSTIF_SLAVE,
141 HOSTIF_PKT_RING,
142 HOSTIF_DONTCARE = 0xFF
143};
144
145#define DEFAULT_UCAST_PRIORITY 0
146#define DEFAULT_RX_Q_PRIORITY 0
147#define DEFAULT_RXQ_PRIORITY 0
148#define DEFAULT_RXQ_TYPE 0x07
149#define TRACE_BUFFER_MAX_SIZE 256
150
151#define DP_RX_PACKET_RING_CHUNK_SIZE 1600
152#define DP_TX_PACKET_RING_CHUNK_SIZE 1600
153#define DP_RX_PACKET_RING_CHUNK_NUM 2
154#define DP_TX_PACKET_RING_CHUNK_NUM 2
155#define DP_TX_COMPLETE_TIME_OUT 20
156
157#define TX_MSDU_LIFETIME_MIN 0
158#define TX_MSDU_LIFETIME_MAX 3000
159#define TX_MSDU_LIFETIME_DEF 512
160#define RX_MSDU_LIFETIME_MIN 0
161#define RX_MSDU_LIFETIME_MAX 0xFFFFFFFF
162#define RX_MSDU_LIFETIME_DEF 512000
163
164struct acx_rx_msdu_lifetime {
165 struct acx_header header;
166
167
168
169
170
171 __le32 lifetime;
172} __packed;
173
174enum acx_slot_type {
175 SLOT_TIME_LONG = 0,
176 SLOT_TIME_SHORT = 1,
177 DEFAULT_SLOT_TIME = SLOT_TIME_SHORT,
178 MAX_SLOT_TIMES = 0xFF
179};
180
181#define STATION_WONE_INDEX 0
182
183struct acx_slot {
184 struct acx_header header;
185
186 u8 role_id;
187 u8 wone_index;
188 u8 slot_time;
189 u8 reserved[5];
190} __packed;
191
192
193#define ACX_MC_ADDRESS_GROUP_MAX (8)
194#define ADDRESS_GROUP_MAX_LEN (ETH_ALEN * ACX_MC_ADDRESS_GROUP_MAX)
195
196struct acx_dot11_grp_addr_tbl {
197 struct acx_header header;
198
199 u8 role_id;
200 u8 enabled;
201 u8 num_groups;
202 u8 pad[1];
203 u8 mac_table[ADDRESS_GROUP_MAX_LEN];
204} __packed;
205
206struct acx_rx_timeout {
207 struct acx_header header;
208
209 u8 role_id;
210 u8 reserved;
211 __le16 ps_poll_timeout;
212 __le16 upsd_timeout;
213 u8 padding[2];
214} __packed;
215
216struct acx_rts_threshold {
217 struct acx_header header;
218
219 u8 role_id;
220 u8 reserved;
221 __le16 threshold;
222} __packed;
223
224struct acx_beacon_filter_option {
225 struct acx_header header;
226
227 u8 role_id;
228 u8 enable;
229
230
231
232
233
234
235
236 u8 max_num_beacons;
237 u8 pad[1];
238} __packed;
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264#define BEACON_FILTER_TABLE_MAX_IE_NUM (32)
265#define BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM (6)
266#define BEACON_FILTER_TABLE_IE_ENTRY_SIZE (2)
267#define BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE (6)
268#define BEACON_FILTER_TABLE_MAX_SIZE ((BEACON_FILTER_TABLE_MAX_IE_NUM * \
269 BEACON_FILTER_TABLE_IE_ENTRY_SIZE) + \
270 (BEACON_FILTER_TABLE_MAX_VENDOR_SPECIFIC_IE_NUM * \
271 BEACON_FILTER_TABLE_EXTRA_VENDOR_SPECIFIC_IE_SIZE))
272
273struct acx_beacon_filter_ie_table {
274 struct acx_header header;
275
276 u8 role_id;
277 u8 num_ie;
278 u8 pad[2];
279 u8 table[BEACON_FILTER_TABLE_MAX_SIZE];
280} __packed;
281
282struct acx_conn_monit_params {
283 struct acx_header header;
284
285 u8 role_id;
286 u8 padding[3];
287 __le32 synch_fail_thold;
288 __le32 bss_lose_timeout;
289} __packed;
290
291struct acx_bt_wlan_coex {
292 struct acx_header header;
293
294 u8 enable;
295 u8 pad[3];
296} __packed;
297
298struct acx_bt_wlan_coex_param {
299 struct acx_header header;
300
301 __le32 params[CONF_SG_PARAMS_MAX];
302 u8 param_idx;
303 u8 padding[3];
304} __packed;
305
306struct acx_dco_itrim_params {
307 struct acx_header header;
308
309 u8 enable;
310 u8 padding[3];
311 __le32 timeout;
312} __packed;
313
314struct acx_energy_detection {
315 struct acx_header header;
316
317
318 __le16 rx_cca_threshold;
319 u8 tx_energy_detection;
320 u8 pad;
321} __packed;
322
323struct acx_beacon_broadcast {
324 struct acx_header header;
325
326 u8 role_id;
327
328 u8 rx_broadcast_in_ps;
329
330 __le16 beacon_rx_timeout;
331 __le16 broadcast_timeout;
332
333
334 u8 ps_poll_threshold;
335 u8 pad[1];
336} __packed;
337
338struct acx_event_mask {
339 struct acx_header header;
340
341 __le32 event_mask;
342 __le32 high_event_mask;
343} __packed;
344
345#define SCAN_PASSIVE BIT(0)
346#define SCAN_5GHZ_BAND BIT(1)
347#define SCAN_TRIGGERED BIT(2)
348#define SCAN_PRIORITY_HIGH BIT(3)
349
350
351#define DF_ENCRYPTION_DISABLE 0x01
352#define DF_SNIFF_MODE_ENABLE 0x80
353
354struct acx_feature_config {
355 struct acx_header header;
356
357 u8 role_id;
358 u8 padding[3];
359 __le32 options;
360 __le32 data_flow_options;
361} __packed;
362
363struct acx_current_tx_power {
364 struct acx_header header;
365
366 u8 role_id;
367 u8 current_tx_power;
368 u8 padding[2];
369} __packed;
370
371struct acx_wake_up_condition {
372 struct acx_header header;
373
374 u8 role_id;
375 u8 wake_up_event;
376 u8 listen_interval;
377 u8 pad[1];
378} __packed;
379
380struct acx_aid {
381 struct acx_header header;
382
383
384
385
386 u8 role_id;
387 u8 reserved;
388 __le16 aid;
389} __packed;
390
391enum acx_preamble_type {
392 ACX_PREAMBLE_LONG = 0,
393 ACX_PREAMBLE_SHORT = 1
394};
395
396struct acx_preamble {
397 struct acx_header header;
398
399
400
401
402
403 u8 role_id;
404 u8 preamble;
405 u8 padding[2];
406} __packed;
407
408enum acx_ctsprotect_type {
409 CTSPROTECT_DISABLE = 0,
410 CTSPROTECT_ENABLE = 1
411};
412
413struct acx_ctsprotect {
414 struct acx_header header;
415 u8 role_id;
416 u8 ctsprotect;
417 u8 padding[2];
418} __packed;
419
420struct acx_tx_statistics {
421 __le32 internal_desc_overflow;
422} __packed;
423
424struct acx_rx_statistics {
425 __le32 out_of_mem;
426 __le32 hdr_overflow;
427 __le32 hw_stuck;
428 __le32 dropped;
429 __le32 fcs_err;
430 __le32 xfr_hint_trig;
431 __le32 path_reset;
432 __le32 reset_counter;
433} __packed;
434
435struct acx_dma_statistics {
436 __le32 rx_requested;
437 __le32 rx_errors;
438 __le32 tx_requested;
439 __le32 tx_errors;
440} __packed;
441
442struct acx_isr_statistics {
443
444 __le32 cmd_cmplt;
445
446
447 __le32 fiqs;
448
449
450 __le32 rx_headers;
451
452
453 __le32 rx_completes;
454
455
456 __le32 rx_mem_overflow;
457
458
459 __le32 rx_rdys;
460
461
462 __le32 irqs;
463
464
465 __le32 tx_procs;
466
467
468 __le32 decrypt_done;
469
470
471 __le32 dma0_done;
472
473
474 __le32 dma1_done;
475
476
477 __le32 tx_exch_complete;
478
479
480 __le32 commands;
481
482
483 __le32 rx_procs;
484
485
486 __le32 hw_pm_mode_changes;
487
488
489 __le32 host_acknowledges;
490
491
492 __le32 pci_pm;
493
494
495 __le32 wakeups;
496
497
498 __le32 low_rssi;
499} __packed;
500
501struct acx_wep_statistics {
502
503 __le32 addr_key_count;
504
505
506 __le32 default_key_count;
507
508 __le32 reserved;
509
510
511 __le32 key_not_found;
512
513
514 __le32 decrypt_fail;
515
516
517 __le32 packets;
518
519
520 __le32 interrupt;
521} __packed;
522
523#define ACX_MISSED_BEACONS_SPREAD 10
524
525struct acx_pwr_statistics {
526
527 __le32 ps_enter;
528
529
530 __le32 elp_enter;
531
532
533 __le32 missing_bcns;
534
535
536 __le32 wake_on_host;
537
538
539 __le32 wake_on_timer_exp;
540
541
542 __le32 tx_with_ps;
543
544
545 __le32 tx_without_ps;
546
547
548 __le32 rcvd_beacons;
549
550
551 __le32 power_save_off;
552
553
554 __le16 enable_ps;
555
556
557
558
559
560 __le16 disable_ps;
561
562
563
564
565
566 __le32 fix_tsf_ps;
567
568
569
570
571
572
573
574
575
576
577 __le32 cont_miss_bcns_spread[ACX_MISSED_BEACONS_SPREAD];
578
579
580 __le32 rcvd_awake_beacons;
581} __packed;
582
583struct acx_mic_statistics {
584 __le32 rx_pkts;
585 __le32 calc_failure;
586} __packed;
587
588struct acx_aes_statistics {
589 __le32 encrypt_fail;
590 __le32 decrypt_fail;
591 __le32 encrypt_packets;
592 __le32 decrypt_packets;
593 __le32 encrypt_interrupt;
594 __le32 decrypt_interrupt;
595} __packed;
596
597struct acx_event_statistics {
598 __le32 heart_beat;
599 __le32 calibration;
600 __le32 rx_mismatch;
601 __le32 rx_mem_empty;
602 __le32 rx_pool;
603 __le32 oom_late;
604 __le32 phy_transmit_error;
605 __le32 tx_stuck;
606} __packed;
607
608struct acx_ps_statistics {
609 __le32 pspoll_timeouts;
610 __le32 upsd_timeouts;
611 __le32 upsd_max_sptime;
612 __le32 upsd_max_apturn;
613 __le32 pspoll_max_apturn;
614 __le32 pspoll_utilization;
615 __le32 upsd_utilization;
616} __packed;
617
618struct acx_rxpipe_statistics {
619 __le32 rx_prep_beacon_drop;
620 __le32 descr_host_int_trig_rx_data;
621 __le32 beacon_buffer_thres_host_int_trig_rx_data;
622 __le32 missed_beacon_host_int_trig_rx_data;
623 __le32 tx_xfr_host_int_trig_rx_data;
624} __packed;
625
626struct acx_statistics {
627 struct acx_header header;
628
629 struct acx_tx_statistics tx;
630 struct acx_rx_statistics rx;
631 struct acx_dma_statistics dma;
632 struct acx_isr_statistics isr;
633 struct acx_wep_statistics wep;
634 struct acx_pwr_statistics pwr;
635 struct acx_aes_statistics aes;
636 struct acx_mic_statistics mic;
637 struct acx_event_statistics event;
638 struct acx_ps_statistics ps;
639 struct acx_rxpipe_statistics rxpipe;
640} __packed;
641
642struct acx_rate_class {
643 __le32 enabled_rates;
644 u8 short_retry_limit;
645 u8 long_retry_limit;
646 u8 aflags;
647 u8 reserved;
648};
649
650struct acx_rate_policy {
651 struct acx_header header;
652
653 __le32 rate_policy_idx;
654 struct acx_rate_class rate_policy;
655} __packed;
656
657struct acx_ac_cfg {
658 struct acx_header header;
659 u8 role_id;
660 u8 ac;
661 u8 aifsn;
662 u8 cw_min;
663 __le16 cw_max;
664 __le16 tx_op_limit;
665} __packed;
666
667struct acx_tid_config {
668 struct acx_header header;
669 u8 role_id;
670 u8 queue_id;
671 u8 channel_type;
672 u8 tsid;
673 u8 ps_scheme;
674 u8 ack_policy;
675 u8 padding[2];
676 __le32 apsd_conf[2];
677} __packed;
678
679struct acx_frag_threshold {
680 struct acx_header header;
681 __le16 frag_threshold;
682 u8 padding[2];
683} __packed;
684
685struct acx_tx_config_options {
686 struct acx_header header;
687 __le16 tx_compl_timeout;
688 __le16 tx_compl_threshold;
689} __packed;
690
691struct wl12xx_acx_config_memory {
692 struct acx_header header;
693
694 u8 rx_mem_block_num;
695 u8 tx_min_mem_block_num;
696 u8 num_stations;
697 u8 num_ssid_profiles;
698 __le32 total_tx_descriptors;
699 u8 dyn_mem_enable;
700 u8 tx_free_req;
701 u8 rx_free_req;
702 u8 tx_min;
703 u8 fwlog_blocks;
704 u8 padding[3];
705} __packed;
706
707struct wl1271_acx_mem_map {
708 struct acx_header header;
709
710 __le32 code_start;
711 __le32 code_end;
712
713 __le32 wep_defkey_start;
714 __le32 wep_defkey_end;
715
716 __le32 sta_table_start;
717 __le32 sta_table_end;
718
719 __le32 packet_template_start;
720 __le32 packet_template_end;
721
722
723 __le32 tx_result;
724 __le32 tx_result_queue_start;
725
726 __le32 queue_memory_start;
727 __le32 queue_memory_end;
728
729 __le32 packet_memory_pool_start;
730 __le32 packet_memory_pool_end;
731
732 __le32 debug_buffer1_start;
733 __le32 debug_buffer1_end;
734
735 __le32 debug_buffer2_start;
736 __le32 debug_buffer2_end;
737
738
739 __le32 num_tx_mem_blocks;
740
741
742 __le32 num_rx_mem_blocks;
743
744
745 u8 *tx_cbuf;
746 u8 *rx_cbuf;
747 __le32 rx_ctrl;
748 __le32 tx_ctrl;
749} __packed;
750
751struct wl1271_acx_rx_config_opt {
752 struct acx_header header;
753
754 __le16 mblk_threshold;
755 __le16 threshold;
756 __le16 timeout;
757 u8 queue_type;
758 u8 reserved;
759} __packed;
760
761
762struct wl1271_acx_bet_enable {
763 struct acx_header header;
764
765 u8 role_id;
766 u8 enable;
767 u8 max_consecutive;
768 u8 padding[1];
769} __packed;
770
771#define ACX_IPV4_VERSION 4
772#define ACX_IPV6_VERSION 6
773#define ACX_IPV4_ADDR_SIZE 4
774
775
776#define ACX_ARP_FILTER_ARP_FILTERING BIT(0)
777#define ACX_ARP_FILTER_AUTO_ARP BIT(1)
778
779struct wl1271_acx_arp_filter {
780 struct acx_header header;
781 u8 role_id;
782 u8 version;
783 u8 enable;
784 u8 padding[1];
785 u8 address[16];
786
787
788
789} __packed;
790
791struct wl1271_acx_pm_config {
792 struct acx_header header;
793
794 __le32 host_clk_settling_time;
795 u8 host_fast_wakeup_support;
796 u8 padding[3];
797} __packed;
798
799struct wl1271_acx_keep_alive_mode {
800 struct acx_header header;
801
802 u8 role_id;
803 u8 enabled;
804 u8 padding[2];
805} __packed;
806
807enum {
808 ACX_KEEP_ALIVE_NO_TX = 0,
809 ACX_KEEP_ALIVE_PERIOD_ONLY
810};
811
812enum {
813 ACX_KEEP_ALIVE_TPL_INVALID = 0,
814 ACX_KEEP_ALIVE_TPL_VALID
815};
816
817struct wl1271_acx_keep_alive_config {
818 struct acx_header header;
819
820 u8 role_id;
821 u8 index;
822 u8 tpl_validation;
823 u8 trigger;
824 __le32 period;
825} __packed;
826
827#define HOST_IF_CFG_RX_FIFO_ENABLE BIT(0)
828#define HOST_IF_CFG_TX_EXTRA_BLKS_SWAP BIT(1)
829#define HOST_IF_CFG_TX_PAD_TO_SDIO_BLK BIT(3)
830
831struct wl1271_acx_host_config_bitmap {
832 struct acx_header header;
833
834 __le32 host_cfg_bitmap;
835} __packed;
836
837enum {
838 WL1271_ACX_TRIG_TYPE_LEVEL = 0,
839 WL1271_ACX_TRIG_TYPE_EDGE,
840};
841
842enum {
843 WL1271_ACX_TRIG_DIR_LOW = 0,
844 WL1271_ACX_TRIG_DIR_HIGH,
845 WL1271_ACX_TRIG_DIR_BIDIR,
846};
847
848enum {
849 WL1271_ACX_TRIG_ENABLE = 1,
850 WL1271_ACX_TRIG_DISABLE,
851};
852
853enum {
854 WL1271_ACX_TRIG_METRIC_RSSI_BEACON = 0,
855 WL1271_ACX_TRIG_METRIC_RSSI_DATA,
856 WL1271_ACX_TRIG_METRIC_SNR_BEACON,
857 WL1271_ACX_TRIG_METRIC_SNR_DATA,
858};
859
860enum {
861 WL1271_ACX_TRIG_IDX_RSSI = 0,
862 WL1271_ACX_TRIG_COUNT = 8,
863};
864
865struct wl1271_acx_rssi_snr_trigger {
866 struct acx_header header;
867
868 u8 role_id;
869 u8 metric;
870 u8 type;
871 u8 dir;
872 __le16 threshold;
873 __le16 pacing;
874 u8 hysteresis;
875 u8 index;
876 u8 enable;
877 u8 padding[1];
878};
879
880struct wl1271_acx_rssi_snr_avg_weights {
881 struct acx_header header;
882
883 u8 role_id;
884 u8 padding[3];
885 u8 rssi_beacon;
886 u8 rssi_data;
887 u8 snr_beacon;
888 u8 snr_data;
889};
890
891
892
893#define WL12XX_HT_CAP_HT_OPERATION BIT(16)
894
895
896
897
898
899
900struct wl1271_acx_ht_capabilities {
901 struct acx_header header;
902
903
904 __le32 ht_capabilites;
905
906
907 u8 hlid;
908
909
910
911
912
913 u8 ampdu_max_length;
914
915
916 u8 ampdu_min_spacing;
917
918 u8 padding;
919} __packed;
920
921
922
923
924
925struct wl1271_acx_ht_information {
926 struct acx_header header;
927
928 u8 role_id;
929
930
931 u8 rifs_mode;
932
933
934 u8 ht_protection;
935
936
937 u8 gf_protection;
938
939
940 u8 ht_tx_burst_limit;
941
942
943
944
945
946
947
948
949 u8 dual_cts_protection;
950
951 u8 padding[2];
952} __packed;
953
954#define RX_BA_MAX_SESSIONS 2
955
956struct wl1271_acx_ba_initiator_policy {
957 struct acx_header header;
958
959
960 u8 role_id;
961
962
963
964
965
966 u8 tid_bitmap;
967
968
969 u8 win_size;
970
971 u8 padding1[1];
972
973
974 u16 inactivity_timeout;
975
976 u8 padding[2];
977} __packed;
978
979struct wl1271_acx_ba_receiver_setup {
980 struct acx_header header;
981
982
983 u8 hlid;
984
985 u8 tid;
986
987 u8 enable;
988
989
990 u8 win_size;
991
992
993 u16 ssn;
994
995 u8 padding[2];
996} __packed;
997
998struct wl1271_acx_fw_tsf_information {
999 struct acx_header header;
1000
1001 __le32 current_tsf_high;
1002 __le32 current_tsf_low;
1003 __le32 last_bttt_high;
1004 __le32 last_tbtt_low;
1005 u8 last_dtim_count;
1006 u8 padding[3];
1007} __packed;
1008
1009struct wl1271_acx_ps_rx_streaming {
1010 struct acx_header header;
1011
1012 u8 role_id;
1013 u8 tid;
1014 u8 enable;
1015
1016
1017 u8 period;
1018
1019
1020 u8 timeout;
1021 u8 padding[3];
1022} __packed;
1023
1024struct wl1271_acx_ap_max_tx_retry {
1025 struct acx_header header;
1026
1027 u8 role_id;
1028 u8 padding_1;
1029
1030
1031
1032
1033
1034 __le16 max_tx_retry;
1035} __packed;
1036
1037struct wl1271_acx_config_ps {
1038 struct acx_header header;
1039
1040 u8 exit_retries;
1041 u8 enter_retries;
1042 u8 padding[2];
1043 __le32 null_data_rate;
1044} __packed;
1045
1046struct wl1271_acx_inconnection_sta {
1047 struct acx_header header;
1048
1049 u8 addr[ETH_ALEN];
1050 u8 padding1[2];
1051} __packed;
1052
1053
1054
1055
1056
1057struct wl1271_acx_fm_coex {
1058 struct acx_header header;
1059
1060 u8 enable;
1061
1062
1063
1064
1065 u8 swallow_period;
1066
1067
1068
1069
1070 u8 n_divider_fref_set_1;
1071
1072
1073
1074
1075 u8 n_divider_fref_set_2;
1076
1077
1078
1079
1080 __le16 m_divider_fref_set_1;
1081
1082
1083
1084
1085 __le16 m_divider_fref_set_2;
1086
1087
1088
1089
1090 __le32 coex_pll_stabilization_time;
1091
1092
1093
1094
1095 __le16 ldo_stabilization_time;
1096
1097
1098
1099
1100
1101
1102
1103
1104 u8 fm_disturbed_band_margin;
1105
1106
1107
1108
1109 u8 swallow_clk_diff;
1110} __packed;
1111
1112#define ACX_RATE_MGMT_ALL_PARAMS 0xff
1113struct wl12xx_acx_set_rate_mgmt_params {
1114 struct acx_header header;
1115
1116 u8 index;
1117 u8 padding1;
1118 __le16 rate_retry_score;
1119 __le16 per_add;
1120 __le16 per_th1;
1121 __le16 per_th2;
1122 __le16 max_per;
1123 u8 inverse_curiosity_factor;
1124 u8 tx_fail_low_th;
1125 u8 tx_fail_high_th;
1126 u8 per_alpha_shift;
1127 u8 per_add_shift;
1128 u8 per_beta1_shift;
1129 u8 per_beta2_shift;
1130 u8 rate_check_up;
1131 u8 rate_check_down;
1132 u8 rate_retry_policy[ACX_RATE_MGMT_NUM_OF_RATES];
1133 u8 padding2[2];
1134} __packed;
1135
1136struct wl12xx_acx_config_hangover {
1137 struct acx_header header;
1138
1139 __le32 recover_time;
1140 u8 hangover_period;
1141 u8 dynamic_mode;
1142 u8 early_termination_mode;
1143 u8 max_period;
1144 u8 min_period;
1145 u8 increase_delta;
1146 u8 decrease_delta;
1147 u8 quiet_time;
1148 u8 increase_time;
1149 u8 window_size;
1150 u8 padding[2];
1151} __packed;
1152
1153enum {
1154 ACX_WAKE_UP_CONDITIONS = 0x0002,
1155 ACX_MEM_CFG = 0x0003,
1156 ACX_SLOT = 0x0004,
1157 ACX_AC_CFG = 0x0007,
1158 ACX_MEM_MAP = 0x0008,
1159 ACX_AID = 0x000A,
1160 ACX_MEDIUM_USAGE = 0x000F,
1161 ACX_TX_QUEUE_CFG = 0x0011,
1162 ACX_STATISTICS = 0x0013,
1163 ACX_PWR_CONSUMPTION_STATISTICS = 0x0014,
1164 ACX_FEATURE_CFG = 0x0015,
1165 ACX_TID_CFG = 0x001A,
1166 ACX_PS_RX_STREAMING = 0x001B,
1167 ACX_BEACON_FILTER_OPT = 0x001F,
1168 ACX_NOISE_HIST = 0x0021,
1169 ACX_HDK_VERSION = 0x0022,
1170 ACX_PD_THRESHOLD = 0x0023,
1171 ACX_TX_CONFIG_OPT = 0x0024,
1172 ACX_CCA_THRESHOLD = 0x0025,
1173 ACX_EVENT_MBOX_MASK = 0x0026,
1174 ACX_CONN_MONIT_PARAMS = 0x002D,
1175 ACX_BCN_DTIM_OPTIONS = 0x0031,
1176 ACX_SG_ENABLE = 0x0032,
1177 ACX_SG_CFG = 0x0033,
1178 ACX_FM_COEX_CFG = 0x0034,
1179 ACX_BEACON_FILTER_TABLE = 0x0038,
1180 ACX_ARP_IP_FILTER = 0x0039,
1181 ACX_ROAMING_STATISTICS_TBL = 0x003B,
1182 ACX_RATE_POLICY = 0x003D,
1183 ACX_CTS_PROTECTION = 0x003E,
1184 ACX_SLEEP_AUTH = 0x003F,
1185 ACX_PREAMBLE_TYPE = 0x0040,
1186 ACX_ERROR_CNT = 0x0041,
1187 ACX_IBSS_FILTER = 0x0044,
1188 ACX_SERVICE_PERIOD_TIMEOUT = 0x0045,
1189 ACX_TSF_INFO = 0x0046,
1190 ACX_CONFIG_PS_WMM = 0x0049,
1191 ACX_ENABLE_RX_DATA_FILTER = 0x004A,
1192 ACX_SET_RX_DATA_FILTER = 0x004B,
1193 ACX_GET_DATA_FILTER_STATISTICS = 0x004C,
1194 ACX_RX_CONFIG_OPT = 0x004E,
1195 ACX_FRAG_CFG = 0x004F,
1196 ACX_BET_ENABLE = 0x0050,
1197 ACX_RSSI_SNR_TRIGGER = 0x0051,
1198 ACX_RSSI_SNR_WEIGHTS = 0x0052,
1199 ACX_KEEP_ALIVE_MODE = 0x0053,
1200 ACX_SET_KEEP_ALIVE_CONFIG = 0x0054,
1201 ACX_BA_SESSION_INIT_POLICY = 0x0055,
1202 ACX_BA_SESSION_RX_SETUP = 0x0056,
1203 ACX_PEER_HT_CAP = 0x0057,
1204 ACX_HT_BSS_OPERATION = 0x0058,
1205 ACX_COEX_ACTIVITY = 0x0059,
1206 ACX_BURST_MODE = 0x005C,
1207 ACX_SET_RATE_MGMT_PARAMS = 0x005D,
1208 ACX_SET_RATE_ADAPT_PARAMS = 0x0060,
1209 ACX_SET_DCO_ITRIM_PARAMS = 0x0061,
1210 ACX_GEN_FW_CMD = 0x0070,
1211 ACX_HOST_IF_CFG_BITMAP = 0x0071,
1212 ACX_MAX_TX_FAILURE = 0x0072,
1213 ACX_UPDATE_INCONNECTION_STA_LIST = 0x0073,
1214 DOT11_RX_MSDU_LIFE_TIME = 0x1004,
1215 DOT11_CUR_TX_PWR = 0x100D,
1216 DOT11_RX_DOT11_MODE = 0x1012,
1217 DOT11_RTS_THRESHOLD = 0x1013,
1218 DOT11_GROUP_ADDRESS_TBL = 0x1014,
1219 ACX_PM_CONFIG = 0x1016,
1220 ACX_CONFIG_PS = 0x1017,
1221 ACX_CONFIG_HANGOVER = 0x1018,
1222};
1223
1224
1225int wl1271_acx_wake_up_conditions(struct wl1271 *wl,
1226 struct wl12xx_vif *wlvif);
1227int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth);
1228int wl1271_acx_tx_power(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1229 int power);
1230int wl1271_acx_feature_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif);
1231int wl1271_acx_mem_map(struct wl1271 *wl,
1232 struct acx_header *mem_map, size_t len);
1233int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl);
1234int wl1271_acx_slot(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1235 enum acx_slot_type slot_time);
1236int wl1271_acx_group_address_tbl(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1237 bool enable, void *mc_list, u32 mc_list_len);
1238int wl1271_acx_service_period_timeout(struct wl1271 *wl,
1239 struct wl12xx_vif *wlvif);
1240int wl1271_acx_rts_threshold(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1241 u32 rts_threshold);
1242int wl1271_acx_dco_itrim_params(struct wl1271 *wl);
1243int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1244 bool enable_filter);
1245int wl1271_acx_beacon_filter_table(struct wl1271 *wl,
1246 struct wl12xx_vif *wlvif);
1247int wl1271_acx_conn_monit_params(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1248 bool enable);
1249int wl1271_acx_sg_enable(struct wl1271 *wl, bool enable);
1250int wl12xx_acx_sg_cfg(struct wl1271 *wl);
1251int wl1271_acx_cca_threshold(struct wl1271 *wl);
1252int wl1271_acx_bcn_dtim_options(struct wl1271 *wl, struct wl12xx_vif *wlvif);
1253int wl1271_acx_aid(struct wl1271 *wl, struct wl12xx_vif *wlvif, u16 aid);
1254int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask);
1255int wl1271_acx_set_preamble(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1256 enum acx_preamble_type preamble);
1257int wl1271_acx_cts_protect(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1258 enum acx_ctsprotect_type ctsprotect);
1259int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats);
1260int wl1271_acx_sta_rate_policies(struct wl1271 *wl, struct wl12xx_vif *wlvif);
1261int wl1271_acx_ap_rate_policy(struct wl1271 *wl, struct conf_tx_rate_class *c,
1262 u8 idx);
1263int wl1271_acx_ac_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1264 u8 ac, u8 cw_min, u16 cw_max, u8 aifsn, u16 txop);
1265int wl1271_acx_tid_cfg(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1266 u8 queue_id, u8 channel_type,
1267 u8 tsid, u8 ps_scheme, u8 ack_policy,
1268 u32 apsd_conf0, u32 apsd_conf1);
1269int wl1271_acx_frag_threshold(struct wl1271 *wl, u32 frag_threshold);
1270int wl1271_acx_tx_config_options(struct wl1271 *wl);
1271int wl12xx_acx_mem_cfg(struct wl1271 *wl);
1272int wl1271_acx_init_mem_config(struct wl1271 *wl);
1273int wl1271_acx_host_if_cfg_bitmap(struct wl1271 *wl, u32 host_cfg_bitmap);
1274int wl1271_acx_init_rx_interrupt(struct wl1271 *wl);
1275int wl1271_acx_smart_reflex(struct wl1271 *wl);
1276int wl1271_acx_bet_enable(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1277 bool enable);
1278int wl1271_acx_arp_ip_filter(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1279 u8 enable, __be32 address);
1280int wl1271_acx_pm_config(struct wl1271 *wl);
1281int wl1271_acx_keep_alive_mode(struct wl1271 *wl, struct wl12xx_vif *vif,
1282 bool enable);
1283int wl1271_acx_keep_alive_config(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1284 u8 index, u8 tpl_valid);
1285int wl1271_acx_rssi_snr_trigger(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1286 bool enable, s16 thold, u8 hyst);
1287int wl1271_acx_rssi_snr_avg_weights(struct wl1271 *wl,
1288 struct wl12xx_vif *wlvif);
1289int wl1271_acx_set_ht_capabilities(struct wl1271 *wl,
1290 struct ieee80211_sta_ht_cap *ht_cap,
1291 bool allow_ht_operation, u8 hlid);
1292int wl1271_acx_set_ht_information(struct wl1271 *wl,
1293 struct wl12xx_vif *wlvif,
1294 u16 ht_operation_mode);
1295int wl12xx_acx_set_ba_initiator_policy(struct wl1271 *wl,
1296 struct wl12xx_vif *wlvif);
1297int wl12xx_acx_set_ba_receiver_session(struct wl1271 *wl, u8 tid_index,
1298 u16 ssn, bool enable, u8 peer_hlid);
1299int wl1271_acx_tsf_info(struct wl1271 *wl, u64 *mactime);
1300int wl1271_acx_ps_rx_streaming(struct wl1271 *wl, struct wl12xx_vif *wlvif,
1301 bool enable);
1302int wl1271_acx_ap_max_tx_retry(struct wl1271 *wl, struct wl12xx_vif *wlvif);
1303int wl12xx_acx_config_ps(struct wl1271 *wl, struct wl12xx_vif *wlvif);
1304int wl1271_acx_set_inconnection_sta(struct wl1271 *wl, u8 *addr);
1305int wl1271_acx_fm_coex(struct wl1271 *wl);
1306int wl12xx_acx_set_rate_mgmt_params(struct wl1271 *wl);
1307int wl12xx_acx_config_hangover(struct wl1271 *wl);
1308
1309#endif
1310