/freebsd-src/sys/contrib/device-tree/Bindings/ata/ |
H A D | ahci-ceva.txt | 4 - reg: Physical base address and size of the controller's register area. 5 - compatible: Compatibility string. Must be 'ceva,ahci-1v84'. 6 - clocks: Input clock specifier. Refer to common clock bindings. 7 - interrupts: Interrupt specifier. Refer to interrupt binding. 8 - ceva,p0-cominit-params: OOB timing value for COMINIT parameter for port 0. 9 - ceva,p1-cominit-params: OOB timing value for COMINIT parameter for port 1. 11 ceva,pN-cominit-params = /bits/ 8 <CIBGMN CIBGMX CIBGN CINMP>; 16 - ceva,p0-comwake-params: OOB timing value for COMWAKE parameter for port 0. 17 - ceva,p1-comwake-params: OOB timing value for COMWAKE parameter for port 1. 19 ceva,pN-comwake-params = /bits/ 8 <CWBGMN CWBGMX CWBGN CWNMP>; [all …]
|
H A D | ceva,ahci-1v84.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/ata/ceva,ahci-1v84.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Mubin Sayyed <mubin.sayyed@amd.com> 11 - Radhey Shyam Pandey <radhey.shyam.pandey@amd.com> 15 special extensions to add functionality, is a high-performance dual-port 22 const: ceva,ahci-1v84 30 dma-coherent: true 38 power-domains: [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionSpecialization.cpp | 1 //===- FunctionSpecialization.cpp - Function Specialization -------- 280 PHINode *PN = WorkList.pop_back_val(); discoverTransitivelyIncomingValues() local 1017 auto Params = getInlineParams(); getInliningBonus() local [all...] |
/freebsd-src/sys/contrib/dev/athk/ath12k/ |
H A D | dp_rx.c | 1 // SPDX-License-Identifier: BSD-3-Clause-Clear 3 * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved. 4 * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved. 26 if (!ab->hw_params->hal_ops->rx_desc_encrypt_valid(desc)) in ath12k_dp_rx_h_enctype() 29 return ab->hw_params->hal_ops->rx_desc_get_encrypt_type(desc); in ath12k_dp_rx_h_enctype() 35 return ab->hw_params->hal_ops->rx_desc_get_decap_type(desc); in ath12k_dp_rx_h_decap_type() 41 return ab->hw_params->hal_ops->rx_desc_get_mesh_ctl(desc); in ath12k_dp_rx_h_mesh_ctl_present() 47 return ab->hw_params->hal_ops->rx_desc_get_mpdu_seq_ctl_vld(desc); in ath12k_dp_rx_h_seq_ctrl_valid() 53 return ab->hw_params->hal_ops->rx_desc_get_mpdu_fc_valid(desc); in ath12k_dp_rx_h_fc_valid() 61 hdr = (struct ieee80211_hdr *)(skb->data + ab->hw_params->hal_desc_sz); in ath12k_dp_rx_h_more_frags() [all …]
|
/freebsd-src/sys/contrib/dev/athk/ath10k/ |
H A D | htt_rx.c | 1 // SPDX-License-Identifier: ISC 3 * Copyright (c) 2005-2011 Atheros Communications Inc. 4 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc. 19 /* when under memory pressure rx ring refill may fail and needs a retry */ 34 hash_for_each_possible(ar->htt.rx_ring.skb_table, rxcb, hlist, paddr) in ath10k_htt_rx_find_skb_paddr() 35 if (rxcb->paddr == paddr) in ath10k_htt_rx_find_skb_paddr() 49 if (htt->rx_ring.in_ord_rx) { in ath10k_htt_rx_ring_free() 50 hash_for_each_safe(htt->rx_ring.skb_table, i, n, rxcb, hlist) { in ath10k_htt_rx_ring_free() 52 dma_unmap_single(htt->ar->dev, rxcb->paddr, in ath10k_htt_rx_ring_free() 53 skb->len + skb_tailroom(skb), in ath10k_htt_rx_ring_free() [all …]
|
H A D | wmi.h | 1 /* SPDX-License-Identifier: ISC */ 3 * Copyright (c) 2005-2011 Atheros Communications Inc. 4 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc. 5 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved. 28 * 1. Add new WMI commands ONLY within the specified range - 0x9000 - 0x9fff 44 * variable is already 4-byte aligned by virtue of being a u32 526 * for wmi_services is 64 as target is using only 4-bits of each 32-bit 532 __le32_to_cpu((wmi_svc_bmap)[((svc_id) - (len)) / 28]) & \ 533 BIT(((((svc_id) - (len)) % 28) & 0x1f) + 4)) 1159 /** DFS-specific commands */ [all …]
|
/freebsd-src/sys/dev/ath/ |
H A D | if_ath_tx.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting 5 * Copyright (c) 2010-2012 Adrian Chadd, Xenion Pty Ltd 116 * What queue to throw the non-QoS TID traffic into 148 if (bf->bf_nseg == 0) in ath_tx_alq_post() 150 n = ((bf->bf_nse in ath_tx_alq_post() 2139 ath_tx_raw_start(struct ath_softc * sc,struct ieee80211_node * ni,struct ath_buf * bf,struct mbuf * m0,const struct ieee80211_bpf_params * params) ath_tx_raw_start() argument 2419 ath_raw_xmit(struct ieee80211_node * ni,struct mbuf * m,const struct ieee80211_bpf_params * params) ath_raw_xmit() argument [all...] |
/freebsd-src/sys/dev/cxgbe/common/ |
H A D | t4_hw.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 49 * t4_wait_op_done_val - wait until an operation is completed 52 * @mask: a single-bit field within @reg that indicates completion 61 * operation completes and -EAGAIN otherwise. 74 if (--attempts == 0) in t4_wait_op_done_val() 75 return -EAGAIN; in t4_wait_op_done_val() 89 * t4_set_reg_field - set a register field to a value 108 * t4_read_indirect - read indirectly addressed registers 123 while (nregs--) { in t4_read_indirect() [all …]
|
/freebsd-src/sys/contrib/dev/iwlwifi/mvm/ |
H A D | mac80211.c | 1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 3 * Copyright (C) 2012-2014, 2018-2024 Intel Corporation 4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH 5 * Copyright (C) 2016-2017 Intel Deutschland GmbH 25 #include "iwl-dr 947 iwl_mvm_mac_ampdu_action(struct ieee80211_hw * hw,struct ieee80211_vif * vif,struct ieee80211_ampdu_params * params) iwl_mvm_mac_ampdu_action() argument 1162 int retry, max_retry = 0; iwl_mvm_mac_start() local 4017 iwl_mvm_mac_conf_tx(struct ieee80211_hw * hw,struct ieee80211_vif * vif,unsigned int link_id,u16 ac,const struct ieee80211_tx_queue_params * params) iwl_mvm_mac_conf_tx() argument [all...] |
/freebsd-src/sys/dev/cxgb/common/ |
H A D | cxgb_t3_hw.c | 2 SPDX-License-Identifier: BSD-2-Clause 4 Copyright (c) 2007-2009, Chelsio Inc. 38 * t3_wait_op_done_val - wait until an operation is completed 41 * @mask: a single-bit field within @reg that indicates completion 50 * operation completes and -EAGAIN otherwise. 63 if (--attempts == 0) in t3_wait_op_done_val() 64 return -EAGAIN; in t3_wait_op_done_val() 71 * t3_write_regs - write a bunch of registers 84 while (n--) { in t3_write_regs() 85 t3_write_reg(adapter, p->reg_addr + offset, p->val); in t3_write_regs() [all …]
|
/freebsd-src/contrib/wpa/hostapd/ |
H A D | ctrl_iface.c | 2 * hostapd / UNIX domain socket -based control interface 3 * Copyright (c) 2004-2018, Jouni Malinen <j@w1.fi> 93 return ctrl_iface_attach(&hapd->ctrl_dst, from, fromlen, input); 101 return ctrl_iface_detach(&hapd->ctrl_dst, from, fromlen); 110 return ctrl_iface_level(&hapd->ctrl_dst, from, fromlen, level); 123 return -1; in hostapd_ctrl_iface_new_sta() 133 return -1; in hostapd_ctrl_iface_new_sta() 151 return -1; in hostapd_ctrl_iface_sa_query() 170 return -1; in hostapd_ctrl_iface_wps_pin() 206 return - in hostapd_ctrl_iface_wps_check_pin() 2667 hostapd_ctrl_check_freq_params(struct hostapd_freq_params * params) hostapd_ctrl_check_freq_params() argument [all...] |
H A D | ChangeLog | 3 2024-07-20 - v2.11 4 * Wi-Fi Easy Connect 5 - add support for DPP release 3 6 - allow Configurator parameters to be provided during config exchange 7 * HE/IEEE 802.11ax/Wi-Fi 6 8 - various fixes 9 * EHT/IEEE 802.11be/Wi-Fi 7 10 - ad [all...] |
/freebsd-src/sys/dev/cxgbe/ |
H A D | t4_main.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 272 * Each tunable is set to a default value here if it's known at compile-time. 273 * Otherwise it is set to -n as an indication to tweak_tunables() that it should 290 int t4_ntxq = -NTXQ; 296 int t4_nrxq = -NRXQ; 302 static int t4_ntxq_vi = -NTXQ_V 2106 struct adapter_params params; global() member 3232 cxgbe_snd_tag_alloc(if_t ifp,union if_snd_tag_alloc_params * params,struct m_snd_tag ** pt) cxgbe_snd_tag_alloc() argument [all...] |
/freebsd-src/sys/dev/iwm/ |
H A D | if_iwmreg.h | 10 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. 31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 35 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. 73 * BEGIN iwl-csr.h 81 * low power states due to driver-invoked device resets 82 * (e.g. IWM_CSR_RESET_REG_FLAG_SW_RESET) or uCode-driven power-saving modes. 95 #define IWM_CSR_INT_COALESCING (0x004) /* accum ints, 32-usec units */ 109 * 31-16: Reserved 110 * 15- [all...] |
/freebsd-src/contrib/wpa/src/ap/ |
H A D | ieee802_11.c | 3 * Copyright (c) 2002-2017, Jouni Malinen <j@w1.fi> 95 if (!hapd->conf->multi_ap) in hostapd_eid_multi_ap() 98 if (hapd->conf->multi_ap & BACKHAUL_BSS) in hostapd_eid_multi_ap() 100 if (hapd->conf->multi_ap & FRONTHAUL_BSS) in hostapd_eid_multi_ap() 103 if (hapd->conf->multi_ap_client_disallow & in hostapd_eid_multi_ap() 107 if (hapd->con in hostapd_eid_supp_rates() 922 struct external_auth params; sae_sme_send_external_auth_status() local [all...] |
/freebsd-src/contrib/wpa/src/drivers/ |
H A D | nl80211_copy.h | 6 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> 13 * Copyright 2015-2017 Intel Deutschland GmbH 14 * Copyright (C) 2018-2023 Intel Corporation 32 * be careful not to break things - i.e. don't move anything around or so 74 * - a setup station entry is added, not yet authorized, without any rate 76 * - when the TDLS setup is done, a single NL80211_CMD_SET_STATION is valid 79 * - %NL80211_TDLS_ENABLE_LINK is then used 80 * - after this, the only valid operation is to remove it by tearing down 95 * Frame registration is done on a per-interface basis and registrations 137 * software, like the AP-VLA [all...] |
/freebsd-src/contrib/sqlite3/ |
H A D | sqlite3.h | 2 ** 2001-09-15 13 ** presents to client programs. If a C-function, structure, datatype, 24 ** The official C-language API documentation for SQLite is derived 69 ** that require non-default calling conventions. 94 ** These no-op macros are used in front of interfaces to mark those 96 ** should not use deprecated interfaces - they are supported for backwards 120 ** CAPI3REF: Compile-Time Library Version Numbers 136 ** <a href="http://www.fossil-scm.org/">Fossil configuration management 138 ** a string which identifies a particular check-i [all...] |
H A D | sqlite3.c | 17 ** language. The code for the "sqlite3" command-line shell is also in a 20 ** The content in this amalgamation comes from Fossil check-in 51 ** NO_TEST - The branches on this line are not 56 ** OPTIMIZATION-IF-TRUE - This branch is allowed to always be false 60 ** OPTIMIZATION-IF-FALSE - This branch is allowed to always be true 64 ** PREVENTS-HARMLES [all...] |