Ubuntu13下调试USB AUDIO的一些记录

    最近想玩玩LINUX,于是双系统装了一个Ubuntu13.04。

    在新系统下用着都还好,不过我自己DIY的USB DAC出了问题。在WIN7下能正常工作,但是在Ubuntu下就爆音不断,很明显是音频数据流断流引起的。

    这说明stm32上的固件与Ubuntu的USB AUDIO驱动程序不太兼容,于是开始检查。在这个过程中,学到不少调试方法,下面详细描述下调试的过程:

  1.  第一步需要确定USB DAC已经成功连接到PC,这里使用dmesg命令查看内核的信息。

    USB DAC连接PC,输入命令:

     >> dmesg | tail  

[ 2148.890771] usb 1-1.2: Product: Ilmen Audio
[ 2148.890774] usb 1-1.2: Manufacturer: IlmenTech
[ 2148.890778] usb 1-1.2: SerialNumber: 5CDC856933
[ 2150.327668] usb 1-1.2: USB disconnect, device number 83
[ 2151.785785] usb 1-1.2: new full-speed USB device number 84 using ehci-pci
[ 2151.880680] usb 1-1.2: New USB device found, idVendor=0483, idProduct=5730
[ 2151.880687] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2151.880692] usb 1-1.2: Product: Ilmen Audio
[ 2151.880696] usb 1-1.2: Manufacturer: IlmenTech
[ 2151.880699] usb 1-1.2: SerialNumber: 5CDC856933

     可以看到设备的一些信息,USB设备已经成功的连接到PC。(由于最初我的USB配置描述符有BUG,所以可以从内核的输出信息里看到USB没有枚举成功,以及出错的原因)

  2. 第二步是查看这个USB设备的具体信息,这里用到命令lsusb。

    >> lsusb

Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 1366:0101 SEGGER J-Link ARM
Bus 001 Device 004: ID 0483:5730 SGS Thomson Microelectronics 
Bus 002 Device 003: ID 046d:c52f Logitech, Inc. Wireless Mouse M305
Bus 002 Device 004: ID 064e:f207 Suyin Corp.

    lsusb列出了当前所有可用的USB设备,在上面可以看到jlink设备,我的罗技无线鼠标,而"SGS Thomson Microelectronics"就是stm32的USB设备。

    可以看到这个设备在Bus 001下,Device为004;在知道这两个地址后,可以用lsusb命令查看更多该设备的信息。 

    于是输入 >> lsusb -D /dev/bus/usb/001/004 

Device: ID 0483:5730 SGS Thomson Microelectronics 
Device Descriptor:bLength                18bDescriptorType         1bcdUSB               2.00bDeviceClass            0 (Defined at Interface level)bDeviceSubClass         0 bDeviceProtocol         0 bMaxPacketSize0         8idVendor           0x0483 SGS Thomson MicroelectronicsidProduct          0x5730 bcdDevice            2.00iManufacturer           1 iProduct                2 iSerial                 3 bNumConfigurations      1
......

 

     命令行则会列出设备的描述符,由于很长,所以之列出前面几行信息。

     http://www.linuxnix.com/2013/05/find-usb-device-details-in-linuxunix-using-lsusb-command.html这个帖子介绍了lsusb的基本用法,可以参考。

3.  USB设备信息有了,接下来看看系统音频设备列表里的情况。

     查看当前可用的音频设备可以通过命令 >> aplay -l

**** PLAYBACK 硬體裝置清單 ****
card 0: MID [HDA Intel MID], device 0: ALC272 Analog [ALC272 Analog]子设备: 1/1子设备 #0: subdevice #0
card 0: MID [HDA Intel MID], device 1: ALC272 Digital [ALC272 Digital]子设备: 1/1子设备 #0: subdevice #0
card 1: Audio [Ilmen Audio], device 0: USB Audio [USB Audio]子设备: 0/1子设备 #0: subdevice #0
card 2: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0]子设备: 1/1子设备 #0: subdevice #0

 

    从上面的信息可以看出,此时我的USB  DAC是card 1,为可用的。

    目录/proc/asound/下有各种音频设备,例如我的USB DAC就在/proc/asound/card1/文件夹下,这里可以看到很多音频设备的信息。

    音频设备的参数 >> cat /proc/asound/card1/pcm0p/sub0/hw_params  

