ks959-sir.c

来自「linux 内核源代码」· C语言 代码 · 共 939 行 · 第 1/2 页

C
939
字号
			if (kingsun->rx_variable_xormask != 0) {				async_unwrap_char(kingsun->netdev,						  &kingsun->stats,						  &kingsun->rx_unwrap_buff,						  bytes[i]);			}		}		kingsun->netdev->last_rx = jiffies;		do_gettimeofday(&kingsun->rx_time);		kingsun->receiving =		    (kingsun->rx_unwrap_buff.state != OUTSIDE_FRAME) ? 1 : 0;	}	/* This urb has already been filled in kingsun_net_open. Setup	   packet must be re-filled, but it is assumed that urb keeps the	   pointer to the initial setup packet, as well as the payload buffer.	   Setup packet is already pre-filled at ks959_probe.	 */	urb->status = 0;	ret = usb_submit_urb(urb, GFP_ATOMIC);}/* * Function kingsun_net_open (dev) * *    Network device is taken up. Usually this is done by "ifconfig irda0 up" */static int ks959_net_open(struct net_device *netdev){	struct ks959_cb *kingsun = netdev_priv(netdev);	int err = -ENOMEM;	char hwname[16];	/* At this point, urbs are NULL, and skb is NULL (see kingsun_probe) */	kingsun->receiving = 0;	/* Initialize for SIR to copy data directly into skb.  */	kingsun->rx_unwrap_buff.in_frame = FALSE;	kingsun->rx_unwrap_buff.state = OUTSIDE_FRAME;	kingsun->rx_unwrap_buff.truesize = IRDA_SKB_MAX_MTU;	kingsun->rx_unwrap_buff.skb = dev_alloc_skb(IRDA_SKB_MAX_MTU);	if (!kingsun->rx_unwrap_buff.skb)		goto free_mem;	skb_reserve(kingsun->rx_unwrap_buff.skb, 1);	kingsun->rx_unwrap_buff.head = kingsun->rx_unwrap_buff.skb->data;	do_gettimeofday(&kingsun->rx_time);	kingsun->rx_urb = usb_alloc_urb(0, GFP_KERNEL);	if (!kingsun->rx_urb)		goto free_mem;	kingsun->tx_urb = usb_alloc_urb(0, GFP_KERNEL);	if (!kingsun->tx_urb)		goto free_mem;	kingsun->speed_urb = usb_alloc_urb(0, GFP_KERNEL);	if (!kingsun->speed_urb)		goto free_mem;	/* Initialize speed for dongle */	kingsun->new_speed = 9600;	err = ks959_change_speed(kingsun, 9600);	if (err < 0)		goto free_mem;	/*	 * Now that everything should be initialized properly,	 * Open new IrLAP layer instance to take care of us...	 */	sprintf(hwname, "usb#%d", kingsun->usbdev->devnum);	kingsun->irlap = irlap_open(netdev, &kingsun->qos, hwname);	if (!kingsun->irlap) {		err("ks959-sir: irlap_open failed");		goto free_mem;	}	/* Start reception. Setup request already pre-filled in ks959_probe */	usb_fill_control_urb(kingsun->rx_urb, kingsun->usbdev,			     usb_rcvctrlpipe(kingsun->usbdev, 0),			     (unsigned char *)kingsun->rx_setuprequest,			     kingsun->rx_buf, KINGSUN_RCV_FIFO_SIZE,			     ks959_rcv_irq, kingsun);	kingsun->rx_urb->status = 0;	err = usb_submit_urb(kingsun->rx_urb, GFP_KERNEL);	if (err) {		err("ks959-sir: first urb-submit failed: %d", err);		goto close_irlap;	}	netif_start_queue(netdev);	/* Situation at this point:	   - all work buffers allocated	   - urbs allocated and ready to fill	   - max rx packet known (in max_rx)	   - unwrap state machine initialized, in state outside of any frame	   - receive request in progress	   - IrLAP layer started, about to hand over packets to send	 */	return 0;      close_irlap:	irlap_close(kingsun->irlap);      free_mem:	usb_free_urb(kingsun->speed_urb);	kingsun->speed_urb = NULL;	usb_free_urb(kingsun->tx_urb);	kingsun->tx_urb = NULL;	usb_free_urb(kingsun->rx_urb);	kingsun->rx_urb = NULL;	if (kingsun->rx_unwrap_buff.skb) {		kfree_skb(kingsun->rx_unwrap_buff.skb);		kingsun->rx_unwrap_buff.skb = NULL;		kingsun->rx_unwrap_buff.head = NULL;	}	return err;}/* * Function kingsun_net_close (kingsun) * *    Network device is taken down. Usually this is done by *    "ifconfig irda0 down" */static int ks959_net_close(struct net_device *netdev){	struct ks959_cb *kingsun = netdev_priv(netdev);	/* Stop transmit processing */	netif_stop_queue(netdev);	/* Mop up receive && transmit urb's */	usb_kill_urb(kingsun->tx_urb);	usb_free_urb(kingsun->tx_urb);	kingsun->tx_urb = NULL;	usb_kill_urb(kingsun->speed_urb);	usb_free_urb(kingsun->speed_urb);	kingsun->speed_urb = NULL;	usb_kill_urb(kingsun->rx_urb);	usb_free_urb(kingsun->rx_urb);	kingsun->rx_urb = NULL;	kfree_skb(kingsun->rx_unwrap_buff.skb);	kingsun->rx_unwrap_buff.skb = NULL;	kingsun->rx_unwrap_buff.head = NULL;	kingsun->rx_unwrap_buff.in_frame = FALSE;	kingsun->rx_unwrap_buff.state = OUTSIDE_FRAME;	kingsun->receiving = 0;	/* Stop and remove instance of IrLAP */	if (kingsun->irlap)		irlap_close(kingsun->irlap);	kingsun->irlap = NULL;	return 0;}/* * IOCTLs : Extra out-of-band network commands... */static int ks959_net_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd){	struct if_irda_req *irq = (struct if_irda_req *)rq;	struct ks959_cb *kingsun = netdev_priv(netdev);	int ret = 0;	switch (cmd) {	case SIOCSBANDWIDTH:	/* Set bandwidth */		if (!capable(CAP_NET_ADMIN))			return -EPERM;		/* Check if the device is still there */		if (netif_device_present(kingsun->netdev))			return ks959_change_speed(kingsun, irq->ifr_baudrate);		break;	case SIOCSMEDIABUSY:	/* Set media busy */		if (!capable(CAP_NET_ADMIN))			return -EPERM;		/* Check if the IrDA stack is still there */		if (netif_running(kingsun->netdev))			irda_device_set_media_busy(kingsun->netdev, TRUE);		break;	case SIOCGRECEIVING:		/* Only approximately true */		irq->ifr_receiving = kingsun->receiving;		break;	default:		ret = -EOPNOTSUPP;	}	return ret;}/* * Get device stats (for /proc/net/dev and ifconfig) */static struct net_device_stats *ks959_net_get_stats(struct net_device *netdev){	struct ks959_cb *kingsun = netdev_priv(netdev);	return &kingsun->stats;}/* * This routine is called by the USB subsystem for each new device * in the system. We need to check if the device is ours, and in * this case start handling it. */static int ks959_probe(struct usb_interface *intf,		       const struct usb_device_id *id){	struct usb_device *dev = interface_to_usbdev(intf);	struct ks959_cb *kingsun = NULL;	struct net_device *net = NULL;	int ret = -ENOMEM;	/* Allocate network device container. */	net = alloc_irdadev(sizeof(*kingsun));	if (!net)		goto err_out1;	SET_NETDEV_DEV(net, &intf->dev);	kingsun = netdev_priv(net);	kingsun->netdev = net;	kingsun->usbdev = dev;	kingsun->irlap = NULL;	kingsun->tx_setuprequest = NULL;	kingsun->tx_urb = NULL;	kingsun->tx_buf_clear = NULL;	kingsun->tx_buf_xored = NULL;	kingsun->tx_buf_clear_used = 0;	kingsun->tx_buf_clear_sent = 0;	kingsun->rx_setuprequest = NULL;	kingsun->rx_urb = NULL;	kingsun->rx_buf = NULL;	kingsun->rx_variable_xormask = 0;	kingsun->rx_unwrap_buff.in_frame = FALSE;	kingsun->rx_unwrap_buff.state = OUTSIDE_FRAME;	kingsun->rx_unwrap_buff.skb = NULL;	kingsun->receiving = 0;	spin_lock_init(&kingsun->lock);	kingsun->speed_setuprequest = NULL;	kingsun->speed_urb = NULL;	kingsun->speedparams.baudrate = 0;	/* Allocate input buffer */	kingsun->rx_buf = kmalloc(KINGSUN_RCV_FIFO_SIZE, GFP_KERNEL);	if (!kingsun->rx_buf)		goto free_mem;	/* Allocate input setup packet */	kingsun->rx_setuprequest =	    kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);	if (!kingsun->rx_setuprequest)		goto free_mem;	kingsun->rx_setuprequest->bRequestType =	    USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE;	kingsun->rx_setuprequest->bRequest = KINGSUN_REQ_RECV;	kingsun->rx_setuprequest->wValue = cpu_to_le16(0x0200);	kingsun->rx_setuprequest->wIndex = 0;	kingsun->rx_setuprequest->wLength = cpu_to_le16(KINGSUN_RCV_FIFO_SIZE);	/* Allocate output buffer */	kingsun->tx_buf_clear = kmalloc(KINGSUN_SND_FIFO_SIZE, GFP_KERNEL);	if (!kingsun->tx_buf_clear)		goto free_mem;	kingsun->tx_buf_xored = kmalloc(KINGSUN_SND_PACKET_SIZE, GFP_KERNEL);	if (!kingsun->tx_buf_xored)		goto free_mem;	/* Allocate and initialize output setup packet */	kingsun->tx_setuprequest =	    kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);	if (!kingsun->tx_setuprequest)		goto free_mem;	kingsun->tx_setuprequest->bRequestType =	    USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE;	kingsun->tx_setuprequest->bRequest = KINGSUN_REQ_SEND;	kingsun->tx_setuprequest->wValue = 0;	kingsun->tx_setuprequest->wIndex = 0;	kingsun->tx_setuprequest->wLength = 0;	/* Allocate and initialize speed setup packet */	kingsun->speed_setuprequest =	    kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);	if (!kingsun->speed_setuprequest)		goto free_mem;	kingsun->speed_setuprequest->bRequestType =	    USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE;	kingsun->speed_setuprequest->bRequest = KINGSUN_REQ_SEND;	kingsun->speed_setuprequest->wValue = cpu_to_le16(0x0200);	kingsun->speed_setuprequest->wIndex = cpu_to_le16(0x0001);	kingsun->speed_setuprequest->wLength =	    cpu_to_le16(sizeof(struct ks959_speedparams));	printk(KERN_INFO "KingSun KS-959 IRDA/USB found at address %d, "	       "Vendor: %x, Product: %x\n",	       dev->devnum, le16_to_cpu(dev->descriptor.idVendor),	       le16_to_cpu(dev->descriptor.idProduct));	/* Initialize QoS for this device */	irda_init_max_qos_capabilies(&kingsun->qos);	/* Baud rates known to be supported. Please uncomment if devices (other	   than a SonyEriccson K300 phone) can be shown to support higher speed	   with this dongle.	 */	kingsun->qos.baud_rate.bits =	    IR_2400 | IR_9600 | IR_19200 | IR_38400 | IR_57600;	kingsun->qos.min_turn_time.bits &= KINGSUN_MTT;	irda_qos_bits_to_value(&kingsun->qos);	/* Override the network functions we need to use */	net->hard_start_xmit = ks959_hard_xmit;	net->open = ks959_net_open;	net->stop = ks959_net_close;	net->get_stats = ks959_net_get_stats;	net->do_ioctl = ks959_net_ioctl;	ret = register_netdev(net);	if (ret != 0)		goto free_mem;	info("IrDA: Registered KingSun KS-959 device %s", net->name);	usb_set_intfdata(intf, kingsun);	/* Situation at this point:	   - all work buffers allocated	   - setup requests pre-filled	   - urbs not allocated, set to NULL	   - max rx packet known (is KINGSUN_FIFO_SIZE)	   - unwrap state machine (partially) initialized, but skb == NULL	 */	return 0;      free_mem:	kfree(kingsun->speed_setuprequest);	kfree(kingsun->tx_setuprequest);	kfree(kingsun->tx_buf_xored);	kfree(kingsun->tx_buf_clear);	kfree(kingsun->rx_setuprequest);	kfree(kingsun->rx_buf);	free_netdev(net);      err_out1:	return ret;}/* * The current device is removed, the USB layer tell us to shut it down... */static void ks959_disconnect(struct usb_interface *intf){	struct ks959_cb *kingsun = usb_get_intfdata(intf);	if (!kingsun)		return;	unregister_netdev(kingsun->netdev);	/* Mop up receive && transmit urb's */	if (kingsun->speed_urb != NULL) {		usb_kill_urb(kingsun->speed_urb);		usb_free_urb(kingsun->speed_urb);		kingsun->speed_urb = NULL;	}	if (kingsun->tx_urb != NULL) {		usb_kill_urb(kingsun->tx_urb);		usb_free_urb(kingsun->tx_urb);		kingsun->tx_urb = NULL;	}	if (kingsun->rx_urb != NULL) {		usb_kill_urb(kingsun->rx_urb);		usb_free_urb(kingsun->rx_urb);		kingsun->rx_urb = NULL;	}	kfree(kingsun->speed_setuprequest);	kfree(kingsun->tx_setuprequest);	kfree(kingsun->tx_buf_xored);	kfree(kingsun->tx_buf_clear);	kfree(kingsun->rx_setuprequest);	kfree(kingsun->rx_buf);	free_netdev(kingsun->netdev);	usb_set_intfdata(intf, NULL);}#ifdef CONFIG_PM/* USB suspend, so power off the transmitter/receiver */static int ks959_suspend(struct usb_interface *intf, pm_message_t message){	struct ks959_cb *kingsun = usb_get_intfdata(intf);	netif_device_detach(kingsun->netdev);	if (kingsun->speed_urb != NULL)		usb_kill_urb(kingsun->speed_urb);	if (kingsun->tx_urb != NULL)		usb_kill_urb(kingsun->tx_urb);	if (kingsun->rx_urb != NULL)		usb_kill_urb(kingsun->rx_urb);	return 0;}/* Coming out of suspend, so reset hardware */static int ks959_resume(struct usb_interface *intf){	struct ks959_cb *kingsun = usb_get_intfdata(intf);	if (kingsun->rx_urb != NULL) {		/* Setup request already filled in ks959_probe */		usb_submit_urb(kingsun->rx_urb, GFP_KERNEL);	}	netif_device_attach(kingsun->netdev);	return 0;}#endif/* * USB device callbacks */static struct usb_driver irda_driver = {	.name = "ks959-sir",	.probe = ks959_probe,	.disconnect = ks959_disconnect,	.id_table = dongles,#ifdef CONFIG_PM	.suspend = ks959_suspend,	.resume = ks959_resume,#endif};/* * Module insertion */static int __init ks959_init(void){	return usb_register(&irda_driver);}module_init(ks959_init);/* * Module removal */static void __exit ks959_cleanup(void){	/* Deregister the driver and remove all pending instances */	usb_deregister(&irda_driver);}module_exit(ks959_cleanup);MODULE_AUTHOR("Alex Villacís Lasso <a_villacis@palosanto.com>");MODULE_DESCRIPTION("IrDA-USB Dongle Driver for KingSun KS-959");MODULE_LICENSE("GPL");

⌨️ 快捷键说明

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