blob: 493100dfbf59eb2e7544f2778067cb0507dc29b6 [file] [log] [blame]
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -08001#ifndef _IPATH_KERNEL_H
2#define _IPATH_KERNEL_H
3/*
Bryan O'Sullivan759d5762006-07-01 04:35:49 -07004 * Copyright (c) 2006 QLogic, Inc. All rights reserved.
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -08005 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
6 *
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
12 *
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
15 * conditions are met:
16 *
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer.
20 *
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 * SOFTWARE.
34 */
35
36/*
37 * This header file is the base header file for infinipath kernel code
38 * ipath_user.h serves a similar purpose for user code.
39 */
40
41#include <linux/interrupt.h>
42#include <asm/io.h>
43
44#include "ipath_common.h"
45#include "ipath_debug.h"
46#include "ipath_registers.h"
47
48/* only s/w major version of InfiniPath we can handle */
49#define IPATH_CHIP_VERS_MAJ 2U
50
51/* don't care about this except printing */
52#define IPATH_CHIP_VERS_MIN 0U
53
54/* temporary, maybe always */
55extern struct infinipath_stats ipath_stats;
56
57#define IPATH_CHIP_SWVERSION IPATH_CHIP_VERS_MAJ
58
59struct ipath_portdata {
60 void **port_rcvegrbuf;
61 dma_addr_t *port_rcvegrbuf_phys;
62 /* rcvhdrq base, needs mmap before useful */
63 void *port_rcvhdrq;
64 /* kernel virtual address where hdrqtail is updated */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -070065 volatile __le64 *port_rcvhdrtail_kvaddr;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -080066 /*
67 * temp buffer for expected send setup, allocated at open, instead
68 * of each setup call
69 */
70 void *port_tid_pg_list;
71 /* when waiting for rcv or pioavail */
72 wait_queue_head_t port_wait;
73 /*
74 * rcvegr bufs base, physical, must fit
75 * in 44 bits so 32 bit programs mmap64 44 bit works)
76 */
77 dma_addr_t port_rcvegr_phys;
78 /* mmap of hdrq, must fit in 44 bits */
79 dma_addr_t port_rcvhdrq_phys;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -070080 dma_addr_t port_rcvhdrqtailaddr_phys;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -080081 /*
82 * number of opens on this instance (0 or 1; ignoring forks, dup,
83 * etc. for now)
84 */
85 int port_cnt;
86 /*
87 * how much space to leave at start of eager TID entries for
88 * protocol use, on each TID
89 */
90 /* instead of calculating it */
91 unsigned port_port;
92 /* chip offset of PIO buffers for this port */
93 u32 port_piobufs;
94 /* how many alloc_pages() chunks in port_rcvegrbuf_pages */
95 u32 port_rcvegrbuf_chunks;
96 /* how many egrbufs per chunk */
97 u32 port_rcvegrbufs_perchunk;
98 /* order for port_rcvegrbuf_pages */
99 size_t port_rcvegrbuf_size;
100 /* rcvhdrq size (for freeing) */
101 size_t port_rcvhdrq_size;
102 /* next expected TID to check when looking for free */
103 u32 port_tidcursor;
104 /* next expected TID to check */
105 unsigned long port_flag;
106 /* WAIT_RCV that timed out, no interrupt */
107 u32 port_rcvwait_to;
108 /* WAIT_PIO that timed out, no interrupt */
109 u32 port_piowait_to;
110 /* WAIT_RCV already happened, no wait */
111 u32 port_rcvnowait;
112 /* WAIT_PIO already happened, no wait */
113 u32 port_pionowait;
114 /* total number of rcvhdrqfull errors */
115 u32 port_hdrqfull;
116 /* pid of process using this port */
117 pid_t port_pid;
118 /* same size as task_struct .comm[] */
119 char port_comm[16];
120 /* pkeys set by this use of this port */
121 u16 port_pkeys[4];
122 /* so file ops can get at unit */
123 struct ipath_devdata *port_dd;
124};
125
126struct sk_buff;
127
128/*
129 * control information for layered drivers
130 */
131struct _ipath_layer {
132 void *l_arg;
133};
134
135/* Verbs layer interface */
136struct _verbs_layer {
137 void *l_arg;
138 struct timer_list l_timer;
139};
140
141struct ipath_devdata {
142 struct list_head ipath_list;
143
144 struct ipath_kregs const *ipath_kregs;
145 struct ipath_cregs const *ipath_cregs;
146
147 /* mem-mapped pointer to base of chip regs */
148 u64 __iomem *ipath_kregbase;
149 /* end of mem-mapped chip space; range checking */
150 u64 __iomem *ipath_kregend;
151 /* physical address of chip for io_remap, etc. */
152 unsigned long ipath_physaddr;
153 /* base of memory alloced for ipath_kregbase, for free */
154 u64 *ipath_kregalloc;
155 /*
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800156 * virtual address where port0 rcvhdrqtail updated for this unit.
157 * only written to by the chip, not the driver.
158 */
159 volatile __le64 *ipath_hdrqtailptr;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800160 /* ipath_cfgports pointers */
161 struct ipath_portdata **ipath_pd;
162 /* sk_buffs used by port 0 eager receive queue */
163 struct sk_buff **ipath_port0_skbs;
164 /* kvirt address of 1st 2k pio buffer */
165 void __iomem *ipath_pio2kbase;
166 /* kvirt address of 1st 4k pio buffer */
167 void __iomem *ipath_pio4kbase;
168 /*
169 * points to area where PIOavail registers will be DMA'ed.
170 * Has to be on a page of it's own, because the page will be
171 * mapped into user program space. This copy is *ONLY* ever
172 * written by DMA, not by the driver! Need a copy per device
173 * when we get to multiple devices
174 */
175 volatile __le64 *ipath_pioavailregs_dma;
176 /* physical address where updates occur */
177 dma_addr_t ipath_pioavailregs_phys;
178 struct _ipath_layer ipath_layer;
179 /* setup intr */
180 int (*ipath_f_intrsetup)(struct ipath_devdata *);
181 /* setup on-chip bus config */
182 int (*ipath_f_bus)(struct ipath_devdata *, struct pci_dev *);
183 /* hard reset chip */
184 int (*ipath_f_reset)(struct ipath_devdata *);
185 int (*ipath_f_get_boardname)(struct ipath_devdata *, char *,
186 size_t);
187 void (*ipath_f_init_hwerrors)(struct ipath_devdata *);
188 void (*ipath_f_handle_hwerrors)(struct ipath_devdata *, char *,
189 size_t);
190 void (*ipath_f_quiet_serdes)(struct ipath_devdata *);
191 int (*ipath_f_bringup_serdes)(struct ipath_devdata *);
192 int (*ipath_f_early_init)(struct ipath_devdata *);
193 void (*ipath_f_clear_tids)(struct ipath_devdata *, unsigned);
194 void (*ipath_f_put_tid)(struct ipath_devdata *, u64 __iomem*,
195 u32, unsigned long);
196 void (*ipath_f_tidtemplate)(struct ipath_devdata *);
197 void (*ipath_f_cleanup)(struct ipath_devdata *);
198 void (*ipath_f_setextled)(struct ipath_devdata *, u64, u64);
199 /* fill out chip-specific fields */
200 int (*ipath_f_get_base_info)(struct ipath_portdata *, void *);
201 struct _verbs_layer verbs_layer;
202 /* total dwords sent (summed from counter) */
203 u64 ipath_sword;
204 /* total dwords rcvd (summed from counter) */
205 u64 ipath_rword;
206 /* total packets sent (summed from counter) */
207 u64 ipath_spkts;
208 /* total packets rcvd (summed from counter) */
209 u64 ipath_rpkts;
210 /* ipath_statusp initially points to this. */
211 u64 _ipath_status;
212 /* GUID for this interface, in network order */
213 __be64 ipath_guid;
214 /*
215 * aggregrate of error bits reported since last cleared, for
216 * limiting of error reporting
217 */
218 ipath_err_t ipath_lasterror;
219 /*
220 * aggregrate of error bits reported since last cleared, for
221 * limiting of hwerror reporting
222 */
223 ipath_err_t ipath_lasthwerror;
224 /*
225 * errors masked because they occur too fast, also includes errors
226 * that are always ignored (ipath_ignorederrs)
227 */
228 ipath_err_t ipath_maskederrs;
229 /* time in jiffies at which to re-enable maskederrs */
230 unsigned long ipath_unmasktime;
231 /*
232 * errors always ignored (masked), at least for a given
233 * chip/device, because they are wrong or not useful
234 */
235 ipath_err_t ipath_ignorederrs;
236 /* count of egrfull errors, combined for all ports */
237 u64 ipath_last_tidfull;
238 /* for ipath_qcheck() */
239 u64 ipath_lastport0rcv_cnt;
240 /* template for writing TIDs */
241 u64 ipath_tidtemplate;
242 /* value to write to free TIDs */
243 u64 ipath_tidinvalid;
244 /* PE-800 rcv interrupt setup */
245 u64 ipath_rhdrhead_intr_off;
246
247 /* size of memory at ipath_kregbase */
248 u32 ipath_kregsize;
249 /* number of registers used for pioavail */
250 u32 ipath_pioavregs;
251 /* IPATH_POLL, etc. */
252 u32 ipath_flags;
253 /* ipath_flags sma is waiting for */
254 u32 ipath_sma_state_wanted;
255 /* last buffer for user use, first buf for kernel use is this
256 * index. */
257 u32 ipath_lastport_piobuf;
258 /* is a stats timer active */
259 u32 ipath_stats_timer_active;
260 /* dwords sent read from counter */
261 u32 ipath_lastsword;
262 /* dwords received read from counter */
263 u32 ipath_lastrword;
264 /* sent packets read from counter */
265 u32 ipath_lastspkts;
266 /* received packets read from counter */
267 u32 ipath_lastrpkts;
268 /* pio bufs allocated per port */
269 u32 ipath_pbufsport;
270 /*
271 * number of ports configured as max; zero is set to number chip
272 * supports, less gives more pio bufs/port, etc.
273 */
274 u32 ipath_cfgports;
275 /* port0 rcvhdrq head offset */
276 u32 ipath_port0head;
277 /* count of port 0 hdrqfull errors */
278 u32 ipath_p0_hdrqfull;
279
280 /*
281 * (*cfgports) used to suppress multiple instances of same
282 * port staying stuck at same point
283 */
284 u32 *ipath_lastrcvhdrqtails;
285 /*
286 * (*cfgports) used to suppress multiple instances of same
287 * port staying stuck at same point
288 */
289 u32 *ipath_lastegrheads;
290 /*
291 * index of last piobuffer we used. Speeds up searching, by
292 * starting at this point. Doesn't matter if multiple cpu's use and
293 * update, last updater is only write that matters. Whenever it
294 * wraps, we update shadow copies. Need a copy per device when we
295 * get to multiple devices
296 */
297 u32 ipath_lastpioindex;
298 /* max length of freezemsg */
299 u32 ipath_freezelen;
300 /*
301 * consecutive times we wanted a PIO buffer but were unable to
302 * get one
303 */
304 u32 ipath_consec_nopiobuf;
305 /*
306 * hint that we should update ipath_pioavailshadow before
307 * looking for a PIO buffer
308 */
309 u32 ipath_upd_pio_shadow;
310 /* so we can rewrite it after a chip reset */
311 u32 ipath_pcibar0;
312 /* so we can rewrite it after a chip reset */
313 u32 ipath_pcibar1;
314 /* sequential tries for SMA send and no bufs */
315 u32 ipath_nosma_bufs;
316 /* duration (seconds) ipath_nosma_bufs set */
317 u32 ipath_nosma_secs;
318
319 /* HT/PCI Vendor ID (here for NodeInfo) */
320 u16 ipath_vendorid;
321 /* HT/PCI Device ID (here for NodeInfo) */
322 u16 ipath_deviceid;
323 /* offset in HT config space of slave/primary interface block */
324 u8 ipath_ht_slave_off;
325 /* for write combining settings */
326 unsigned long ipath_wc_cookie;
327 /* ref count for each pkey */
328 atomic_t ipath_pkeyrefs[4];
329 /* shadow copy of all exptids physaddr; used only by funcsim */
330 u64 *ipath_tidsimshadow;
331 /* shadow copy of struct page *'s for exp tid pages */
332 struct page **ipath_pageshadow;
333 /* lock to workaround chip bug 9437 */
334 spinlock_t ipath_tid_lock;
335
336 /*
337 * IPATH_STATUS_*,
338 * this address is mapped readonly into user processes so they can
339 * get status cheaply, whenever they want.
340 */
341 u64 *ipath_statusp;
342 /* freeze msg if hw error put chip in freeze */
343 char *ipath_freezemsg;
344 /* pci access data structure */
345 struct pci_dev *pcidev;
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700346 struct cdev *user_cdev;
347 struct cdev *diag_cdev;
348 struct class_device *user_class_dev;
349 struct class_device *diag_class_dev;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800350 /* timer used to prevent stats overflow, error throttling, etc. */
351 struct timer_list ipath_stats_timer;
352 /* check for stale messages in rcv queue */
353 /* only allow one intr at a time. */
354 unsigned long ipath_rcv_pending;
355
356 /*
357 * Shadow copies of registers; size indicates read access size.
358 * Most of them are readonly, but some are write-only register,
359 * where we manipulate the bits in the shadow copy, and then write
360 * the shadow copy to infinipath.
361 *
362 * We deliberately make most of these 32 bits, since they have
363 * restricted range. For any that we read, we won't to generate 32
364 * bit accesses, since Opteron will generate 2 separate 32 bit HT
365 * transactions for a 64 bit read, and we want to avoid unnecessary
366 * HT transactions.
367 */
368
369 /* This is the 64 bit group */
370
371 /*
372 * shadow of pioavail, check to be sure it's large enough at
373 * init time.
374 */
375 unsigned long ipath_pioavailshadow[8];
376 /* shadow of kr_gpio_out, for rmw ops */
377 u64 ipath_gpio_out;
378 /* kr_revision shadow */
379 u64 ipath_revision;
380 /*
381 * shadow of ibcctrl, for interrupt handling of link changes,
382 * etc.
383 */
384 u64 ipath_ibcctrl;
385 /*
386 * last ibcstatus, to suppress "duplicate" status change messages,
387 * mostly from 2 to 3
388 */
389 u64 ipath_lastibcstat;
390 /* hwerrmask shadow */
391 ipath_err_t ipath_hwerrmask;
392 /* interrupt config reg shadow */
393 u64 ipath_intconfig;
394 /* kr_sendpiobufbase value */
395 u64 ipath_piobufbase;
396
397 /* these are the "32 bit" regs */
398
399 /*
400 * number of GUIDs in the flash for this interface; may need some
401 * rethinking for setting on other ifaces
402 */
403 u32 ipath_nguid;
404 /*
405 * the following two are 32-bit bitmasks, but {test,clear,set}_bit
406 * all expect bit fields to be "unsigned long"
407 */
408 /* shadow kr_rcvctrl */
409 unsigned long ipath_rcvctrl;
410 /* shadow kr_sendctrl */
411 unsigned long ipath_sendctrl;
412
413 /* value we put in kr_rcvhdrcnt */
414 u32 ipath_rcvhdrcnt;
415 /* value we put in kr_rcvhdrsize */
416 u32 ipath_rcvhdrsize;
417 /* value we put in kr_rcvhdrentsize */
418 u32 ipath_rcvhdrentsize;
419 /* offset of last entry in rcvhdrq */
420 u32 ipath_hdrqlast;
421 /* kr_portcnt value */
422 u32 ipath_portcnt;
423 /* kr_pagealign value */
424 u32 ipath_palign;
425 /* number of "2KB" PIO buffers */
426 u32 ipath_piobcnt2k;
427 /* size in bytes of "2KB" PIO buffers */
428 u32 ipath_piosize2k;
429 /* number of "4KB" PIO buffers */
430 u32 ipath_piobcnt4k;
431 /* size in bytes of "4KB" PIO buffers */
432 u32 ipath_piosize4k;
433 /* kr_rcvegrbase value */
434 u32 ipath_rcvegrbase;
435 /* kr_rcvegrcnt value */
436 u32 ipath_rcvegrcnt;
437 /* kr_rcvtidbase value */
438 u32 ipath_rcvtidbase;
439 /* kr_rcvtidcnt value */
440 u32 ipath_rcvtidcnt;
441 /* kr_sendregbase */
442 u32 ipath_sregbase;
443 /* kr_userregbase */
444 u32 ipath_uregbase;
445 /* kr_counterregbase */
446 u32 ipath_cregbase;
447 /* shadow the control register contents */
448 u32 ipath_control;
449 /* shadow the gpio output contents */
450 u32 ipath_extctrl;
451 /* PCI revision register (HTC rev on FPGA) */
452 u32 ipath_pcirev;
453
454 /* chip address space used by 4k pio buffers */
455 u32 ipath_4kalign;
456 /* The MTU programmed for this unit */
457 u32 ipath_ibmtu;
458 /*
459 * The max size IB packet, included IB headers that we can send.
460 * Starts same as ipath_piosize, but is affected when ibmtu is
461 * changed, or by size of eager buffers
462 */
463 u32 ipath_ibmaxlen;
464 /*
465 * ibmaxlen at init time, limited by chip and by receive buffer
466 * size. Not changed after init.
467 */
468 u32 ipath_init_ibmaxlen;
469 /* size of each rcvegrbuffer */
470 u32 ipath_rcvegrbufsize;
471 /* width (2,4,8,16,32) from HT config reg */
472 u32 ipath_htwidth;
473 /* HT speed (200,400,800,1000) from HT config */
474 u32 ipath_htspeed;
475 /* ports waiting for PIOavail intr */
476 unsigned long ipath_portpiowait;
477 /*
478 * number of sequential ibcstatus change for polling active/quiet
479 * (i.e., link not coming up).
480 */
481 u32 ipath_ibpollcnt;
482 /* low and high portions of MSI capability/vector */
483 u32 ipath_msi_lo;
484 /* saved after PCIe init for restore after reset */
485 u32 ipath_msi_hi;
486 /* MSI data (vector) saved for restore */
487 u16 ipath_msi_data;
488 /* MLID programmed for this instance */
489 u16 ipath_mlid;
490 /* LID programmed for this instance */
491 u16 ipath_lid;
492 /* list of pkeys programmed; 0 if not set */
493 u16 ipath_pkeys[4];
494 /* ASCII serial number, from flash */
495 u8 ipath_serial[12];
496 /* human readable board version */
497 u8 ipath_boardversion[80];
498 /* chip major rev, from ipath_revision */
499 u8 ipath_majrev;
500 /* chip minor rev, from ipath_revision */
501 u8 ipath_minrev;
502 /* board rev, from ipath_revision */
503 u8 ipath_boardrev;
504 /* unit # of this chip, if present */
505 int ipath_unit;
506 /* saved for restore after reset */
507 u8 ipath_pci_cacheline;
508 /* LID mask control */
509 u8 ipath_lmc;
510};
511
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800512extern struct list_head ipath_dev_list;
513extern spinlock_t ipath_devs_lock;
514extern struct ipath_devdata *ipath_lookup(int unit);
515
516extern u16 ipath_layer_rcv_opcode;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800517extern int __ipath_layer_intr(struct ipath_devdata *, u32);
518extern int ipath_layer_intr(struct ipath_devdata *, u32);
519extern int __ipath_layer_rcv(struct ipath_devdata *, void *,
520 struct sk_buff *);
521extern int __ipath_layer_rcv_lid(struct ipath_devdata *, void *);
522extern int __ipath_verbs_piobufavail(struct ipath_devdata *);
523extern int __ipath_verbs_rcv(struct ipath_devdata *, void *, void *, u32);
524
525void ipath_layer_add(struct ipath_devdata *);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700526void ipath_layer_remove(struct ipath_devdata *);
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800527
528int ipath_init_chip(struct ipath_devdata *, int);
529int ipath_enable_wc(struct ipath_devdata *dd);
530void ipath_disable_wc(struct ipath_devdata *dd);
531int ipath_count_units(int *npresentp, int *nupp, u32 *maxportsp);
532void ipath_shutdown_device(struct ipath_devdata *);
533
534struct file_operations;
535int ipath_cdev_init(int minor, char *name, struct file_operations *fops,
536 struct cdev **cdevp, struct class_device **class_devp);
537void ipath_cdev_cleanup(struct cdev **cdevp,
538 struct class_device **class_devp);
539
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700540int ipath_diag_add(struct ipath_devdata *);
541void ipath_diag_remove(struct ipath_devdata *);
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800542void ipath_diag_bringup_link(struct ipath_devdata *);
543
544extern wait_queue_head_t ipath_sma_state_wait;
545
546int ipath_user_add(struct ipath_devdata *dd);
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700547void ipath_user_remove(struct ipath_devdata *dd);
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800548
549struct sk_buff *ipath_alloc_skb(struct ipath_devdata *dd, gfp_t);
550
551extern int ipath_diag_inuse;
552
553irqreturn_t ipath_intr(int irq, void *devid, struct pt_regs *regs);
554void ipath_decode_err(char *buf, size_t blen, ipath_err_t err);
555#if __IPATH_INFO || __IPATH_DBG
556extern const char *ipath_ibcstatus_str[];
557#endif
558
559/* clean up any per-chip chip-specific stuff */
560void ipath_chip_cleanup(struct ipath_devdata *);
561/* clean up any chip type-specific stuff */
562void ipath_chip_done(void);
563
564/* check to see if we have to force ordering for write combining */
565int ipath_unordered_wc(void);
566
567void ipath_disarm_piobufs(struct ipath_devdata *, unsigned first,
568 unsigned cnt);
569
570int ipath_create_rcvhdrq(struct ipath_devdata *, struct ipath_portdata *);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700571void ipath_free_pddata(struct ipath_devdata *, struct ipath_portdata *);
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800572
573int ipath_parse_ushort(const char *str, unsigned short *valp);
574
575int ipath_wait_linkstate(struct ipath_devdata *, u32, int);
576void ipath_set_ib_lstate(struct ipath_devdata *, int);
577void ipath_kreceive(struct ipath_devdata *);
578int ipath_setrcvhdrsize(struct ipath_devdata *, unsigned);
579int ipath_reset_device(int);
580void ipath_get_faststats(unsigned long);
581
582/* for use in system calls, where we want to know device type, etc. */
583#define port_fp(fp) ((struct ipath_portdata *) (fp)->private_data)
584
585/*
586 * values for ipath_flags
587 */
588/* The chip is up and initted */
589#define IPATH_INITTED 0x2
590 /* set if any user code has set kr_rcvhdrsize */
591#define IPATH_RCVHDRSZ_SET 0x4
592 /* The chip is present and valid for accesses */
593#define IPATH_PRESENT 0x8
594 /* HT link0 is only 8 bits wide, ignore upper byte crc
595 * errors, etc. */
596#define IPATH_8BIT_IN_HT0 0x10
597 /* HT link1 is only 8 bits wide, ignore upper byte crc
598 * errors, etc. */
599#define IPATH_8BIT_IN_HT1 0x20
600 /* The link is down */
601#define IPATH_LINKDOWN 0x40
602 /* The link level is up (0x11) */
603#define IPATH_LINKINIT 0x80
604 /* The link is in the armed (0x21) state */
605#define IPATH_LINKARMED 0x100
606 /* The link is in the active (0x31) state */
607#define IPATH_LINKACTIVE 0x200
608 /* link current state is unknown */
609#define IPATH_LINKUNK 0x400
610 /* no IB cable, or no device on IB cable */
611#define IPATH_NOCABLE 0x4000
612 /* Supports port zero per packet receive interrupts via
613 * GPIO */
614#define IPATH_GPIO_INTR 0x8000
615 /* uses the coded 4byte TID, not 8 byte */
616#define IPATH_4BYTE_TID 0x10000
617 /* packet/word counters are 32 bit, else those 4 counters
618 * are 64bit */
619#define IPATH_32BITCOUNTERS 0x20000
620 /* can miss port0 rx interrupts */
621#define IPATH_POLL_RX_INTR 0x40000
622#define IPATH_DISABLED 0x80000 /* administratively disabled */
623
624/* portdata flag bit offsets */
625 /* waiting for a packet to arrive */
626#define IPATH_PORT_WAITING_RCV 2
627 /* waiting for a PIO buffer to be available */
628#define IPATH_PORT_WAITING_PIO 3
629
630/* free up any allocated data at closes */
631void ipath_free_data(struct ipath_portdata *dd);
632int ipath_waitfor_mdio_cmdready(struct ipath_devdata *);
633int ipath_waitfor_complete(struct ipath_devdata *, ipath_kreg, u64, u64 *);
634u32 __iomem *ipath_getpiobuf(struct ipath_devdata *, u32 *);
635/* init PE-800-specific func */
636void ipath_init_pe800_funcs(struct ipath_devdata *);
637/* init HT-400-specific func */
638void ipath_init_ht400_funcs(struct ipath_devdata *);
Bryan O'Sullivanf2080fa2006-05-23 11:32:34 -0700639void ipath_get_eeprom_info(struct ipath_devdata *);
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800640u64 ipath_snap_cntr(struct ipath_devdata *, ipath_creg);
641
642/*
643 * number of words used for protocol header if not set by ipath_userinit();
644 */
645#define IPATH_DFLT_RCVHDRSIZE 9
646
647#define IPATH_MDIO_CMD_WRITE 1
648#define IPATH_MDIO_CMD_READ 2
649#define IPATH_MDIO_CLD_DIV 25 /* to get 2.5 Mhz mdio clock */
650#define IPATH_MDIO_CMDVALID 0x40000000 /* bit 30 */
651#define IPATH_MDIO_DATAVALID 0x80000000 /* bit 31 */
652#define IPATH_MDIO_CTRL_STD 0x0
653
654static inline u64 ipath_mdio_req(int cmd, int dev, int reg, int data)
655{
656 return (((u64) IPATH_MDIO_CLD_DIV) << 32) |
657 (cmd << 26) |
658 (dev << 21) |
659 (reg << 16) |
660 (data & 0xFFFF);
661}
662
663 /* signal and fifo status, in bank 31 */
664#define IPATH_MDIO_CTRL_XGXS_REG_8 0x8
665 /* controls loopback, redundancy */
666#define IPATH_MDIO_CTRL_8355_REG_1 0x10
667 /* premph, encdec, etc. */
668#define IPATH_MDIO_CTRL_8355_REG_2 0x11
669 /* Kchars, etc. */
670#define IPATH_MDIO_CTRL_8355_REG_6 0x15
671#define IPATH_MDIO_CTRL_8355_REG_9 0x18
672#define IPATH_MDIO_CTRL_8355_REG_10 0x1D
673
674int ipath_get_user_pages(unsigned long, size_t, struct page **);
675int ipath_get_user_pages_nocopy(unsigned long, struct page **);
676void ipath_release_user_pages(struct page **, size_t);
677void ipath_release_user_pages_on_close(struct page **, size_t);
678int ipath_eeprom_read(struct ipath_devdata *, u8, void *, int);
679int ipath_eeprom_write(struct ipath_devdata *, u8, const void *, int);
680
681/* these are used for the registers that vary with port */
682void ipath_write_kreg_port(const struct ipath_devdata *, ipath_kreg,
683 unsigned, u64);
684u64 ipath_read_kreg64_port(const struct ipath_devdata *, ipath_kreg,
685 unsigned);
686
687/*
688 * We could have a single register get/put routine, that takes a group type,
689 * but this is somewhat clearer and cleaner. It also gives us some error
690 * checking. 64 bit register reads should always work, but are inefficient
691 * on opteron (the northbridge always generates 2 separate HT 32 bit reads),
692 * so we use kreg32 wherever possible. User register and counter register
693 * reads are always 32 bit reads, so only one form of those routines.
694 */
695
696/*
697 * At the moment, none of the s-registers are writable, so no
698 * ipath_write_sreg(), and none of the c-registers are writable, so no
699 * ipath_write_creg().
700 */
701
702/**
703 * ipath_read_ureg32 - read 32-bit virtualized per-port register
704 * @dd: device
705 * @regno: register number
706 * @port: port number
707 *
708 * Return the contents of a register that is virtualized to be per port.
Bryan O'Sullivan685f97e2006-07-01 04:35:53 -0700709 * Returns -1 on errors (not distinguishable from valid contents at
710 * runtime; we may add a separate error variable at some point).
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800711 */
712static inline u32 ipath_read_ureg32(const struct ipath_devdata *dd,
713 ipath_ureg regno, int port)
714{
Bryan O'Sullivanc71c30d2006-04-24 14:23:03 -0700715 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800716 return 0;
717
718 return readl(regno + (u64 __iomem *)
719 (dd->ipath_uregbase +
720 (char __iomem *)dd->ipath_kregbase +
721 dd->ipath_palign * port));
722}
723
724/**
725 * ipath_write_ureg - write 32-bit virtualized per-port register
726 * @dd: device
727 * @regno: register number
728 * @value: value
729 * @port: port
730 *
731 * Write the contents of a register that is virtualized to be per port.
732 */
733static inline void ipath_write_ureg(const struct ipath_devdata *dd,
734 ipath_ureg regno, u64 value, int port)
735{
736 u64 __iomem *ubase = (u64 __iomem *)
737 (dd->ipath_uregbase + (char __iomem *) dd->ipath_kregbase +
738 dd->ipath_palign * port);
739 if (dd->ipath_kregbase)
740 writeq(value, &ubase[regno]);
741}
742
743static inline u32 ipath_read_kreg32(const struct ipath_devdata *dd,
744 ipath_kreg regno)
745{
Bryan O'Sullivanc71c30d2006-04-24 14:23:03 -0700746 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800747 return -1;
748 return readl((u32 __iomem *) & dd->ipath_kregbase[regno]);
749}
750
751static inline u64 ipath_read_kreg64(const struct ipath_devdata *dd,
752 ipath_kreg regno)
753{
Bryan O'Sullivanc71c30d2006-04-24 14:23:03 -0700754 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800755 return -1;
756
757 return readq(&dd->ipath_kregbase[regno]);
758}
759
760static inline void ipath_write_kreg(const struct ipath_devdata *dd,
761 ipath_kreg regno, u64 value)
762{
763 if (dd->ipath_kregbase)
764 writeq(value, &dd->ipath_kregbase[regno]);
765}
766
767static inline u64 ipath_read_creg(const struct ipath_devdata *dd,
768 ipath_sreg regno)
769{
Bryan O'Sullivanc71c30d2006-04-24 14:23:03 -0700770 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800771 return 0;
772
773 return readq(regno + (u64 __iomem *)
774 (dd->ipath_cregbase +
775 (char __iomem *)dd->ipath_kregbase));
776}
777
778static inline u32 ipath_read_creg32(const struct ipath_devdata *dd,
779 ipath_sreg regno)
780{
Bryan O'Sullivanc71c30d2006-04-24 14:23:03 -0700781 if (!dd->ipath_kregbase || !(dd->ipath_flags & IPATH_PRESENT))
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800782 return 0;
783 return readl(regno + (u64 __iomem *)
784 (dd->ipath_cregbase +
785 (char __iomem *)dd->ipath_kregbase));
786}
787
788/*
789 * sysfs interface.
790 */
791
792struct device_driver;
793
794extern const char ipath_core_version[];
795
796int ipath_driver_create_group(struct device_driver *);
797void ipath_driver_remove_group(struct device_driver *);
798
799int ipath_device_create_group(struct device *, struct ipath_devdata *);
800void ipath_device_remove_group(struct device *, struct ipath_devdata *);
801int ipath_expose_reset(struct device *);
802
803int ipath_init_ipathfs(void);
804void ipath_exit_ipathfs(void);
805int ipathfs_add_device(struct ipath_devdata *);
806int ipathfs_remove_device(struct ipath_devdata *);
807
808/*
809 * Flush write combining store buffers (if present) and perform a write
810 * barrier.
811 */
812#if defined(CONFIG_X86_64)
813#define ipath_flush_wc() asm volatile("sfence" ::: "memory")
814#else
815#define ipath_flush_wc() wmb()
816#endif
817
818extern unsigned ipath_debug; /* debugging bit mask */
819
820const char *ipath_get_unit_name(int unit);
821
822extern struct mutex ipath_mutex;
823
824#define IPATH_DRV_NAME "ipath_core"
825#define IPATH_MAJOR 233
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700826#define IPATH_USER_MINOR_BASE 0
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800827#define IPATH_SMA_MINOR 128
Bryan O'Sullivana2acb2f2006-07-01 04:35:52 -0700828#define IPATH_DIAG_MINOR_BASE 129
829#define IPATH_NMINORS 255
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800830
831#define ipath_dev_err(dd,fmt,...) \
832 do { \
833 const struct ipath_devdata *__dd = (dd); \
834 if (__dd->pcidev) \
835 dev_err(&__dd->pcidev->dev, "%s: " fmt, \
836 ipath_get_unit_name(__dd->ipath_unit), \
837 ##__VA_ARGS__); \
838 else \
839 printk(KERN_ERR IPATH_DRV_NAME ": %s: " fmt, \
840 ipath_get_unit_name(__dd->ipath_unit), \
841 ##__VA_ARGS__); \
842 } while (0)
843
844#if _IPATH_DEBUGGING
845
846# define __IPATH_DBG_WHICH(which,fmt,...) \
847 do { \
848 if(unlikely(ipath_debug&(which))) \
849 printk(KERN_DEBUG IPATH_DRV_NAME ": %s: " fmt, \
850 __func__,##__VA_ARGS__); \
851 } while(0)
852
853# define ipath_dbg(fmt,...) \
854 __IPATH_DBG_WHICH(__IPATH_DBG,fmt,##__VA_ARGS__)
855# define ipath_cdbg(which,fmt,...) \
856 __IPATH_DBG_WHICH(__IPATH_##which##DBG,fmt,##__VA_ARGS__)
857
858#else /* ! _IPATH_DEBUGGING */
859
860# define ipath_dbg(fmt,...)
861# define ipath_cdbg(which,fmt,...)
862
863#endif /* _IPATH_DEBUGGING */
864
865#endif /* _IPATH_KERNEL_H */