access: MMAP_INTERLEAVED
format: S16_LE
subformat: STD
channels: 2
rate: 44100 (44100/1)
period_size: 1024
buffer_size: 16384

    查看音频流的当前参数 >> cat /proc/asound/card1/stream0

    如果没有播放声音(无音频流)

IlmenTech Ilmen Audio at usb-0000:00:1a.0-1.2, full speed : USB AudioPlayback:Status: StopInterface 1Altset 1Format: S16_LEChannels: 2Endpoint: 1 OUT (ASYNC)Rates: 44100

    若正在播放

IlmenTech Ilmen Audio at usb-0000:00:1a.0-1.2, full speed : USB AudioPlayback:Status: RunningInterface = 1Altset = 1Packet Size = 196Momentary freq = 43640 Hz (0x2b.a3c0)Feedback Format = 10.14Packet Size = 0Momentary freq = 44100 Hz (0x2c.199a)Interface 1Altset 1Format: S16_LEChannels: 2Endpoint: 1 OUT (ASYNC)Rates: 44100

    上面的信息非常有用,可以看到,此音频设备是ASYNC(异步模式),2个声道,有符号16bit的数据格式。

    再往上看,反馈(feedback)的格式是10.14,这在USB 2.0协议里有详细说明。当前反馈的采样率是43640 Hz(会变化),下面那个44100是此设备支持的采样率。

    上面这是我成功解决问题后打印出的信息,在USB DAC工作不正常时(断流),可以看到第一个Moment freq这一项的参数十分接近48000 Hz且不会变动,这是不正常的。

     在google了一天也没找到原因,最后无意间将feedback的范围从 44.1Khz +- 5Khz 减小到44.1Khz +- 1Khz才工作正常。

     可见Ubuntu与WIN7的底层音频驱动有不同,由于没看过具体代码,所也目前也只能猜测:当我反馈的采样率值超过当前设备的“额定采样率”44.1Khz过多后,就导致了当前采样率“卡”在了某一固定值,不知道这算不算一个BUG。

     有关ALSA的东西可以在这里查: http://www.alsa-project.org/main/index.php/Asoundrc

4. 最后再提一个linux下调试USB十分方便的工具:usbmon

     这个USB的抓包工具linux自带,已经编译进内核。

     具体使用方法可以参考http://blog.csdn.net/liuqz2009/article/details/7886461

     不过抓到的数据看起来很不直观, 例如下面我是一小段用usbmon抓到信息:

ead46c00 3346920735 C Zi:1:003:2 0:16:954:0 1 0:0:3 4 = f0e80b00
ead46c00 3346920736 S Zi:1:003:2 -115:16:954 1 -18:0:3 4 <
eddf8600 3346928822 C Zo:1:003:1 0:1:955:0 8 0:0:188 0:188:192 0:380:188 0:568:192 0:760:192 1524 >
eddf8600 3346928836 S Zo:1:003:1 -115:1:955 8 -18:0:188 -18:188:192 -18:380:192 -18:572:188 -18:760:192 1524 = a503c8fd 7703c6fd 3f03c3fd 0803c3fd d102c6fd 9102ccfd 5702d4fd 1602dafd
ea4cbc00 3346936710 C Zo:1:003:1 0:1:963:0 8 0:0:188 0:188:192 0:380:192 0:572:188 0:760:192 1524 >
ea4cbc00 3346936723 S Zo:1:003:1 -115:1:963 8 -18:0:188 -18:188:192 -18:380:192 -18:572:188 -18:760:192 1524 = 08fbf9fa 22fbe5fa 40fbd2fa 5efbc1fa 83fbb9fa abfbb5fa d4fbaffa 03fcb1fa
ead46e40 3346936729 C Zi:1:003:2 0:16:970:0 1 0:0:3 4 = f0e80b00

    要看懂上面的信息还需要借助http://www.mjmwired.net/kernel/Documentation/usb/usbmon.txt里面的说明信息,每一项都有它的含义,需要对照来看。

