TX2 移远 EC25 4G模块驱动移植 --- 笔记

1. 概要

    因为公司需要,所以在TX2上需要移植移远4G模块, 型号:EC25; 
    我之前也没做过这方面的工作, 结合移远提供的文档与网上各位大佬的资料,基本实现了移植工作;
    当然还是有点问题, 不过只能以后有时间再研究了。

2. 具体步骤

2.1 获取内核源码

git clone https://github.com/jetsonhacks/buildJetsonTX2Kernel.git
cd buildJetsonTX2Kernel
./getKernelSources.sh 

2.2 修改内核源码

在 [KERNEL]/drivers/usb/serial/option.c 文件中, 加入代码

static const struct usb_device_id option_ids[] = {
#if 1 //Added by Quectel
    { USB_DEVICE(0x05C6, 0x9090) }, /* Quectel UC15 */
    { USB_DEVICE(0x05C6, 0x9003) }, /* Quectel UC20 */    
    { USB_DEVICE(0x2C7C, 0x0125) }, /* Quectel EC25 */    
    { USB_DEVICE(0x2C7C, 0x0121) }, /* Quectel EC21 */    
    { USB_DEVICE(0x05C6, 0x9215) }, /* Quectel EC20 */    
    { USB_DEVICE(0x2C7C, 0x0191) }, /* Quectel EG91 */    
    { USB_DEVICE(0x2C7C, 0x0195) }, /* Quectel EG95 */   
    { USB_DEVICE(0x2C7C, 0x0306) }, /* Quectel EG06/EP06/EM06 */    
    { USB_DEVICE(0x2C7C, 0x0296) }, /* Quectel BG96 */    
    { USB_DEVICE(0x2C7C, 0x0435) }, /* Quectel AG35 */
#endif
...
}

static struct usb_serial_driver option_1port_device = {
……
#ifdef CONFIG_PM    
    .suspend = usb_wwan_suspend,
    .resume = usb_wwan_resume,
#if 1 //Added by Quectel
    .reset_resume = usb_wwan_resume,
#endif
#endif
};

File: [KERNEL]/drivers/usb/serial/qcserial.c 屏蔽代码

 {USB_DEVICE(0x05c6, 0x9215)},                 /* Acer Gobi 2000 Modem device (VP413) */

File: [KERNEL]/drivers/net/usb/qmi_wwan.c 屏蔽代码

{QMI_GOBI_DEVICE(0x05c6, 0x9215)},                 /* Acer Gobi 2000 Modem device (VP413) */
{QMI_FIXED_INTF(0x05c6, 0x9215, 4)},                 /* Quectel EC20 Mini PCIe */

File: [KERNEL]/drivers/usb/serial/usb_wwan.c 添加代码

static struct urb *usb_wwan_setup_urb(struct usb_serial *serial, int endpoint, 
                                      int dir, void *ctx, char *buf, int len, 
                                      void (*callback)(struct urb *)){
 ……
	usb_fill_bulk_urb(urb, serial->dev, usb_sndbulkpipe(serial->dev, endpoint) | dir, buf, len, callback, ctx);
#if 1 //Added by Quectel for zero packet    
	if (dir == USB_DIR_OUT)    
	{
	        struct usb_device_descriptor *desc = &serial->dev->descriptor;
	        if (desc->idVendor == cpu_to_le16(0x05C6) && desc->idProduct == cpu_to_le16(0x9090))
	                    urb->transfer_flags |= URB_ZERO_PACKET;
		if (desc->idVendor == cpu_to_le16(0x05C6) && desc->idProduct == cpu_to_le16(0x9003))
		            urb->transfer_flags |= URB_ZERO_PACKET;        
		if (desc->idVendor == cpu_to_le16(0x05C6) && desc->idProduct == cpu_to_le16(0x9215))
		            urb->transfer_flags |= URB_ZERO_PACKET;	
	        if (desc->idVendor == cpu_to_le16(0x2C7C))        
	                    urb->transfer_flags |= URB_ZERO_PACKET;    
	}
#endif
	return urb;
}

2.3 编译内核

./makeKernel.sh        # 编译内核
./copyImage.sh          # 将之前的启动镜像更新为新的镜像

2.4 重启

sudo reboot

你可能感兴趣的:(TX2 移远 EC25 4G模块驱动移植 --- 笔记)