Home
last modified time | relevance | path

Searched refs:dsp_version (Results 1 – 9 of 9) sorted by relevance

/linux-6.12.1/drivers/iio/temperature/
Dmlx90635.c848 unsigned int dsp_version; in mlx90635_wakeup() local
893 ret = regmap_read(data->regmap_ee, MLX90635_EE_VERSION, &dsp_version); in mlx90635_wakeup()
935 unsigned int dsp_version; in mlx90635_probe() local
992 ret = regmap_read(mlx90635->regmap_ee, MLX90635_EE_VERSION, &dsp_version); in mlx90635_probe()
996 dsp_version = dsp_version & MLX90635_VERSION_MASK; in mlx90635_probe()
998 if (FIELD_GET(MLX90635_DSP_FIXED, dsp_version)) { in mlx90635_probe()
999 if (MLX90635_DSP_VERSION(dsp_version) == MLX90635_ID_DSPv1) { in mlx90635_probe()
1001 "Detected DSP v1 calibration %x\n", dsp_version); in mlx90635_probe()
1005 MLX90635_DSP_VERSION(dsp_version)); in mlx90635_probe()
1010 dsp_version); in mlx90635_probe()
/linux-6.12.1/sound/pci/lx6464es/
Dlx6464es.c649 u32 dsp_version; in lx_init_get_version_features() local
655 err = lx_dsp_get_version(chip, &dsp_version); in lx_init_get_version_features()
661 (dsp_version>>16) & 0xff, (dsp_version>>8) & 0xff, in lx_init_get_version_features()
662 dsp_version & 0xff); in lx_init_get_version_features()
/linux-6.12.1/sound/pci/pcxhr/
Dpcxhr.h77 unsigned int dsp_version; /* read from embedded once firmware is loaded */ member
Dpcxhr_core.h88 #define DSP_EXT_CMD_SET(x) (x->dsp_version > 0x012800)
Dpcxhr_hwdep.c78 mgr->dsp_version = rmh.stat[0]; in pcxhr_init_board()
Dpcxhr.c1228 short ver_maj = (mgr->dsp_version >> 16) & 0xff; in pcxhr_proc_info()
1229 short ver_min = (mgr->dsp_version >> 8) & 0xff; in pcxhr_proc_info()
1230 short ver_build = mgr->dsp_version & 0xff; in pcxhr_proc_info()
/linux-6.12.1/sound/firewire/fireworks/
Dfireworks.h143 u32 dsp_version; member
Dfireworks_proc.c48 snd_iprintf(buffer, "dsp_version: 0x%X\n", hwinfo->dsp_version); in proc_read_hwinfo()
Dfireworks_command.c238 be32_to_cpus(&hwinfo->dsp_version); in snd_efw_command_get_hwinfo()