109    Here is the list of words, from left to right:
110    
111    - URB Tag. This is used to identify URBs, and is normally an in-kernel address
112      of the URB structure in hexadecimal, but can be a sequence number or any
113      other unique string, within reason.
114    
115    - Timestamp in microseconds, a decimal number. The timestamp's resolution
116      depends on available clock, and so it can be much worse than a microsecond
117      (if the implementation uses jiffies, for example).
118    
119    - Event Type. This type refers to the format of the event, not URB type.
120      Available types are: S - submission, C - callback, E - submission error.
121    
122    - "Address" word (formerly a "pipe"). It consists of four fields, separated by
123      colons: URB type and direction, Bus number, Device address, Endpoint number.
124      Type and direction are encoded with two bytes in the following manner:
125        Ci Co   Control input and output
126        Zi Zo   Isochronous input and output
127        Ii Io   Interrupt input and output
128        Bi Bo   Bulk input and output
129      Bus number, Device address, and Endpoint are decimal numbers, but they may
130      have leading zeros, for the sake of human readers.
131    
132    - URB Status word. This is either a letter, or several numbers separated
133      by colons: URB status, interval, start frame, and error count. Unlike the
134      "address" word, all fields save the status are optional. Interval is printed
135      only for interrupt and isochronous URBs. Start frame is printed only for
136      isochronous URBs. Error count is printed only for isochronous callback
137      events.
138    
139      The status field is a decimal number, sometimes negative, which represents
140      a "status" field of the URB. This field makes no sense for submissions, but
141      is present anyway to help scripts with parsing. When an error occurs, the
142      field contains the error code.
143    
144      In case of a submission of a Control packet, this field contains a Setup Tag
145      instead of an group of numbers. It is easy to tell whether the Setup Tag is
146      present because it is never a number. Thus if scripts find a set of numbers
147      in this word, they proceed to read Data Length (except for isochronous URBs).
148      If they find something else, like a letter, they read the setup packet before
149      reading the Data Length or isochronous descriptors.
150    
151    - Setup packet, if present, consists of 5 words: one of each for bmRequestType,
152      bRequest, wValue, wIndex, wLength, as specified by the USB Specification 2.0.
153      These words are safe to decode if Setup Tag was 's'. Otherwise, the setup
154      packet was present, but not captured, and the fields contain filler.
155    
156    - Number of isochronous frame descriptors and descriptors themselves.
157      If an Isochronous transfer event has a set of descriptors, a total number
158      of them in an URB is printed first, then a word per descriptor, up to a
159      total of 5. The word consists of 3 colon-separated decimal numbers for
160      status, offset, and length respectively. For submissions, initial length
161      is reported. For callbacks, actual length is reported.
162    
163    - Data Length. For submissions, this is the requested length. For callbacks,
164      this is the actual length.
165    
166    - Data tag. The usbmon may not always capture data, even if length is nonzero.
167      The data words are present only if this tag is '='.
168    
169    - Data words follow, in big endian hexadecimal format. Notice that they are
170      not machine words, but really just a byte stream split into words to make
171      it easier to read. Thus, the last word may contain from one to four bytes.
172      The length of collected data is limited and can be less than the data length
173      reported in the Data Length word. In the case of an Isochronous input (Zi)
174      completion where the received data is sparse in the buffer, the length of
175      the collected data can be greater than the Data Length value (because Data
176      Length counts only the bytes that were received whereas the Data words
177      contain the entire transfer buffer).

    现在就只看下面这一小段

ead46c00 3346920735 C Zi:1:003:2 0:16:954:0 1 0:0:3 4 = f0e80b00
ead46c00 3346920736 S Zi:1:003:2 -115:16:954 1 -18:0:3 4 <
eddf8600 3346928822 C Zo:1:003:1 0:1:955:0 8 0:0:188 0:188:192 0:380:188 0:568:192 0:760:192 1524 >
eddf8600 3346928836 S Zo:1:003:1 -115:1:955 8 -18:0:188 -18:188:192 -18:380:192 -18:572:188 -18:760:192 1524 = a503c8fd 7703c6fd 3f03c3fd 0803c3fd d102c6fd 9102ccfd 5702d4fd 1602dafd

     第一行的 “ead46c00” 就是上面说明里提到的URB Tag; "3346920735" 是时间戳,以微秒为单位,这个可以从连续的两个feedback验证,

......
ead46c00 3346920735 C Zi:1:003:2 0:16:954:0 1 0:0:3 4 = f0e80b00
......
ead46e40 3346936729 C Zi:1:003:2 0:16:970:0 1 0:0:3 4 = f0e80b00
......

    两个包的时间戳之差约为16000,而我的feedback端点的refresh间隔的确是16ms为周期。

    时间戳之后的 C 代表[feedback]事件类型;在这之后是 address项,它由4个部分组成,以符号:隔开,Zi表示同步In端点,1:003代表bus1下的003号设备,2表示该端点号。

    接下来是“URB Status word”, 包括"URB status, interval, start frame, and error count"。

    之后是“Number of isochronous frame descriptors and descriptors themselves“,这部分首先是一个数代表frame descriptor的个数, 接下来以空格为间隔,列出每个frame descriptor的信息,此信息有3个部分“status, offset, and length”,以 : 符号隔开。可以看到,第一行只有一个frame descriptor,数据长度为3。

    最后是数据长度, 紧跟着是 > < 或 =, 然后就是部分的传输数据了。

     

     

  

 

 

