Home
last modified time | relevance | path

Searched +full:mic +full:- +full:type +full:- +full:0 (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dmt6359.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Eason Yen <eason.yen@mediatek.com>
11 - Jiaxin Yu <jiaxin.yu@mediatek.com>
12 - Shane Chien <shane.chien@mediatek.com>
20 mediatek,dmic-mode:
24 signal. 0 means two wires, 1 means one wire. Default value is 0.
26 - 0 # one wire
27 - 1 # two wires
[all …]
H A Ddialog,da7219.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schema
[all...]
H A Dqcom,apq8016-sbc-sndcard.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/sound/qcom,apq8016-sbc-sndcard.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11 - Stephan Gerhold <stephan@gerhold.net>
16 - qcom,apq8016-sbc-sndcard
17 - qcom,msm8916-qdsp6-sndcard
21 - description: Microphone I/O mux register address
22 - description: Speaker I/O mux register address
[all …]
H A Dgoogle,sc7280-herobrine.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/sound/google,sc7280-herobrin
[all...]
H A Dda7219.txt8 - compatible : Should be "dlg,da7219"
9 - reg: Specifies the I2C slave address
11 - interrupts : IRQ line info for DA7219.
12 (See Documentation/devicetree/bindings/interrupt-controller/interrupts.txt for
15 - VDD-supply: VDD power supply for the device
16 - VDDMIC-supply: VDDMIC power supply for the device
17 - VDDIO-supply: VDDIO power supply for the device
22 - interrupt-names : Name associated with interrupt line. Should be "wakeup" if
24 - wakeup-source: Flag to indicate this device can wake system (suspend/resume).
26 - #clock-cells : Should be set to '<1>', two clock sources provided;
[all …]
H A Dti,tlv320adc3xxx.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Ricard Wanderlof <ricardw@axis.com>
18 - $ref: dai-common.yaml#
23 - ti,tlv320adc3001
24 - ti,tlv320adc3101
30 '#sound-dai-cells':
31 const: 0
33 '#gpio-cells':
[all …]
H A Dtlv320adcx140.yaml1 # SPDX-License-Identifier: (GPL-2.0+ OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
8 title: Texas Instruments TLV320ADCX140 Quad Channel Analog-t
[all...]
H A Dti,tlv320adcx140.yaml1 # SPDX-License-Identifier: (GPL-2.0+ OR BSD-2-Clause)
4 ---
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
8 title: Texas Instruments TLV320ADCX140 Quad Channel Analog-to-Digital Converter
11 - Andrew Davis <afd@ti.com>
14 The TLV320ADCX140 are multichannel (4-ch analog recording or 8-ch digital
15 PDM microphones recording), high-performance audio, analog-to-digital
28 - ti,tlv320adc3140
29 - ti,tlv320adc5140
30 - ti,tlv320adc6140
[all …]
H A Dsamsung,aries-wm8994.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/sound/samsung,aries-wm899
[all...]
H A Dmt8186-mt6366-da7219-max98357.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/sound/mt8186-mt6366-da7219-max98357.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Jiaxin Yu <jiaxin.yu@mediatek.com>
16 - $ref: sound-card-common.yaml#
21 - mediatek,mt8186-mt6366-da7219-max98357-sound
23 audio-routing:
24 $ref: /schemas/types.yaml#/definitions/non-unique-string-array
35 - HDMI1
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/include/
H A Domp_lib.h.var4 !//===----------------------------------------------------------------------===//
6 !// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
8 !// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 !//===----------------------------------------------------------------------===//
83 parameter(omp_proc_bind_false=0)
94 parameter(omp_sync_hint_none=0)
130 parameter(omp_control_tool_notool=-2)
132 parameter(omp_control_tool_nocallback=-1)
134 parameter(omp_control_tool_success=0)
156 parameter(omp_atv_default=-1)
[all …]
/freebsd/crypto/openssh/
H A Dauth2-gss.c1 /* $OpenBSD: auth2-gss.c,v 1.36 2024/05/17 04:42:13 djm Exp $ */
4 * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
48 #include "ssh-gss.h"
56 static int input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh);
57 static int input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh);
58 static int input_gssapi_exchange_complete(int type, u_int32_t plen, struct ssh *ssh);
68 Authctxt *authctxt = ssh->authctxt; in userauth_gssapi()
69 gss_OID_desc goid = {0, NULL}; in userauth_gssapi()
77 if ((r = sshpkt_get_u32(ssh, &mechs)) != 0) in userauth_gssapi()
80 if (mechs == 0) { in userauth_gssapi()
[all …]
/freebsd/sys/dev/mmc/
H A Dmmcsd.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
35 * Group. This Simplified Specification is provided on a non-confidential
38 * Association, SD Group, SD-3C LLC or other third parties.
44 * is provided "AS-IS" without any representations or warranties of any
45 * kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD
47 * right of the SD Group, SD-3C LLC, the SD Card Association or any third
50 * SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing
51 * herein shall be construed as an obligation by the SD Group, the SD-3C LLC
53 * information, know-how or other confidential information to any third party.
[all …]
/freebsd/tools/regression/net80211/ccmp/
H A Dtest_ccmp.c1 /*-
35 * Test vectors come from section I.7.4 of P802.11i/D7.0, October 2003.
62 -- MPDU Fields
64 7 Version = 0
65 8 Type = 2 SubType = 0 Data
66 9 ToDS = 0 FromDS = 0
67 10 MoreFrag = 0 Retry = 1
68 11 PwrMgt = 0 moreData = 0
70 13 Order = 0
72 15 A1 = 0f-d2-e1-28-a5-7c DA
[all …]
/freebsd/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_keycache.c1 /*-
2 * SPDX-License-Identifier: ISC
4 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
5 * Copyright (c) 2002-2008 Atheros Communications, Inc.
29 * Note: The key cache hardware requires that each double-word
31 * a 64-bit register). Don't reorder the writes in this code
34 #define KEY_XOR 0xaa
37 (AH5212(ah)->ah_staId1Defaults & AR_STA_ID1_CRPT_MIC_ENABLE)
45 return AH_PRIVATE(ah)->ah_caps.halKeyCacheSize; in ar5212GetKeyCacheSize()
54 if (entry < AH_PRIVATE(ah)->ah_caps.halKeyCacheSize) { in ar5212IsKeyCacheEntryValid()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsdm845-oneplus-fajita.dts1 // SPDX-License-Identifier: GPL-2.0
8 #include "sdm845-oneplus-common.dtsi"
13 chassis-type = "handset";
14 qcom,msm-id = <0x141 0x20001>;
15 qcom,board-id = <8 0 18801 41>;
18 compatible = "simple-battery";
20 charge-full-design-microamp-hours = <3700000>;
21 voltage-min-design-microvolt = <3400000>;
22 voltage-max-design-microvolt = <4400000>;
33 /* nxp,tfa9894 @ 0x34 */
[all …]
H A Dsm8450-hdk.dts1 // SPDX-License-Identifier: BSD-3-Clause
6 /dts-v1/;
8 #include <dt-bindings/regulator/qcom,rpmh-regulator.h>
9 #include <dt-bindings/iio/qcom,spmi-adc7-pm8350.h>
10 #include <dt-bindings/iio/qcom,spmi-adc7-pm8350b.h>
11 #include <dt-bindings/iio/qcom,spmi-adc7-pmk8350.h>
12 #include <dt-bindings/iio/qcom,spmi-adc7-pmr735a.h>
13 #include <dt-bindings/sound/qcom,q6dsp-lpass-ports.h>
24 compatible = "qcom,sm8450-hdk", "qcom,sm8450";
25 chassis-type = "embedded";
[all …]
H A Dsdm845-oneplus-enchilada.dts1 // SPDX-License-Identifier: GPL-2.0
8 #include "sdm845-oneplus-common.dtsi"
13 chassis-type = "handset";
14 qcom,msm-id = <0x141 0x2000
[all...]
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_keycache.c26 * Note: The key cache hardware requires that each double-word
28 * a 64-bit register). Don't reorder the writes in this code
31 #define KEY_XOR 0xaa
34 (AH9300(ah)->ah_sta_id1_defaults & AR_STA_ID1_CRPT_MIC_ENABLE)
37 * This isn't the keytable type; this is actually something separate
42 0, /* HAL_CIPHER_AES_OCB */
44 0, /* HAL_CIPHER_CKIP */
46 0 /* HAL_CIPHER_CLR */
55 return AH_PRIVATE(ah)->ah_caps.halKeyCacheSize; in ar9300_get_key_cache_size()
64 if (entry < AH_PRIVATE(ah)->ah_caps.halKeyCacheSize) { in ar9300_is_key_cache_entry_valid()
[all …]
/freebsd/sys/kgssapi/krb5/
H A Dkrb5_mech.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
60 uint16_t kk_type; /* encryption type */
130 return (0); in get_uint16()
132 v = (p[0] << 8) | p[1]; in get_uint16()
134 *lenp = *lenp - 2; in get_uint16()
146 return (0); in get_uint32()
148 v = (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]; in get_uint32()
150 *lenp = *lenp - 4; in get_uint32()
160 dp->kd_length = sz; in get_data()
[all …]
/freebsd/contrib/wpa/src/eap_common/
H A Deap_sake_common.c2 * EAP server/peer: EAP-SAKE shared routines
3 * Copyright (c) 2006-2019, Jouni Malinen <j@w1.fi>
25 wpa_printf(MSG_DEBUG, "EAP-SAKE: Parse: AT_RAND_S"); in eap_sake_parse_add_attr()
27 wpa_printf(MSG_DEBUG, "EAP-SAKE: AT_RAND_S with " in eap_sake_parse_add_attr()
29 return -1; in eap_sake_parse_add_attr()
31 attr->rand_s = data; in eap_sake_parse_add_attr()
34 wpa_printf(MSG_DEBUG, "EAP-SAKE: Parse: AT_RAND_P"); in eap_sake_parse_add_attr()
36 wpa_printf(MSG_DEBUG, "EAP-SAKE: AT_RAND_P with " in eap_sake_parse_add_attr()
38 return -1; in eap_sake_parse_add_attr()
40 attr->rand_p = data; in eap_sake_parse_add_attr()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Dexynos4412-n710x.dts1 // SPDX-License-Identifier: GPL-2.0
2 /dts-v1/;
3 #include "exynos4412-midas.dtsi"
7 model = "Samsung Galaxy Note 2 (GT-N7100, GT-N7105) based on Exynos4412";
8 chassis-type = "handset";
12 reg = <0x40000000 0x7fc00000>;
17 cam_vdda_reg: voltage-regulator-10 {
18 compatible = "regulator-fixed";
19 regulator-name = "CAM_SENSOR_CORE_1.2V";
20 regulator-min-microvolt = <1200000>;
[all …]
/freebsd/share/man/man4/
H A Dsnd_hda.41 .\" Copyright (c) 2006-2008 Joel Dahl <joel@FreeBSD.org>
35 .Bd -ragged -offset indent
43 .Bd -literal -offset indent
90 .Ss Boot-time Configuration
91 The following variables are available at boot-time through the
94 .Bl -tag -width ".Va hint.hdac.%d.config"-offset indent
158 Set this value to 0 to accept the default configuration values setup by the
162 May be specified as a set of space-separated
184 May be specified as a 32-bit hexadecimal value with a leading
185 .Dq 0x ,
[all …]
/freebsd/sys/dev/sound/pci/hda/
H A Dhdaa_patches.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
6 * Copyright (c) 2008-2012 Alexander Motin <mav@FreeBSD.org>
63 HDAA_QUIRK_FORCESTEREO | HDAA_QUIRK_IVREF, 0,
64 0 },
66 0, 0,
67 HDAA_GPIO_SET(0) },
69 0, 0,
70 HDAA_GPIO_SET(0) },
72 0, 0,
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/nvidia/
H A Dtegra234-p3740-0002+p3701-0008.dts1 // SPDX-License-Identifier: GPL-2.0
2 /dts-v1/;
4 #include <dt-bindings/input/linux-event-codes.h>
5 #include <dt-bindings/input/gpio-keys.h>
6 #include <dt-bindings/sound/rt5640.h>
7 #include "tegra234-p3701-0008.dtsi"
11 compatible = "nvidia,p3740-0002+p3701-0008", "nvidia,p3701-0008", "nvidia,tegra234";
19 stdout-path = "serial0:115200n8";
22 bus@0 {
29 dai-format = "i2s";
[all …]

12345678910>>...13