Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 48) sorted by relevance

12

/wlan-driver/qca-wifi-host-cmn/htc/
H A Dhtc.c59 static void reset_endpoint_states(HTC_TARGET *target);
93 void htc_free_control_tx_packet(HTC_TARGET *target, HTC_PACKET *pPacket) in htc_free_control_tx_packet() argument
97 LOCK_HTC(target); in htc_free_control_tx_packet()
98 HTC_PACKET_ENQUEUE(&target->ControlBufferTXFreeList, pPacket); in htc_free_control_tx_packet()
99 UNLOCK_HTC(target); in htc_free_control_tx_packet()
107 HTC_PACKET *htc_alloc_control_tx_packet(HTC_TARGET *target) in htc_alloc_control_tx_packet() argument
112 LOCK_HTC(target); in htc_alloc_control_tx_packet()
113 pPacket = htc_packet_dequeue(&target->ControlBufferTXFreeList); in htc_alloc_control_tx_packet()
114 UNLOCK_HTC(target); in htc_alloc_control_tx_packet()
118 return build_htc_tx_ctrl_packet(target->osdev); in htc_alloc_control_tx_packet()
[all …]
H A Dhtc_recv.c71 static A_STATUS htc_process_trailer(HTC_TARGET *target,
150 HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle); in htc_get_num_recv_buffers() local
152 HTC_ENDPOINT *pEndpoint = &target->endpoint[Endpoint]; in htc_get_num_recv_buffers()
156 HTC_PACKET *allocate_htc_packet_container(HTC_TARGET *target) in allocate_htc_packet_container() argument
160 LOCK_HTC_RX(target); in allocate_htc_packet_container()
162 if (!target->pHTCPacketStructPool) { in allocate_htc_packet_container()
163 UNLOCK_HTC_RX(target); in allocate_htc_packet_container()
167 pPacket = target->pHTCPacketStructPool; in allocate_htc_packet_container()
168 target->pHTCPacketStructPool = (HTC_PACKET *) pPacket->ListLink.pNext; in allocate_htc_packet_container()
170 UNLOCK_HTC_RX(target); in allocate_htc_packet_container()
[all …]
H A Dhtc_send.c72 HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle); in htc_dump_counter_info() local
74 if (!target) in htc_dump_counter_info()
79 __func__, target->ce_send_cnt, target->TX_comp_cnt)); in htc_dump_counter_info()
84 HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(htc_handle); in htc_get_tx_queue_depth() local
85 HTC_ENDPOINT *endpoint = &target->endpoint[endpoint_id]; in htc_get_tx_queue_depth()
94 HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle); in htc_get_control_endpoint_tx_host_credits() local
98 if (!credits || !target) { in htc_get_control_endpoint_tx_host_credits()
104 LOCK_HTC_TX(target); in htc_get_control_endpoint_tx_host_credits()
106 pEndpoint = &target->endpoint[i]; in htc_get_control_endpoint_tx_host_credits()
112 UNLOCK_HTC_TX(target); in htc_get_control_endpoint_tx_host_credits()
[all …]
H A Dhtc_internal.h159 struct _HTC_TARGET *target; member
321 HTC_PACKET *allocate_htc_bundle_packet(HTC_TARGET *target);
322 void free_htc_bundle_packet(HTC_TARGET *target, HTC_PACKET *pPacket);
324 HTC_PACKET *allocate_htc_packet_container(HTC_TARGET *target);
325 void free_htc_packet_container(HTC_TARGET *target, HTC_PACKET *pPacket);
326 void htc_flush_rx_hold_queue(HTC_TARGET *target, HTC_ENDPOINT *pEndpoint);
327 void htc_flush_endpoint_tx(HTC_TARGET *target, HTC_ENDPOINT *pEndpoint,
338 void htc_flush_endpoint_txlookupQ(HTC_TARGET *target,
342 void htc_recv_init(HTC_TARGET *target);
343 QDF_STATUS htc_wait_recv_ctrl_message(HTC_TARGET *target);
[all …]
H A Dhtc_services.c70 htc_alt_data_credit_size_update(HTC_TARGET *target, in htc_alt_data_credit_size_update() argument
75 if ((target->AltDataCreditSize) && in htc_alt_data_credit_size_update()
77 *txCreditSize = target->AltDataCreditSize; in htc_alt_data_credit_size_update()
83 htc_alt_data_credit_size_update(HTC_TARGET *target, in htc_alt_data_credit_size_update() argument
95 HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle); in htc_connect_service() local
113 ("+htc_connect_service, target:%pK SvcID:0x%X\n", target, in htc_connect_service()
128 txAlloc = htc_get_credit_allocation(target, in htc_connect_service()
138 pSendPacket = htc_alloc_control_tx_packet(target); in htc_connect_service()
210 status = htc_send_pkt((HTC_HANDLE) target, pSendPacket); in htc_connect_service()
217 status = htc_wait_recv_ctrl_message(target); in htc_connect_service()
[all …]
H A Dhtc_hang_event.h30 QDF_STATUS htc_hang_event_notifier_register(HTC_TARGET *target);
42 static inline QDF_STATUS htc_hang_event_notifier_register(HTC_TARGET *target) in htc_hang_event_notifier_register() argument
H A Dhtc_hang_event.c35 QDF_STATUS htc_hang_event_notifier_register(HTC_TARGET *target) in htc_hang_event_notifier_register() argument
37 htc_recovery_notifier.priv_data = target; in htc_hang_event_notifier_register()
/wlan-driver/platform/
H A Dwlan_platform_modules.bzl15 def _get_module_list(target, variant):
16 tv = "{}_{}".format(target, variant)
21 if target in _cnss2_enabled_target:
25 if target in _icnss2_enabled_target:
34 def _define_platform_config_rule(module, target, variant):
35 tv = "{}_{}".format(target, variant)
40 "{}/{}_gki_defconfig".format(module, target),
48 "{}/{}_gki_defconfig".format(module, target),
56 "{}/{}_consolidate_defconfig".format(module, target),
61 def _define_modules_for_target_variant(target, variant):
[all …]
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/
H A DREADME2 and structures to hold target specific definitions to handle differences between
9 hal_6290_rx.c - rx related target specific function
11 hal_6290_tx.c - tx related target specific function
13 hal_8074_rx.c - rx related target specific function
15 hal_8074_tx.c - tx related target specific function
/wlan-driver/wpa_supplicant_8/wpa_supplicant/systemd/
H A Dwpa_supplicant.service.in
H A Dwpa_supplicant.service.arg.in
H A Dwpa_supplicant-nl80211.service.arg.in
H A Dwpa_supplicant-wired.service.arg.in
/wlan-driver/wpa_supplicant_8/wpa_supplicant/
H A Dwnm_sta.c
/wlan-driver/qca-wifi-host-cmn/target_if/cfr/src/
H A Dtarget_if_cfr.c275 uint32_t target) in target_if_cfr_init_target() argument
331 if (target == TARGET_TYPE_QCA6490) in target_if_cfr_init_target()
333 else if (target == TARGET_TYPE_QCA6750) in target_if_cfr_init_target()
335 else if (target == TARGET_TYPE_KIWI) in target_if_cfr_init_target()
337 else if (target == TARGET_TYPE_MANGO) in target_if_cfr_init_target()
339 else if (target == TARGET_TYPE_PEACH) in target_if_cfr_init_target()
341 else if (target == TARGET_TYPE_WCN6450) in target_if_cfr_init_target()
/wlan-driver/qca-wifi-host-cmn/hif/src/sdio/
H A Dhif_sdio.c180 void hif_post_init(struct hif_opaque_softc *hif_ctx, void *target, in hif_post_init() argument
190 htc_sdio_device = hif_dev_create(hif_device, callbacks, target); in hif_post_init()
H A Dhif_sdio_dev.c85 struct hif_msg_callbacks *callbacks, void *target) in hif_dev_create() argument
103 pdev->pTarget = target; in hif_dev_create()
H A Dhif_sdio_dev.h35 void *target);
/wlan-driver/qca-wifi-host-cmn/hif/src/sdio/transfer/
H A Dtransfer.c616 debug_dump_bytes((uint8_t *)&target->LastFrameHdr, in hif_dev_process_recv_header()
619 if (target->LastTrailerLength != 0) in hif_dev_process_recv_header()
620 debug_dump_bytes(target->LastTrailer, in hif_dev_process_recv_header()
621 target->LastTrailerLength, in hif_dev_process_recv_header()
H A Dmailbox.c694 HTC_TARGET *target = NULL; in hif_dev_issue_recv_packet_bundle() local
700 target = (HTC_TARGET *)pdev->pTarget; in hif_dev_issue_recv_packet_bundle()
711 HTC_MAX_MSG_PER_BUNDLE_RX * target->TargetCreditSize; in hif_dev_issue_recv_packet_bundle()
712 packet_rx_bundle = allocate_htc_bundle_packet(target); in hif_dev_issue_recv_packet_bundle()
786 free_htc_bundle_packet(target, packet_rx_bundle); in hif_dev_issue_recv_packet_bundle()
/wlan-driver/qcacld-3.0/core/mac/src/pe/lim/
H A Dlim_mlo.c1032 uint16_t total_len, uint8_t *target) in lim_fill_complete_mlo_ie() argument
1065 target[consumed++] = buf[index++]; in lim_fill_complete_mlo_ie()
1066 target[consumed++] = buf[index++]; in lim_fill_complete_mlo_ie()
1077 target[consumed++] = WLAN_ELEMID_FRAGMENT; in lim_fill_complete_mlo_ie()
1079 target[consumed++] = WLAN_MAX_IE_LEN; in lim_fill_complete_mlo_ie()
1081 target[consumed++] = mlo_ie_total_len - i; in lim_fill_complete_mlo_ie()
1083 target[consumed++] = buf[index++]; in lim_fill_complete_mlo_ie()
1089 target, consumed); in lim_fill_complete_mlo_ie()
H A Dlim_mlo.h263 uint16_t total_len, uint8_t *target);
483 uint16_t total_len, uint8_t *target) in lim_fill_complete_mlo_ie() argument
/wlan-driver/qca-wifi-host-cmn/umac/mlo_mgr/src/
H A Dwlan_mlo_mgr_sta.c49 mlo_allocate_and_copy_ies(struct wlan_cm_connect_req *target, in mlo_allocate_and_copy_ies() argument
52 target->assoc_ie.ptr = NULL; in mlo_allocate_and_copy_ies()
53 target->scan_ie.ptr = NULL; in mlo_allocate_and_copy_ies()
54 target->crypto.wep_keys.key = NULL; in mlo_allocate_and_copy_ies()
55 target->crypto.wep_keys.seq = NULL; in mlo_allocate_and_copy_ies()
56 target->crypto.wep_keys.key_len = 0; in mlo_allocate_and_copy_ies()
57 target->crypto.wep_keys.seq_len = 0; in mlo_allocate_and_copy_ies()
60 target->scan_ie.ptr = qdf_mem_malloc(source->scan_ie.len); in mlo_allocate_and_copy_ies()
61 if (!target->scan_ie.ptr) in mlo_allocate_and_copy_ies()
62 target->scan_ie.len = 0; in mlo_allocate_and_copy_ies()
[all …]
/wlan-driver/qca-wifi-host-cmn/umac/mlme/connection_mgr/core/src/
H A Dwlan_cm_connect.c3453 cm_allocate_and_copy_ies_and_keys(struct wlan_cm_connect_req *target, in cm_allocate_and_copy_ies_and_keys() argument
3457 target->assoc_ie.ptr = NULL; in cm_allocate_and_copy_ies_and_keys()
3458 target->crypto.wep_keys.key = NULL; in cm_allocate_and_copy_ies_and_keys()
3459 target->crypto.wep_keys.seq = NULL; in cm_allocate_and_copy_ies_and_keys()
3460 target->scan_ie.ptr = NULL; in cm_allocate_and_copy_ies_and_keys()
3463 target->scan_ie.ptr = qdf_mem_malloc(source->scan_ie.len); in cm_allocate_and_copy_ies_and_keys()
3464 if (!target->scan_ie.ptr) in cm_allocate_and_copy_ies_and_keys()
3465 target->scan_ie.len = 0; in cm_allocate_and_copy_ies_and_keys()
3467 qdf_mem_copy(target->scan_ie.ptr, in cm_allocate_and_copy_ies_and_keys()
3472 target->assoc_ie.ptr = qdf_mem_malloc(source->assoc_ie.len); in cm_allocate_and_copy_ies_and_keys()
[all …]
/wlan-driver/qcacld-3.0/
H A Dwlan_qcacld3_modules.bzl2139 def _define_module_for_target_variant_chipset(target, variant, chipset):
2140 tvc = "{}_{}_{}".format(target, variant, chipset)
2141 tv = "{}_{}".format(target, variant)
2224 "configs/{}_gki_{}_defconfig".format(target, chipset),
2225 "configs/{}_consolidate_{}_defconfig".format(target, chipset),
2233 "configs/{}_gki_{}_defconfig".format(target, chipset),
2241 "configs/{}_gki_{}_defconfig".format(target, chipset),
2262 "//vendor/qcom/opensource/dataipa:{}_{}_ipam".format(target, variant),
2273 "//vendor/qcom/opensource/dataipa:{}_{}_ipam".format(target, variant),
2300 def define_dist(target, variant, chipsets):
[all …]

12