转载于:https://www.cnblogs.com/Ilmen/p/3451628.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/493665.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

冈萨雷斯《数字图像处理》读书笔记(十一)——表示和描述

虽然不是专门研究图像分割的&#xff08;峰兄才是&#xff09;&#xff0c;但多少接触了一点&#xff0c;并且图像分割是图像处理中的最为复杂的&#xff0c;通过图像分割可以很好地认识图像处理的好多方法。今天看的是边界追踪和链码的表示。网易计算机视觉工程师的第一道选择…

细胞内钾多钠少——原初生物的第三大遗迹?

来源&#xff1a;科学网在我们每日的饮食中&#xff0c;食盐&#xff08;氯化钠&#xff09;是少不了的&#xff0c;难以想象我们怎么能够每天吃完全没有盐味的食物。不仅人类如此&#xff0c;许多动物&#xff0c;例如食草的动物如牛和羊&#xff0c;也会主动寻找土表盐粒。我…

MSBuild的简单介绍与使用

MSBuild 是 Microsoft 和 Visual Studio的生成系统。它不仅仅是一个构造工具&#xff0c;应该称之为拥有相当强大扩展能力的自动化平台。MSBuild平台的主要涉及到三部分&#xff1a;执行引擎、构造工程、任务。其中最核心的就是执行引擎&#xff0c;它包括定义构造工程的规范&a…

冈萨雷斯《数字图像处理》读书笔记(九)——形态学图像处理

形态学来自于生物学&#xff0c;研究动植物的形态和结构。运用在图像中可提取如边界、骨架和凸壳。初学形态学都是在二值化的图像上研究&#xff0c;之后可以扩展到灰度图像。 膨胀和腐蚀 数学形态学与集合论分不开&#xff0c;因为形态学中的操作是基于两个集合的&#xff0…

云计算行业现状及未来发展趋势

来源&#xff1a;国元证券、乐晴智库摘要&#xff1a;按照服务类型云计算被分为IaaS、PaaS、SaaS。▌云计算产业链构成按照服务类型云计算被分为IaaS、PaaS、SaaS。IaaS基础设施及服务:IaaS主要提供计算基础设施服务&#xff0c;主要包括CPU、内存、存储、网络、虚拟化软件、分…

冈萨雷斯《数字图像处理》读书笔记(三)——空间滤波

滤波这个词来源于频域处理&#xff0c;因为它的目的就是针对频率分量而言的&#xff0c;滤除一定的频率分量。但其实滤波在时域&#xff08;图像中对应为空域&#xff09;中也可以完成相应的操作&#xff0c;比如低通滤波器滤除了代表细节的高频分量&#xff0c;我们可以直接在…

WinInet:HTTPS 请求出现无效的证书颁发机构的处理

首先&#xff0c;微软提供的WinInet库封装了对网页访问的方法。 最近工作需要从https服务器获取数据&#xff0c;都知道https和http网页的访问方式不同&#xff0c;多了一道证书认证程序&#xff0c;这样就使得https在请求起来比http要复杂的多&#xff1b;好在&#xff0c;Win…

热度下的冷思考——智能眼镜到底有没有前途?

来源&#xff1a;环球网我们曾期望Google眼镜能够成为革命性的新产品&#xff0c;因为它某种程度上实现了大家对未来的幻想。然而Google眼镜作为概念产品虽然有趣&#xff0c;但它仍然太不成熟&#xff0c;而且因为存在侵犯隐私的可能还被大众抵触&#xff0c;更重要的是它花去…

TFRecords文件的存储与读取

将cats和dogs两个文件夹各1000张图片存储为&#xff1a;train.tfrecords#将图片文件生成train record import os import tensorflow as tf from PIL import Image #生成cats和dogs的record文件 path./data/train filenamesos.listdir(path) writertf.python_io.TFRecordWriter(…

《C++ Primer》读书笔记 第三章

