Home
last modified time | relevance | path

Searched full:preamble (Results 1 – 25 of 357) sorted by relevance

12345678910>>...15

/linux-6.14.4/drivers/crypto/intel/qat/qat_common/
Dadf_mstate_mgr.c68 static void adf_mstate_preamble_init(struct adf_mstate_preh *preamble) in adf_mstate_preamble_init() argument
70 preamble->magic = ADF_MSTATE_MAGIC; in adf_mstate_preamble_init()
71 preamble->version = ADF_MSTATE_VERSION; in adf_mstate_preamble_init()
72 preamble->preh_len = sizeof(*preamble); in adf_mstate_preamble_init()
73 preamble->size = 0; in adf_mstate_preamble_init()
74 preamble->n_sects = 0; in adf_mstate_preamble_init()
78 static int adf_mstate_preamble_def_checker(struct adf_mstate_preh *preamble, in adf_mstate_preamble_def_checker() argument
83 if (preamble->magic != ADF_MSTATE_MAGIC || in adf_mstate_preamble_def_checker()
84 preamble->version > ADF_MSTATE_VERSION || in adf_mstate_preamble_def_checker()
85 preamble->preh_len > mgr->size) { in adf_mstate_preamble_def_checker()
[all …]
/linux-6.14.4/drivers/md/dm-vdo/
Daction-manager.c21 * @preamble: The method to run on the initiator thread before the action is applied to each zone.
31 vdo_action_preamble_fn preamble; member
200 /* Skip the zone actions since the preamble failed. */ in handle_preamble_error()
214 /* We aren't going to run the preamble, so don't run the conclusion */ in launch_current_action()
230 action->preamble(manager->context, &manager->completion); in launch_current_action()
278 * @preamble: A method to be invoked on the initiator thread once this action is started but before
288 * if it has a parent, that parent will be notified. At least one of the preamble, action, or
293 bool vdo_schedule_action(struct action_manager *manager, vdo_action_preamble_fn preamble, in vdo_schedule_action() argument
297 return vdo_schedule_operation(manager, VDO_ADMIN_STATE_OPERATING, preamble, in vdo_schedule_action()
305 * @preamble: A method to be invoked on the initiator thread once this action is started but before
[all …]
Daction-manager.h23 * preamble
47 * preamble of an action.
93 bool vdo_schedule_action(struct action_manager *manager, vdo_action_preamble_fn preamble,
99 vdo_action_preamble_fn preamble, vdo_zone_action_fn action,
105 vdo_action_preamble_fn preamble,
/linux-6.14.4/drivers/staging/octeon/
Dethernet-rgmii.c30 /* Set preamble checking. */ in cvm_oct_set_hw_preamble()
70 * getting preamble errors. in cvm_oct_check_preamble_errors()
80 * We are getting preamble errors at 10Mbps. Most in cvm_oct_check_preamble_errors()
83 * disable preamble checking and do it in software. in cvm_oct_check_preamble_errors()
86 printk_ratelimited("%s: Using 10Mbps with software preamble removal\n", in cvm_oct_check_preamble_errors()
91 * Since the 10Mbps preamble workaround is allowed we need to in cvm_oct_check_preamble_errors()
92 * enable preamble checking, FCS stripping, and clear error in cvm_oct_check_preamble_errors()
143 * preamble error checking, and we also need to call this in cvm_oct_rgmii_open()
/linux-6.14.4/lib/
Dsiphash.c22 #define PREAMBLE(len) \ macro
51 PREAMBLE(len) in __siphash_aligned()
84 PREAMBLE(len) in __siphash_unaligned()
118 PREAMBLE(8) in siphash_1u64()
135 PREAMBLE(16) in siphash_2u64()
158 PREAMBLE(24) in siphash_3u64()
186 PREAMBLE(32) in siphash_4u64()
209 PREAMBLE(4) in siphash_1u32()
219 PREAMBLE(12) in siphash_3u32()
235 #define HPREAMBLE(len) PREAMBLE(len)
/linux-6.14.4/sound/soc/tegra/
Dtegra20_spdif.h63 /* Interrupt on invalid preamble */
66 /* Interrupt on "B" preamble */
126 * preamble of the data stream after RX_EN is asserted. This bit is
166 /* Preamble status: 0=Preamble OK, 1=bad/missing preamble */
169 /* B-preamble detection status: 0=not detected, 1=B-preamble detected */
/linux-6.14.4/Documentation/devicetree/bindings/net/
Dmdio.yaml55 suppress-preamble:
57 The 32 bit preamble should be suppressed. In order for this to
58 work, all devices on the bus must support suppressed preamble.
Dthead,th1520-gmac.yaml21 - Preamble and start of frame data (SFD) insertion in Transmit path
22 - Preamble and SFD deletion in the Receive path
Dengleder,tsnep.yaml92 suppress-preamble;
112 suppress-preamble;
/linux-6.14.4/net/wireless/
Dpmsr.c17 u32 preamble = NL80211_PREAMBLE_DMG; /* only optional in DMG */ in pmsr_parse_ftm() local
30 preamble = nla_get_u32(tb[NL80211_PMSR_FTM_REQ_ATTR_PREAMBLE]); in pmsr_parse_ftm()
42 "FTM: must specify preamble"); in pmsr_parse_ftm()
47 if (!(capa->ftm.preambles & BIT(preamble))) { in pmsr_parse_ftm()
50 "FTM: invalid preamble"); in pmsr_parse_ftm()
54 out->ftm.preamble = preamble; in pmsr_parse_ftm()
160 out->ftm.preamble != NL80211_PREAMBLE_HE) { in pmsr_parse_ftm()
163 "FTM: non EDCA based ranging must use HE preamble"); in pmsr_parse_ftm()
/linux-6.14.4/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
Dpub.h212 #define BRCMS_PROT_N_PAM_OVR 15 /* n preamble override */
220 * Preamble: Long
225 * Preamble: Long
230 * Preamble: Short required
235 * Preamble: Long
239 * Preamble: Short required
244 * Preamble: Long
/linux-6.14.4/drivers/nfc/pn533/
Dpn533.h45 /* Preamble (1), SoPC (2), ACK Code (2), Postamble (1) */
48 * Preamble (1), SoPC (2), Packet Length (1), Packet Length Checksum (1),
117 u8 preamble; member
125 u8 preamble; member
/linux-6.14.4/arch/sparc/lib/
DGENmemcpy.S34 #ifndef PREAMBLE
35 #define PREAMBLE macro
77 PREAMBLE
/linux-6.14.4/arch/mips/cavium-octeon/executive/
Dcvmx-interrupt-decodes.c76 /*gmx_rx_int_en.s.pcterr = 1; // Bad Preamble / Protocol */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
97 /*gmx_rx_int_en.s.pcterr = 1; // Bad Preamble / Protocol */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
120 /*gmx_rx_int_en.s.pcterr = 1; // Bad Preamble / Protocol */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
142 /*gmx_rx_int_en.s.pcterr = 1; // Bad Preamble / Protocol */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
164 /*gmx_rx_int_en.s.pcterr = 1; // Bad Preamble / Protocol */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
187 /*gmx_rx_int_en.s.pcterr = 1; // Bad Preamble / Protocol */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
217 /*gmx_rx_int_en.s.pcterr = 1; // Bad Preamble / Protocol */ in __cvmx_interrupt_gmxx_rxx_int_en_enable()
/linux-6.14.4/drivers/platform/chrome/
Dcros_ec_spi.c19 /* The header byte, which follows the preamble */
23 * Number of EC preamble bytes we read at a time. Since it takes
26 * we could increase this so that might expect the preamble and
177 * This function has two phases: reading the preamble bytes (since if we read
178 * data from the EC before it is ready to send, we just get preamble) and
239 dev_dbg(ec_dev->dev, "need %d, got %d bytes from preamble\n", in cros_ec_spi_receive_packet()
286 * This function has two phases: reading the preamble bytes (since if we read
287 * data from the EC before it is ready to send, we just get preamble) and
347 dev_dbg(ec_dev->dev, "need %d, got %d bytes from preamble\n", in cros_ec_spi_receive_response()
/linux-6.14.4/drivers/media/pci/cx18/
Dcx18-av-vbi.c20 * 3 byte Anc data preamble: 0x00 0xff 0xff
49 u8 preamble[3]; member
257 if (anc->preamble[0] || in cx18_av_decode_vbi_line()
258 anc->preamble[1] != 0xff || anc->preamble[2] != 0xff || in cx18_av_decode_vbi_line()
/linux-6.14.4/tools/testing/selftests/bpf/progs/
Dtest_siphash.h28 #define PREAMBLE(len) \ macro
53 PREAMBLE(16) in siphash_2u64()
/linux-6.14.4/Documentation/
Dconf.py402 # Additional stuff for the LaTeX preamble.
403 'preamble': '''
414 latex_elements['preamble'] += '\\renewcommand*{\\DUrole}[2]{ #2 }\n'
418 latex_elements['preamble'] += '''
420 \\input{kerneldoc-preamble.sty}
486 'sphinx/kerneldoc-preamble.sty',
/linux-6.14.4/include/net/
Dnl802154.h250 * @NL802154_COORD_PREAMBLE_CODE: Preamble code used when the beacon was received,
337 * @NL802154_CCA_UWB_SHR: UWB preamble sense based on the SHR of a frame
338 * @NL802154_CCA_UWB_MULTIPLEXED: UWB preamble sense based on the packet with
339 * the multiplexed preamble
/linux-6.14.4/include/sound/
Dak4117.h23 #define AK4117_REG_Pc0 0x0d /* burst preamble Pc byte 0 */
24 #define AK4117_REG_Pc1 0x0e /* burst preamble Pc byte 1 */
25 #define AK4117_REG_Pd0 0x0f /* burst preamble Pd byte 0 */
26 #define AK4117_REG_Pd1 0x10 /* burst preamble Pd byte 1 */
/linux-6.14.4/drivers/gpu/drm/i915/display/
Dintel_alpm.c232 int preamble = 8; /* eDP spec */ in intel_alpm_compute_params() local
233 int precharge = intel_dp_aux_fw_sync_len(intel_dp) - preamble; in intel_alpm_compute_params()
237 preamble + phy_wake + tfw_exit_latency; in intel_alpm_compute_params()
238 fast_wake_time = precharge + preamble + phy_wake + in intel_alpm_compute_params()
/linux-6.14.4/drivers/net/wireless/broadcom/b43/
Dxmit.h101 #define B43_TXH_MAC_RTS_FB_SHORTPRMBL 0x80000000 /* RTS fallback preamble */
102 #define B43_TXH_MAC_RTS_SHORTPRMBL 0x40000000 /* RTS main rate preamble */
103 #define B43_TXH_MAC_FB_SHORTPRMBL 0x20000000 /* Main fallback preamble */
153 #define B43_TXH_PHY_SHORTPRMBL 0x0010 /* Use short preamble */
303 #define B43_RX_PHYST0_SHORTPRMBL 0x0080 /* Received with Short Preamble */
/linux-6.14.4/drivers/net/wireless/ath/ath5k/
Dpcu.c117 int sifs, preamble, plcp_bits, sym_time; in ath5k_hw_get_frame_duration() local
126 /* subtract difference between long and short preamble */ in ath5k_hw_get_frame_duration()
135 preamble = AR5K_INIT_OFDM_PREAMPLE_TIME; in ath5k_hw_get_frame_duration()
142 preamble = AR5K_INIT_OFDM_PREAMBLE_TIME_MIN; in ath5k_hw_get_frame_duration()
146 preamble *= 2; in ath5k_hw_get_frame_duration()
152 preamble *= 4; in ath5k_hw_get_frame_duration()
166 dur = sifs + preamble + (sym_time * symbols); in ath5k_hw_get_frame_duration()
268 * capable of short preamble (802.11b rates 2Mbps, 5.5Mbps, and 11Mbps) have
269 * different rate code so we write their value twice (one for long preamble
/linux-6.14.4/drivers/net/ethernet/chelsio/cxgb/
Dvsc7326_reg.h43 #define REG_PRE_BIT0POS CRA(0x7,0x1,0x10) /* Preamble bit0 position */
44 #define REG_PRE_BIT1POS CRA(0x7,0x1,0x11) /* Preamble bit1 position */
45 #define REG_PRE_BIT2POS CRA(0x7,0x1,0x12) /* Preamble bit2 position */
46 #define REG_PRE_BIT3POS CRA(0x7,0x1,0x13) /* Preamble bit3 position */
47 #define REG_PRE_ERR_CNT CRA(0x7,0x1,0x14) /* Preamble parity error count */
184 #define REG_PORT_POS(pn) CRA(0x1,pn,0x0d) /* Preamble port position */
185 #define REG_PORT_FAIL(pn) CRA(0x1,pn,0x0e) /* Preamble port position */
/linux-6.14.4/drivers/gpu/drm/amd/amdgpu/
Damdgpu_job.h30 /* bit set means command submit involves a preamble IB */
32 /* bit set means preamble IB is first presented in belonging context */

12345678910>>...15