Merge to Fedora kernel-2.6.17-1.2187_FC5 patched with stable patch-2.6.17.13-vs2...
[linux-2.6.git] / drivers / xen / netback / common.h
1 /******************************************************************************
2  * arch/xen/drivers/netif/backend/common.h
3  * 
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License version 2
6  * as published by the Free Software Foundation; or, when distributed
7  * separately from the Linux kernel or incorporated into other
8  * software packages, subject to the following license:
9  * 
10  * Permission is hereby granted, free of charge, to any person obtaining a copy
11  * of this source file (the "Software"), to deal in the Software without
12  * restriction, including without limitation the rights to use, copy, modify,
13  * merge, publish, distribute, sublicense, and/or sell copies of the Software,
14  * and to permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be included in
18  * all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26  * IN THE SOFTWARE.
27  */
28
29 #ifndef __NETIF__BACKEND__COMMON_H__
30 #define __NETIF__BACKEND__COMMON_H__
31
32 #include <linux/config.h>
33 #include <linux/version.h>
34 #include <linux/module.h>
35 #include <linux/interrupt.h>
36 #include <linux/slab.h>
37 #include <linux/ip.h>
38 #include <linux/in.h>
39 #include <linux/netdevice.h>
40 #include <linux/etherdevice.h>
41 #include <linux/wait.h>
42 #include <xen/evtchn.h>
43 #include <xen/interface/io/netif.h>
44 #include <asm/io.h>
45 #include <asm/pgalloc.h>
46 #include <xen/interface/grant_table.h>
47 #include <xen/gnttab.h>
48 #include <xen/driver_util.h>
49
50 #define DPRINTK(_f, _a...)                      \
51         pr_debug("(file=%s, line=%d) " _f,      \
52                  __FILE__ , __LINE__ , ## _a )
53 #define IPRINTK(fmt, args...)                           \
54         printk(KERN_INFO "xen_net: " fmt, ##args)
55 #define WPRINTK(fmt, args...)                           \
56         printk(KERN_WARNING "xen_net: " fmt, ##args)
57
58 typedef struct netif_st {
59         /* Unique identifier for this interface. */
60         domid_t          domid;
61         unsigned int     handle;
62
63         u8               fe_dev_addr[6];
64
65         /* Physical parameters of the comms window. */
66         grant_handle_t   tx_shmem_handle;
67         grant_ref_t      tx_shmem_ref; 
68         grant_handle_t   rx_shmem_handle;
69         grant_ref_t      rx_shmem_ref; 
70         unsigned int     evtchn;
71         unsigned int     irq;
72
73         /* The shared rings and indexes. */
74         netif_tx_back_ring_t tx;
75         netif_rx_back_ring_t rx;
76         struct vm_struct *tx_comms_area;
77         struct vm_struct *rx_comms_area;
78
79         /* Set of features that can be turned on in dev->features. */
80         int features;
81         int can_queue;
82
83         /* Allow netif_be_start_xmit() to peek ahead in the rx request ring. */
84         RING_IDX rx_req_cons_peek;
85
86         /* Transmit shaping: allow 'credit_bytes' every 'credit_usec'. */
87         unsigned long   credit_bytes;
88         unsigned long   credit_usec;
89         unsigned long   remaining_credit;
90         struct timer_list credit_timeout;
91
92         /* Miscellaneous private stuff. */
93         struct list_head list;  /* scheduling list */
94         atomic_t         refcnt;
95         struct net_device *dev;
96         struct net_device_stats stats;
97
98         wait_queue_head_t waiting_to_free;
99 } netif_t;
100
101 #define NET_TX_RING_SIZE __RING_SIZE((netif_tx_sring_t *)0, PAGE_SIZE)
102 #define NET_RX_RING_SIZE __RING_SIZE((netif_rx_sring_t *)0, PAGE_SIZE)
103
104 void netif_disconnect(netif_t *netif);
105
106 netif_t *netif_alloc(domid_t domid, unsigned int handle, u8 be_mac[ETH_ALEN]);
107 int netif_map(netif_t *netif, unsigned long tx_ring_ref,
108               unsigned long rx_ring_ref, unsigned int evtchn);
109
110 #define netif_get(_b) (atomic_inc(&(_b)->refcnt))
111 #define netif_put(_b)                                           \
112         do {                                                    \
113                 if ( atomic_dec_and_test(&(_b)->refcnt) )       \
114                         wake_up(&(_b)->waiting_to_free);        \
115         } while (0)
116
117 void netif_xenbus_init(void);
118
119 void netif_schedule_work(netif_t *netif);
120 void netif_deschedule_work(netif_t *netif);
121
122 int netif_be_start_xmit(struct sk_buff *skb, struct net_device *dev);
123 struct net_device_stats *netif_be_get_stats(struct net_device *dev);
124 irqreturn_t netif_be_int(int irq, void *dev_id, struct pt_regs *regs);
125
126 static inline int netbk_can_queue(struct net_device *dev)
127 {
128         netif_t *netif = netdev_priv(dev);
129         return netif->can_queue;
130 }
131
132 static inline int netbk_can_sg(struct net_device *dev)
133 {
134         netif_t *netif = netdev_priv(dev);
135         return netif->features & NETIF_F_SG;
136 }
137
138 #endif /* __NETIF__BACKEND__COMMON_H__ */