1. 程式人生 > >使用USB gadget驅動測試USB晶片驅動功能

使用USB gadget驅動測試USB晶片驅動功能

  1. 在核心中使能Mass Storage Gadget ,如下圖,配置路徑是Linux/arm64 4.14.0 Kernel Configuration
    → Device Drivers → USB support → USB Gadget Support ->Mass Storage Gadget
    在這裡插入圖片描述
  2. 使能Pseudo檔案系統,如圖
    在這裡插入圖片描述
  3. 配置Device Tree
&dwc3_0 {
	status = "okay";
	dr_mode = "peripheral";
	snps,usb3_lpm_capable;
	phy-names = "usb3-phy";
	phys = <&lane2 4 0 2 26000000>;
	maximum-speed = "super-speed";
};
  1. dd if=/dev/zero of=/tmp/test.img bs=1M count=256
  2. insmod g_mass_storage.ko file=/tmp/test.img removable=1
    執行結果:
    在這裡插入圖片描述