linux下USB驅(qū)動(dòng)移植
掃描二維碼
隨時(shí)隨地手機(jī)看文章
一、代碼修改
在這里把include前面的#給刪了,希望有幫助
/*add by lfc*/
#include <asm/arch/regs-clock.h>
#include <asm/arch/usb-control.h>
#include <linux/device.h>
#include <linux/delay.h>
/*end add*/
/**********************add by lfc*************************************/
static struct s3c2410_hcd_info usb_sbc2410_info = {
.port[0] = {
.flags = S3C_HCDFLG_USED
}
};
int usb_sbc2410_init(void)
{
unsigned long upllvalue = (0x78<<12)|(0x02<<4)|(0x03);
printk("USB Control, (c) 2006 sbc2410 ");
s3c_device_usb.dev.platform_data = &usb_sbc2410_info;
while(upllvalue!=__raw_readl(S3C2410_UPLLCON))
{
__raw_writel(upllvalue,S3C2410_UPLLCON);
mdelay(1);
}
return 0;
}
/***************************end add**********************/
static void __init smdk2410_map_io(void)
{
s3c24xx_init_io(smdk2410_iodesc, ARRAY_SIZE(smdk2410_iodesc));
s3c24xx_init_clocks(0);
s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs));
s3c24xx_set_board(&smdk2410_board);
/*************************add by lfc****************************/
usb_sbc2410_init();
/*************************end add*******************************/
}
其實(shí)到了這里,要修改的代碼已經(jīng)修改完了,比添加Nand flash的支持修改的地方還要少^_^,不過(guò)我一直以為還沒(méi)修改好,最后發(fā)現(xiàn)原來(lái)是沒(méi)配置好~_~
二、內(nèi)核配置
下面說(shuō)一下郁悶了我好一陣子的內(nèi)核配置(支持USB)問(wèn)題,這個(gè)就比Nand flash的配置要復(fù)雜多了。
1、讓內(nèi)核支持熱插拔
│ General setup --->
│ │[*] Support for hot-pluggable devices
2、USB驅(qū)動(dòng)設(shè)置,可能有些不選也行,不過(guò)沒(méi)時(shí)間去試,至于為什么要選這些選項(xiàng)的話可以看一下這個(gè)貼(Linux下的硬件驅(qū)動(dòng)——USB設(shè)備):
│ │ Device Drivers --->
│ │ Generic Driver Options --->
│<*> Hotplug firmware loading support
│ │ Block devices --->
│ │ <*> Low Performance USB Block driver
│ │ SCSI device support --->
│ │ <*> SCSI generic support
│ │ [*] Probe all LUNs on each SCSI device
│ │ USB support --->
│ │<*> Support for Host-side USB
│ │[*] USB device filesystem
│ │<*> OHCI HCD support
│ │<*> USB Mass Storage support
│ │[*] USB Monitor
[!--empirenews.page--]3、加入了MSDOS fs和VFAT fs的支持。
│ │ File systems --->
│ │ DOS/FAT/NT Filesystems --->
│ ┌─────────────────────────────────────────────────────────────────────┐ │
│ │ <*> MSDOS fs support │ │
│ │ <*> VFAT (Windows-95) fs support │ │
│ │ (936) Default codepage for FAT │ │
│ │ (cp936) Default iocharset for FAT │ │
│ │ < > NTFS file system support
做完這些后,插入u盤后,內(nèi)核應(yīng)該可以識(shí)別到u盤,出現(xiàn):
usb 1-1: new full speed USB device using s3c2410-ohci and address 3
ub(1.3): GetMaxLUN returned 0, using 1 LUNs
但是,還有下面一句出錯(cuò)提示:
/dev/ub/a: unknown partition table
再次查看了貼子上大蝦們的討論,提到:“使能CONFIG_MSDOS_PARTITION選項(xiàng)”,再仔細(xì)查找,發(fā)現(xiàn)配置選項(xiàng)如下:
│ │ File systems --->
│ │ Partition Types --->
│ │ [*] PC BIOS (MSDOS partition tables) support
加上這個(gè)后應(yīng)該就可以掛載usb上的MSDOS分區(qū)了
以下是我的內(nèi)核插入u盤后的提示信息:
usb 1-1: new full speed USB device using s3c2410-ohci and 2
ub(1.2): GetMaxLUN returned 0, using 1 LUNs
/dev/ub/a: p1
表示usb設(shè)備已經(jīng)掛載到/dev/ub/a/part1目錄下
4. 加入中文字體庫(kù)(可惜在我的板上還是沒(méi)能正常顯示中文~_~,知道的朋友麻煩告訴我一聲,大家一起探討)
│ │ Native Language Support --->
│ │<*> Simplified Chinese charset (CP936, GB2312)
│ │<*> NLS UTF8
以下是掛載usb設(shè)備后的顯示:
[root@luofuchong /]# mount -t vfat -o iocharset=cp936 /dev/ub/a/part1 /mnt
[root@luofuchong /]# ls /mnt
cramfs-1.1.tar.gz netkit-base-0.17.tar.gz thttpd-2.25b.tar.gz
lfc settings.dat . . I. .. . .txt
三、一點(diǎn)心得
- 如果想知道內(nèi)核有沒(méi)有識(shí)別出u盤的話可以執(zhí)行命令:cat /proc/partitions ,看看插入U(xiǎn)SB前后分區(qū)信息有什么不同就知道了。
- 另外,如果想讓內(nèi)核把它當(dāng)成SCSI設(shè)備來(lái)處理的話,只要把上面:
│ │ Device Drivers --->
│ │ Block devices --->
│ │ <*> Low Performance USB Block driver
的 Low Performance USB Block driver這個(gè)選項(xiàng)去掉,然后把:
│ │ Device Drivers --->
│ │ SCSI device support --->
│ │ <*>SCSI disk support
的SCSI disk support這個(gè)選項(xiàng)選上,重新編譯內(nèi)核就行。
注:
個(gè)人覺(jué)得使用usb設(shè)備的話Low Performance USB Block driver比SCSI disk要好,自己看著辦吧^_^ - 最后,一般都會(huì)新建一個(gè)/dev/sda1的鏈接指向usb設(shè)備的掛載點(diǎn)的,可以在啟動(dòng)文件中使用命令ln -s xxx xxx來(lái)建立這個(gè)鏈接。