1.注意&#xff1a;头文件不应包含using声明。因为头文件的内容会拷贝到所有引用他的文件中去&#xff0c;对于某些程序来说&#xff0c;由于不经意间包含了一些名字&#xff0c;可能会产生名字冲突。2.string类型的读入&#xff1a;用cin读入string&#xff0c;忽略所有的前置…

对比激光SLAM与视觉SLAM:谁会成为未来主流趋势?

来源&#xff1a;智车科技摘要&#xff1a;SLAM&#xff08;同步定位与地图构建&#xff09;&#xff0c;是指运动物体根据传感器的信息&#xff0c;一边计算自身位置&#xff0c;一边构建环境地图的过程&#xff0c;解决机器人等在未知环境下运动时的定位与地图构建问题。目前…

链表中的指针

中期答辩改在了国庆之后&#xff0c;终于有时间可以看看剑指offer了。在看到单向链表的部分&#xff0c;对指针&#xff0c;尤其是头指针有点疑惑。首先容易理解的是链表的节点是一个结构体&#xff0c;该结构体包含一个数据&#xff08;一般是int型&#xff09;&#xff0c;还…

实现TFrecords文件的保存与读取

import os import cv2 import numpy as np import tensorflow as tf """ 将train文件夹下的cats和dog文件夹处理成train.tfrecords放在train文件夹里 """ #将图片的路径和对应的标签存储在list中返回 def deal(dir):images []temp []for root,…

工具推荐-css3渐变生成工具

今天工作用到了css3渐变&#xff0c;但是写起来才发现太麻烦了&#xff0c;而却很浪费时间&#xff0c;所以在这里向大家推荐一个在线的css3 渐变生成工具 地址是&#xff1a;http://www.colorzilla.com/gradient-editor/ 这个工具是可视化视图&#xff0c;用起来就和photoshop…

神经网络相关的笔试题目集合(一)

在找工作的过程中发现好多公司没有专门的、传统的图像处理岗位&#xff0c;所以只能参加算法类的笔试甚至AI类的笔试。在AI的笔试中几乎全是关于神经网络的问题&#xff0c;其实也都是很基础的一些问题&#xff0c;如果事先做了准备&#xff0c;可以从容应对。而对于我这种从传…

中美超算“你追我赶” 中国优势可圈可点

来源&#xff1a;新华网摘要&#xff1a;中美超算“你追我赶” 中国优势可圈可点新一期全球超级计算机&#xff15;&#xff10;&#xff10;强榜单&#xff11;&#xff12;日在美国达拉斯发布。与半年前的榜单相比&#xff0c;全球格局变化不大&#xff0c;美国在最快超算上…

吴恩达作业1:逻辑回归实现猫的分类

思路&#xff1a;输入样本X与随机初始权重W相乘&#xff0c;利用sigmoid激活函数输出值&#xff0c;对于二分类问题&#xff0c;用交叉熵损失函数来计算损失值&#xff0c;通过交叉熵损失函数利用链式法则求出W和b的偏导&#xff0c;梯度下降更新W和b即可&#xff0c;&#xff…

《转》不要过打折的生活,当你发现这些你有了,说明你开始成熟了

我在一家外企工作的时候&#xff0c;有一天陪女上司上街选购圣诞礼物。当我们拎着大包小包坐下喝咖啡时&#xff0c;女上司问我&#xff1a;“新年要到了&#xff0c;不买点礼物送给家人&#xff1f;”我笑着说&#xff1a;“我爸妈都很节省&#xff0c;只有不乱花钱&#xff0…

双摄与双目视觉

越来越多的手机开始上双摄&#xff0c;首先解释一下双摄的目的&#xff0c;双摄可以达到什么样的效果。首先双摄可以分为两类&#xff0c;一类是利用双摄获得图像中物体到镜头或者焦距的距离&#xff0c;得到景深信息就可以进行后续的3D重建、图像分割、背景虚化等&#xff1b;…

“脑补”的科学依据:眼前的黑不是黑,靠得是你的大脑

一个在眨眼的婴儿 | 图片来源&#xff1a;Leungcho Pan/Shutterstock撰文&#xff1a;Mindy Weisberger来源&#xff1a;科研圈编译&#xff1a;向菲菲人们常说&#xff1a;“别眨眼&#xff0c;精彩稍纵即逝。”但其实在我们眨眼的时候&#xff0c;精彩仍在我们眼前上演。我们…