blob: 8eb7ae96974d0846fe52f28a04f579ce12edd28b [file] [log] [blame]
Glenn Streiff3c2d7742008-02-04 20:20:45 -08001/*
2 * Copyright (c) 2006 - 2008 NetEffect, Inc. All rights reserved.
3 * Copyright (c) 2005 Open Grid Computing, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34#ifndef __NES_H
35#define __NES_H
36
37#include <linux/netdevice.h>
38#include <linux/inetdevice.h>
39#include <linux/spinlock.h>
40#include <linux/kernel.h>
41#include <linux/delay.h>
42#include <linux/pci.h>
43#include <linux/dma-mapping.h>
44#include <linux/workqueue.h>
45#include <linux/slab.h>
Glenn Streiff3c2d7742008-02-04 20:20:45 -080046#include <asm/io.h>
47#include <linux/crc32c.h>
48
49#include <rdma/ib_smi.h>
50#include <rdma/ib_verbs.h>
51#include <rdma/ib_pack.h>
52#include <rdma/rdma_cm.h>
53#include <rdma/iw_cm.h>
54
55#define NES_SEND_FIRST_WRITE
56
57#define QUEUE_DISCONNECTS
58
59#define DRV_BUILD "1"
60
61#define DRV_NAME "iw_nes"
62#define DRV_VERSION "1.0 KO Build " DRV_BUILD
63#define PFX DRV_NAME ": "
64
65/*
66 * NetEffect PCI vendor id and NE010 PCI device id.
67 */
68#ifndef PCI_VENDOR_ID_NETEFFECT /* not in pci.ids yet */
69#define PCI_VENDOR_ID_NETEFFECT 0x1678
70#define PCI_DEVICE_ID_NETEFFECT_NE020 0x0100
71#endif
72
73#define NE020_REV 4
74#define NE020_REV1 5
75
76#define BAR_0 0
77#define BAR_1 2
78
79#define RX_BUF_SIZE (1536 + 8)
80#define NES_REG0_SIZE (4 * 1024)
81#define NES_TX_TIMEOUT (6*HZ)
82#define NES_FIRST_QPN 64
83#define NES_SW_CONTEXT_ALIGN 1024
84
85#define NES_NIC_MAX_NICS 16
86#define NES_MAX_ARP_TABLE_SIZE 4096
87
88#define NES_NIC_CEQ_SIZE 8
89/* NICs will be on a separate CQ */
90#define NES_CCEQ_SIZE ((nesadapter->max_cq / nesadapter->port_count) - 32)
91
92#define NES_MAX_PORT_COUNT 4
93
94#define MAX_DPC_ITERATIONS 128
95
Glenn Streiff3c2d7742008-02-04 20:20:45 -080096#define NES_DRV_OPT_ENABLE_MPA_VER_0 0x00000001
97#define NES_DRV_OPT_DISABLE_MPA_CRC 0x00000002
98#define NES_DRV_OPT_DISABLE_FIRST_WRITE 0x00000004
99#define NES_DRV_OPT_DISABLE_INTF 0x00000008
100#define NES_DRV_OPT_ENABLE_MSI 0x00000010
101#define NES_DRV_OPT_DUAL_LOGICAL_PORT 0x00000020
102#define NES_DRV_OPT_SUPRESS_OPTION_BC 0x00000040
103#define NES_DRV_OPT_NO_INLINE_DATA 0x00000080
104#define NES_DRV_OPT_DISABLE_INT_MOD 0x00000100
105#define NES_DRV_OPT_DISABLE_VIRT_WQ 0x00000200
106
107#define NES_AEQ_EVENT_TIMEOUT 2500
108#define NES_DISCONNECT_EVENT_TIMEOUT 2000
109
110/* debug levels */
111/* must match userspace */
112#define NES_DBG_HW 0x00000001
113#define NES_DBG_INIT 0x00000002
114#define NES_DBG_ISR 0x00000004
115#define NES_DBG_PHY 0x00000008
116#define NES_DBG_NETDEV 0x00000010
117#define NES_DBG_CM 0x00000020
118#define NES_DBG_CM1 0x00000040
119#define NES_DBG_NIC_RX 0x00000080
120#define NES_DBG_NIC_TX 0x00000100
121#define NES_DBG_CQP 0x00000200
122#define NES_DBG_MMAP 0x00000400
123#define NES_DBG_MR 0x00000800
124#define NES_DBG_PD 0x00001000
125#define NES_DBG_CQ 0x00002000
126#define NES_DBG_QP 0x00004000
127#define NES_DBG_MOD_QP 0x00008000
128#define NES_DBG_AEQ 0x00010000
129#define NES_DBG_IW_RX 0x00020000
130#define NES_DBG_IW_TX 0x00040000
131#define NES_DBG_SHUTDOWN 0x00080000
132#define NES_DBG_RSVD1 0x10000000
133#define NES_DBG_RSVD2 0x20000000
134#define NES_DBG_RSVD3 0x40000000
135#define NES_DBG_RSVD4 0x80000000
136#define NES_DBG_ALL 0xffffffff
137
138#ifdef CONFIG_INFINIBAND_NES_DEBUG
139#define nes_debug(level, fmt, args...) \
140 if (level & nes_debug_level) \
Harvey Harrison33718362008-04-16 21:01:10 -0700141 printk(KERN_ERR PFX "%s[%u]: " fmt, __func__, __LINE__, ##args)
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800142
143#define assert(expr) \
144if (!(expr)) { \
145 printk(KERN_ERR PFX "Assertion failed! %s, %s, %s, line %d\n", \
Harvey Harrison33718362008-04-16 21:01:10 -0700146 #expr, __FILE__, __func__, __LINE__); \
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800147}
148
149#define NES_EVENT_TIMEOUT 1200000
150#else
151#define nes_debug(level, fmt, args...)
152#define assert(expr) do {} while (0)
153
154#define NES_EVENT_TIMEOUT 100000
155#endif
156
157#include "nes_hw.h"
158#include "nes_verbs.h"
159#include "nes_context.h"
160#include "nes_user.h"
161#include "nes_cm.h"
162
163extern int max_mtu;
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800164#define max_frame_len (max_mtu+ETH_HLEN)
165extern int interrupt_mod_interval;
166extern int nes_if_count;
167extern int mpa_version;
168extern int disable_mpa_crc;
169extern unsigned int send_first;
170extern unsigned int nes_drv_opt;
171extern unsigned int nes_debug_level;
172
173extern struct list_head nes_adapter_list;
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800174
175extern atomic_t cm_connects;
176extern atomic_t cm_accepts;
177extern atomic_t cm_disconnects;
178extern atomic_t cm_closes;
179extern atomic_t cm_connecteds;
180extern atomic_t cm_connect_reqs;
181extern atomic_t cm_rejects;
182extern atomic_t mod_qp_timouts;
183extern atomic_t qps_created;
184extern atomic_t qps_destroyed;
185extern atomic_t sw_qps_destroyed;
186extern u32 mh_detected;
187extern u32 mh_pauses_sent;
188extern u32 cm_packets_sent;
189extern u32 cm_packets_bounced;
190extern u32 cm_packets_created;
191extern u32 cm_packets_received;
192extern u32 cm_packets_dropped;
193extern u32 cm_packets_retrans;
194extern u32 cm_listens_created;
195extern u32 cm_listens_destroyed;
196extern u32 cm_backlog_drops;
197extern atomic_t cm_loopbacks;
198extern atomic_t cm_nodes_created;
199extern atomic_t cm_nodes_destroyed;
200extern atomic_t cm_accel_dropped_pkts;
201extern atomic_t cm_resets_recvd;
202
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800203extern u32 int_mod_timer_init;
204extern u32 int_mod_cq_depth_256;
205extern u32 int_mod_cq_depth_128;
206extern u32 int_mod_cq_depth_32;
207extern u32 int_mod_cq_depth_24;
208extern u32 int_mod_cq_depth_16;
209extern u32 int_mod_cq_depth_4;
210extern u32 int_mod_cq_depth_1;
211
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800212struct nes_device {
213 struct nes_adapter *nesadapter;
214 void __iomem *regs;
215 void __iomem *index_reg;
216 struct pci_dev *pcidev;
217 struct net_device *netdev[NES_NIC_MAX_NICS];
218 u64 link_status_interrupts;
219 struct tasklet_struct dpc_tasklet;
220 spinlock_t indexed_regs_lock;
221 unsigned long csr_start;
222 unsigned long doorbell_region;
223 unsigned long doorbell_start;
224 unsigned long mac_tx_errors;
225 unsigned long mac_pause_frames_sent;
226 unsigned long mac_pause_frames_received;
227 unsigned long mac_rx_errors;
228 unsigned long mac_rx_crc_errors;
229 unsigned long mac_rx_symbol_err_frames;
230 unsigned long mac_rx_jabber_frames;
231 unsigned long mac_rx_oversized_frames;
232 unsigned long mac_rx_short_frames;
233 unsigned long port_rx_discards;
234 unsigned long port_tx_discards;
235 unsigned int mac_index;
236 unsigned int nes_stack_start;
237
238 /* Control Structures */
239 void *cqp_vbase;
240 dma_addr_t cqp_pbase;
241 u32 cqp_mem_size;
242 u8 ceq_index;
243 u8 nic_ceq_index;
244 struct nes_hw_cqp cqp;
245 struct nes_hw_cq ccq;
246 struct list_head cqp_avail_reqs;
247 struct list_head cqp_pending_reqs;
248 struct nes_cqp_request *nes_cqp_requests;
249
250 u32 int_req;
251 u32 int_stat;
252 u32 timer_int_req;
253 u32 timer_only_int_count;
254 u32 intf_int_req;
255 u32 last_mac_tx_pauses;
256 u32 last_used_chunks_tx;
257 struct list_head list;
258
259 u16 base_doorbell_index;
260 u16 currcq_count;
261 u16 deepcq_count;
262 u8 msi_enabled;
263 u8 netdev_count;
264 u8 napi_isr_ran;
265 u8 disable_rx_flow_control;
266 u8 disable_tx_flow_control;
267};
268
269
Faisal Latif30da7cf2008-02-21 08:31:22 -0600270static inline __le32 get_crc_value(struct nes_v4_quad *nes_quad)
271{
272 u32 crc_value;
273 crc_value = crc32c(~0, (void *)nes_quad, sizeof (struct nes_v4_quad));
274
275 /*
276 * With commit ef19454b ("[LIB] crc32c: Keep intermediate crc
277 * state in cpu order"), behavior of crc32c changes on
278 * big-endian platforms. Our algorithm expects the previous
279 * behavior; otherwise we have RDMA connection establishment
280 * issue on big-endian.
281 */
282 return cpu_to_le32(crc_value);
283}
284
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800285static inline void
286set_wqe_64bit_value(__le32 *wqe_words, u32 index, u64 value)
287{
288 wqe_words[index] = cpu_to_le32((u32) ((unsigned long)value));
289 wqe_words[index + 1] = cpu_to_le32((u32)(upper_32_bits((unsigned long)value)));
290}
291
292static inline void
293set_wqe_32bit_value(__le32 *wqe_words, u32 index, u32 value)
294{
295 wqe_words[index] = cpu_to_le32(value);
296}
297
298static inline void
299nes_fill_init_cqp_wqe(struct nes_hw_cqp_wqe *cqp_wqe, struct nes_device *nesdev)
300{
301 set_wqe_64bit_value(cqp_wqe->wqe_words, NES_CQP_WQE_COMP_CTX_LOW_IDX,
302 (u64)((unsigned long) &nesdev->cqp));
303 cqp_wqe->wqe_words[NES_CQP_WQE_COMP_SCRATCH_LOW_IDX] = 0;
304 cqp_wqe->wqe_words[NES_CQP_WQE_COMP_SCRATCH_HIGH_IDX] = 0;
305 cqp_wqe->wqe_words[NES_CQP_STAG_WQE_PBL_BLK_COUNT_IDX] = 0;
306 cqp_wqe->wqe_words[NES_CQP_STAG_WQE_PBL_LEN_IDX] = 0;
307 cqp_wqe->wqe_words[NES_CQP_STAG_WQE_LEN_LOW_IDX] = 0;
308 cqp_wqe->wqe_words[NES_CQP_STAG_WQE_PA_LOW_IDX] = 0;
309 cqp_wqe->wqe_words[NES_CQP_STAG_WQE_PA_HIGH_IDX] = 0;
310}
311
312static inline void
313nes_fill_init_qp_wqe(struct nes_hw_qp_wqe *wqe, struct nes_qp *nesqp, u32 head)
314{
315 u32 value;
316 value = ((u32)((unsigned long) nesqp)) | head;
317 set_wqe_32bit_value(wqe->wqe_words, NES_IWARP_SQ_WQE_COMP_CTX_HIGH_IDX,
318 (u32)(upper_32_bits((unsigned long)(nesqp))));
319 set_wqe_32bit_value(wqe->wqe_words, NES_IWARP_SQ_WQE_COMP_CTX_LOW_IDX, value);
320}
321
322/* Read from memory-mapped device */
323static inline u32 nes_read_indexed(struct nes_device *nesdev, u32 reg_index)
324{
325 unsigned long flags;
326 void __iomem *addr = nesdev->index_reg;
327 u32 value;
328
329 spin_lock_irqsave(&nesdev->indexed_regs_lock, flags);
330
331 writel(reg_index, addr);
332 value = readl((void __iomem *)addr + 4);
333
334 spin_unlock_irqrestore(&nesdev->indexed_regs_lock, flags);
335 return value;
336}
337
338static inline u32 nes_read32(const void __iomem *addr)
339{
340 return readl(addr);
341}
342
343static inline u16 nes_read16(const void __iomem *addr)
344{
345 return readw(addr);
346}
347
348static inline u8 nes_read8(const void __iomem *addr)
349{
350 return readb(addr);
351}
352
353/* Write to memory-mapped device */
354static inline void nes_write_indexed(struct nes_device *nesdev, u32 reg_index, u32 val)
355{
356 unsigned long flags;
357 void __iomem *addr = nesdev->index_reg;
358
359 spin_lock_irqsave(&nesdev->indexed_regs_lock, flags);
360
361 writel(reg_index, addr);
362 writel(val, (void __iomem *)addr + 4);
363
364 spin_unlock_irqrestore(&nesdev->indexed_regs_lock, flags);
365}
366
367static inline void nes_write32(void __iomem *addr, u32 val)
368{
369 writel(val, addr);
370}
371
372static inline void nes_write16(void __iomem *addr, u16 val)
373{
374 writew(val, addr);
375}
376
377static inline void nes_write8(void __iomem *addr, u8 val)
378{
379 writeb(val, addr);
380}
381
382
383
384static inline int nes_alloc_resource(struct nes_adapter *nesadapter,
385 unsigned long *resource_array, u32 max_resources,
386 u32 *req_resource_num, u32 *next)
387{
388 unsigned long flags;
389 u32 resource_num;
390
391 spin_lock_irqsave(&nesadapter->resource_lock, flags);
392
393 resource_num = find_next_zero_bit(resource_array, max_resources, *next);
394 if (resource_num >= max_resources) {
395 resource_num = find_first_zero_bit(resource_array, max_resources);
396 if (resource_num >= max_resources) {
Harvey Harrison33718362008-04-16 21:01:10 -0700397 printk(KERN_ERR PFX "%s: No available resourcess.\n", __func__);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800398 spin_unlock_irqrestore(&nesadapter->resource_lock, flags);
399 return -EMFILE;
400 }
401 }
402 set_bit(resource_num, resource_array);
403 *next = resource_num+1;
404 if (*next == max_resources) {
405 *next = 0;
406 }
407 spin_unlock_irqrestore(&nesadapter->resource_lock, flags);
408 *req_resource_num = resource_num;
409
410 return 0;
411}
412
413static inline int nes_is_resource_allocated(struct nes_adapter *nesadapter,
414 unsigned long *resource_array, u32 resource_num)
415{
416 unsigned long flags;
417 int bit_is_set;
418
419 spin_lock_irqsave(&nesadapter->resource_lock, flags);
420
421 bit_is_set = test_bit(resource_num, resource_array);
422 nes_debug(NES_DBG_HW, "resource_num %u is%s allocated.\n",
423 resource_num, (bit_is_set ? "": " not"));
424 spin_unlock_irqrestore(&nesadapter->resource_lock, flags);
425
426 return bit_is_set;
427}
428
429static inline void nes_free_resource(struct nes_adapter *nesadapter,
430 unsigned long *resource_array, u32 resource_num)
431{
432 unsigned long flags;
433
434 spin_lock_irqsave(&nesadapter->resource_lock, flags);
435 clear_bit(resource_num, resource_array);
436 spin_unlock_irqrestore(&nesadapter->resource_lock, flags);
437}
438
439static inline struct nes_vnic *to_nesvnic(struct ib_device *ibdev)
440{
441 return container_of(ibdev, struct nes_ib_device, ibdev)->nesvnic;
442}
443
444static inline struct nes_pd *to_nespd(struct ib_pd *ibpd)
445{
446 return container_of(ibpd, struct nes_pd, ibpd);
447}
448
449static inline struct nes_ucontext *to_nesucontext(struct ib_ucontext *ibucontext)
450{
451 return container_of(ibucontext, struct nes_ucontext, ibucontext);
452}
453
454static inline struct nes_mr *to_nesmr(struct ib_mr *ibmr)
455{
456 return container_of(ibmr, struct nes_mr, ibmr);
457}
458
459static inline struct nes_mr *to_nesmr_from_ibfmr(struct ib_fmr *ibfmr)
460{
461 return container_of(ibfmr, struct nes_mr, ibfmr);
462}
463
464static inline struct nes_mr *to_nesmw(struct ib_mw *ibmw)
465{
466 return container_of(ibmw, struct nes_mr, ibmw);
467}
468
469static inline struct nes_fmr *to_nesfmr(struct nes_mr *nesmr)
470{
471 return container_of(nesmr, struct nes_fmr, nesmr);
472}
473
474static inline struct nes_cq *to_nescq(struct ib_cq *ibcq)
475{
476 return container_of(ibcq, struct nes_cq, ibcq);
477}
478
479static inline struct nes_qp *to_nesqp(struct ib_qp *ibqp)
480{
481 return container_of(ibqp, struct nes_qp, ibqp);
482}
483
484
485
486/* nes.c */
487void nes_add_ref(struct ib_qp *);
488void nes_rem_ref(struct ib_qp *);
489struct ib_qp *nes_get_qp(struct ib_device *, int);
490
491
492/* nes_hw.c */
493struct nes_adapter *nes_init_adapter(struct nes_device *, u8);
494void nes_nic_init_timer_defaults(struct nes_device *, u8);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800495void nes_destroy_adapter(struct nes_adapter *);
496int nes_init_cqp(struct nes_device *);
497int nes_init_phy(struct nes_device *);
498int nes_init_nic_qp(struct nes_device *, struct net_device *);
499void nes_destroy_nic_qp(struct nes_vnic *);
500int nes_napi_isr(struct nes_device *);
501void nes_dpc(unsigned long);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800502void nes_nic_ce_handler(struct nes_device *, struct nes_hw_nic_cq *);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800503void nes_iwarp_ce_handler(struct nes_device *, struct nes_hw_cq *);
504int nes_destroy_cqp(struct nes_device *);
505int nes_nic_cm_xmit(struct sk_buff *, struct net_device *);
506
507/* nes_nic.c */
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800508struct net_device *nes_netdev_init(struct nes_device *, void __iomem *);
509void nes_netdev_destroy(struct net_device *);
510int nes_nic_cm_xmit(struct sk_buff *, struct net_device *);
511
512/* nes_cm.c */
513void *nes_cm_create(struct net_device *);
514int nes_cm_recv(struct sk_buff *, struct net_device *);
515void nes_update_arp(unsigned char *, u32, u32, u16, u16);
516void nes_manage_arp_cache(struct net_device *, unsigned char *, u32, u32);
517void nes_sock_release(struct nes_qp *, unsigned long *);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800518void flush_wqes(struct nes_device *nesdev, struct nes_qp *, u32, u32);
519int nes_manage_apbvt(struct nes_vnic *, u32, u32, u32);
520int nes_cm_disconn(struct nes_qp *);
521void nes_cm_disconn_worker(void *);
522
523/* nes_verbs.c */
524int nes_hw_modify_qp(struct nes_device *, struct nes_qp *, u32, u32);
525int nes_modify_qp(struct ib_qp *, struct ib_qp_attr *, int, struct ib_udata *);
526struct nes_ib_device *nes_init_ofa_device(struct net_device *);
527void nes_destroy_ofa_device(struct nes_ib_device *);
528int nes_register_ofa_device(struct nes_ib_device *);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800529
530/* nes_util.c */
531int nes_read_eeprom_values(struct nes_device *, struct nes_adapter *);
532void nes_write_1G_phy_reg(struct nes_device *, u8, u8, u16);
533void nes_read_1G_phy_reg(struct nes_device *, u8, u8, u16 *);
Eric Schneider0e1de5d2008-04-29 13:46:54 -0700534void nes_write_10G_phy_reg(struct nes_device *, u16, u8, u16, u16);
535void nes_read_10G_phy_reg(struct nes_device *, u8, u8, u16);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800536struct nes_cqp_request *nes_get_cqp_request(struct nes_device *);
Roland Dreier1ff66e82008-07-14 23:48:49 -0700537void nes_free_cqp_request(struct nes_device *nesdev,
538 struct nes_cqp_request *cqp_request);
539void nes_put_cqp_request(struct nes_device *nesdev,
540 struct nes_cqp_request *cqp_request);
Roland Dreier8294f292008-07-14 23:48:49 -0700541void nes_post_cqp_request(struct nes_device *, struct nes_cqp_request *);
Glenn Streiff3c2d7742008-02-04 20:20:45 -0800542int nes_arp_table(struct nes_device *, u32, u8 *, u32);
543void nes_mh_fix(unsigned long);
544void nes_clc(unsigned long);
545void nes_dump_mem(unsigned int, void *, int);
546u32 nes_crc32(u32, u32, u32, u32, u8 *, u32, u32, u32);
547
548#endif /* __NES_H */