lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Sun, 20 Oct 2019 17:20:45 -0400
From:   Arvind Sankar <nivedita@...m.mit.edu>
To:     linux-usb@...r.kernel.org
Cc:     linux-kernel@...r.kernel.org
Subject: Audioengine D1 sampling rate get issue

Hi, there seems to be a bug in my Audioengine D1's (0x2912:0x30c8) firmware.

When setting sampling rate, the kernel produces these warning messages:
[168840.944226] usb 3-2.2: current rate 4500480 is different from the runtime rate 44100
[168854.930414] usb 3-2.2: current rate 8436480 is different from the runtime rate 48000
[168905.185825] usb 3-2.1.2: current rate 30465 is different from the runtime rate 96000

This comes from set_sample_rate_v1 in sound/usb/clock.c, which reads out
the rate after setting it to check if it worked.

This device appears to return the sampling rate in big-endian format
instead of the USB spec's little-endian.

i.e.,
44100 == 0x00ac44, 4500480 == 0x44ac00
48000 == 0x00bb80, 8436480 == 0x80bb00
96000 == 0x017700,   30465 == 0x007701

It doesn't seem to cause any actual issues, but the messages are
annoying, and I'm wondering if others have seen this, or is it's
specific to my device's revision or something, and if it should be added
to snd_usb_get_sample_rate_quirk.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