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, see <http://www.gnu.org/licenses/>.
21 #include <linux/clk.h>
22 #include <linux/module.h>
23 #include <linux/netdevice.h>
24 #include <linux/interrupt.h>
25 #include <linux/platform_device.h>
26 #include <linux/slab.h>
27 #include <linux/time.h>
28 #include <linux/types.h>
29 #include <linux/ioport.h>
31 #include <net/irda/irda.h>
32 #include <net/irda/irmod.h>
33 #include <net/irda/wrapper.h>
34 #include <net/irda/irda_device.h>
35 #include <asm/mach-au1x00/au1000.h>
38 #define IR_RING_PTR_STATUS 0x00
39 #define IR_RING_BASE_ADDR_H 0x04
40 #define IR_RING_BASE_ADDR_L 0x08
41 #define IR_RING_SIZE 0x0C
42 #define IR_RING_PROMPT 0x10
43 #define IR_RING_ADDR_CMPR 0x14
44 #define IR_INT_CLEAR 0x18
45 #define IR_CONFIG_1 0x20
46 #define IR_SIR_FLAGS 0x24
47 #define IR_STATUS 0x28
48 #define IR_READ_PHY_CONFIG 0x2C
49 #define IR_WRITE_PHY_CONFIG 0x30
50 #define IR_MAX_PKT_LEN 0x34
51 #define IR_RX_BYTE_CNT 0x38
52 #define IR_CONFIG_2 0x3C
53 #define IR_ENABLE 0x40
56 #define IR_RX_INVERT_LED (1 << 0)
57 #define IR_TX_INVERT_LED (1 << 1)
58 #define IR_ST (1 << 2)
59 #define IR_SF (1 << 3)
60 #define IR_SIR (1 << 4)
61 #define IR_MIR (1 << 5)
62 #define IR_FIR (1 << 6)
63 #define IR_16CRC (1 << 7)
64 #define IR_TD (1 << 8)
65 #define IR_RX_ALL (1 << 9)
66 #define IR_DMA_ENABLE (1 << 10)
67 #define IR_RX_ENABLE (1 << 11)
68 #define IR_TX_ENABLE (1 << 12)
69 #define IR_LOOPBACK (1 << 14)
70 #define IR_SIR_MODE (IR_SIR | IR_DMA_ENABLE | \
71 IR_RX_ALL | IR_RX_ENABLE | IR_SF | \
75 #define IR_RX_STATUS (1 << 9)
76 #define IR_TX_STATUS (1 << 10)
77 #define IR_PHYEN (1 << 15)
79 /* ir_write_phy_config */
80 #define IR_BR(x) (((x) & 0x3f) << 10) /* baud rate */
81 #define IR_PW(x) (((x) & 0x1f) << 5) /* pulse width */
82 #define IR_P(x) ((x) & 0x1f) /* preamble bits */
85 #define IR_MODE_INV (1 << 0)
86 #define IR_ONE_PIN (1 << 1)
87 #define IR_PHYCLK_40MHZ (0 << 2)
88 #define IR_PHYCLK_48MHZ (1 << 2)
89 #define IR_PHYCLK_56MHZ (2 << 2)
90 #define IR_PHYCLK_64MHZ (3 << 2)
91 #define IR_DP (1 << 4)
92 #define IR_DA (1 << 5)
93 #define IR_FLT_HIGH (0 << 6)
94 #define IR_FLT_MEDHI (1 << 6)
95 #define IR_FLT_MEDLO (2 << 6)
96 #define IR_FLT_LO (3 << 6)
97 #define IR_IEN (1 << 8)
100 #define IR_HC (1 << 3) /* divide SBUS clock by 2 */
101 #define IR_CE (1 << 2) /* clock enable */
102 #define IR_C (1 << 1) /* coherency bit */
103 #define IR_BE (1 << 0) /* set in big endian mode */
105 #define NUM_IR_DESC 64
106 #define RING_SIZE_4 0x0
107 #define RING_SIZE_16 0x3
108 #define RING_SIZE_64 0xF
109 #define MAX_NUM_IR_DESC 64
110 #define MAX_BUF_SIZE 2048
112 /* Ring descriptor flags */
113 #define AU_OWN (1 << 7) /* tx,rx */
114 #define IR_DIS_CRC (1 << 6) /* tx */
115 #define IR_BAD_CRC (1 << 5) /* tx */
116 #define IR_NEED_PULSE (1 << 4) /* tx */
117 #define IR_FORCE_UNDER (1 << 3) /* tx */
118 #define IR_DISABLE_TX (1 << 2) /* tx */
119 #define IR_HW_UNDER (1 << 0) /* tx */
120 #define IR_TX_ERROR (IR_DIS_CRC | IR_BAD_CRC | IR_HW_UNDER)
122 #define IR_PHY_ERROR (1 << 6) /* rx */
123 #define IR_CRC_ERROR (1 << 5) /* rx */
124 #define IR_MAX_LEN (1 << 4) /* rx */
125 #define IR_FIFO_OVER (1 << 3) /* rx */
126 #define IR_SIR_ERROR (1 << 2) /* rx */
127 #define IR_RX_ERROR (IR_PHY_ERROR | IR_CRC_ERROR | \
128 IR_MAX_LEN | IR_FIFO_OVER | IR_SIR_ERROR)
131 struct db_dest
*pnext
;
137 u8 count_0
; /* 7:0 */
138 u8 count_1
; /* 12:8 */
142 u8 addr_1
; /* 15:8 */
143 u8 addr_2
; /* 23:16 */
144 u8 addr_3
; /* 31:24 */
147 /* Private data for each instance */
148 struct au1k_private
{
149 void __iomem
*iobase
;
152 struct db_dest
*pDBfree
;
153 struct db_dest db
[2 * NUM_IR_DESC
];
154 volatile struct ring_dest
*rx_ring
[NUM_IR_DESC
];
155 volatile struct ring_dest
*tx_ring
[NUM_IR_DESC
];
156 struct db_dest
*rx_db_inuse
[NUM_IR_DESC
];
157 struct db_dest
*tx_db_inuse
[NUM_IR_DESC
];
165 struct net_device
*netdev
;
166 struct timeval stamp
;
169 struct irlap_cb
*irlap
;
175 struct timer_list timer
;
177 struct resource
*ioarea
;
178 struct au1k_irda_platform_data
*platdata
;
179 struct clk
*irda_clk
;
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
, phyck
;
523 c
= clk_get(NULL
, "irda_clk");
526 i
= clk_prepare_enable(c
);
532 switch (clk_get_rate(c
)) {
534 phyck
= IR_PHYCLK_40MHZ
;
537 phyck
= IR_PHYCLK_48MHZ
;
540 phyck
= IR_PHYCLK_56MHZ
;
543 phyck
= IR_PHYCLK_64MHZ
;
546 clk_disable_unprepare(c
);
552 enable
= IR_HC
| IR_CE
| IR_C
;
553 #ifndef CONFIG_CPU_LITTLE_ENDIAN
560 for (i
= 0; i
< NUM_IR_DESC
; i
++)
561 aup
->rx_ring
[i
]->flags
= AU_OWN
;
563 irda_write(aup
, IR_ENABLE
, enable
);
567 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_OFF
);
568 irda_write(aup
, IR_STATUS
, irda_read(aup
, IR_STATUS
) & ~IR_PHYEN
);
571 irda_write(aup
, IR_MAX_PKT_LEN
, MAX_BUF_SIZE
);
573 ring_address
= (u32
)virt_to_phys((void *)aup
->rx_ring
[0]);
574 irda_write(aup
, IR_RING_BASE_ADDR_H
, ring_address
>> 26);
575 irda_write(aup
, IR_RING_BASE_ADDR_L
, (ring_address
>> 10) & 0xffff);
577 irda_write(aup
, IR_RING_SIZE
,
578 (RING_SIZE_64
<< 8) | (RING_SIZE_64
<< 12));
580 irda_write(aup
, IR_CONFIG_2
, phyck
| IR_ONE_PIN
);
581 irda_write(aup
, IR_RING_ADDR_CMPR
, 0);
583 au1k_irda_set_speed(dev
, 9600);
587 static int au1k_irda_start(struct net_device
*dev
)
589 struct au1k_private
*aup
= netdev_priv(dev
);
593 retval
= au1k_init(dev
);
595 printk(KERN_ERR
"%s: error in au1k_init\n", dev
->name
);
599 retval
= request_irq(aup
->irq_tx
, &au1k_irda_interrupt
, 0,
602 printk(KERN_ERR
"%s: unable to get IRQ %d\n",
603 dev
->name
, dev
->irq
);
606 retval
= request_irq(aup
->irq_rx
, &au1k_irda_interrupt
, 0,
609 free_irq(aup
->irq_tx
, dev
);
610 printk(KERN_ERR
"%s: unable to get IRQ %d\n",
611 dev
->name
, dev
->irq
);
615 /* Give self a hardware name */
616 sprintf(hwname
, "Au1000 SIR/FIR");
617 aup
->irlap
= irlap_open(dev
, &aup
->qos
, hwname
);
618 netif_start_queue(dev
);
621 irda_write(aup
, IR_CONFIG_2
, irda_read(aup
, IR_CONFIG_2
) | IR_IEN
);
624 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_SIR
);
626 aup
->timer
.expires
= RUN_AT((3 * HZ
));
627 aup
->timer
.data
= (unsigned long)dev
;
631 static int au1k_irda_stop(struct net_device
*dev
)
633 struct au1k_private
*aup
= netdev_priv(dev
);
635 au1k_irda_plat_set_phy_mode(aup
, AU1000_IRDA_PHY_MODE_OFF
);
637 /* disable interrupts */
638 irda_write(aup
, IR_CONFIG_2
, irda_read(aup
, IR_CONFIG_2
) & ~IR_IEN
);
639 irda_write(aup
, IR_CONFIG_1
, 0);
640 irda_write(aup
, IR_ENABLE
, 0); /* disable clock */
643 irlap_close(aup
->irlap
);
647 netif_stop_queue(dev
);
648 del_timer(&aup
->timer
);
650 /* disable the interrupt */
651 free_irq(aup
->irq_tx
, dev
);
652 free_irq(aup
->irq_rx
, dev
);
654 clk_disable_unprepare(aup
->irda_clk
);
655 clk_put(aup
->irda_clk
);
661 * Au1000 transmit routine.
663 static int au1k_irda_hard_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
665 struct au1k_private
*aup
= netdev_priv(dev
);
666 int speed
= irda_get_next_speed(skb
);
667 volatile struct ring_dest
*ptxd
;
671 if (speed
!= aup
->speed
&& speed
!= -1)
672 aup
->newspeed
= speed
;
674 if ((skb
->len
== 0) && (aup
->newspeed
)) {
675 if (aup
->tx_tail
== aup
->tx_head
) {
676 au1k_irda_set_speed(dev
, speed
);
683 ptxd
= aup
->tx_ring
[aup
->tx_head
];
686 if (flags
& AU_OWN
) {
687 printk(KERN_DEBUG
"%s: tx_full\n", dev
->name
);
688 netif_stop_queue(dev
);
691 } else if (((aup
->tx_head
+ 1) & (NUM_IR_DESC
- 1)) == aup
->tx_tail
) {
692 printk(KERN_DEBUG
"%s: tx_full\n", dev
->name
);
693 netif_stop_queue(dev
);
698 pDB
= aup
->tx_db_inuse
[aup
->tx_head
];
701 if (irda_read(aup
, IR_RX_BYTE_CNT
) != 0) {
702 printk(KERN_DEBUG
"tx warning: rx byte cnt %x\n",
703 irda_read(aup
, IR_RX_BYTE_CNT
));
707 if (aup
->speed
== 4000000) {
709 skb_copy_from_linear_data(skb
, (void *)pDB
->vaddr
, skb
->len
);
710 ptxd
->count_0
= skb
->len
& 0xff;
711 ptxd
->count_1
= (skb
->len
>> 8) & 0xff;
714 len
= async_wrap_skb(skb
, (u8
*)pDB
->vaddr
, MAX_BUF_SIZE
);
715 ptxd
->count_0
= len
& 0xff;
716 ptxd
->count_1
= (len
>> 8) & 0xff;
717 ptxd
->flags
|= IR_DIS_CRC
;
719 ptxd
->flags
|= AU_OWN
;
722 irda_write(aup
, IR_CONFIG_1
,
723 irda_read(aup
, IR_CONFIG_1
) | IR_TX_ENABLE
);
724 irda_write(aup
, IR_RING_PROMPT
, 0);
727 aup
->tx_head
= (aup
->tx_head
+ 1) & (NUM_IR_DESC
- 1);
732 * The Tx ring has been full longer than the watchdog timeout
733 * value. The transmitter must be hung?
735 static void au1k_tx_timeout(struct net_device
*dev
)
738 struct au1k_private
*aup
= netdev_priv(dev
);
740 printk(KERN_ERR
"%s: tx timeout\n", dev
->name
);
743 au1k_irda_set_speed(dev
, speed
);
745 netif_wake_queue(dev
);
748 static int au1k_irda_ioctl(struct net_device
*dev
, struct ifreq
*ifreq
, int cmd
)
750 struct if_irda_req
*rq
= (struct if_irda_req
*)ifreq
;
751 struct au1k_private
*aup
= netdev_priv(dev
);
752 int ret
= -EOPNOTSUPP
;
756 if (capable(CAP_NET_ADMIN
)) {
758 * We are unable to set the speed if the
759 * device is not running.
762 ret
= au1k_irda_set_speed(dev
,
765 printk(KERN_ERR
"%s ioctl: !netif_running\n",
774 if (capable(CAP_NET_ADMIN
)) {
775 irda_device_set_media_busy(dev
, TRUE
);
781 rq
->ifr_receiving
= 0;
789 static const struct net_device_ops au1k_irda_netdev_ops
= {
790 .ndo_open
= au1k_irda_start
,
791 .ndo_stop
= au1k_irda_stop
,
792 .ndo_start_xmit
= au1k_irda_hard_xmit
,
793 .ndo_tx_timeout
= au1k_tx_timeout
,
794 .ndo_do_ioctl
= au1k_irda_ioctl
,
797 static int au1k_irda_net_init(struct net_device
*dev
)
799 struct au1k_private
*aup
= netdev_priv(dev
);
800 struct db_dest
*pDB
, *pDBfree
;
801 int i
, err
, retval
= 0;
804 err
= au1k_irda_init_iobuf(&aup
->rx_buff
, 14384);
808 dev
->netdev_ops
= &au1k_irda_netdev_ops
;
810 irda_init_max_qos_capabilies(&aup
->qos
);
812 /* The only value we must override it the baudrate */
813 aup
->qos
.baud_rate
.bits
= IR_9600
| IR_19200
| IR_38400
|
814 IR_57600
| IR_115200
| IR_576000
| (IR_4000000
<< 8);
816 aup
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
817 irda_qos_bits_to_value(&aup
->qos
);
821 /* Tx ring follows rx ring + 512 bytes */
822 /* we need a 1k aligned buffer */
823 aup
->rx_ring
[0] = (struct ring_dest
*)
824 dma_alloc(2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)),
826 if (!aup
->rx_ring
[0])
829 /* allocate the data buffers */
831 dma_alloc(MAX_BUF_SIZE
* 2 * NUM_IR_DESC
, &temp
);
832 if (!aup
->db
[0].vaddr
)
835 setup_hw_rings(aup
, (u32
)aup
->rx_ring
[0], (u32
)aup
->rx_ring
[0] + 512);
839 for (i
= 0; i
< (2 * NUM_IR_DESC
); i
++) {
840 pDB
->pnext
= pDBfree
;
843 (u32
*)((unsigned)aup
->db
[0].vaddr
+ (MAX_BUF_SIZE
* i
));
844 pDB
->dma_addr
= (dma_addr_t
)virt_to_bus(pDB
->vaddr
);
847 aup
->pDBfree
= pDBfree
;
849 /* attach a data buffer to each descriptor */
850 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
851 pDB
= GetFreeDB(aup
);
854 aup
->rx_ring
[i
]->addr_0
= (u8
)(pDB
->dma_addr
& 0xff);
855 aup
->rx_ring
[i
]->addr_1
= (u8
)((pDB
->dma_addr
>> 8) & 0xff);
856 aup
->rx_ring
[i
]->addr_2
= (u8
)((pDB
->dma_addr
>> 16) & 0xff);
857 aup
->rx_ring
[i
]->addr_3
= (u8
)((pDB
->dma_addr
>> 24) & 0xff);
858 aup
->rx_db_inuse
[i
] = pDB
;
860 for (i
= 0; i
< NUM_IR_DESC
; i
++) {
861 pDB
= GetFreeDB(aup
);
864 aup
->tx_ring
[i
]->addr_0
= (u8
)(pDB
->dma_addr
& 0xff);
865 aup
->tx_ring
[i
]->addr_1
= (u8
)((pDB
->dma_addr
>> 8) & 0xff);
866 aup
->tx_ring
[i
]->addr_2
= (u8
)((pDB
->dma_addr
>> 16) & 0xff);
867 aup
->tx_ring
[i
]->addr_3
= (u8
)((pDB
->dma_addr
>> 24) & 0xff);
868 aup
->tx_ring
[i
]->count_0
= 0;
869 aup
->tx_ring
[i
]->count_1
= 0;
870 aup
->tx_ring
[i
]->flags
= 0;
871 aup
->tx_db_inuse
[i
] = pDB
;
877 dma_free((void *)aup
->rx_ring
[0],
878 2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)));
880 kfree(aup
->rx_buff
.head
);
882 printk(KERN_ERR
"au1k_irda_net_init() failed. Returns %d\n", retval
);
886 static int au1k_irda_probe(struct platform_device
*pdev
)
888 struct au1k_private
*aup
;
889 struct net_device
*dev
;
894 dev
= alloc_irdadev(sizeof(struct au1k_private
));
898 aup
= netdev_priv(dev
);
900 aup
->platdata
= pdev
->dev
.platform_data
;
903 r
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
907 aup
->irq_tx
= r
->start
;
909 r
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 1);
913 aup
->irq_rx
= r
->start
;
915 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
920 aup
->ioarea
= request_mem_region(r
->start
, resource_size(r
),
925 /* bail out early if clock doesn't exist */
926 c
= clk_get(NULL
, "irda_clk");
933 aup
->iobase
= ioremap_nocache(r
->start
, resource_size(r
));
937 dev
->irq
= aup
->irq_rx
;
939 err
= au1k_irda_net_init(dev
);
942 err
= register_netdev(dev
);
946 platform_set_drvdata(pdev
, dev
);
948 printk(KERN_INFO
"IrDA: Registered device %s\n", dev
->name
);
952 dma_free((void *)aup
->db
[0].vaddr
,
953 MAX_BUF_SIZE
* 2 * NUM_IR_DESC
);
954 dma_free((void *)aup
->rx_ring
[0],
955 2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)));
956 kfree(aup
->rx_buff
.head
);
958 iounmap(aup
->iobase
);
960 release_resource(aup
->ioarea
);
967 static int au1k_irda_remove(struct platform_device
*pdev
)
969 struct net_device
*dev
= platform_get_drvdata(pdev
);
970 struct au1k_private
*aup
= netdev_priv(dev
);
972 unregister_netdev(dev
);
974 dma_free((void *)aup
->db
[0].vaddr
,
975 MAX_BUF_SIZE
* 2 * NUM_IR_DESC
);
976 dma_free((void *)aup
->rx_ring
[0],
977 2 * MAX_NUM_IR_DESC
* (sizeof(struct ring_dest
)));
978 kfree(aup
->rx_buff
.head
);
980 iounmap(aup
->iobase
);
981 release_resource(aup
->ioarea
);
989 static struct platform_driver au1k_irda_driver
= {
991 .name
= "au1000-irda",
992 .owner
= THIS_MODULE
,
994 .probe
= au1k_irda_probe
,
995 .remove
= au1k_irda_remove
,
998 module_platform_driver(au1k_irda_driver
);
1000 MODULE_AUTHOR("Pete Popov <ppopov@mvista.com>");
1001 MODULE_DESCRIPTION("Au1000 IrDA Device Driver");