3 * BRIEF MODULE DESCRIPTION
6 * Copyright 2001 MontaVista Software Inc.
7 * Author: MontaVista Software, Inc.
8 * ppopov@mvista.com or source@mvista.com
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
16 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
17 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
18 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
21 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
22 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 * You should have received a copy of the GNU General Public License along
27 * with this program; if not, write to the Free Software Foundation, Inc.,
28 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 #include <linux/time.h>
36 #include <linux/spinlock.h>
41 #define NUM_IR_DESC 64
42 #define RING_SIZE_4 0x0
43 #define RING_SIZE_16 0x3
44 #define RING_SIZE_64 0xF
45 #define MAX_NUM_IR_DESC 64
46 #define MAX_BUF_SIZE 2048
55 /* Ring descriptor flags */
56 #define AU_OWN (1<<7) /* tx,rx */
58 #define IR_DIS_CRC (1<<6) /* tx */
59 #define IR_BAD_CRC (1<<5) /* tx */
60 #define IR_NEED_PULSE (1<<4) /* tx */
61 #define IR_FORCE_UNDER (1<<3) /* tx */
62 #define IR_DISABLE_TX (1<<2) /* tx */
63 #define IR_HW_UNDER (1<<0) /* tx */
64 #define IR_TX_ERROR (IR_DIS_CRC|IR_BAD_CRC|IR_HW_UNDER)
66 #define IR_PHY_ERROR (1<<6) /* rx */
67 #define IR_CRC_ERROR (1<<5) /* rx */
68 #define IR_MAX_LEN (1<<4) /* rx */
69 #define IR_FIFO_OVER (1<<3) /* rx */
70 #define IR_SIR_ERROR (1<<2) /* rx */
71 #define IR_RX_ERROR (IR_PHY_ERROR|IR_CRC_ERROR| \
72 IR_MAX_LEN|IR_FIFO_OVER|IR_SIR_ERROR)
74 typedef struct db_dest
{
75 struct db_dest
*pnext
;
81 typedef struct ring_desc
{
83 u8 count_1
; /* 12:8 */
88 u8 addr_2
; /* 23:16 */
89 u8 addr_3
; /* 31:24 */
93 /* Private data for each instance */
97 db_dest_t db
[2*NUM_IR_DESC
];
98 volatile ring_dest_t
*rx_ring
[NUM_IR_DESC
];
99 volatile ring_dest_t
*tx_ring
[NUM_IR_DESC
];
100 db_dest_t
*rx_db_inuse
[NUM_IR_DESC
];
101 db_dest_t
*tx_db_inuse
[NUM_IR_DESC
];
109 struct net_device
*netdev
;
111 struct timeval stamp
;
114 struct irlap_cb
*irlap
;
120 u32 intr_work_done
; /* number of Rx and Tx pkts processed in the isr */
121 struct timer_list timer
;
123 spinlock_t lock
; /* For serializing operations */
125 #endif /* AU1000_IRCC_H */