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

📄 sa1100_ir.c

📁 内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系统,编译内核
💻 C
📖 第 1 页 / 共 2 页
字号:
/* *  linux/drivers/net/irda/sa1100_ir.c * *  Copyright (C) 2000-2001 Russell King * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * *  Infra-red driver for the StrongARM SA1100 embedded microprocessor * *  Note that we don't have to worry about the SA1111's DMA bugs in here, *  so we use the straight forward pci_map_* functions with a null pointer. *  IMHO we should really be using our own machine specific set. */#include <linux/config.h>#include <linux/module.h>#include <linux/types.h>#include <linux/init.h>#include <linux/errno.h>#include <linux/netdevice.h>#include <linux/slab.h>#include <linux/rtnetlink.h>#include <linux/interrupt.h>#include <linux/delay.h>#include <linux/pci.h>#include <linux/pm.h>#include <net/irda/irda.h>#include <net/irda/irmod.h>#include <net/irda/wrapper.h>#include <net/irda/irda_device.h>#include <asm/irq.h>#include <asm/dma.h>#include <asm/hardware.h>#include <asm/mach-types.h>#include <asm/arch/assabet.h>#ifndef CONFIG_SA1100_H3600#define clr_h3600_egpio(x)	do { } while (0)#define set_h3600_egpio(x)	do { } while (0)#endif#ifndef GPIO_IRDA_FIR#define GPIO_IRDA_FIR		(0)#endif#ifndef GPIO_IRDA_POWER#define GPIO_IRDA_POWER		(0)#endifstatic int power_level = 3;static int tx_lpm = 0;/* * Our netdevice.  There is only ever one of these. */static struct net_device *netdev;struct sa1100_irda {	unsigned char		hscr0;	unsigned char		utcr4;	unsigned char		power;	unsigned char		open;	int			speed;	int			newspeed;	struct sk_buff		*txskb;	struct sk_buff		*rxskb;	dma_addr_t		txbuf_dma;	dma_addr_t		rxbuf_dma;	int			txdma;	int			rxdma;	struct net_device_stats	stats;	struct irlap_cb		*irlap;	struct pm_dev		*pmdev;	struct qos_info		qos;	iobuff_t		tx_buff;	iobuff_t		rx_buff;};#define IS_FIR(si)		((si)->speed >= 4000000)#define HPSIR_MAX_RXLEN		2047/* * Allocate and map the receive buffer, unless it is already allocated. */static int sa1100_irda_rx_alloc(struct sa1100_irda *si){	if (si->rxskb)		return 0;	si->rxskb = alloc_skb(HPSIR_MAX_RXLEN + 1, GFP_ATOMIC);	if (!si->rxskb) {		printk(KERN_ERR "sa1100_ir: out of memory for RX SKB\n");		return -ENOMEM;	}	/*	 * Align any IP headers that may be contained	 * within the frame.	 */	skb_reserve(si->rxskb, 1);	si->rxbuf_dma = pci_map_single(NULL, si->rxskb->data,					HPSIR_MAX_RXLEN,					PCI_DMA_FROMDEVICE);	return 0;}/* * We want to get here as soon as possible, and get the receiver setup. * We use the existing buffer. */static void sa1100_irda_rx_dma_start(struct sa1100_irda *si){	if (!si->rxskb) {		printk(KERN_ERR "sa1100_ir: rx buffer went missing\n");		return;	}	/*	 * First empty receive FIFO	 */	Ser2HSCR0 = si->hscr0 | HSCR0_HSSP;	/*	 * Enable the DMA, receiver and recieve interrupt.	 */	sa1100_dma_flush_all(si->rxdma);	sa1100_dma_queue_buffer(si->rxdma, NULL, si->rxbuf_dma, HPSIR_MAX_RXLEN);	Ser2HSCR0 = si->hscr0 | HSCR0_HSSP | HSCR0_RXE;}/* * Set the IrDA communications speed. */static int sa1100_irda_set_speed(struct sa1100_irda *si, int speed){	unsigned long flags;	int brd, ret = -EINVAL;	switch (speed) {	case 9600:	case 19200:	case 38400:	case 57600:	case 115200:		brd = 3686400 / (16 * speed) - 1;		/*		 * Stop the receive DMA.		 */		if (IS_FIR(si))			sa1100_dma_stop(si->rxdma);		local_irq_save(flags);		Ser2UTCR3 = 0;		Ser2HSCR0 = HSCR0_UART;		Ser2UTCR1 = brd >> 8;		Ser2UTCR2 = brd;		/*		 * Clear status register		 */		Ser2UTSR0 = UTSR0_REB | UTSR0_RBB | UTSR0_RID;		Ser2UTCR3 = UTCR3_RIE | UTCR3_RXE | UTCR3_TXE;		if (machine_is_assabet())			ASSABET_BCR_clear(ASSABET_BCR_IRDA_FSEL);		if (machine_is_h3600())			clr_h3600_egpio(EGPIO_H3600_IR_FSEL);		if (machine_is_yopy())			PPSR &= ~GPIO_IRDA_FIR;		si->speed = speed;		local_irq_restore(flags);		ret = 0;		break;	case 4000000:		save_flags(flags);		cli();		si->hscr0 = 0;		Ser2HSSR0 = 0xff;		Ser2HSCR0 = si->hscr0 | HSCR0_HSSP;		Ser2UTCR3 = 0;		si->speed = speed;		if (machine_is_assabet())			ASSABET_BCR_set(ASSABET_BCR_IRDA_FSEL);		if (machine_is_h3600())			set_h3600_egpio(EGPIO_H3600_IR_FSEL);		if (machine_is_yopy())			PPSR |= GPIO_IRDA_FIR;		sa1100_irda_rx_alloc(si);		sa1100_irda_rx_dma_start(si);		restore_flags(flags);		break;	default:		break;	}	return ret;}/* * This sets the IRDA power level on the Assabet. */static inline intsa1100_irda_set_power_assabet(struct sa1100_irda *si, unsigned int state){	static unsigned int bcr_state[4] = {		ASSABET_BCR_IRDA_MD0,		ASSABET_BCR_IRDA_MD1|ASSABET_BCR_IRDA_MD0,		ASSABET_BCR_IRDA_MD1,		0	};	if (state < 4) {		state = bcr_state[state];		ASSABET_BCR_clear(state ^ (ASSABET_BCR_IRDA_MD1|					   ASSABET_BCR_IRDA_MD0));		ASSABET_BCR_set(state);	}	return 0;}/* * This turns the IRDA power on or off on the Compaq H3600 */static inline intsa1100_irda_set_power_h3600(struct sa1100_irda *si, unsigned int state){	if (state)		set_h3600_egpio(EGPIO_H3600_IR_ON);	else		clr_h3600_egpio(EGPIO_H3600_IR_ON);	return 0;}/* * This turns the IRDA power on or off on the Yopy */static inline intsa1100_irda_set_power_yopy(struct sa1100_irda *si, unsigned int state){	if (state)		PPSR &= ~GPIO_IRDA_POWER;	else		PPSR |= GPIO_IRDA_POWER;	return 0;}/* * Control the power state of the IrDA transmitter. * State: *  0 - off *  1 - short range, lowest power *  2 - medium range, medium power *  3 - maximum range, high power * * Currently, only assabet is known to support this. */static int__sa1100_irda_set_power(struct sa1100_irda *si, unsigned int state){	int ret = 0;	if (machine_is_assabet())		ret = sa1100_irda_set_power_assabet(si, state);	if (machine_is_h3600())		ret = sa1100_irda_set_power_h3600(si, state);	if (machine_is_yopy())		ret = sa1100_irda_set_power_yopy(si, state);	return ret;}static inline intsa1100_set_power(struct sa1100_irda *si, unsigned int state){	int ret;	ret = __sa1100_irda_set_power(si, state);	if (ret == 0)		si->power = state;	return ret;}static int sa1100_irda_startup(struct sa1100_irda *si){	int ret;	/*	 * Ensure that the ports for this device are setup correctly.	 */	if (machine_is_yopy()) {		PPDR |= GPIO_IRDA_POWER | GPIO_IRDA_FIR;		PPSR |= GPIO_IRDA_POWER | GPIO_IRDA_FIR;		PSDR |= GPIO_IRDA_POWER | GPIO_IRDA_FIR;	}	/*	 * Configure PPC for IRDA - we want to drive TXD2 low.	 * We also want to drive this pin low during sleep.	 */	PPSR &= ~PPC_TXD2;	PSDR &= ~PPC_TXD2;	PPDR |= PPC_TXD2;	/*	 * Enable HP-SIR modulation, and ensure that the port is disabled.	 */	Ser2UTCR3 = 0;	Ser2HSCR0 = HSCR0_UART;	Ser2UTCR4 = si->utcr4;	Ser2UTCR0 = UTCR0_8BitData;	Ser2HSCR2 = HSCR2_TrDataH | HSCR2_RcDataL;	/*	 * Clear status register	 */	Ser2UTSR0 = UTSR0_REB | UTSR0_RBB | UTSR0_RID;	ret = sa1100_irda_set_speed(si, si->speed = 9600);	if (ret)		return ret;	return 0;}static void sa1100_irda_shutdown(struct sa1100_irda *si){	/*	 * Stop all DMA activity.	 */	sa1100_dma_stop(si->rxdma);	sa1100_dma_stop(si->txdma);	/* Disable the port. */	Ser2UTCR3 = 0;	Ser2HSCR0 = 0;}#ifdef CONFIG_PM/* * Suspend the IrDA interface. */static int sa1100_irda_suspend(struct net_device *dev, int state){	struct sa1100_irda *si = dev->priv;	if (si && si->open) {		/*		 * Stop the transmit queue		 */		netif_device_detach(dev);		disable_irq(dev->irq);		sa1100_irda_shutdown(si);		__sa1100_irda_set_power(si, 0);	}	return 0;}/* * Resume the IrDA interface. */static int sa1100_irda_resume(struct net_device *dev){	struct sa1100_irda *si = dev->priv;	if (si && si->open) {		/*		 * If we missed a speed change, initialise at the new speed		 * directly.  It is debatable whether this is actually		 * required, but in the interests of continuing from where		 * we left off it is desireable.  The converse argument is		 * that we should re-negotiate at 9600 baud again.		 */		if (si->newspeed) {			si->speed = si->newspeed;			si->newspeed = 0;		}		sa1100_irda_startup(si);		__sa1100_irda_set_power(si, si->power);		enable_irq(dev->irq);		/*		 * This automatically wakes up the queue		 */		netif_device_attach(dev);	}	return 0;}static int sa1100_irda_pmproc(struct pm_dev *dev, pm_request_t rqst, void *data){	int ret;	if (!dev->data)		return -EINVAL;	switch (rqst) {	case PM_SUSPEND:		ret = sa1100_irda_suspend((struct net_device *)dev->data,					  (int)data);		break;	case PM_RESUME:		ret = sa1100_irda_resume((struct net_device *)dev->data);		break;	default:		ret = -EINVAL;		break;	}	return ret;}#endif/* * HP-SIR format interrupt service routines. */static void sa1100_irda_hpsir_irq(struct net_device *dev){	struct sa1100_irda *si = dev->priv;	int status;	status = Ser2UTSR0;	/*	 * Deal with any receive errors first.  The bytes in error may be	 * the only bytes in the receive FIFO, so we do this first.	 */	while (status & UTSR0_EIF) {		int stat, data;		stat = Ser2UTSR1;		data = Ser2UTDR;		if (stat & (UTSR1_FRE | UTSR1_ROR)) {			si->stats.rx_errors++;			if (stat & UTSR1_FRE)				si->stats.rx_frame_errors++;			if (stat & UTSR1_ROR)				si->stats.rx_fifo_errors++;		} else			async_unwrap_char(dev, &si->stats, &si->rx_buff, data);		status = Ser2UTSR0;	}	/*	 * We must clear certain bits.	 */	Ser2UTSR0 = status & (UTSR0_RID | UTSR0_RBB | UTSR0_REB);	if (status & UTSR0_RFS) {		/*		 * There are at least 4 bytes in the FIFO.  Read 3 bytes		 * and leave the rest to the block below.		 */		async_unwrap_char(dev, &si->stats, &si->rx_buff, Ser2UTDR);		async_unwrap_char(dev, &si->stats, &si->rx_buff, Ser2UTDR);		async_unwrap_char(dev, &si->stats, &si->rx_buff, Ser2UTDR);	}	if (status & (UTSR0_RFS | UTSR0_RID)) {		/*		 * Fifo contains more than 1 character.		 */		do {			async_unwrap_char(dev, &si->stats, &si->rx_buff,					  Ser2UTDR);		} while (Ser2UTSR1 & UTSR1_RNE);		dev->last_rx = jiffies;	}	if (status & UTSR0_TFS && si->tx_buff.len) {		/*		 * Transmitter FIFO is not full		 */		do {			Ser2UTDR = *si->tx_buff.data++;			si->tx_buff.len -= 1;		} while (Ser2UTSR1 & UTSR1_TNF && si->tx_buff.len);		if (si->tx_buff.len == 0) {			si->stats.tx_packets++;			si->stats.tx_bytes += si->tx_buff.data -					      si->tx_buff.head;			/*			 * We need to ensure that the transmitter has			 * finished.			 */			do				rmb();			while (Ser2UTSR1 & UTSR1_TBY);			/*			 * Ok, we've finished transmitting.  Now enable			 * the receiver.  Sometimes we get a receive IRQ			 * immediately after a transmit...			 */			Ser2UTSR0 = UTSR0_REB | UTSR0_RBB | UTSR0_RID;			Ser2UTCR3 = UTCR3_RIE | UTCR3_RXE | UTCR3_TXE;			if (si->newspeed) {				sa1100_irda_set_speed(si, si->newspeed);				si->newspeed = 0;			}			/* I'm hungry! */			netif_wake_queue(dev);		}	}}static void sa1100_irda_fir_error(struct sa1100_irda *si, struct net_device *dev){	struct sk_buff *skb = si->rxskb;	dma_addr_t dma_addr;	unsigned int len, stat, data;	if (!skb) {		printk(KERN_ERR "sa1100_ir: SKB is NULL!\n");		return;	}	/*	 * Get the current data position.	 */	sa1100_dma_get_current(si->rxdma, NULL, &dma_addr);	len = dma_addr - si->rxbuf_dma;	pci_unmap_single(NULL, si->rxbuf_dma, len, PCI_DMA_FROMDEVICE);	do {		/*		 * Read Status, and then Data.		 */		stat = Ser2HSSR1;		rmb();		data = Ser2HSDR;		if (stat & (HSSR1_CRE | HSSR1_ROR)) {			si->stats.rx_errors++;			if (stat & HSSR1_CRE)				si->stats.rx_crc_errors++;			if (stat & HSSR1_ROR)				si->stats.rx_frame_errors++;		} else			skb->data[len++] = data;		/*		 * If we hit the end of frame, there's		 * no point in continuing.		 */		if (stat & HSSR1_EOF)			break;	} while (Ser2HSSR0 & HSSR0_EIF);

⌨️ 快捷键说明

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