⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ir-usb.c

📁 基于S3CEB2410平台LINUX操作系统下 USB驱动源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * USB IR Dongle driver * *	Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com) *	Copyright (C) 2002 Gary Brubaker (xavyer@ix.netcom.com) * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License as published by *	the Free Software Foundation; either version 2 of the License, or *	(at your option) any later version. * * This driver allows a USB IrDA device to be used as a "dumb" serial device. * This can be useful if you do not have access to a full IrDA stack on the * other side of the connection.  If you do have an IrDA stack on both devices, * please use the usb-irda driver, as it contains the proper error checking and * other goodness of a full IrDA stack. * * Portions of this driver were taken from drivers/net/irda/irda-usb.c, which * was written by Roman Weissgaerber <weissg@vienna.at>, Dag Brattli * <dag@brattli.net>, and Jean Tourrilhes <jt@hpl.hp.com> * * See Documentation/usb/usb-serial.txt for more information on using this driver * * 2002_Jan_14  gb *	Added module parameter to force specific number of XBOFs. *	Added ir_xbof_change(). *	Reorganized read_bulk_callback error handling. *	Switched from FILL_BULK_URB() to usb_fill_bulk_urb(). * * 2001_Nov_08  greg kh *	Changed the irda_usb_find_class_desc() function based on comments and *	code from Martin Diehl. * * 2001_Nov_01	greg kh *	Added support for more IrDA USB devices. *	Added support for zero packet.  Added buffer override paramater, so *	users can transfer larger packets at once if they wish.  Both patches *	came from Dag Brattli <dag@obexcode.com>. * * 2001_Oct_07	greg kh *	initial version released. */#include <linux/config.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/signal.h>#include <linux/errno.h>#include <linux/poll.h>#include <linux/init.h>#include <linux/slab.h>#include <linux/fcntl.h>#include <linux/tty.h>#include <linux/tty_driver.h>#include <linux/tty_flip.h>#include <linux/module.h>#include <linux/spinlock.h>#include <linux/usb.h>#include <net/irda/irda-usb.h>#ifdef CONFIG_USB_SERIAL_DEBUG	static int debug = 1;#else	static int debug;#endif#include "usb-serial.h"/* * Version Information */#define DRIVER_VERSION "v0.4"#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>"#define DRIVER_DESC "USB IR Dongle driver"/* if overridden by the user, then use their value for the size of the read and * write urbs */static int buffer_size = 0;/* if overridden by the user, then use the specified number of XBOFs */static int xbof = -1;static int  ir_startup (struct usb_serial *serial);static int  ir_open (struct usb_serial_port *port, struct file *filep);static void ir_close (struct usb_serial_port *port, struct file *filep);static int  ir_write (struct usb_serial_port *port, int from_user, const unsigned char *buf, int count);static void ir_write_bulk_callback (struct urb *urb);static void ir_read_bulk_callback (struct urb *urb);static void ir_set_termios (struct usb_serial_port *port, struct termios *old_termios);static u8 ir_baud = 0;static u8 ir_xbof = 0;static u8 ir_add_bof = 0;static __devinitdata struct usb_device_id id_table [] = {	{ USB_DEVICE(0x050f, 0x0180) },		/* KC Technology, KC-180 */	{ USB_DEVICE(0x08e9, 0x0100) },		/* XTNDAccess */	{ USB_DEVICE(0x09c4, 0x0011) },		/* ACTiSys ACT-IR2000U */	{ USB_INTERFACE_INFO (USB_CLASS_APP_SPEC, USB_CLASS_IRDA, 0) },	{ }					/* Terminating entry */};MODULE_DEVICE_TABLE (usb, id_table);struct usb_serial_device_type ir_device = {	name:			"IR Dongle",	id_table:		id_table,	needs_interrupt_in:	MUST_HAVE,	needs_bulk_in:		MUST_HAVE,	needs_bulk_out:		MUST_HAVE,	num_interrupt_in:	1,	num_bulk_in:		1,	num_bulk_out:		1,	num_ports:		1,	set_termios:		ir_set_termios,	startup:		ir_startup,	open:			ir_open,	close:			ir_close,	write:			ir_write,	write_bulk_callback:	ir_write_bulk_callback,	read_bulk_callback:	ir_read_bulk_callback,};static inline void irda_usb_dump_class_desc(struct irda_class_desc *desc){	dbg("bLength=%x", desc->bLength);	dbg("bDescriptorType=%x", desc->bDescriptorType);	dbg("bcdSpecRevision=%x", desc->bcdSpecRevision); 	dbg("bmDataSize=%x", desc->bmDataSize);	dbg("bmWindowSize=%x", desc->bmWindowSize);	dbg("bmMinTurnaroundTime=%d", desc->bmMinTurnaroundTime);	dbg("wBaudRate=%x", desc->wBaudRate);	dbg("bmAdditionalBOFs=%x", desc->bmAdditionalBOFs);	dbg("bIrdaRateSniff=%x", desc->bIrdaRateSniff);	dbg("bMaxUnicastList=%x", desc->bMaxUnicastList);}/*------------------------------------------------------------------*//* * Function irda_usb_find_class_desc(dev, ifnum) * *    Returns instance of IrDA class descriptor, or NULL if not found * * The class descriptor is some extra info that IrDA USB devices will * offer to us, describing their IrDA characteristics. We will use that in * irda_usb_init_qos() * * Based on the same function in drivers/net/irda/irda-usb.c */static struct irda_class_desc *irda_usb_find_class_desc(struct usb_device *dev, unsigned int ifnum){	struct irda_class_desc *desc;	int ret;			desc = kmalloc(sizeof (struct irda_class_desc), GFP_KERNEL);	if (desc == NULL) 		return NULL;	memset(desc, 0, sizeof(struct irda_class_desc));		ret = usb_control_msg(dev, usb_rcvctrlpipe(dev,0),			IU_REQ_GET_CLASS_DESC,			USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,			0, ifnum, desc, sizeof(*desc), MSECS_TO_JIFFIES(500));		dbg("%s -  ret=%d", __FUNCTION__, ret);	if (ret < sizeof(*desc)) {		dbg("%s - class descriptor read %s (%d)",				__FUNCTION__, 				(ret<0) ? "failed" : "too short",				ret);		goto error;	}	if (desc->bDescriptorType != USB_DT_IRDA) {		dbg("%s - bad class descriptor type", __FUNCTION__);		goto error;	}		irda_usb_dump_class_desc(desc);	return desc;error:	kfree(desc);	return NULL;}static u8 ir_xbof_change(u8 xbof){	u8 result;	/* reference irda-usb.c */	switch(xbof) {		case 48: result = 0x10; break;		case 28:		case 24: result = 0x20; break;		default:		case 12: result = 0x30; break;		case  5:		case  6: result = 0x40; break;		case  3: result = 0x50; break;		case  2: result = 0x60; break;		case  1: result = 0x70; break;		case  0: result = 0x80; break;	}	return(result);}static int ir_startup (struct usb_serial *serial){	struct irda_class_desc *irda_desc;	irda_desc = irda_usb_find_class_desc (serial->dev, 0);	if (irda_desc == NULL) {		err ("IRDA class descriptor not found, device not bound");		return -ENODEV;	}	dbg ("%s - Baud rates supported:%s%s%s%s%s%s%s%s%s",		__FUNCTION__,		(irda_desc->wBaudRate & 0x0001) ? " 2400"    : "",		(irda_desc->wBaudRate & 0x0002) ? " 9600"    : "",		(irda_desc->wBaudRate & 0x0004) ? " 19200"   : "",		(irda_desc->wBaudRate & 0x0008) ? " 38400"   : "",		(irda_desc->wBaudRate & 0x0010) ? " 57600"   : "",		(irda_desc->wBaudRate & 0x0020) ? " 115200"  : "",		(irda_desc->wBaudRate & 0x0040) ? " 576000"  : "",		(irda_desc->wBaudRate & 0x0080) ? " 1152000" : "",		(irda_desc->wBaudRate & 0x0100) ? " 4000000" : "");	switch( irda_desc->bmAdditionalBOFs ) {		case 0x01: ir_add_bof = 48; break;		case 0x02: ir_add_bof = 24; break;		case 0x04: ir_add_bof = 12; break;		case 0x08: ir_add_bof =  6; break;		case 0x10: ir_add_bof =  3; break;		case 0x20: ir_add_bof =  2; break;		case 0x40: ir_add_bof =  1; break;		case 0x80: ir_add_bof =  0; break;		default:	}	kfree (irda_desc);	return 0;		}static int ir_open (struct usb_serial_port *port, struct file *filp){	struct usb_serial *serial = port->serial;	char *buffer;	int result = 0;	if (port_paranoia_check (port, __FUNCTION__))		return -ENODEV;		dbg("%s - port %d", __FUNCTION__, port->number);	down (&port->sem);		++port->open_count;	MOD_INC_USE_COUNT;		if (!port->active) {		port->active = 1;		if (buffer_size) {			/* override the default buffer sizes */			buffer = kmalloc (buffer_size, GFP_KERNEL);			if (!buffer) {				err ("%s - out of memory.", __FUNCTION__);				return -ENOMEM;			}			kfree (port->read_urb->transfer_buffer);			port->read_urb->transfer_buffer = buffer;			port->read_urb->transfer_buffer_length = buffer_size;			buffer = kmalloc (buffer_size, GFP_KERNEL);			if (!buffer) {				err ("%s - out of memory.", __FUNCTION__);				return -ENOMEM;			}			kfree (port->write_urb->transfer_buffer);			port->write_urb->transfer_buffer = buffer;			port->write_urb->transfer_buffer_length = buffer_size;			port->bulk_out_size = buffer_size;		}		/* Start reading from the device */		usb_fill_bulk_urb (			port->read_urb,			serial->dev, 			usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),			port->read_urb->transfer_buffer,			port->read_urb->transfer_buffer_length,			ir_read_bulk_callback,			port);		port->read_urb->transfer_flags = USB_QUEUE_BULK;		result = usb_submit_urb(port->read_urb);		if (result)			err("%s - failed submitting read urb, error %d", __FUNCTION__, result);	}		up (&port->sem);		return result;}static void ir_close (struct usb_serial_port *port, struct file * filp){	struct usb_serial *serial;	if (port_paranoia_check (port, __FUNCTION__))		return;		dbg("%s - port %d", __FUNCTION__, port->number);			 	serial = get_usb_serial (port, __FUNCTION__);	if (!serial)		return;	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -