| /freebsd/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- [all...] |
| /freebsd/crypto/openssl/ssl/quic/ |
| H A D | quic_channel.c | 2 * Copyright 2022-2025 The OpenSSL Project Authors. All Rights Reserved. 63 static int ch_on_transport_params(const unsigned char *params, 81 static int rx_late_validate(QUIC_PN pn, int pn_space, void *arg); 82 static void rxku_detected(QUIC_PN pn, void *arg); 112 if (ch->qlog != NULL) in ch_get_qlog() 113 return ch->qlog; in ch_get_qlog() 115 if (!ch->use_qlog) in ch_get_qlog() 118 if (ch->is_server && ch->init_dcid.id_len == 0) in ch_get_qlog() 121 qti.odcid = ch->init_dcid; in ch_get_qlog() 122 qti.title = ch->qlog_title; in ch_get_qlog() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | FunctionSpecialization.cpp | 1 //===- FunctionSpecialization.cpp - Function Specialization ---------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 28 #define DEBUG_TYPE "function-specialization" 33 "force-specialization", cl::init(false), cl::Hidden, cl::desc( 38 "funcspec-max-clones", cl::init(3), cl::Hidden, cl::desc( 43 MaxDiscoveryIterations("funcspec-max-discovery-iterations", cl::init(100), 50 "funcspec-max-incoming-phi-values", cl::init(8), cl::Hidden, 55 "funcspec-max-block-predecessors", cl::init(2), cl::Hidden, cl::desc( 60 "funcspec-min-function-size", cl::init(300), cl::Hidden, cl::desc( [all …]
|
| /freebsd/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/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/sys/contrib/dev/iwlwifi/mvm/ |
| H A D | tx.c | 1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 3 * Copyright (C) 2012-2014, 2018-2025 Intel Corporation 4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH 5 * Copyright (C) 2016-2017 Intel Deutschland GmbH 14 #include "iwl-trans.h" 15 #include "iwl-nvm-utils.h" 16 #include "iwl-utils.h" 19 #include "time-sync.h" 28 trig = iwl_fw_dbg_trigger_on(&mvm->fwrt, NULL, FW_DBG_TRIGGER_BA); in iwl_mvm_bar_check_trigger() 32 ba_trig = (void *)trig->data; in iwl_mvm_bar_check_trigger() [all …]
|
| H A D | mac80211.c | 1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 3 * Copyright (C) 2012-2014, 2018-2025 Intel Corporation 4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH 5 * Copyright (C) 2016-2017 Intel Deutschland GmbH 26 #include "iwl-drv.h" 27 #include "iwl-op-mode.h" 28 #include "iwl-io.h" 31 #include "time-event.h" 32 #include "iwl-nvm-utils.h" 33 #include "iwl-phy-db.h" [all …]
|
| /freebsd/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_nseg - 1) / sc->sc_tx_nmaps) + 1; in ath_tx_alq_post() 151 for (i = 0, ds = (const char *) bf->bf_desc; in ath_tx_alq_post() 153 i++, ds += sc->sc_tx_desclen) { in ath_tx_alq_post() 154 if_ath_alq_post(&sc->sc_alq, in ath_tx_alq_post() [all …]
|
| /freebsd/sys/net80211/ |
| H A D | _ieee80211.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 5 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting 53 * PHY mode; this is not really a mode as multi-mode devices 100 IEEE80211_PROT_RTSCTS = 2, /* RTS-CTS */ 113 IEEE80211_AUTH_SHARED = 2, /* shared-key */ 115 IEEE80211_AUTH_AUTO = 4, /* auto-select/accept */ 177 #define IEEE80211_CHAN_DYN 0x00000400 /* Dynamic CCK-OFDM channel */ 242 (((_c)->ic_flags & IEEE80211_CHAN_FHSS) == IEEE80211_CHAN_FHSS) 244 (((_c)->ic_flags & IEEE80211_CHAN_A) == IEEE80211_CHAN_A) [all …]
|
| /freebsd/sys/dev/cxgbe/common/ |
| H A D | t4_hw.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 48 * t4_wait_op_done_val - wait until an operation is completed 51 * @mask: a single-bit field within @reg that indicates completion 60 * operation completes and -EAGAIN otherwise. 73 if (--attempts == 0) in t4_wait_op_done_val() 74 return -EAGAIN; in t4_wait_op_done_val() 88 * t7_wait_sram_done - wait until an operation is completed 99 * operation completes successfully and -EAGAIN if it times out. 114 if (--attempts == 0) in t7_wait_sram_done() [all …]
|
| /freebsd/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/contrib/wpa/hostapd/ |
| 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 - add preliminary support 15 * support RADIUS ACL/PSK check during 4-way handshake (wpa_psk_radius=3) 16 * EAP-SIM/AKA: support IMSI privacy [all …]
|
| /freebsd/sys/dev/cxgbe/ |
| H A D | t4_main.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 308 * Each tunable is set to a default value here if it's known at compile-time. 309 * Otherwise it is set to -n as an indication to tweak_tunables() that it should 326 int t4_ntxq = -NTXQ; 332 int t4_nrxq = -NRXQ; 338 static int t4_ntxq_vi = -NTXQ_VI; 343 static int t4_nrxq_vi = -NRXQ_VI; 349 0, "Reserve TX queue 0 of each VI for non-flowid packets"); 353 static int t4_nofldtxq = -NOFLDTXQ; [all …]
|
| /freebsd/sys/dev/iwx/ |
| H A D | if_iwxreg.h | 1 /*- 2 * SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause 7 /*- 8 * Based on BSD-licensed source modules in the Linux iwlwifi driver, 19 * Copyright(c) 2018 - 2019 Intel Corporation 33 * Copyright(c) 2018 - 2019 Intel Corporation 71 * enum iwx_context_info_flags - Context information control flags 77 * exponent, the actual size is 2**value, valid sizes are 8-2048. 80 * default is short format - not supported by the driver) 114 * struct iwx_context_info_version - version structure [all …]
|
| /freebsd/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/crypto/openssl/include/openssl/ |
| H A D | ssl.h.in | 2 * {- join("\n * ", @autowarntext) -} 4 * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. 14 {- 16 -} 56 /*- 57 * Version 0 - initial version 58 * Version 1 - added the optional peer certificate 118 # define SSL_TXT_DHE "DHE"/* same as "kDHE:-ADH" */ 124 # define SSL_TXT_ECDHE "ECDHE"/* same as "kECDHE:-AECDH" */ 151 # define SSL_TXT_GOST2012_GOST8912_GOST8912 "GOST2012-GOST8912-GOST8912" [all …]
|
| H A D | ssl.h | 5 * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved. 55 /*- 56 * Version 0 - initial version 57 * Version 1 - added the optional peer certificate 117 # define SSL_TXT_DHE "DHE"/* same as "kDHE:-ADH" */ 123 # define SSL_TXT_ECDHE "ECDHE"/* same as "kECDHE:-AECDH" */ 150 # define SSL_TXT_GOST2012_GOST8912_GOST8912 "GOST2012-GOST8912-GOST8912" 170 /*- 171 * COMPLEMENTOF* definitions. These identifiers are used to (de-select) 189 * an application-defined cipher list string starts with 'DEFAULT'. [all …]
|
| /freebsd/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->conf->multi_ap_client_disallow & in hostapd_eid_multi_ap() 112 multi_ap.profile = hapd->conf->multi_ap_profile; in hostapd_eid_multi_ap() 113 multi_ap.vlanid = hapd->conf->multi_ap_vlanid; in hostapd_eid_multi_ap() 125 if (hapd->iface->current_rates == NULL) in hostapd_eid_supp_rates() 129 num = hapd->iface->num_rates; in hostapd_eid_supp_rates() [all …]
|
| /freebsd/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-VLAN type in mac80211 for example, there's [all …]
|
| /freebsd/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://fossil-scm.org/">Fossil configuration management 138 ** a string which identifies a particular check-in of SQLite 140 ** string contains the date and time of the check-in (UTC) and a SHA1 [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 54 ** NO_TEST - The branches on this line are not 59 ** OPTIMIZATION-IF-TRUE - This branch is allowed to always be false 63 ** OPTIMIZATION-IF-FALSE - This branch is allowed to always be true 67 ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread 72 ** slash-asterisk...asterisk-slash comment marks, with no spaces between the 147 ** 2015-03-02 185 ** large file support, or if the OS is windows, these should be no-ops. 191 ** Large file support can be disabled using the -DSQLITE_DISABLE_LFS switch [all …]
|