/freebsd/usr.sbin/mixer/tests/ |
H A D | mixer_test.sh | 200 atf_test_case mute cleanup 213 atf_check -o not-empty mixer vol.mute 215 atf_check -o ignore -e empty mixer vol.mute=off 216 atf_check -o match:"=off" mixer vol.mute 218 atf_check -o ignore -e empty mixer vol.mute=on 219 atf_check -o match:"=on" mixer vol.mute 221 atf_check -o ignore -e empty mixer vol.mute=toggle 222 atf_check -o match:"=off" mixer vol.mute 225 atf_check -o ignore -e empty mixer vol.mute=0 226 atf_check -o match:"=off" mixer vol.mute [all …]
|
/freebsd/sbin/conscontrol/ |
H A D | conscontrol.c | 59 int mute; in consstatus() local 63 len = sizeof(mute); in consstatus() 64 if (sysctlbyname("kern.consmute", &mute, &len, NULL, 0) == -1) in consstatus() 83 printf(" Muting: %s\n", mute ? "on" : "off"); in consstatus() 90 int mute; in consmute() local 94 mute = 1; in consmute() 96 mute = 0; in consmute() 99 len = sizeof(mute); in consmute() 100 if (sysctlbyname("kern.consmute", NULL, NULL, &mute, len) == -1) in consmute()
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | rohm,bd28623.txt | 5 to GPIOs: reset and mute. 16 - mute-gpios : GPIO specifier for the active low mute line 28 mute-gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
|
H A D | maxim,max9759.txt | 7 - mute-gpios : the gpio connected to the mute pin 15 mute-gpios = <&gpio3 19 GPIO_ACTIVE_LOW>;
|
H A D | ak4458.txt | 12 - mute-gpios: A GPIO specifier for the soft mute pin 26 mute-gpios = <&gpio1 11 GPIO_ACTIVE_HIGH>
|
H A D | st,sta350.txt | 86 - st,invalid-input-detect-mute: 87 If present, automatic invalid input detect mute is enabled. 89 - st,activate-mute-output: 90 If present, a mute output will be activated in ase the volume will 105 mute commands. 129 st,invalid-input-detect-mute; // mute if no valid digital
|
H A D | wm8524.txt | 9 - wlf,mute-gpios: a GPIO spec for the MUTE pin. 15 wlf,mute-gpios = <&gpio1 8 GPIO_ACTIVE_LOW>;
|
H A D | uda1334.txt | 8 - nxp,mute-gpios: a GPIO spec for the MUTE pin. 15 nxp,mute-gpios = <&gpio1 8 GPIO_ACTIVE_LOW>;
|
H A D | ti,tas6424.txt | 10 - mute-gpios: GPIO used to mute all the outputs
|
H A D | st,sta32x.txt | 78 - st,invalid-input-detect-mute: 79 If present, automatic invalid input detect mute is enabled. 99 st,invalid-input-detect-mute; // mute if no valid digital
|
H A D | rockchip,rk3328-codec.txt | 15 - mute-gpios: GPIO specifier for external line driver control (typically the 26 mute-gpios = <&grf_gpio 0 GPIO_ACTIVE_LOW>;
|
H A D | tda7419.txt | 13 - st,mute-gpios : a GPIO spec for the MUTE pin.
|
H A D | cs53l30.txt | 16 - mute-gpios : a GPIO spec for the MUTE pin. The active state can be either
|
/freebsd/sys/arm/allwinner/ |
H A D | a10_codec.c | 62 void (*mute)(struct a10codec_info *, int, int); member 315 a10_mute(struct a10codec_info *sc, int mute, int dir) in a10_mute() argument 321 if (mute) { in a10_mute() 335 if (mute) { in a10_mute() 577 h3_mute(struct a10codec_info *sc, int mute, int dir) in h3_mute() argument 580 if (mute) { in h3_mute() 596 if (mute) { in h3_mute() 737 sc->cfg->mute(sc, 0, ch->dir); in a10codec_start() 763 sc->cfg->mute(sc, 0, ch->dir); in a10codec_start() 794 sc->cfg->mute(sc, 1, ch->dir); in a10codec_stop() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | twl4030-audio.txt | 17 -ti,hs_extmute: Use external mute for HS pop reduction 18 -ti,hs_extmute_gpio: Use external GPIO to control the external mute
|
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | rockchip,rk3328-grf-gpio.txt | 3 In Rockchip RK3328, the output only GPIO_MUTE pin, originally for codec mute 8 Currently this GPIO controller only supports the mute pin. If needed in the
|
/freebsd/usr.sbin/bhyve/ |
H A D | hda_codec.c | 791 uint8_t mute = 0; in hda_codec_audio_inout_nid() local 813 mute = payload & HDA_CODEC_SET_AMP_GAIN_MUTE_MUTE; in hda_codec_audio_inout_nid() 817 st->left_mute = mute; in hda_codec_audio_inout_nid() 820 mute: 0x%x gain: 0x%x", mute, gain); in hda_codec_audio_inout_nid() 824 st->right_mute = mute; in hda_codec_audio_inout_nid() 827 mute: 0x%x gain: 0x%x", mute, gain); in hda_codec_audio_inout_nid()
|
/freebsd/sys/dev/acpi_support/ |
H A D | acpi_panasonic.c | 226 int mute; in acpi_panasonic_shutdown() local 230 mute = 1; in acpi_panasonic_shutdown() 231 hkey_sound_mute(sc->handle, HKEY_SET, &mute); in acpi_panasonic_shutdown()
|
/freebsd/sys/contrib/device-tree/Bindings/iio/frequency/ |
H A D | adf4350.txt | 58 - adi,mute-till-lock-enable: Enables Mute-Till-Lock-Detect function. 85 adi,mute-till-lock-enable;
|
/freebsd/sys/dev/sound/pcm/ |
H A D | channel.c | 1517 chn_setmute_multi(struct pcm_channel *c, int vc, int mute) in chn_setmute_multi() argument 1525 ret |= chn_setmute_matrix(c, vc, i, mute); in chn_setmute_multi() 1527 ret |= chn_setmute_matrix(c, vc, i, mute) << 8; in chn_setmute_multi() 1529 ret |= chn_setmute_matrix(c, vc, i, mute) << 16; in chn_setmute_multi() 1535 chn_setmute_matrix(struct pcm_channel *c, int vc, int vt, int mute) in chn_setmute_matrix() argument 1543 __func__, c, vc, vt, mute)); in chn_setmute_matrix() 1547 mute = (mute != 0); in chn_setmute_matrix() 1549 c->muted[vc][vt] = mute; in chn_setmute_matrix() 1558 c->muted[SND_VOL_C_VAL(vc)][vt] = mute; in chn_setmute_matrix() 1563 c->muted[SND_VOL_C_VAL(vc)][i] = mute; in chn_setmute_matrix() [all …]
|
H A D | ac97.c | 49 unsigned mute:1; /* bit15 is MUTE */ member 490 if (e->mute == 1) { in ac97_setmixer() 704 if (codec->mix[i].mute) { in ac97_initmixer() 724 j | (codec->mix[i].mute ? 0x8000 : 0)); in ac97_initmixer()
|
/freebsd/sys/contrib/device-tree/src/arm/microchip/ |
H A D | mpa1600.dts | 74 label = "Monitor mute";
|
/freebsd/sys/dev/sound/pci/hda/ |
H A D | hdaa.c | 397 if (ctl != NULL && ctl->mute) { in hdaa_hpredir_handler() 427 if (ctl != NULL && ctl->mute) { in hdaa_hpredir_handler() 1675 hdaa_audio_ctl_amp_set(struct hdaa_audio_ctl *ctl, uint32_t mute, in hdaa_audio_ctl_amp_set() argument 1684 if (mute != HDAA_AMP_MUTE_DEFAULT) in hdaa_audio_ctl_amp_set() 1685 ctl->muted = mute; in hdaa_audio_ctl_amp_set() 2324 int mute, int *left, int *right) in hdaa_audio_ctl_dev_set() argument 2330 ctl->devmute[ossdev] = mute; in hdaa_audio_ctl_dev_set() 2353 int ossdev, nid_t nid, int index, int mute, int left, int right, int depth) in hdaa_audio_ctl_source_volume() argument 2383 hdaa_audio_ctl_dev_set(ctl, ossdev, mute, &left, &right); in hdaa_audio_ctl_source_volume() 2408 hdaa_audio_ctl_dev_set(ctl, ossdev, mute, &left, &right); in hdaa_audio_ctl_source_volume() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
H A D | rk3328-roc-pc.dts | 45 mute-gpios = <&grf_gpio 0 GPIO_ACTIVE_LOW>;
|
/freebsd/sys/gnu/dev/bwn/phy_n/ |
H A D | if_bwn_phy_n_core.h | 108 bool mute; member
|