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.
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/netdevice.h>
25 #include <linux/interrupt.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
28 #include <linux/time.h>
29 #include <linux/types.h>
30 #include <linux/ioport.h>
32 #include <net/irda/irda.h>
33 #include <net/irda/irmod.h>
34 #include <net/irda/wrapper.h>
35 #include <net/irda/irda_device.h>
36 #include <asm/mach-au1x00/au1000.h>
39 #define IR_RING_PTR_STATUS 0x00
40 #define IR_RING_BASE_ADDR_H 0x04
41 #define IR_RING_BASE_ADDR_L 0x08
42 #define IR_RING_SIZE 0x0C
43 #define IR_RING_PROMPT 0x10
44 #define IR_RING_ADDR_CMPR 0x14
45 #define IR_INT_CLEAR 0x18
46 #define IR_CONFIG_1 0x20
47 #define IR_SIR_FLAGS 0x24
48 #define IR_STATUS 0x28
49 #define IR_READ_PHY_CONFIG 0x2C
50 #define IR_WRITE_PHY_CONFIG 0x30
51 #define IR_MAX_PKT_LEN 0x34
52 #define IR_RX_BYTE_CNT 0x38
53 #define IR_CONFIG_2 0x3C
54 #define IR_ENABLE 0x40
57 #define IR_RX_INVERT_LED (1 << 0)
58 #define IR_TX_INVERT_LED (1 << 1)
59 #define IR_ST (1 << 2)
60 #define IR_SF (1 << 3)
61 #define IR_SIR (1 << 4)
62 #define IR_MIR (1 << 5)
63 #define IR_FIR (1 << 6)
64 #define IR_16CRC (1 << 7)
65 #define IR_TD (1 << 8)
66 #define IR_RX_ALL (1 << 9)
67 #define IR_DMA_ENABLE (1 << 10)
68 #define IR_RX_ENABLE (1 << 11)
69 #define IR_TX_ENABLE (1 << 12)
70 #define IR_LOOPBACK (1 << 14)
71 #define IR_SIR_MODE (IR_SIR | IR_DMA_ENABLE | \
72 IR_RX_ALL | IR_RX_ENABLE | IR_SF | \
76 #define IR_RX_STATUS (1 << 9)
77 #define IR_TX_STATUS (1 << 10)
78 #define IR_PHYEN (1 << 15)
80 /* ir_write_phy_config */
81 #define IR_BR(x) (((x) & 0x3f) << 10) /* baud rate */
82 #define IR_PW(x) (((x) & 0x1f) << 5) /* pulse width */
83 #define IR_P(x) ((x) & 0x1f) /* preamble bits */
86 #define IR_MODE_INV (1 << 0)
87 #define IR_ONE_PIN (1 << 1)
88 #define IR_PHYCLK_40MHZ (0 << 2)
89 #define IR_PHYCLK_48MHZ (1 << 2)
90 #define IR_PHYCLK_56MHZ (2 << 2)
91 #define IR_PHYCLK_64MHZ (3 << 2)
92 #define IR_DP (1 << 4)
93 #define IR_DA (1 << 5)
94 #define IR_FLT_HIGH (0 << 6)
95 #define IR_FLT_MEDHI (1 << 6)
96 #define IR_FLT_MEDLO (2 << 6)
97 #define IR_FLT_LO (3 << 6)
98 #define IR_IEN (1 << 8)
101 #define IR_HC (1 << 3) /* divide SBUS clock by 2 */
102 #define IR_CE (1 << 2) /* clock enable */
103 #define IR_C (1 << 1) /* coherency bit */
104 #define IR_BE (1 << 0) /* set in big endian mode */
106 #define NUM_IR_DESC 64
107 #define RING_SIZE_4 0x0
108 #define RING_SIZE_16 0x3
109 #define RING_SIZE_64 0xF
110 #define MAX_NUM_IR_DESC 64
111 #define MAX_BUF_SIZE 2048
113 /* Ring descriptor flags */
114 #define AU_OWN (1 << 7) /* tx,rx */
115 #define IR_DIS_CRC (1 << 6) /* tx */
116 #define IR_BAD_CRC (1 << 5) /* tx */
117 #define IR_NEED_PULSE (1 << 4) /* tx */
118 #define IR_FORCE_UNDER (1 << 3) /* tx */
119 #define IR_DISABLE_TX (1 << 2) /* tx */
120 #define IR_HW_UNDER (1 << 0) /* tx */
121 #define IR_TX_ERROR (IR_DIS_CRC | IR_BAD_CRC | IR_HW_UNDER)
123 #define IR_PHY_ERROR (1 << 6) /* rx */
124 #define IR_CRC_ERROR (1 << 5) /* rx */
125 #define IR_MAX_LEN (1 << 4) /* rx */
126 #define IR_FIFO_OVER (1 << 3) /* rx */
127 #define IR_SIR_ERROR (1 << 2) /* rx */
128 #define IR_RX_ERROR (IR_PHY_ERROR | IR_CRC_ERROR | \
129 IR_MAX_LEN | IR_FIFO_OVER | IR_SIR_ERROR)
132 struct db_dest
*pnext
;
138 u8 count_0
; /* 7:0 */
139 u8 count_1
; /* 12:8 */
143 u8 addr_1
; /* 15:8 */
144 u8 addr_2
; /* 23:16 */
145 u8 addr_3
; /* 31:24 */
148 /* Private data for each instance */
149 struct au1k_private
{
150 void __iomem
*iobase
;
153 struct db_dest
*pDBfree
;
154 struct db_dest db
[2 * NUM_IR_DESC
];
155 volatile struct ring_dest
*rx_ring
[NUM_IR_DESC
];
156 volatile struct ring_dest
*tx_ring
[NUM_IR_DESC
];
157 struct db_dest
*rx_db_inuse
[NUM_IR_DESC
];
158 struct db_dest
*tx_db_inuse
[NUM_IR_DESC
];
166 struct net_device
*netdev
;
167 struct timeval stamp
;
170 struct irlap_cb
*irlap
;
176 struct timer_list timer
;
178 struct resource
*ioarea
;
179 struct au1k_irda_platform_data
*platdata
;
182 static int qos_mtt_bits
= 0x07; /* 1 ms or more */
184 #define RUN_AT(x) (jiffies + (x))
186 static void au1k_irda_plat_set_phy_mode(struct au1k_private
*p
, int mode
)
188 if (p
->platdata
&& p
->platdata
->set_phy_mode
)
189 p
->platdata
->set_phy_mode(mode
);
192 static inline unsigned long irda_read(struct au1k_private
*p
,
196 * IrDA peripheral bug. You have to read the register
197 * twice to get the right value.
199 (void)__raw_readl(p
->iobase
+ ofs
);
200 return __raw_readl(p
->iobase
+ ofs
);
203 static inline void irda_write(struct au1k_private
*p
, unsigned long ofs
,
206 __raw_writel(val
, p
->iobase
+ ofs
);
211 * Buffer allocation/deallocation routines. The buffer descriptor returned
212 * has the virtual and dma address of a buffer suitable for
213 * both, receive and transmit operations.
215 static struct db_dest
*GetFreeDB(struct au1k_private
*aup
)
221 aup
->pDBfree
= db
->pnext
;
226 DMA memory allocation, derived from pci_alloc_consistent.
227 However, the Au1000 data cache is coherent (when programmed
228 so), therefore we return KSEG0 address, not KSEG1.
230 static void *dma_alloc(size_t size
, dma_addr_t
*dma_handle
)
233 int gfp
= GFP_ATOMIC
| GFP_DMA
;
235 ret
= (void *)__get_free_pages(gfp
, get_order(size
));
238 memset(ret
, 0, size
);
239 *dma_handle
= virt_to_bus(ret
);
240 ret
= (void *)KSEG0ADDR(ret
);
245 static void dma_free(void *vaddr
, size_t size
)
247 vaddr
= (void *)KSEG0ADDR(vaddr
);
248 free_pages((unsigned long) vaddr
, get_order(size
));
252 static void setup_hw_rings(struct au1k_private
*aup
, u32 rx_base
, u32 tx_base
)
255 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
256 aup
->rx_ring
[i
] = (volatile struct ring_dest
*)
257 (rx_base
+ sizeof(struct ring_dest
) * i
);
259 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
260 aup
->tx_ring
[i
] = (volatile struct ring_dest
*)
261 (tx_base
+ sizeof(struct ring_dest
) * i
);
265 static int au1k_irda_init_iobuf(iobuff_t
*io
, int size
)
267 io
->head
= kmalloc(size
, GFP_KERNEL
);
268 if (io
->head
!= NULL
) {
270 io
->in_frame
= FALSE
;
271 io
->state
= OUTSIDE_FRAME
;
274 return io
->head
? 0 : -ENOMEM
;
278 * Set the IrDA communications speed.
280 static int au1k_irda_set_speed(struct net_device
*dev
, int speed
)
282 struct au1k_private
*aup
= netdev_priv(dev
);
283 volatile struct ring_dest
*ptxd
;
284 unsigned long control
;
285 int ret
= 0, timeout
= 10, i
;
287 if (speed
== aup
->speed
)
290 /* disable PHY first */
291 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_OFF
);
292 irda_write(aup
, IR_STATUS
, irda_read(aup
, IR_STATUS
) & ~IR_PHYEN
);
295 irda_write(aup
, IR_CONFIG_1
,
296 irda_read(aup
, IR_CONFIG_1
) & ~(IR_RX_ENABLE
| IR_TX_ENABLE
));
298 while (irda_read(aup
, IR_STATUS
) & (IR_RX_STATUS
| IR_TX_STATUS
)) {
301 printk(KERN_ERR
"%s: rx/tx disable timeout\n",
308 irda_write(aup
, IR_CONFIG_1
,
309 irda_read(aup
, IR_CONFIG_1
) & ~IR_DMA_ENABLE
);
312 /* After we disable tx/rx. the index pointers go back to zero. */
313 aup
->tx_head
= aup
->tx_tail
= aup
->rx_head
= 0;
314 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
315 ptxd
= aup
->tx_ring
[i
];
321 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
322 ptxd
= aup
->rx_ring
[i
];
325 ptxd
->flags
= AU_OWN
;
328 if (speed
== 4000000)
329 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_FIR
);
331 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_SIR
);
335 irda_write(aup
, IR_WRITE_PHY_CONFIG
, IR_BR(11) | IR_PW(12));
336 irda_write(aup
, IR_CONFIG_1
, IR_SIR_MODE
);
339 irda_write(aup
, IR_WRITE_PHY_CONFIG
, IR_BR(5) | IR_PW(12));
340 irda_write(aup
, IR_CONFIG_1
, IR_SIR_MODE
);
343 irda_write(aup
, IR_WRITE_PHY_CONFIG
, IR_BR(2) | IR_PW(12));
344 irda_write(aup
, IR_CONFIG_1
, IR_SIR_MODE
);
347 irda_write(aup
, IR_WRITE_PHY_CONFIG
, IR_BR(1) | IR_PW(12));
348 irda_write(aup
, IR_CONFIG_1
, IR_SIR_MODE
);
351 irda_write(aup
, IR_WRITE_PHY_CONFIG
, IR_PW(12));
352 irda_write(aup
, IR_CONFIG_1
, IR_SIR_MODE
);
355 irda_write(aup
, IR_WRITE_PHY_CONFIG
, IR_P(15));
356 irda_write(aup
, IR_CONFIG_1
, IR_FIR
| IR_DMA_ENABLE
|
360 printk(KERN_ERR
"%s unsupported speed %x\n", dev
->name
, speed
);
366 irda_write(aup
, IR_STATUS
, irda_read(aup
, IR_STATUS
) | IR_PHYEN
);
368 control
= irda_read(aup
, IR_STATUS
);
369 irda_write(aup
, IR_RING_PROMPT
, 0);
371 if (control
& (1 << 14)) {
372 printk(KERN_ERR
"%s: configuration error\n", dev
->name
);
374 if (control
& (1 << 11))
375 printk(KERN_DEBUG
"%s Valid SIR config\n", dev
->name
);
376 if (control
& (1 << 12))
377 printk(KERN_DEBUG
"%s Valid MIR config\n", dev
->name
);
378 if (control
& (1 << 13))
379 printk(KERN_DEBUG
"%s Valid FIR config\n", dev
->name
);
380 if (control
& (1 << 10))
381 printk(KERN_DEBUG
"%s TX enabled\n", dev
->name
);
382 if (control
& (1 << 9))
383 printk(KERN_DEBUG
"%s RX enabled\n", dev
->name
);
389 static void update_rx_stats(struct net_device
*dev
, u32 status
, u32 count
)
391 struct net_device_stats
*ps
= &dev
->stats
;
395 if (status
& IR_RX_ERROR
) {
397 if (status
& (IR_PHY_ERROR
| IR_FIFO_OVER
))
398 ps
->rx_missed_errors
++;
399 if (status
& IR_MAX_LEN
)
400 ps
->rx_length_errors
++;
401 if (status
& IR_CRC_ERROR
)
404 ps
->rx_bytes
+= count
;
407 static void update_tx_stats(struct net_device
*dev
, u32 status
, u32 pkt_len
)
409 struct net_device_stats
*ps
= &dev
->stats
;
412 ps
->tx_bytes
+= pkt_len
;
414 if (status
& IR_TX_ERROR
) {
416 ps
->tx_aborted_errors
++;
420 static void au1k_tx_ack(struct net_device
*dev
)
422 struct au1k_private
*aup
= netdev_priv(dev
);
423 volatile struct ring_dest
*ptxd
;
425 ptxd
= aup
->tx_ring
[aup
->tx_tail
];
426 while (!(ptxd
->flags
& AU_OWN
) && (aup
->tx_tail
!= aup
->tx_head
)) {
427 update_tx_stats(dev
, ptxd
->flags
,
428 (ptxd
->count_1
<< 8) | ptxd
->count_0
);
432 aup
->tx_tail
= (aup
->tx_tail
+ 1) & (NUM_IR_DESC
- 1);
433 ptxd
= aup
->tx_ring
[aup
->tx_tail
];
437 netif_wake_queue(dev
);
441 if (aup
->tx_tail
== aup
->tx_head
) {
443 au1k_irda_set_speed(dev
, aup
->newspeed
);
446 irda_write(aup
, IR_CONFIG_1
,
447 irda_read(aup
, IR_CONFIG_1
) & ~IR_TX_ENABLE
);
448 irda_write(aup
, IR_CONFIG_1
,
449 irda_read(aup
, IR_CONFIG_1
) | IR_RX_ENABLE
);
450 irda_write(aup
, IR_RING_PROMPT
, 0);
455 static int au1k_irda_rx(struct net_device
*dev
)
457 struct au1k_private
*aup
= netdev_priv(dev
);
458 volatile struct ring_dest
*prxd
;
463 prxd
= aup
->rx_ring
[aup
->rx_head
];
466 while (!(flags
& AU_OWN
)) {
467 pDB
= aup
->rx_db_inuse
[aup
->rx_head
];
468 count
= (prxd
->count_1
<< 8) | prxd
->count_0
;
469 if (!(flags
& IR_RX_ERROR
)) {
471 update_rx_stats(dev
, flags
, count
);
472 skb
= alloc_skb(count
+ 1, GFP_ATOMIC
);
474 dev
->stats
.rx_dropped
++;
478 if (aup
->speed
== 4000000)
481 skb_put(skb
, count
- 2);
482 skb_copy_to_linear_data(skb
, (void *)pDB
->vaddr
,
485 skb_reset_mac_header(skb
);
486 skb
->protocol
= htons(ETH_P_IRDA
);
491 prxd
->flags
|= AU_OWN
;
492 aup
->rx_head
= (aup
->rx_head
+ 1) & (NUM_IR_DESC
- 1);
493 irda_write(aup
, IR_RING_PROMPT
, 0);
495 /* next descriptor */
496 prxd
= aup
->rx_ring
[aup
->rx_head
];
503 static irqreturn_t
au1k_irda_interrupt(int dummy
, void *dev_id
)
505 struct net_device
*dev
= dev_id
;
506 struct au1k_private
*aup
= netdev_priv(dev
);
508 irda_write(aup
, IR_INT_CLEAR
, 0); /* ack irda interrupts */
516 static int au1k_init(struct net_device
*dev
)
518 struct au1k_private
*aup
= netdev_priv(dev
);
519 u32 enable
, ring_address
;
522 enable
= IR_HC
| IR_CE
| IR_C
;
523 #ifndef CONFIG_CPU_LITTLE_ENDIAN
530 for (i
= 0; i
< NUM_IR_DESC
; i
++)
531 aup
->rx_ring
[i
]->flags
= AU_OWN
;
533 irda_write(aup
, IR_ENABLE
, enable
);
537 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_OFF
);
538 irda_write(aup
, IR_STATUS
, irda_read(aup
, IR_STATUS
) & ~IR_PHYEN
);
541 irda_write(aup
, IR_MAX_PKT_LEN
, MAX_BUF_SIZE
);
543 ring_address
= (u32
)virt_to_phys((void *)aup
->rx_ring
[0]);
544 irda_write(aup
, IR_RING_BASE_ADDR_H
, ring_address
>> 26);
545 irda_write(aup
, IR_RING_BASE_ADDR_L
, (ring_address
>> 10) & 0xffff);
547 irda_write(aup
, IR_RING_SIZE
,
548 (RING_SIZE_64
<< 8) | (RING_SIZE_64
<< 12));
550 irda_write(aup
, IR_CONFIG_2
, IR_PHYCLK_48MHZ
| IR_ONE_PIN
);
551 irda_write(aup
, IR_RING_ADDR_CMPR
, 0);
553 au1k_irda_set_speed(dev
, 9600);
557 static int au1k_irda_start(struct net_device
*dev
)
559 struct au1k_private
*aup
= netdev_priv(dev
);
563 retval
= au1k_init(dev
);
565 printk(KERN_ERR
"%s: error in au1k_init\n", dev
->name
);
569 retval
= request_irq(aup
->irq_tx
, &au1k_irda_interrupt
, 0,
572 printk(KERN_ERR
"%s: unable to get IRQ %d\n",
573 dev
->name
, dev
->irq
);
576 retval
= request_irq(aup
->irq_rx
, &au1k_irda_interrupt
, 0,
579 free_irq(aup
->irq_tx
, dev
);
580 printk(KERN_ERR
"%s: unable to get IRQ %d\n",
581 dev
->name
, dev
->irq
);
585 /* Give self a hardware name */
586 sprintf(hwname
, "Au1000 SIR/FIR");
587 aup
->irlap
= irlap_open(dev
, &aup
->qos
, hwname
);
588 netif_start_queue(dev
);
591 irda_write(aup
, IR_CONFIG_2
, irda_read(aup
, IR_CONFIG_2
) | IR_IEN
);
594 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_SIR
);
596 aup
->timer
.expires
= RUN_AT((3 * HZ
));
597 aup
->timer
.data
= (unsigned long)dev
;
601 static int au1k_irda_stop(struct net_device
*dev
)
603 struct au1k_private
*aup
= netdev_priv(dev
);
605 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_OFF
);
607 /* disable interrupts */
608 irda_write(aup
, IR_CONFIG_2
, irda_read(aup
, IR_CONFIG_2
) & ~IR_IEN
);
609 irda_write(aup
, IR_CONFIG_1
, 0);
610 irda_write(aup
, IR_ENABLE
, 0); /* disable clock */
613 irlap_close(aup
->irlap
);
617 netif_stop_queue(dev
);
618 del_timer(&aup
->timer
);
620 /* disable the interrupt */
621 free_irq(aup
->irq_tx
, dev
);
622 free_irq(aup
->irq_rx
, dev
);
628 * Au1000 transmit routine.
630 static int au1k_irda_hard_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
632 struct au1k_private
*aup
= netdev_priv(dev
);
633 int speed
= irda_get_next_speed(skb
);
634 volatile struct ring_dest
*ptxd
;
638 if (speed
!= aup
->speed
&& speed
!= -1)
639 aup
->newspeed
= speed
;
641 if ((skb
->len
== 0) && (aup
->newspeed
)) {
642 if (aup
->tx_tail
== aup
->tx_head
) {
643 au1k_irda_set_speed(dev
, speed
);
650 ptxd
= aup
->tx_ring
[aup
->tx_head
];
653 if (flags
& AU_OWN
) {
654 printk(KERN_DEBUG
"%s: tx_full\n", dev
->name
);
655 netif_stop_queue(dev
);
658 } else if (((aup
->tx_head
+ 1) & (NUM_IR_DESC
- 1)) == aup
->tx_tail
) {
659 printk(KERN_DEBUG
"%s: tx_full\n", dev
->name
);
660 netif_stop_queue(dev
);
665 pDB
= aup
->tx_db_inuse
[aup
->tx_head
];
668 if (irda_read(aup
, IR_RX_BYTE_CNT
) != 0) {
669 printk(KERN_DEBUG
"tx warning: rx byte cnt %x\n",
670 irda_read(aup
, IR_RX_BYTE_CNT
));
674 if (aup
->speed
== 4000000) {
676 skb_copy_from_linear_data(skb
, (void *)pDB
->vaddr
, skb
->len
);
677 ptxd
->count_0
= skb
->len
& 0xff;
678 ptxd
->count_1
= (skb
->len
>> 8) & 0xff;
681 len
= async_wrap_skb(skb
, (u8
*)pDB
->vaddr
, MAX_BUF_SIZE
);
682 ptxd
->count_0
= len
& 0xff;
683 ptxd
->count_1
= (len
>> 8) & 0xff;
684 ptxd
->flags
|= IR_DIS_CRC
;
686 ptxd
->flags
|= AU_OWN
;
689 irda_write(aup
, IR_CONFIG_1
,
690 irda_read(aup
, IR_CONFIG_1
) | IR_TX_ENABLE
);
691 irda_write(aup
, IR_RING_PROMPT
, 0);
694 aup
->tx_head
= (aup
->tx_head
+ 1) & (NUM_IR_DESC
- 1);
699 * The Tx ring has been full longer than the watchdog timeout
700 * value. The transmitter must be hung?
702 static void au1k_tx_timeout(struct net_device
*dev
)
705 struct au1k_private
*aup
= netdev_priv(dev
);
707 printk(KERN_ERR
"%s: tx timeout\n", dev
->name
);
710 au1k_irda_set_speed(dev
, speed
);
712 netif_wake_queue(dev
);
715 static int au1k_irda_ioctl(struct net_device
*dev
, struct ifreq
*ifreq
, int cmd
)
717 struct if_irda_req
*rq
= (struct if_irda_req
*)ifreq
;
718 struct au1k_private
*aup
= netdev_priv(dev
);
719 int ret
= -EOPNOTSUPP
;
723 if (capable(CAP_NET_ADMIN
)) {
725 * We are unable to set the speed if the
726 * device is not running.
729 ret
= au1k_irda_set_speed(dev
,
732 printk(KERN_ERR
"%s ioctl: !netif_running\n",
741 if (capable(CAP_NET_ADMIN
)) {
742 irda_device_set_media_busy(dev
, TRUE
);
748 rq
->ifr_receiving
= 0;
756 static const struct net_device_ops au1k_irda_netdev_ops
= {
757 .ndo_open
= au1k_irda_start
,
758 .ndo_stop
= au1k_irda_stop
,
759 .ndo_start_xmit
= au1k_irda_hard_xmit
,
760 .ndo_tx_timeout
= au1k_tx_timeout
,
761 .ndo_do_ioctl
= au1k_irda_ioctl
,
764 static int au1k_irda_net_init(struct net_device
*dev
)
766 struct au1k_private
*aup
= netdev_priv(dev
);
767 struct db_dest
*pDB
, *pDBfree
;
768 int i
, err
, retval
= 0;
771 err
= au1k_irda_init_iobuf(&aup
->rx_buff
, 14384);
775 dev
->netdev_ops
= &au1k_irda_netdev_ops
;
777 irda_init_max_qos_capabilies(&aup
->qos
);
779 /* The only value we must override it the baudrate */
780 aup
->qos
.baud_rate
.bits
= IR_9600
| IR_19200
| IR_38400
|
781 IR_57600
| IR_115200
| IR_576000
| (IR_4000000
<< 8);
783 aup
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
784 irda_qos_bits_to_value(&aup
->qos
);
788 /* Tx ring follows rx ring + 512 bytes */
789 /* we need a 1k aligned buffer */
790 aup
->rx_ring
[0] = (struct ring_dest
*)
791 dma_alloc(2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)),
793 if (!aup
->rx_ring
[0])
796 /* allocate the data buffers */
798 dma_alloc(MAX_BUF_SIZE
* 2 * NUM_IR_DESC
, &temp
);
799 if (!aup
->db
[0].vaddr
)
802 setup_hw_rings(aup
, (u32
)aup
->rx_ring
[0], (u32
)aup
->rx_ring
[0] + 512);
806 for (i
= 0; i
< (2 * NUM_IR_DESC
); i
++) {
807 pDB
->pnext
= pDBfree
;
810 (u32
*)((unsigned)aup
->db
[0].vaddr
+ (MAX_BUF_SIZE
* i
));
811 pDB
->dma_addr
= (dma_addr_t
)virt_to_bus(pDB
->vaddr
);
814 aup
->pDBfree
= pDBfree
;
816 /* attach a data buffer to each descriptor */
817 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
818 pDB
= GetFreeDB(aup
);
821 aup
->rx_ring
[i
]->addr_0
= (u8
)(pDB
->dma_addr
& 0xff);
822 aup
->rx_ring
[i
]->addr_1
= (u8
)((pDB
->dma_addr
>> 8) & 0xff);
823 aup
->rx_ring
[i
]->addr_2
= (u8
)((pDB
->dma_addr
>> 16) & 0xff);
824 aup
->rx_ring
[i
]->addr_3
= (u8
)((pDB
->dma_addr
>> 24) & 0xff);
825 aup
->rx_db_inuse
[i
] = pDB
;
827 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
828 pDB
= GetFreeDB(aup
);
831 aup
->tx_ring
[i
]->addr_0
= (u8
)(pDB
->dma_addr
& 0xff);
832 aup
->tx_ring
[i
]->addr_1
= (u8
)((pDB
->dma_addr
>> 8) & 0xff);
833 aup
->tx_ring
[i
]->addr_2
= (u8
)((pDB
->dma_addr
>> 16) & 0xff);
834 aup
->tx_ring
[i
]->addr_3
= (u8
)((pDB
->dma_addr
>> 24) & 0xff);
835 aup
->tx_ring
[i
]->count_0
= 0;
836 aup
->tx_ring
[i
]->count_1
= 0;
837 aup
->tx_ring
[i
]->flags
= 0;
838 aup
->tx_db_inuse
[i
] = pDB
;
844 dma_free((void *)aup
->rx_ring
[0],
845 2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)));
847 kfree(aup
->rx_buff
.head
);
849 printk(KERN_ERR
"au1k_irda_net_init() failed. Returns %d\n", retval
);
853 static int au1k_irda_probe(struct platform_device
*pdev
)
855 struct au1k_private
*aup
;
856 struct net_device
*dev
;
860 dev
= alloc_irdadev(sizeof(struct au1k_private
));
864 aup
= netdev_priv(dev
);
866 aup
->platdata
= pdev
->dev
.platform_data
;
869 r
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
873 aup
->irq_tx
= r
->start
;
875 r
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 1);
879 aup
->irq_rx
= r
->start
;
881 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
886 aup
->ioarea
= request_mem_region(r
->start
, resource_size(r
),
891 aup
->iobase
= ioremap_nocache(r
->start
, resource_size(r
));
895 dev
->irq
= aup
->irq_rx
;
897 err
= au1k_irda_net_init(dev
);
900 err
= register_netdev(dev
);
904 platform_set_drvdata(pdev
, dev
);
906 printk(KERN_INFO
"IrDA: Registered device %s\n", dev
->name
);
910 dma_free((void *)aup
->db
[0].vaddr
,
911 MAX_BUF_SIZE
* 2 * NUM_IR_DESC
);
912 dma_free((void *)aup
->rx_ring
[0],
913 2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)));
914 kfree(aup
->rx_buff
.head
);
916 iounmap(aup
->iobase
);
918 release_resource(aup
->ioarea
);
925 static int au1k_irda_remove(struct platform_device
*pdev
)
927 struct net_device
*dev
= platform_get_drvdata(pdev
);
928 struct au1k_private
*aup
= netdev_priv(dev
);
930 unregister_netdev(dev
);
932 dma_free((void *)aup
->db
[0].vaddr
,
933 MAX_BUF_SIZE
* 2 * NUM_IR_DESC
);
934 dma_free((void *)aup
->rx_ring
[0],
935 2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)));
936 kfree(aup
->rx_buff
.head
);
938 iounmap(aup
->iobase
);
939 release_resource(aup
->ioarea
);
947 static struct platform_driver au1k_irda_driver
= {
949 .name
= "au1000-irda",
950 .owner
= THIS_MODULE
,
952 .probe
= au1k_irda_probe
,
953 .remove
= au1k_irda_remove
,
956 module_platform_driver(au1k_irda_driver
);
958 MODULE_AUTHOR("Pete Popov <ppopov@mvista.com>");
959 MODULE_DESCRIPTION("Au1000 IrDA Device Driver");