Home
last modified time | relevance | path

Searched refs:block (Results 1 – 17 of 17) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/
Dhal_flow.h21 #define HAL_SET_FLD_SM(block, field, value) \ argument
22 (((value) << (block ## _ ## field ## _LSB)) & \
23 (block ## _ ## field ## _MASK))
25 #define HAL_SET_FLD_MS(block, field, value) \ argument
26 (((value) & (block ## _ ## field ## _MASK)) >> \
27 (block ## _ ## field ## _LSB))
29 #define HAL_CLR_FLD(desc, block, field) \ argument
34 HAL_OFFSET(block, field))); \
35 val &= ~(block ## _ ## field ## _MASK); \
36 HAL_SET_FLD(desc_, block, field) = val; \
[all …]
Dhal_tx.h40 #define HAL_OFFSET(block, field) block ## _ ## field ## _OFFSET argument
42 #define HAL_TX_LSB(block, field) block ## _ ## field ## _LSB argument
44 #define HAL_TX_MASK(block, field) block ## _ ## field ## _MASK argument
46 #define HAL_TX_DESC_OFFSET(desc, block, field) \ argument
47 (((uint8_t *)desc) + HAL_OFFSET(block, field))
49 #define HAL_SET_FLD(desc, block , field) \ argument
50 (*(uint32_t *) ((uint8_t *) desc + HAL_OFFSET(block, field)))
52 #define HAL_SET_FLD_OFFSET(desc, block , field, offset) \ argument
53 (*(uint32_t *) ((uint8_t *) desc + HAL_OFFSET(block, field) + (offset)))
55 #define HAL_SET_FLD_64(desc, block, field) \ argument
[all …]
Dhal_reo.h65 #define HAL_SET_FIELD(block, field, value) \ argument
66 ((value << (block ## _ ## field ## _LSB)) & \
67 (block ## _ ## field ## _MASK))
69 #define HAL_GET_FIELD(block, field, value) \ argument
70 ((value & (block ## _ ## field ## _MASK)) >> \
71 (block ## _ ## field ## _LSB))
Dhal_rx_flow_info.h26 #define HAL_OFFSET(block, field) block ## _ ## field ## _OFFSET argument
Dhal_rx.h31 #define HAL_RX_OFFSET(block, field) block##_##field##_OFFSET argument
32 #define HAL_RX_LSB(block, field) block##_##field##_LSB argument
33 #define HAL_RX_MASK(block, field) block##_##field##_MASK argument
36 #define HAL_RX_GET(_ptr, block, field) \ argument
37 (((*((volatile uint32_t *)_ptr + (HAL_RX_OFFSET(block, field)>>2))) & \
38 HAL_RX_MASK(block, field)) >> \
39 HAL_RX_LSB(block, field))
41 #define HAL_RX_GET_64(_ptr, block, field) \ argument
43 (HAL_RX_OFFSET(block, field) >> 3))) & \
44 HAL_RX_MASK(block, field)) >> \
[all …]
Dhal_api.h98 #define HAL_OFFSET(block, field) block ## _ ## field ## _OFFSET argument
/wlan-driver/qca-wifi-host-cmn/wmi/src/
Dwmi_hang_event.c33 static void wmi_log_history(struct notifier_block *block, void *data, in wmi_log_history() argument
36 qdf_notif_block *notif_block = qdf_container_of(block, qdf_notif_block, in wmi_log_history()
114 static int wmi_recovery_notifier_call(struct notifier_block *block, in wmi_recovery_notifier_call() argument
118 wmi_log_history(block, data, WMI_EVT_HIST); in wmi_recovery_notifier_call()
119 wmi_log_history(block, data, WMI_CMD_HIST); in wmi_recovery_notifier_call()
/wlan-driver/qcacld-3.0/os_if/dp/src/
Dos_if_dp_txrx.c381 __osif_check_for_prio_filter_in_clsact_qdisc(struct tcf_block *block, in __osif_check_for_prio_filter_in_clsact_qdisc() argument
389 mutex_lock(&block->lock); in __osif_check_for_prio_filter_in_clsact_qdisc()
390 list_for_each_entry(chain, &block->chain_list, list) { in __osif_check_for_prio_filter_in_clsact_qdisc()
406 mutex_unlock(&block->lock); in __osif_check_for_prio_filter_in_clsact_qdisc()
412 __osif_check_for_prio_filter_in_clsact_qdisc(struct tcf_block *block, in __osif_check_for_prio_filter_in_clsact_qdisc() argument
422 list_for_each_entry(chain, &block->chain_list, list) { in __osif_check_for_prio_filter_in_clsact_qdisc()
/wlan-driver/qca-wifi-host-cmn/htc/
Dhtc_hang_event.c22 static int htc_recovery_notifier_call(struct notifier_block *block, in htc_recovery_notifier_call() argument
26 htc_log_hang_credit_history(block, data); in htc_recovery_notifier_call()
Dhtc_credit_history.h58 void htc_log_hang_credit_history(struct notifier_block *block, void *data);
61 void htc_log_hang_credit_history(struct notifier_block *block, void *data) in htc_log_hang_credit_history() argument
Dhtc_credit_history.c170 void htc_log_hang_credit_history(struct notifier_block *block, void *data) in htc_log_hang_credit_history() argument
172 qdf_notif_block *notif_block = qdf_container_of(block, qdf_notif_block, in htc_log_hang_credit_history()
/wlan-driver/qcacld-3.0/core/hdd/src/
Dwlan_hdd_hang_event.c40 static int wlan_hdd_recovery_notifier_call(struct notifier_block *block, in wlan_hdd_recovery_notifier_call() argument
44 qdf_notif_block *notif_block = qdf_container_of(block, qdf_notif_block, in wlan_hdd_recovery_notifier_call()
/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/
Dqdf_cpuhp.c38 static int qdf_cpuhp_legacy_handler(struct notifier_block *block, in qdf_cpuhp_legacy_handler() argument
/wlan-driver/qca-wifi-host-cmn/hif/src/
Dhif_main.c705 int hif_recovery_notifier_cb(struct notifier_block *block, unsigned long state, in hif_recovery_notifier_cb() argument
713 if (!data || !block) in hif_recovery_notifier_cb()
716 notif_block = qdf_container_of(block, qdf_notif_block, notif_block); in hif_recovery_notifier_cb()
/wlan-driver/qcacld-3.0/core/dp/txrx/
Dol_txrx.c124 int ol_peer_recovery_notifier_cb(struct notifier_block *block, in ol_peer_recovery_notifier_cb() argument
133 if (!data || !block) in ol_peer_recovery_notifier_cb()
136 notif_block = qdf_container_of(block, qdf_notif_block, notif_block); in ol_peer_recovery_notifier_cb()
/wlan-driver/qcacld-3.0/core/cds/src/
Dcds_api.c666 static int cds_hang_event_notifier_call(struct notifier_block *block, in cds_hang_event_notifier_call() argument
/wlan-driver/qcacld-3.0/core/mac/src/pe/lim/
Dlim_api.c751 static int pe_hang_event_notifier_call(struct notifier_block *block, in pe_hang_event_notifier_call() argument
755 qdf_notif_block *notif_block = qdf_container_of(block, qdf_notif_block, in pe_hang_event_notifier_call()