]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/enic/enic_res.c
enic: Remove dead code
[net-next-2.6.git] / drivers / net / enic / enic_res.c
CommitLineData
01f2e4ea 1/*
29046f9b 2 * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
01f2e4ea
SF
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
4 *
5 * This program is free software; you may redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
16 * SOFTWARE.
17 *
18 */
19
20#include <linux/kernel.h>
21#include <linux/errno.h>
22#include <linux/types.h>
23#include <linux/pci.h>
24#include <linux/netdevice.h>
25
26#include "wq_enet_desc.h"
27#include "rq_enet_desc.h"
28#include "cq_enet_desc.h"
29#include "vnic_resource.h"
30#include "vnic_enet.h"
31#include "vnic_dev.h"
32#include "vnic_wq.h"
33#include "vnic_rq.h"
34#include "vnic_cq.h"
35#include "vnic_intr.h"
36#include "vnic_stats.h"
37#include "vnic_nic.h"
01f2e4ea
SF
38#include "enic_res.h"
39#include "enic.h"
40
41int enic_get_vnic_config(struct enic *enic)
42{
43 struct vnic_enet_config *c = &enic->config;
44 int err;
45
46 err = vnic_dev_mac_addr(enic->vdev, enic->mac_addr);
47 if (err) {
a7a79deb
VK
48 dev_err(enic_get_dev(enic),
49 "Error getting MAC addr, %d\n", err);
01f2e4ea
SF
50 return err;
51 }
52
53#define GET_CONFIG(m) \
54 do { \
55 err = vnic_dev_spec(enic->vdev, \
56 offsetof(struct vnic_enet_config, m), \
57 sizeof(c->m), &c->m); \
58 if (err) { \
a7a79deb 59 dev_err(enic_get_dev(enic), \
01f2e4ea
SF
60 "Error getting %s, %d\n", #m, err); \
61 return err; \
62 } \
63 } while (0)
64
65 GET_CONFIG(flags);
66 GET_CONFIG(wq_desc_count);
67 GET_CONFIG(rq_desc_count);
68 GET_CONFIG(mtu);
01f2e4ea
SF
69 GET_CONFIG(intr_timer_type);
70 GET_CONFIG(intr_mode);
7c844599 71 GET_CONFIG(intr_timer_usec);
1825aca6 72 GET_CONFIG(loop_tag);
01f2e4ea
SF
73
74 c->wq_desc_count =
75 min_t(u32, ENIC_MAX_WQ_DESCS,
76 max_t(u32, ENIC_MIN_WQ_DESCS,
77 c->wq_desc_count));
bd249622 78 c->wq_desc_count &= 0xffffffe0; /* must be aligned to groups of 32 */
01f2e4ea
SF
79
80 c->rq_desc_count =
81 min_t(u32, ENIC_MAX_RQ_DESCS,
82 max_t(u32, ENIC_MIN_RQ_DESCS,
83 c->rq_desc_count));
bd249622 84 c->rq_desc_count &= 0xffffffe0; /* must be aligned to groups of 32 */
01f2e4ea
SF
85
86 if (c->mtu == 0)
87 c->mtu = 1500;
88 c->mtu = min_t(u16, ENIC_MAX_MTU,
89 max_t(u16, ENIC_MIN_MTU,
90 c->mtu));
91
7c844599
SF
92 c->intr_timer_usec = min_t(u32,
93 INTR_COALESCE_HW_TO_USEC(VNIC_INTR_TIMER_MAX),
94 c->intr_timer_usec);
01f2e4ea 95
a7a79deb 96 dev_info(enic_get_dev(enic), "vNIC MAC addr %pM wq/rq %d/%d\n",
7c510e4b 97 enic->mac_addr, c->wq_desc_count, c->rq_desc_count);
a7a79deb
VK
98 dev_info(enic_get_dev(enic), "vNIC mtu %d csum tx/rx %d/%d "
99 "tso/lro %d/%d intr timer %d usec\n",
01f2e4ea
SF
100 c->mtu, ENIC_SETTING(enic, TXCSUM),
101 ENIC_SETTING(enic, RXCSUM), ENIC_SETTING(enic, TSO),
7c844599 102 ENIC_SETTING(enic, LRO), c->intr_timer_usec);
01f2e4ea
SF
103
104 return 0;
105}
106
383ab92f 107int enic_add_vlan(struct enic *enic, u16 vlanid)
01f2e4ea
SF
108{
109 u64 a0 = vlanid, a1 = 0;
110 int wait = 1000;
111 int err;
112
113 err = vnic_dev_cmd(enic->vdev, CMD_VLAN_ADD, &a0, &a1, wait);
114 if (err)
a7a79deb 115 dev_err(enic_get_dev(enic), "Can't add vlan id, %d\n", err);
383ab92f
VK
116
117 return err;
01f2e4ea
SF
118}
119
383ab92f 120int enic_del_vlan(struct enic *enic, u16 vlanid)
01f2e4ea
SF
121{
122 u64 a0 = vlanid, a1 = 0;
123 int wait = 1000;
124 int err;
125
126 err = vnic_dev_cmd(enic->vdev, CMD_VLAN_DEL, &a0, &a1, wait);
127 if (err)
a7a79deb 128 dev_err(enic_get_dev(enic), "Can't delete vlan id, %d\n", err);
383ab92f
VK
129
130 return err;
01f2e4ea
SF
131}
132
133int enic_set_nic_cfg(struct enic *enic, u8 rss_default_cpu, u8 rss_hash_type,
134 u8 rss_hash_bits, u8 rss_base_cpu, u8 rss_enable, u8 tso_ipid_split_en,
135 u8 ig_vlan_strip_en)
136{
137 u64 a0, a1;
138 u32 nic_cfg;
139 int wait = 1000;
140
141 vnic_set_nic_cfg(&nic_cfg, rss_default_cpu,
142 rss_hash_type, rss_hash_bits, rss_base_cpu,
143 rss_enable, tso_ipid_split_en, ig_vlan_strip_en);
144
145 a0 = nic_cfg;
146 a1 = 0;
147
148 return vnic_dev_cmd(enic->vdev, CMD_NIC_CFG, &a0, &a1, wait);
149}
150
151void enic_free_vnic_resources(struct enic *enic)
152{
153 unsigned int i;
154
155 for (i = 0; i < enic->wq_count; i++)
156 vnic_wq_free(&enic->wq[i]);
157 for (i = 0; i < enic->rq_count; i++)
158 vnic_rq_free(&enic->rq[i]);
159 for (i = 0; i < enic->cq_count; i++)
160 vnic_cq_free(&enic->cq[i]);
161 for (i = 0; i < enic->intr_count; i++)
162 vnic_intr_free(&enic->intr[i]);
163}
164
165void enic_get_res_counts(struct enic *enic)
166{
6ba9cdc0
SF
167 enic->wq_count = min_t(int,
168 vnic_dev_get_res_count(enic->vdev, RES_TYPE_WQ),
169 ENIC_WQ_MAX);
170 enic->rq_count = min_t(int,
171 vnic_dev_get_res_count(enic->vdev, RES_TYPE_RQ),
172 ENIC_RQ_MAX);
173 enic->cq_count = min_t(int,
174 vnic_dev_get_res_count(enic->vdev, RES_TYPE_CQ),
175 ENIC_CQ_MAX);
176 enic->intr_count = min_t(int,
177 vnic_dev_get_res_count(enic->vdev, RES_TYPE_INTR_CTRL),
178 ENIC_INTR_MAX);
01f2e4ea 179
a7a79deb
VK
180 dev_info(enic_get_dev(enic),
181 "vNIC resources avail: wq %d rq %d cq %d intr %d\n",
01f2e4ea
SF
182 enic->wq_count, enic->rq_count,
183 enic->cq_count, enic->intr_count);
184}
185
186void enic_init_vnic_resources(struct enic *enic)
187{
188 enum vnic_dev_intr_mode intr_mode;
189 unsigned int mask_on_assertion;
190 unsigned int interrupt_offset;
191 unsigned int error_interrupt_enable;
192 unsigned int error_interrupt_offset;
193 unsigned int cq_index;
194 unsigned int i;
195
196 intr_mode = vnic_dev_get_intr_mode(enic->vdev);
197
198 /* Init RQ/WQ resources.
199 *
200 * RQ[0 - n-1] point to CQ[0 - n-1]
201 * WQ[0 - m-1] point to CQ[n - n+m-1]
202 *
203 * Error interrupt is not enabled for MSI.
204 */
205
206 switch (intr_mode) {
207 case VNIC_DEV_INTR_MODE_INTX:
208 case VNIC_DEV_INTR_MODE_MSIX:
209 error_interrupt_enable = 1;
210 error_interrupt_offset = enic->intr_count - 2;
211 break;
212 default:
213 error_interrupt_enable = 0;
214 error_interrupt_offset = 0;
215 break;
216 }
217
218 for (i = 0; i < enic->rq_count; i++) {
219 cq_index = i;
220 vnic_rq_init(&enic->rq[i],
221 cq_index,
222 error_interrupt_enable,
223 error_interrupt_offset);
224 }
225
226 for (i = 0; i < enic->wq_count; i++) {
227 cq_index = enic->rq_count + i;
228 vnic_wq_init(&enic->wq[i],
229 cq_index,
230 error_interrupt_enable,
231 error_interrupt_offset);
232 }
233
234 /* Init CQ resources
235 *
236 * CQ[0 - n+m-1] point to INTR[0] for INTx, MSI
237 * CQ[0 - n+m-1] point to INTR[0 - n+m-1] for MSI-X
238 */
239
240 for (i = 0; i < enic->cq_count; i++) {
241
242 switch (intr_mode) {
243 case VNIC_DEV_INTR_MODE_MSIX:
244 interrupt_offset = i;
245 break;
246 default:
247 interrupt_offset = 0;
248 break;
249 }
250
251 vnic_cq_init(&enic->cq[i],
252 0 /* flow_control_enable */,
253 1 /* color_enable */,
254 0 /* cq_head */,
255 0 /* cq_tail */,
256 1 /* cq_tail_color */,
257 1 /* interrupt_enable */,
258 1 /* cq_entry_enable */,
259 0 /* cq_message_enable */,
260 interrupt_offset,
261 0 /* cq_message_addr */);
262 }
263
264 /* Init INTR resources
265 *
266 * mask_on_assertion is not used for INTx due to the level-
267 * triggered nature of INTx
268 */
269
270 switch (intr_mode) {
271 case VNIC_DEV_INTR_MODE_MSI:
272 case VNIC_DEV_INTR_MODE_MSIX:
273 mask_on_assertion = 1;
274 break;
275 default:
276 mask_on_assertion = 0;
277 break;
278 }
279
280 for (i = 0; i < enic->intr_count; i++) {
281 vnic_intr_init(&enic->intr[i],
7c844599 282 INTR_COALESCE_USEC_TO_HW(enic->config.intr_timer_usec),
01f2e4ea
SF
283 enic->config.intr_timer_type,
284 mask_on_assertion);
285 }
01f2e4ea
SF
286}
287
288int enic_alloc_vnic_resources(struct enic *enic)
289{
290 enum vnic_dev_intr_mode intr_mode;
291 unsigned int i;
292 int err;
293
294 intr_mode = vnic_dev_get_intr_mode(enic->vdev);
295
a7a79deb 296 dev_info(enic_get_dev(enic), "vNIC resources used: "
01f2e4ea
SF
297 "wq %d rq %d cq %d intr %d intr mode %s\n",
298 enic->wq_count, enic->rq_count,
299 enic->cq_count, enic->intr_count,
300 intr_mode == VNIC_DEV_INTR_MODE_INTX ? "legacy PCI INTx" :
301 intr_mode == VNIC_DEV_INTR_MODE_MSI ? "MSI" :
302 intr_mode == VNIC_DEV_INTR_MODE_MSIX ? "MSI-X" :
a7a79deb 303 "unknown");
01f2e4ea
SF
304
305 /* Allocate queue resources
306 */
307
308 for (i = 0; i < enic->wq_count; i++) {
309 err = vnic_wq_alloc(enic->vdev, &enic->wq[i], i,
310 enic->config.wq_desc_count,
311 sizeof(struct wq_enet_desc));
312 if (err)
313 goto err_out_cleanup;
314 }
315
316 for (i = 0; i < enic->rq_count; i++) {
317 err = vnic_rq_alloc(enic->vdev, &enic->rq[i], i,
318 enic->config.rq_desc_count,
319 sizeof(struct rq_enet_desc));
320 if (err)
321 goto err_out_cleanup;
322 }
323
324 for (i = 0; i < enic->cq_count; i++) {
325 if (i < enic->rq_count)
326 err = vnic_cq_alloc(enic->vdev, &enic->cq[i], i,
327 enic->config.rq_desc_count,
328 sizeof(struct cq_enet_rq_desc));
329 else
330 err = vnic_cq_alloc(enic->vdev, &enic->cq[i], i,
331 enic->config.wq_desc_count,
332 sizeof(struct cq_enet_wq_desc));
333 if (err)
334 goto err_out_cleanup;
335 }
336
337 for (i = 0; i < enic->intr_count; i++) {
338 err = vnic_intr_alloc(enic->vdev, &enic->intr[i], i);
339 if (err)
340 goto err_out_cleanup;
341 }
342
343 /* Hook remaining resource
344 */
345
346 enic->legacy_pba = vnic_dev_get_res(enic->vdev,
347 RES_TYPE_INTR_PBA_LEGACY, 0);
348 if (!enic->legacy_pba && intr_mode == VNIC_DEV_INTR_MODE_INTX) {
a7a79deb
VK
349 dev_err(enic_get_dev(enic),
350 "Failed to hook legacy pba resource\n");
01f2e4ea
SF
351 err = -ENODEV;
352 goto err_out_cleanup;
353 }
354
355 return 0;
356
357err_out_cleanup:
358 enic_free_vnic_resources(enic);
359
360 return err;
361}