/openbmc/qemu/audio/ |
H A D | audio_win_int.c | 14 int waveformat_from_audio_settings (WAVEFORMATEX *wfx, in waveformat_from_audio_settings() argument 17 memset (wfx, 0, sizeof (*wfx)); in waveformat_from_audio_settings() 19 wfx->nChannels = as->nchannels; in waveformat_from_audio_settings() 20 wfx->nSamplesPerSec = as->freq; in waveformat_from_audio_settings() 21 wfx->nAvgBytesPerSec = as->freq << (as->nchannels == 2); in waveformat_from_audio_settings() 22 wfx->nBlockAlign = 1 << (as->nchannels == 2); in waveformat_from_audio_settings() 23 wfx->cbSize = 0; in waveformat_from_audio_settings() 28 wfx->wFormatTag = WAVE_FORMAT_PCM; in waveformat_from_audio_settings() 29 wfx->wBitsPerSample = 8; in waveformat_from_audio_settings() 34 wfx->wFormatTag = WAVE_FORMAT_PCM; in waveformat_from_audio_settings() [all …]
|
H A D | dsound_template.h | 170 WAVEFORMATEX wfx; in dsound_init_in() local 191 err = waveformat_from_audio_settings (&wfx, as); in dsound_init_in() 198 bd.lpwfxFormat = &wfx; in dsound_init_in() 222 hr = glue (IFACE, _GetFormat) (ds->FIELD, &wfx, sizeof (wfx), NULL); in dsound_init_in() 230 print_wave_format (&wfx); in dsound_init_in() 242 err = waveformat_to_audio_settings (&wfx, &obt_as); in dsound_init_in()
|
H A D | audio_win_int.h | 4 int waveformat_from_audio_settings (WAVEFORMATEX *wfx, 7 int waveformat_to_audio_settings (WAVEFORMATEX *wfx,
|
H A D | dsoundaudio.c | 258 static void print_wave_format (WAVEFORMATEX *wfx) in print_wave_format() argument 260 dolog ("tag = %d\n", wfx->wFormatTag); in print_wave_format() 261 dolog ("nChannels = %d\n", wfx->nChannels); in print_wave_format() 262 dolog ("nSamplesPerSec = %ld\n", wfx->nSamplesPerSec); in print_wave_format() 263 dolog ("nAvgBytesPerSec = %ld\n", wfx->nAvgBytesPerSec); in print_wave_format() 264 dolog ("nBlockAlign = %d\n", wfx->nBlockAlign); in print_wave_format() 265 dolog ("wBitsPerSample = %d\n", wfx->wBitsPerSample); in print_wave_format() 266 dolog ("cbSize = %d\n", wfx->cbSize); in print_wave_format()
|
/openbmc/linux/drivers/net/wireless/silabs/wfx/ |
H A D | Makefile | 6 wfx-y := \ 21 wfx-$(CONFIG_SPI) += bus_spi.o 22 # When CONFIG_MMC == m, append to 'wfx-y' (and not to 'wfx-m') 23 wfx-$(subst m,y,$(CONFIG_MMC)) += bus_sdio.o 25 obj-$(CONFIG_WFX) += wfx.o
|
H A D | bus_sdio.c | 19 #include "wfx.h" 25 .file_fw = "wfx/wfm_wf200", 26 .file_pds = "wfx/wf200.pds", 30 .file_fw = "wfx/wfm_wf200", 31 .file_pds = "wfx/brd4001a.pds", 35 .file_fw = "wfx/wfm_wf200", 36 .file_pds = "wfx/brd8022a.pds", 40 .file_fw = "wfx/wfm_wf200", 41 .file_pds = "wfx/brd8023a.pds", 143 wfx_sdio_irq_handler_ext, flags, "wfx", bus); in wfx_sdio_irq_subscribe() [all …]
|
H A D | bus_spi.c | 18 #include "wfx.h" 27 .file_fw = "wfx/wfm_wf200", 28 .file_pds = "wfx/wf200.pds", 33 .file_fw = "wfx/wfm_wf200", 34 .file_pds = "wfx/brd4001a.pds", 39 .file_fw = "wfx/wfm_wf200", 40 .file_pds = "wfx/brd8022a.pds", 45 .file_fw = "wfx/wfm_wf200", 46 .file_pds = "wfx/brd8023a.pds", 165 wfx_spi_irq_handler, flags, "wfx", bus); in wfx_spi_irq_subscribe() [all …]
|
H A D | Kconfig | 2 config WFX config 5 depends on MMC || !MMC # do not allow WFX=y if MMC=m
|
H A D | main.c | 23 #include "wfx.h" 170 * https://github.com/SiliconLabs/wfx-firmware/blob/master/PDS/README.md 314 gpiod_set_consumer_name(wdev->pdata.gpio_wakeup, "wfx wakeup"); in wfx_init_common()
|
H A D | data_rx.c | 12 #include "wfx.h"
|
H A D | debug.c | 13 #include "wfx.h" 323 d = debugfs_create_dir("wfx", wdev->hw->wiphy->debugfsdir); in wfx_debug_init()
|
H A D | scan.c | 11 #include "wfx.h"
|
H A D | hif_tx_mib.c | 12 #include "wfx.h"
|
H A D | key.c | 12 #include "wfx.h"
|
H A D | queue.c | 12 #include "wfx.h"
|
H A D | bh.c | 12 #include "wfx.h"
|
H A D | hwio.c | 14 #include "wfx.h"
|
H A D | fwio.c | 14 #include "wfx.h"
|
H A D | hif_rx.c | 12 #include "wfx.h"
|
/openbmc/linux/Documentation/devicetree/bindings/net/wireless/ |
H A D | silabs,wfx.yaml | 5 $id: http://devicetree.org/schemas/net/wireless/silabs,wfx.yaml# 25 It is recommended to declare a mmc-pwrseq on SDIO host above WFx. Without
|
/openbmc/linux/drivers/net/wireless/silabs/ |
H A D | Makefile | 3 obj-$(CONFIG_WFX) += wfx/
|
H A D | Kconfig | 16 source "drivers/net/wireless/silabs/wfx/Kconfig"
|
/openbmc/openbmc/poky/meta/recipes-kernel/linux-firmware/ |
H A D | linux-firmware_20241210.bb | 75 & Firmware-wfx \ 156 file://wfx/LICENCE.wf200;md5=4d1beff00d902c05c9c7e95a5d8eb52d \ 232 NO_GENERIC_LICENSE[Firmware-wfx] = "wfx/LICENCE.wf200" 280 cp wfx/LICEN[CS]E.* ${D}${nonarch_base_libdir}/firmware/wfx/ 434 ${PN}-wfx-license ${PN}-wfx \ 932 LICENSE:${PN}-wfx = "Firmware-wfx" 933 LICENSE:${PN}-wfx-license = "Firmware-wfx" 935 FILES:${PN}-wfx = " \ 936 ${nonarch_base_libdir}/firmware/wfx/*.pds* \ 937 ${nonarch_base_libdir}/firmware/wfx/*.sec* \ [all …]
|
/openbmc/linux/tools/perf/arch/arm64/util/ |
H A D | arm64_exception_types.h | 82 ECN(UNKNOWN), ECN(WFx), ECN(CP15_32), ECN(CP15_64), ECN(CP14_MR), \
|
/openbmc/linux/arch/arm64/kvm/ |
H A D | handle_exit.c | 136 /* Treat WFxT as WFx if RN is invalid */ in kvm_handle_wfx()
|