2 * Alchemy Semi Au1000 IrDA driver
4 * Copyright 2001 MontaVista Software Inc.
5 * Author: MontaVista Software, Inc.
6 * ppopov@mvista.com or source@mvista.com
8 * This program is free software; you can distribute it and/or modify it
9 * under the terms of the GNU General Public License (Version 2) as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
21 #include <linux/module.h>
22 #include <linux/types.h>
23 #include <linux/init.h>
24 #include <linux/errno.h>
25 #include <linux/netdevice.h>
26 #include <linux/slab.h>
27 #include <linux/rtnetlink.h>
28 #include <linux/interrupt.h>
30 #include <linux/bitops.h>
34 #include <asm/au1000.h>
35 #if defined(CONFIG_MIPS_PB1000) || defined(CONFIG_MIPS_PB1100)
36 #include <asm/pb1000.h>
37 #elif defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100)
38 #include <asm/db1x00.h>
40 #error au1k_ir: unsupported board
43 #include <net/irda/irda.h>
44 #include <net/irda/irmod.h>
45 #include <net/irda/wrapper.h>
46 #include <net/irda/irda_device.h>
47 #include "au1000_ircc.h"
49 static int au1k_irda_net_init(struct net_device *);
50 static int au1k_irda_start(struct net_device *);
51 static int au1k_irda_stop(struct net_device *dev);
52 static int au1k_irda_hard_xmit(struct sk_buff *, struct net_device *);
53 static int au1k_irda_rx(struct net_device *);
54 static void au1k_irda_interrupt(int, void *);
55 static void au1k_tx_timeout(struct net_device *);
56 static int au1k_irda_ioctl(struct net_device *, struct ifreq *, int);
57 static int au1k_irda_set_speed(struct net_device *dev, int speed);
59 static void *dma_alloc(size_t, dma_addr_t *);
60 static void dma_free(void *, size_t);
62 static int qos_mtt_bits = 0x07; /* 1 ms or more */
63 static struct net_device *ir_devs[NUM_IR_IFF];
64 static char version[] __devinitdata =
65 "au1k_ircc:1.2 ppopov@mvista.com\n";
67 #define RUN_AT(x) (jiffies + (x))
69 #if defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100)
70 static BCSR * const bcsr = (BCSR *)0xAE000000;
73 static DEFINE_SPINLOCK(ir_lock);
76 * IrDA peripheral bug. You have to read the register
77 * twice to get the right value.
79 u32 read_ir_reg(u32 addr)
87 * Buffer allocation/deallocation routines. The buffer descriptor returned
88 * has the virtual and dma address of a buffer suitable for
89 * both, receive and transmit operations.
91 static db_dest_t *GetFreeDB(struct au1k_private *aup)
97 aup->pDBfree = pDB->pnext;
102 static void ReleaseDB(struct au1k_private *aup, db_dest_t *pDB)
104 db_dest_t *pDBfree = aup->pDBfree;
106 pDBfree->pnext = pDB;
112 DMA memory allocation, derived from pci_alloc_consistent.
113 However, the Au1000 data cache is coherent (when programmed
114 so), therefore we return KSEG0 address, not KSEG1.
116 static void *dma_alloc(size_t size, dma_addr_t * dma_handle)
119 int gfp = GFP_ATOMIC | GFP_DMA;
121 ret = (void *) __get_free_pages(gfp, get_order(size));
124 memset(ret, 0, size);
125 *dma_handle = virt_to_bus(ret);
126 ret = (void *)KSEG0ADDR(ret);
132 static void dma_free(void *vaddr, size_t size)
134 vaddr = (void *)KSEG0ADDR(vaddr);
135 free_pages((unsigned long) vaddr, get_order(size));
140 setup_hw_rings(struct au1k_private *aup, u32 rx_base, u32 tx_base)
143 for (i=0; i<NUM_IR_DESC; i++) {
144 aup->rx_ring[i] = (volatile ring_dest_t *)
145 (rx_base + sizeof(ring_dest_t)*i);
147 for (i=0; i<NUM_IR_DESC; i++) {
148 aup->tx_ring[i] = (volatile ring_dest_t *)
149 (tx_base + sizeof(ring_dest_t)*i);
153 static int au1k_irda_init(void)
155 static unsigned version_printed = 0;
156 struct au1k_private *aup;
157 struct net_device *dev;
160 if (version_printed++ == 0) printk(version);
162 dev = alloc_irdadev(sizeof(struct au1k_private));
166 dev->irq = AU1000_IRDA_RX_INT; /* TX has its own interrupt */
167 err = au1k_irda_net_init(dev);
170 err = register_netdev(dev);
174 printk(KERN_INFO "IrDA: Registered device %s\n", dev->name);
178 aup = netdev_priv(dev);
179 dma_free((void *)aup->db[0].vaddr,
180 MAX_BUF_SIZE * 2*NUM_IR_DESC);
181 dma_free((void *)aup->rx_ring[0],
182 2 * MAX_NUM_IR_DESC*(sizeof(ring_dest_t)));
183 kfree(aup->rx_buff.head);
189 static int au1k_irda_init_iobuf(iobuff_t *io, int size)
191 io->head = kmalloc(size, GFP_KERNEL);
192 if (io->head != NULL) {
194 io->in_frame = FALSE;
195 io->state = OUTSIDE_FRAME;
198 return io->head ? 0 : -ENOMEM;
201 static const struct net_device_ops au1k_irda_netdev_ops = {
202 .ndo_open = au1k_irda_start,
203 .ndo_stop = au1k_irda_stop,
204 .ndo_start_xmit = au1k_irda_hard_xmit,
205 .ndo_tx_timeout = au1k_tx_timeout,
206 .ndo_do_ioctl = au1k_irda_ioctl,
207 .ndo_change_mtu = eth_change_mtu,
208 .ndo_validate_addr = eth_validate_addr,
209 .ndo_set_mac_address = eth_mac_addr,
212 static int au1k_irda_net_init(struct net_device *dev)
214 struct au1k_private *aup = netdev_priv(dev);
215 int i, retval = 0, err;
216 db_dest_t *pDB, *pDBfree;
219 err = au1k_irda_init_iobuf(&aup->rx_buff, 14384);
223 dev->netdev_ops = &au1k_irda_netdev_ops;
225 irda_init_max_qos_capabilies(&aup->qos);
227 /* The only value we must override it the baudrate */
228 aup->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
229 IR_115200|IR_576000 |(IR_4000000 << 8);
231 aup->qos.min_turn_time.bits = qos_mtt_bits;
232 irda_qos_bits_to_value(&aup->qos);
236 /* Tx ring follows rx ring + 512 bytes */
237 /* we need a 1k aligned buffer */
238 aup->rx_ring[0] = (ring_dest_t *)
239 dma_alloc(2*MAX_NUM_IR_DESC*(sizeof(ring_dest_t)), &temp);
240 if (!aup->rx_ring[0])
243 /* allocate the data buffers */
245 (void *)dma_alloc(MAX_BUF_SIZE * 2*NUM_IR_DESC, &temp);
246 if (!aup->db[0].vaddr)
249 setup_hw_rings(aup, (u32)aup->rx_ring[0], (u32)aup->rx_ring[0] + 512);
253 for (i=0; i<(2*NUM_IR_DESC); i++) {
254 pDB->pnext = pDBfree;
257 (u32 *)((unsigned)aup->db[0].vaddr + MAX_BUF_SIZE*i);
258 pDB->dma_addr = (dma_addr_t)virt_to_bus(pDB->vaddr);
261 aup->pDBfree = pDBfree;
263 /* attach a data buffer to each descriptor */
264 for (i=0; i<NUM_IR_DESC; i++) {
265 pDB = GetFreeDB(aup);
267 aup->rx_ring[i]->addr_0 = (u8)(pDB->dma_addr & 0xff);
268 aup->rx_ring[i]->addr_1 = (u8)((pDB->dma_addr>>8) & 0xff);
269 aup->rx_ring[i]->addr_2 = (u8)((pDB->dma_addr>>16) & 0xff);
270 aup->rx_ring[i]->addr_3 = (u8)((pDB->dma_addr>>24) & 0xff);
271 aup->rx_db_inuse[i] = pDB;
273 for (i=0; i<NUM_IR_DESC; i++) {
274 pDB = GetFreeDB(aup);
276 aup->tx_ring[i]->addr_0 = (u8)(pDB->dma_addr & 0xff);
277 aup->tx_ring[i]->addr_1 = (u8)((pDB->dma_addr>>8) & 0xff);
278 aup->tx_ring[i]->addr_2 = (u8)((pDB->dma_addr>>16) & 0xff);
279 aup->tx_ring[i]->addr_3 = (u8)((pDB->dma_addr>>24) & 0xff);
280 aup->tx_ring[i]->count_0 = 0;
281 aup->tx_ring[i]->count_1 = 0;
282 aup->tx_ring[i]->flags = 0;
283 aup->tx_db_inuse[i] = pDB;
286 #if defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100)
288 bcsr->resets &= ~BCSR_RESETS_IRDA_MODE_MASK;
289 bcsr->resets |= BCSR_RESETS_IRDA_MODE_FULL;
296 dma_free((void *)aup->rx_ring[0],
297 2 * MAX_NUM_IR_DESC*(sizeof(ring_dest_t)));
299 kfree(aup->rx_buff.head);
301 printk(KERN_ERR "au1k_init_module failed. Returns %d\n", retval);
306 static int au1k_init(struct net_device *dev)
308 struct au1k_private *aup = netdev_priv(dev);
313 /* bring the device out of reset */
314 control = 0xe; /* coherent, clock enable, one half system clock */
316 #ifndef CONFIG_CPU_LITTLE_ENDIAN
323 for (i=0; i<NUM_IR_DESC; i++) {
324 aup->rx_ring[i]->flags = AU_OWN;
327 writel(control, IR_INTERFACE_CONFIG);
330 writel(read_ir_reg(IR_ENABLE) & ~0x8000, IR_ENABLE); /* disable PHY */
333 writel(MAX_BUF_SIZE, IR_MAX_PKT_LEN);
335 ring_address = (u32)virt_to_phys((void *)aup->rx_ring[0]);
336 writel(ring_address >> 26, IR_RING_BASE_ADDR_H);
337 writel((ring_address >> 10) & 0xffff, IR_RING_BASE_ADDR_L);
339 writel(RING_SIZE_64<<8 | RING_SIZE_64<<12, IR_RING_SIZE);
341 writel(1<<2 | IR_ONE_PIN, IR_CONFIG_2); /* 48MHz */
342 writel(0, IR_RING_ADDR_CMPR);
344 au1k_irda_set_speed(dev, 9600);
348 static int au1k_irda_start(struct net_device *dev)
352 struct au1k_private *aup = netdev_priv(dev);
354 if ((retval = au1k_init(dev))) {
355 printk(KERN_ERR "%s: error in au1k_init\n", dev->name);
359 if ((retval = request_irq(AU1000_IRDA_TX_INT, &au1k_irda_interrupt,
360 0, dev->name, dev))) {
361 printk(KERN_ERR "%s: unable to get IRQ %d\n",
362 dev->name, dev->irq);
365 if ((retval = request_irq(AU1000_IRDA_RX_INT, &au1k_irda_interrupt,
366 0, dev->name, dev))) {
367 free_irq(AU1000_IRDA_TX_INT, dev);
368 printk(KERN_ERR "%s: unable to get IRQ %d\n",
369 dev->name, dev->irq);
373 /* Give self a hardware name */
374 sprintf(hwname, "Au1000 SIR/FIR");
375 aup->irlap = irlap_open(dev, &aup->qos, hwname);
376 netif_start_queue(dev);
378 writel(read_ir_reg(IR_CONFIG_2) | 1<<8, IR_CONFIG_2); /* int enable */
380 aup->timer.expires = RUN_AT((3*HZ));
381 aup->timer.data = (unsigned long)dev;
385 static int au1k_irda_stop(struct net_device *dev)
387 struct au1k_private *aup = netdev_priv(dev);
389 /* disable interrupts */
390 writel(read_ir_reg(IR_CONFIG_2) & ~(1<<8), IR_CONFIG_2);
391 writel(0, IR_CONFIG_1);
392 writel(0, IR_INTERFACE_CONFIG); /* disable clock */
396 irlap_close(aup->irlap);
400 netif_stop_queue(dev);
401 del_timer(&aup->timer);
403 /* disable the interrupt */
404 free_irq(AU1000_IRDA_TX_INT, dev);
405 free_irq(AU1000_IRDA_RX_INT, dev);
409 static void __exit au1k_irda_exit(void)
411 struct net_device *dev = ir_devs[0];
412 struct au1k_private *aup = netdev_priv(dev);
414 unregister_netdev(dev);
416 dma_free((void *)aup->db[0].vaddr,
417 MAX_BUF_SIZE * 2*NUM_IR_DESC);
418 dma_free((void *)aup->rx_ring[0],
419 2 * MAX_NUM_IR_DESC*(sizeof(ring_dest_t)));
420 kfree(aup->rx_buff.head);
426 update_tx_stats(struct net_device *dev, u32 status, u32 pkt_len)
428 struct au1k_private *aup = netdev_priv(dev);
429 struct net_device_stats *ps = &aup->stats;
432 ps->tx_bytes += pkt_len;
434 if (status & IR_TX_ERROR) {
436 ps->tx_aborted_errors++;
441 static void au1k_tx_ack(struct net_device *dev)
443 struct au1k_private *aup = netdev_priv(dev);
444 volatile ring_dest_t *ptxd;
446 ptxd = aup->tx_ring[aup->tx_tail];
447 while (!(ptxd->flags & AU_OWN) && (aup->tx_tail != aup->tx_head)) {
448 update_tx_stats(dev, ptxd->flags,
449 ptxd->count_1<<8 | ptxd->count_0);
454 aup->tx_tail = (aup->tx_tail + 1) & (NUM_IR_DESC - 1);
455 ptxd = aup->tx_ring[aup->tx_tail];
459 netif_wake_queue(dev);
463 if (aup->tx_tail == aup->tx_head) {
465 au1k_irda_set_speed(dev, aup->newspeed);
469 writel(read_ir_reg(IR_CONFIG_1) & ~IR_TX_ENABLE,
472 writel(read_ir_reg(IR_CONFIG_1) | IR_RX_ENABLE,
474 writel(0, IR_RING_PROMPT);
482 * Au1000 transmit routine.
484 static int au1k_irda_hard_xmit(struct sk_buff *skb, struct net_device *dev)
486 struct au1k_private *aup = netdev_priv(dev);
487 int speed = irda_get_next_speed(skb);
488 volatile ring_dest_t *ptxd;
494 if (speed != aup->speed && speed != -1) {
495 aup->newspeed = speed;
498 if ((skb->len == 0) && (aup->newspeed)) {
499 if (aup->tx_tail == aup->tx_head) {
500 au1k_irda_set_speed(dev, speed);
507 ptxd = aup->tx_ring[aup->tx_head];
510 if (flags & AU_OWN) {
511 printk(KERN_DEBUG "%s: tx_full\n", dev->name);
512 netif_stop_queue(dev);
516 else if (((aup->tx_head + 1) & (NUM_IR_DESC - 1)) == aup->tx_tail) {
517 printk(KERN_DEBUG "%s: tx_full\n", dev->name);
518 netif_stop_queue(dev);
523 pDB = aup->tx_db_inuse[aup->tx_head];
526 if (read_ir_reg(IR_RX_BYTE_CNT) != 0) {
527 printk("tx warning: rx byte cnt %x\n",
528 read_ir_reg(IR_RX_BYTE_CNT));
532 if (aup->speed == 4000000) {
534 skb_copy_from_linear_data(skb, pDB->vaddr, skb->len);
535 ptxd->count_0 = skb->len & 0xff;
536 ptxd->count_1 = (skb->len >> 8) & 0xff;
541 len = async_wrap_skb(skb, (u8 *)pDB->vaddr, MAX_BUF_SIZE);
542 ptxd->count_0 = len & 0xff;
543 ptxd->count_1 = (len >> 8) & 0xff;
544 ptxd->flags |= IR_DIS_CRC;
545 au_writel(au_readl(0xae00000c) & ~(1<<13), 0xae00000c);
547 ptxd->flags |= AU_OWN;
550 writel(read_ir_reg(IR_CONFIG_1) | IR_TX_ENABLE, IR_CONFIG_1);
551 writel(0, IR_RING_PROMPT);
555 aup->tx_head = (aup->tx_head + 1) & (NUM_IR_DESC - 1);
556 dev->trans_start = jiffies;
562 update_rx_stats(struct net_device *dev, u32 status, u32 count)
564 struct au1k_private *aup = netdev_priv(dev);
565 struct net_device_stats *ps = &aup->stats;
569 if (status & IR_RX_ERROR) {
571 if (status & (IR_PHY_ERROR|IR_FIFO_OVER))
572 ps->rx_missed_errors++;
573 if (status & IR_MAX_LEN)
574 ps->rx_length_errors++;
575 if (status & IR_CRC_ERROR)
579 ps->rx_bytes += count;
583 * Au1000 receive routine.
585 static int au1k_irda_rx(struct net_device *dev)
587 struct au1k_private *aup = netdev_priv(dev);
589 volatile ring_dest_t *prxd;
593 prxd = aup->rx_ring[aup->rx_head];
596 while (!(flags & AU_OWN)) {
597 pDB = aup->rx_db_inuse[aup->rx_head];
598 count = prxd->count_1<<8 | prxd->count_0;
599 if (!(flags & IR_RX_ERROR)) {
601 update_rx_stats(dev, flags, count);
602 skb=alloc_skb(count+1,GFP_ATOMIC);
604 aup->netdev->stats.rx_dropped++;
608 if (aup->speed == 4000000)
611 skb_put(skb, count-2);
612 skb_copy_to_linear_data(skb, pDB->vaddr, count - 2);
614 skb_reset_mac_header(skb);
615 skb->protocol = htons(ETH_P_IRDA);
620 prxd->flags |= AU_OWN;
621 aup->rx_head = (aup->rx_head + 1) & (NUM_IR_DESC - 1);
622 writel(0, IR_RING_PROMPT);
625 /* next descriptor */
626 prxd = aup->rx_ring[aup->rx_head];
634 static irqreturn_t au1k_irda_interrupt(int dummy, void *dev_id)
636 struct net_device *dev = dev_id;
638 writel(0, IR_INT_CLEAR); /* ack irda interrupts */
648 * The Tx ring has been full longer than the watchdog timeout
649 * value. The transmitter must be hung?
651 static void au1k_tx_timeout(struct net_device *dev)
654 struct au1k_private *aup = netdev_priv(dev);
656 printk(KERN_ERR "%s: tx timeout\n", dev->name);
659 au1k_irda_set_speed(dev, speed);
661 netif_wake_queue(dev);
666 * Set the IrDA communications speed.
669 au1k_irda_set_speed(struct net_device *dev, int speed)
672 struct au1k_private *aup = netdev_priv(dev);
674 int ret = 0, timeout = 10, i;
675 volatile ring_dest_t *ptxd;
676 #if defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100)
677 unsigned long irda_resets;
680 if (speed == aup->speed)
683 spin_lock_irqsave(&ir_lock, flags);
685 /* disable PHY first */
686 writel(read_ir_reg(IR_ENABLE) & ~0x8000, IR_ENABLE);
689 writel(read_ir_reg(IR_CONFIG_1) & ~(IR_RX_ENABLE|IR_TX_ENABLE),
692 while (read_ir_reg(IR_ENABLE) & (IR_RX_STATUS | IR_TX_STATUS)) {
695 printk(KERN_ERR "%s: rx/tx disable timeout\n",
702 writel(read_ir_reg(IR_CONFIG_1) & ~IR_DMA_ENABLE, IR_CONFIG_1);
706 * After we disable tx/rx. the index pointers
709 aup->tx_head = aup->tx_tail = aup->rx_head = 0;
710 for (i=0; i<NUM_IR_DESC; i++) {
711 ptxd = aup->tx_ring[i];
717 for (i=0; i<NUM_IR_DESC; i++) {
718 ptxd = aup->rx_ring[i];
721 ptxd->flags = AU_OWN;
724 if (speed == 4000000) {
725 #if defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100)
726 bcsr->resets |= BCSR_RESETS_FIR_SEL;
727 #else /* Pb1000 and Pb1100 */
728 writel(1<<13, CPLD_AUX1);
732 #if defined(CONFIG_MIPS_DB1000) || defined(CONFIG_MIPS_DB1100)
733 bcsr->resets &= ~BCSR_RESETS_FIR_SEL;
734 #else /* Pb1000 and Pb1100 */
735 writel(readl(CPLD_AUX1) & ~(1<<13), CPLD_AUX1);
741 writel(11<<10 | 12<<5, IR_WRITE_PHY_CONFIG);
742 writel(IR_SIR_MODE, IR_CONFIG_1);
745 writel(5<<10 | 12<<5, IR_WRITE_PHY_CONFIG);
746 writel(IR_SIR_MODE, IR_CONFIG_1);
749 writel(2<<10 | 12<<5, IR_WRITE_PHY_CONFIG);
750 writel(IR_SIR_MODE, IR_CONFIG_1);
753 writel(1<<10 | 12<<5, IR_WRITE_PHY_CONFIG);
754 writel(IR_SIR_MODE, IR_CONFIG_1);
757 writel(12<<5, IR_WRITE_PHY_CONFIG);
758 writel(IR_SIR_MODE, IR_CONFIG_1);
761 writel(0xF, IR_WRITE_PHY_CONFIG);
762 writel(IR_FIR|IR_DMA_ENABLE|IR_RX_ENABLE, IR_CONFIG_1);
765 printk(KERN_ERR "%s unsupported speed %x\n", dev->name, speed);
771 writel(read_ir_reg(IR_ENABLE) | 0x8000, IR_ENABLE);
774 control = read_ir_reg(IR_ENABLE);
775 writel(0, IR_RING_PROMPT);
778 if (control & (1<<14)) {
779 printk(KERN_ERR "%s: configuration error\n", dev->name);
782 if (control & (1<<11))
783 printk(KERN_DEBUG "%s Valid SIR config\n", dev->name);
784 if (control & (1<<12))
785 printk(KERN_DEBUG "%s Valid MIR config\n", dev->name);
786 if (control & (1<<13))
787 printk(KERN_DEBUG "%s Valid FIR config\n", dev->name);
788 if (control & (1<<10))
789 printk(KERN_DEBUG "%s TX enabled\n", dev->name);
790 if (control & (1<<9))
791 printk(KERN_DEBUG "%s RX enabled\n", dev->name);
794 spin_unlock_irqrestore(&ir_lock, flags);
799 au1k_irda_ioctl(struct net_device *dev, struct ifreq *ifreq, int cmd)
801 struct if_irda_req *rq = (struct if_irda_req *)ifreq;
802 struct au1k_private *aup = netdev_priv(dev);
803 int ret = -EOPNOTSUPP;
807 if (capable(CAP_NET_ADMIN)) {
809 * We are unable to set the speed if the
810 * device is not running.
813 ret = au1k_irda_set_speed(dev,
816 printk(KERN_ERR "%s ioctl: !netif_running\n",
825 if (capable(CAP_NET_ADMIN)) {
826 irda_device_set_media_busy(dev, TRUE);
832 rq->ifr_receiving = 0;
840 MODULE_AUTHOR("Pete Popov <ppopov@mvista.com>");
841 MODULE_DESCRIPTION("Au1000 IrDA Device Driver");
843 module_init(au1k_irda_init);
844 module_exit(au1k_irda_exit);