ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / net / ibmveth.h
1 /**************************************************************************/
2 /*                                                                        */
3 /* IBM eServer i/[Series Virtual Ethernet Device Driver                   */
4 /* Copyright (C) 2003 IBM Corp.                                           */
5 /*  Dave Larson (larson1@us.ibm.com)                                      */
6 /*  Santiago Leon (santil@us.ibm.com)                                     */
7 /*                                                                        */
8 /*  This program is free software; you can redistribute it and/or modify  */
9 /*  it under the terms of the GNU General Public License as published by  */
10 /*  the Free Software Foundation; either version 2 of the License, or     */
11 /*  (at your option) any later version.                                   */
12 /*                                                                        */
13 /*  This program is distributed in the hope that it will be useful,       */
14 /*  but WITHOUT ANY WARRANTY; without even the implied warranty of        */
15 /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         */
16 /*  GNU General Public License for more details.                          */
17 /*                                                                        */
18 /*  You should have received a copy of the GNU General Public License     */
19 /*  along with this program; if not, write to the Free Software           */
20 /*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  */
21 /*                                                                   USA  */
22 /*                                                                        */
23 /**************************************************************************/
24
25 #ifndef _IBMVETH_H
26 #define _IBMVETH_H
27
28 #define IbmVethMaxSendFrags 6
29
30 /* constants for H_MULTICAST_CTRL */
31 #define IbmVethMcastReceptionModifyBit     0x80000UL
32 #define IbmVethMcastReceptionEnableBit     0x20000UL
33 #define IbmVethMcastFilterModifyBit        0x40000UL
34 #define IbmVethMcastFilterEnableBit        0x10000UL
35
36 #define IbmVethMcastEnableRecv       (IbmVethMcastReceptionModifyBit | IbmVethMcastReceptionEnableBit)
37 #define IbmVethMcastDisableRecv      (IbmVethMcastReceptionModifyBit)
38 #define IbmVethMcastEnableFiltering  (IbmVethMcastFilterModifyBit | IbmVethMcastFilterEnableBit)
39 #define IbmVethMcastDisableFiltering (IbmVethMcastFilterModifyBit)
40 #define IbmVethMcastAddFilter        0x1UL
41 #define IbmVethMcastRemoveFilter     0x2UL
42 #define IbmVethMcastClearFilterTable 0x3UL
43
44 /* hcall numbers */
45 #define H_VIO_SIGNAL             0x104
46 #define H_REGISTER_LOGICAL_LAN   0x114
47 #define H_FREE_LOGICAL_LAN       0x118
48 #define H_ADD_LOGICAL_LAN_BUFFER 0x11C
49 #define H_SEND_LOGICAL_LAN       0x120
50 #define H_MULTICAST_CTRL         0x130
51 #define H_CHANGE_LOGICAL_LAN_MAC 0x14C
52
53 /* hcall macros */
54 #define h_register_logical_lan(ua, buflst, rxq, fltlst, mac) \
55   plpar_hcall_norets(H_REGISTER_LOGICAL_LAN, ua, buflst, rxq, fltlst, mac)
56
57 #define h_free_logical_lan(ua) \
58   plpar_hcall_norets(H_FREE_LOGICAL_LAN, ua)
59
60 #define h_add_logical_lan_buffer(ua, buf) \
61   plpar_hcall_norets(H_ADD_LOGICAL_LAN_BUFFER, ua, buf)
62
63 #define h_send_logical_lan(ua, buf1, buf2, buf3, buf4, buf5, buf6, correlator) \
64   plpar_hcall_8arg_2ret(H_SEND_LOGICAL_LAN, ua, buf1, buf2, buf3, buf4, buf5, buf6, correlator, &correlator)
65
66 #define h_multicast_ctrl(ua, cmd, mac) \
67   plpar_hcall_norets(H_MULTICAST_CTRL, ua, cmd, mac)
68
69 #define h_change_logical_lan_mac(ua, mac) \
70   plpar_hcall_norets(H_CHANGE_LOGICAL_LAN_MAC, ua, mac)
71
72 #define IbmVethNumBufferPools 3
73 #define IbmVethPool0DftSize (1024 * 2)
74 #define IbmVethPool1DftSize (1024 * 4)
75 #define IbmVethPool2DftSize (1024 * 10)
76 #define IbmVethPool0DftCnt  256
77 #define IbmVethPool1DftCnt  256
78 #define IbmVethPool2DftCnt  256
79
80 struct ibmveth_buff_pool {
81     u32 size;
82     u32 index;
83     u32 buff_size;
84     u32 threshold;
85     atomic_t available;
86     u32 consumer_index;
87     u32 producer_index;
88     u16 *free_map;
89     dma_addr_t *dma_addr;
90     struct sk_buff **skbuff;
91 };
92
93 struct ibmveth_rx_q {
94     u64        index;
95     u64        num_slots;
96     u64        toggle;
97     dma_addr_t queue_dma;
98     u32        queue_len;
99     struct ibmveth_rx_q_entry *queue_addr;
100 };
101
102 struct ibmveth_adapter {
103     struct vio_dev *vdev;
104     struct net_device *netdev;
105     struct net_device_stats stats;
106     unsigned int mcastFilterSize;
107     unsigned long mac_addr;
108     unsigned long liobn;
109     void * buffer_list_addr;
110     void * filter_list_addr;
111     dma_addr_t buffer_list_dma;
112     dma_addr_t filter_list_dma;
113     struct ibmveth_buff_pool rx_buff_pool[IbmVethNumBufferPools];
114     struct ibmveth_rx_q rx_queue;
115     atomic_t not_replenishing;
116
117     /* helper tasks */
118     struct work_struct replenish_task;
119
120     /* adapter specific stats */
121     u64 replenish_task_cycles;
122     u64 replenish_no_mem;
123     u64 replenish_add_buff_failure;
124     u64 replenish_add_buff_success;
125     u64 rx_invalid_buffer;
126     u64 rx_no_buffer;
127     u64 tx_multidesc_send;
128     u64 tx_linearized;
129     u64 tx_linearize_failed;
130     u64 tx_map_failed;
131     u64 tx_send_failed;
132 };
133
134 struct ibmveth_buf_desc_fields {        
135     u32 valid : 1;
136     u32 toggle : 1;
137     u32 reserved : 6;
138     u32 length : 24;
139     u32 address;
140 };
141
142 union ibmveth_buf_desc {
143     u64 desc;   
144     struct ibmveth_buf_desc_fields fields;
145 };
146
147 struct ibmveth_rx_q_entry {
148     u16 toggle : 1;
149     u16 valid : 1;
150     u16 reserved : 14;
151     u16 offset;
152     u32 length;
153     u64 correlator;
154 };
155
156 #endif /* _IBMVETH_H */