这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 嵌入式开发 » MCU » 編譯核心和USB問題

共5条 1/1 1 跳转至

編譯核心和USB問題

菜鸟
2009-03-19 19:11:09     打赏
我想製作一個支援USB的核心,編譯完後放入ARM板,並且插入USB會出以下錯誤,請各位高手幫忙我找出問題,已經用了兩天都找不到問題,我已經分享核心設定檔
usb 1-1: new full speed USB device using s3c2410-ohci and address 6
usb 1-1: device descriptor read/64, error -62
usb 1-1: device descriptor read/64, error -62
usb 1-1: new full speed USB device using s3c2410-ohci and address 7
usb 1-1: device descriptor read/64, error -62
usb 1-1: device descriptor read/64, error -62
usb 1-1: new full speed USB device using s3c2410-ohci and address 8
usb 1-1: device not accepting address 8, error -62
usb 1-1: new full speed USB device using s3c2410-ohci and address 9
usb 1-1: device not accepting address 9, error -62
hub 1-0:1.0: unable to enumerate USB device on port 1



关键词: 編譯     核心     問題     device    

高工
2009-03-20 09:06:47     打赏
2楼
路过的都来研究研究吧~~

高工
2009-03-20 12:31:49     打赏
3楼
楼主能再说得详细些吗?你用的USB型号是什么吗?是跑在uCLinux上的吗?

菜鸟
2009-03-20 13:46:09     打赏
4楼

這個部份已經解決,下面是解決方法
修改driver/usb/host/ohci-s3c2410.c
加入
#include <asm/arch-s3c2410/regs-clock.h>
#include <asm-arm/io.h>
unsigned long upllvalue = (0x78<<12)|(0x02<<4)|(0x03); //add

static void s3c2410_start_hc函數中加入
while (upllvalue !=__raw_readl(S3C2410_UPLLCON))
{
__raw_writel(upllvalue, S3C2410_UPLLCON);
mdelay(1);


現在我出現的問題:就是插上usb後沒有自己偵測掛載到的dev上,下面是我插上usb出現的情形:
usb 1-1: New USB device found, idVendor=058f, idProduct=6387                                                      
usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3                                                 
usb 1-1: Product: Mass Storage Device                                                                             
usb 1-1: Manufacturer: JetFlash                                                                                   
usb 1-1: SerialNumber: 673WWM0P 

現在的問題是要如何讓他自己掛載到/dev/sda上,現在我的核心在usb device 與scsi還有File system幾乎都選了,但是他就是沒辦法偵測到usb,所以請各位幫幫我,進入arm以後是否還需要打什麼指令或是什麼辦法可以解決


菜鸟
2009-03-21 18:59:50     打赏
5楼
d顶。。。。。。。。。。。。。

共5条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]