2 * Copyright (c) 2006, 2007, 2008 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
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:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
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.
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
34 #include <rdma/ib_smi.h>
36 #include "ipath_kernel.h"
37 #include "ipath_verbs.h"
38 #include "ipath_common.h"
40 #define IB_SMP_UNSUP_VERSION cpu_to_be16(0x0004)
41 #define IB_SMP_UNSUP_METHOD cpu_to_be16(0x0008)
42 #define IB_SMP_UNSUP_METH_ATTR cpu_to_be16(0x000C)
43 #define IB_SMP_INVALID_FIELD cpu_to_be16(0x001C)
45 static int reply(struct ib_smp *smp)
48 * The verbs framework will handle the directed/LID route
51 smp->method = IB_MGMT_METHOD_GET_RESP;
52 if (smp->mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE)
53 smp->status |= IB_SMP_DIRECTION;
54 return IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY;
57 static int recv_subn_get_nodedescription(struct ib_smp *smp,
58 struct ib_device *ibdev)
61 smp->status |= IB_SMP_INVALID_FIELD;
63 strncpy(smp->data, ibdev->node_desc, sizeof(smp->data));
81 } __attribute__ ((packed));
83 static int recv_subn_get_nodeinfo(struct ib_smp *smp,
84 struct ib_device *ibdev, u8 port)
86 struct nodeinfo *nip = (struct nodeinfo *)&smp->data;
87 struct ipath_devdata *dd = to_idev(ibdev)->dd;
88 u32 vendor, majrev, minrev;
90 /* GUID 0 is illegal */
91 if (smp->attr_mod || (dd->ipath_guid == 0))
92 smp->status |= IB_SMP_INVALID_FIELD;
94 nip->base_version = 1;
95 nip->class_version = 1;
96 nip->node_type = 1; /* channel adapter */
98 * XXX The num_ports value will need a layer function to get
99 * the value if we ever have more than one IB port on a chip.
100 * We will also need to get the GUID for the port.
102 nip->num_ports = ibdev->phys_port_cnt;
103 /* This is already in network order */
104 nip->sys_guid = to_idev(ibdev)->sys_image_guid;
105 nip->node_guid = dd->ipath_guid;
106 nip->port_guid = dd->ipath_guid;
107 nip->partition_cap = cpu_to_be16(ipath_get_npkeys(dd));
108 nip->device_id = cpu_to_be16(dd->ipath_deviceid);
109 majrev = dd->ipath_majrev;
110 minrev = dd->ipath_minrev;
111 nip->revision = cpu_to_be32((majrev << 16) | minrev);
112 nip->local_port_num = port;
113 vendor = dd->ipath_vendorid;
114 nip->vendor_id[0] = IPATH_SRC_OUI_1;
115 nip->vendor_id[1] = IPATH_SRC_OUI_2;
116 nip->vendor_id[2] = IPATH_SRC_OUI_3;
121 static int recv_subn_get_guidinfo(struct ib_smp *smp,
122 struct ib_device *ibdev)
124 u32 startgx = 8 * be32_to_cpu(smp->attr_mod);
125 __be64 *p = (__be64 *) smp->data;
127 /* 32 blocks of 8 64-bit GUIDs per block */
129 memset(smp->data, 0, sizeof(smp->data));
132 * We only support one GUID for now. If this changes, the
133 * portinfo.guid_cap field needs to be updated too.
136 __be64 g = to_idev(ibdev)->dd->ipath_guid;
138 /* GUID 0 is illegal */
139 smp->status |= IB_SMP_INVALID_FIELD;
141 /* The first is a copy of the read-only HW GUID. */
144 smp->status |= IB_SMP_INVALID_FIELD;
149 static void set_link_width_enabled(struct ipath_devdata *dd, u32 w)
151 (void) dd->ipath_f_set_ib_cfg(dd, IPATH_IB_CFG_LWID_ENB, w);
154 static void set_link_speed_enabled(struct ipath_devdata *dd, u32 s)
156 (void) dd->ipath_f_set_ib_cfg(dd, IPATH_IB_CFG_SPD_ENB, s);
159 static int get_overrunthreshold(struct ipath_devdata *dd)
161 return (dd->ipath_ibcctrl >>
162 INFINIPATH_IBCC_OVERRUNTHRESHOLD_SHIFT) &
163 INFINIPATH_IBCC_OVERRUNTHRESHOLD_MASK;
167 * set_overrunthreshold - set the overrun threshold
168 * @dd: the infinipath device
169 * @n: the new threshold
171 * Note that this will only take effect when the link state changes.
173 static int set_overrunthreshold(struct ipath_devdata *dd, unsigned n)
177 v = (dd->ipath_ibcctrl >> INFINIPATH_IBCC_OVERRUNTHRESHOLD_SHIFT) &
178 INFINIPATH_IBCC_OVERRUNTHRESHOLD_MASK;
181 ~(INFINIPATH_IBCC_OVERRUNTHRESHOLD_MASK <<
182 INFINIPATH_IBCC_OVERRUNTHRESHOLD_SHIFT);
184 (u64) n << INFINIPATH_IBCC_OVERRUNTHRESHOLD_SHIFT;
185 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
191 static int get_phyerrthreshold(struct ipath_devdata *dd)
193 return (dd->ipath_ibcctrl >>
194 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
195 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
199 * set_phyerrthreshold - set the physical error threshold
200 * @dd: the infinipath device
201 * @n: the new threshold
203 * Note that this will only take effect when the link state changes.
205 static int set_phyerrthreshold(struct ipath_devdata *dd, unsigned n)
209 v = (dd->ipath_ibcctrl >> INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT) &
210 INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK;
213 ~(INFINIPATH_IBCC_PHYERRTHRESHOLD_MASK <<
214 INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT);
216 (u64) n << INFINIPATH_IBCC_PHYERRTHRESHOLD_SHIFT;
217 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
224 * get_linkdowndefaultstate - get the default linkdown state
225 * @dd: the infinipath device
227 * Returns zero if the default is POLL, 1 if the default is SLEEP.
229 static int get_linkdowndefaultstate(struct ipath_devdata *dd)
231 return !!(dd->ipath_ibcctrl & INFINIPATH_IBCC_LINKDOWNDEFAULTSTATE);
234 static int recv_subn_get_portinfo(struct ib_smp *smp,
235 struct ib_device *ibdev, u8 port)
237 struct ipath_ibdev *dev;
238 struct ipath_devdata *dd;
239 struct ib_port_info *pip = (struct ib_port_info *)smp->data;
245 if (be32_to_cpu(smp->attr_mod) > ibdev->phys_port_cnt) {
246 smp->status |= IB_SMP_INVALID_FIELD;
251 dev = to_idev(ibdev);
254 /* Clear all fields. Only set the non-zero fields. */
255 memset(smp->data, 0, sizeof(smp->data));
257 /* Only return the mkey if the protection field allows it. */
258 if (smp->method == IB_MGMT_METHOD_SET || dev->mkey == smp->mkey ||
260 pip->mkey = dev->mkey;
261 pip->gid_prefix = dev->gid_prefix;
263 pip->lid = lid ? cpu_to_be16(lid) : IB_LID_PERMISSIVE;
264 pip->sm_lid = cpu_to_be16(dev->sm_lid);
265 pip->cap_mask = cpu_to_be32(dev->port_cap_flags);
266 /* pip->diag_code; */
267 pip->mkey_lease_period = cpu_to_be16(dev->mkey_lease_period);
268 pip->local_port_num = port;
269 pip->link_width_enabled = dd->ipath_link_width_enabled;
270 pip->link_width_supported = dd->ipath_link_width_supported;
271 pip->link_width_active = dd->ipath_link_width_active;
272 pip->linkspeed_portstate = dd->ipath_link_speed_supported << 4;
273 ibcstat = dd->ipath_lastibcstat;
274 /* map LinkState to IB portinfo values. */
275 pip->linkspeed_portstate |= ipath_ib_linkstate(dd, ibcstat) + 1;
277 pip->portphysstate_linkdown =
278 (ipath_cvt_physportstate[ibcstat & dd->ibcs_lts_mask] << 4) |
279 (get_linkdowndefaultstate(dd) ? 1 : 2);
280 pip->mkeyprot_resv_lmc = (dev->mkeyprot << 6) | dd->ipath_lmc;
281 pip->linkspeedactive_enabled = (dd->ipath_link_speed_active << 4) |
282 dd->ipath_link_speed_enabled;
283 switch (dd->ipath_ibmtu) {
299 default: /* oops, something is wrong */
303 pip->neighbormtu_mastersmsl = (mtu << 4) | dev->sm_sl;
304 pip->vlcap_inittype = 0x10; /* VLCap = VL0, InitType = 0 */
305 pip->vl_high_limit = dev->vl_high_limit;
306 /* pip->vl_arb_high_cap; // only one VL */
307 /* pip->vl_arb_low_cap; // only one VL */
308 /* InitTypeReply = 0 */
309 /* our mtu cap depends on whether 4K MTU enabled or not */
310 pip->inittypereply_mtucap = ipath_mtu4096 ? IB_MTU_4096 : IB_MTU_2048;
311 /* HCAs ignore VLStallCount and HOQLife */
312 /* pip->vlstallcnt_hoqlife; */
313 pip->operationalvl_pei_peo_fpi_fpo = 0x10; /* OVLs = 1 */
314 pip->mkey_violations = cpu_to_be16(dev->mkey_violations);
315 /* P_KeyViolations are counted by hardware. */
316 pip->pkey_violations =
317 cpu_to_be16((ipath_get_cr_errpkey(dd) -
318 dev->z_pkey_violations) & 0xFFFF);
319 pip->qkey_violations = cpu_to_be16(dev->qkey_violations);
320 /* Only the hardware GUID is supported for now */
322 pip->clientrereg_resv_subnetto = dev->subnet_timeout;
323 /* 32.768 usec. response time (guessing) */
324 pip->resv_resptimevalue = 3;
325 pip->localphyerrors_overrunerrors =
326 (get_phyerrthreshold(dd) << 4) |
327 get_overrunthreshold(dd);
328 /* pip->max_credit_hint; */
329 if (dev->port_cap_flags & IB_PORT_LINK_LATENCY_SUP) {
332 v = dd->ipath_f_get_ib_cfg(dd, IPATH_IB_CFG_LINKLATENCY);
333 pip->link_roundtrip_latency[0] = v >> 16;
334 pip->link_roundtrip_latency[1] = v >> 8;
335 pip->link_roundtrip_latency[2] = v;
345 * get_pkeys - return the PKEY table for port 0
346 * @dd: the infinipath device
347 * @pkeys: the pkey table is placed here
349 static int get_pkeys(struct ipath_devdata *dd, u16 * pkeys)
351 /* always a kernel port, no locking needed */
352 struct ipath_portdata *pd = dd->ipath_pd[0];
354 memcpy(pkeys, pd->port_pkeys, sizeof(pd->port_pkeys));
359 static int recv_subn_get_pkeytable(struct ib_smp *smp,
360 struct ib_device *ibdev)
362 u32 startpx = 32 * (be32_to_cpu(smp->attr_mod) & 0xffff);
363 u16 *p = (u16 *) smp->data;
364 __be16 *q = (__be16 *) smp->data;
366 /* 64 blocks of 32 16-bit P_Key entries */
368 memset(smp->data, 0, sizeof(smp->data));
370 struct ipath_ibdev *dev = to_idev(ibdev);
371 unsigned i, n = ipath_get_npkeys(dev->dd);
373 get_pkeys(dev->dd, p);
375 for (i = 0; i < n; i++)
376 q[i] = cpu_to_be16(p[i]);
378 smp->status |= IB_SMP_INVALID_FIELD;
383 static int recv_subn_set_guidinfo(struct ib_smp *smp,
384 struct ib_device *ibdev)
386 /* The only GUID we support is the first read-only entry. */
387 return recv_subn_get_guidinfo(smp, ibdev);
391 * set_linkdowndefaultstate - set the default linkdown state
392 * @dd: the infinipath device
393 * @sleep: the new state
395 * Note that this will only take effect when the link state changes.
397 static int set_linkdowndefaultstate(struct ipath_devdata *dd, int sleep)
400 dd->ipath_ibcctrl |= INFINIPATH_IBCC_LINKDOWNDEFAULTSTATE;
402 dd->ipath_ibcctrl &= ~INFINIPATH_IBCC_LINKDOWNDEFAULTSTATE;
403 ipath_write_kreg(dd, dd->ipath_kregs->kr_ibcctrl,
409 * recv_subn_set_portinfo - set port information
410 * @smp: the incoming SM packet
411 * @ibdev: the infiniband device
412 * @port: the port on the device
414 * Set Portinfo (see ch. 14.2.5.6).
416 static int recv_subn_set_portinfo(struct ib_smp *smp,
417 struct ib_device *ibdev, u8 port)
419 struct ib_port_info *pip = (struct ib_port_info *)smp->data;
420 struct ib_event event;
421 struct ipath_ibdev *dev;
422 struct ipath_devdata *dd;
423 char clientrereg = 0;
432 if (be32_to_cpu(smp->attr_mod) > ibdev->phys_port_cnt)
435 dev = to_idev(ibdev);
437 event.device = ibdev;
438 event.element.port_num = port;
440 dev->mkey = pip->mkey;
441 dev->gid_prefix = pip->gid_prefix;
442 dev->mkey_lease_period = be16_to_cpu(pip->mkey_lease_period);
444 lid = be16_to_cpu(pip->lid);
445 if (dd->ipath_lid != lid ||
446 dd->ipath_lmc != (pip->mkeyprot_resv_lmc & 7)) {
447 /* Must be a valid unicast LID address. */
448 if (lid == 0 || lid >= IPATH_MULTICAST_LID_BASE)
450 ipath_set_lid(dd, lid, pip->mkeyprot_resv_lmc & 7);
451 event.event = IB_EVENT_LID_CHANGE;
452 ib_dispatch_event(&event);
455 smlid = be16_to_cpu(pip->sm_lid);
456 if (smlid != dev->sm_lid) {
457 /* Must be a valid unicast LID address. */
458 if (smlid == 0 || smlid >= IPATH_MULTICAST_LID_BASE)
461 event.event = IB_EVENT_SM_CHANGE;
462 ib_dispatch_event(&event);
465 /* Allow 1x or 4x to be set (see 14.2.6.6). */
466 lwe = pip->link_width_enabled;
469 lwe = dd->ipath_link_width_supported;
470 else if (lwe >= 16 || (lwe & ~dd->ipath_link_width_supported))
472 set_link_width_enabled(dd, lwe);
475 /* Allow 2.5 or 5.0 Gbs. */
476 lse = pip->linkspeedactive_enabled & 0xF;
479 lse = dd->ipath_link_speed_supported;
480 else if (lse >= 8 || (lse & ~dd->ipath_link_speed_supported))
482 set_link_speed_enabled(dd, lse);
485 /* Set link down default state. */
486 switch (pip->portphysstate_linkdown & 0xF) {
490 if (set_linkdowndefaultstate(dd, 1))
494 if (set_linkdowndefaultstate(dd, 0))
501 dev->mkeyprot = pip->mkeyprot_resv_lmc >> 6;
502 dev->vl_high_limit = pip->vl_high_limit;
504 switch ((pip->neighbormtu_mastersmsl >> 4) & 0xF) {
523 /* XXX We have already partially updated our state! */
526 ipath_set_mtu(dd, mtu);
528 dev->sm_sl = pip->neighbormtu_mastersmsl & 0xF;
530 /* We only support VL0 */
531 if (((pip->operationalvl_pei_peo_fpi_fpo >> 4) & 0xF) > 1)
534 if (pip->mkey_violations == 0)
535 dev->mkey_violations = 0;
538 * Hardware counter can't be reset so snapshot and subtract
541 if (pip->pkey_violations == 0)
542 dev->z_pkey_violations = ipath_get_cr_errpkey(dd);
544 if (pip->qkey_violations == 0)
545 dev->qkey_violations = 0;
547 ore = pip->localphyerrors_overrunerrors;
548 if (set_phyerrthreshold(dd, (ore >> 4) & 0xF))
551 if (set_overrunthreshold(dd, (ore & 0xF)))
554 dev->subnet_timeout = pip->clientrereg_resv_subnetto & 0x1F;
556 if (pip->clientrereg_resv_subnetto & 0x80) {
558 event.event = IB_EVENT_CLIENT_REREGISTER;
559 ib_dispatch_event(&event);
563 * Do the port state change now that the other link parameters
565 * Changing the port physical state only makes sense if the link
566 * is down or is being set to down.
568 state = pip->linkspeed_portstate & 0xF;
569 lstate = (pip->portphysstate_linkdown >> 4) & 0xF;
570 if (lstate && !(state == IB_PORT_DOWN || state == IB_PORT_NOP))
574 * Only state changes of DOWN, ARM, and ACTIVE are valid
575 * and must be in the correct state to take effect (see 7.2.6).
584 lstate = IPATH_IB_LINKDOWN_ONLY;
585 else if (lstate == 1)
586 lstate = IPATH_IB_LINKDOWN_SLEEP;
587 else if (lstate == 2)
588 lstate = IPATH_IB_LINKDOWN;
589 else if (lstate == 3)
590 lstate = IPATH_IB_LINKDOWN_DISABLE;
593 ipath_set_linkstate(dd, lstate);
594 if (lstate == IPATH_IB_LINKDOWN_DISABLE) {
595 ret = IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
598 ipath_wait_linkstate(dd, IPATH_LINKINIT | IPATH_LINKARMED |
599 IPATH_LINKACTIVE, 1000);
602 ipath_set_linkstate(dd, IPATH_IB_LINKARM);
605 ipath_set_linkstate(dd, IPATH_IB_LINKACTIVE);
608 /* XXX We have already partially updated our state! */
612 ret = recv_subn_get_portinfo(smp, ibdev, port);
615 pip->clientrereg_resv_subnetto |= 0x80;
620 smp->status |= IB_SMP_INVALID_FIELD;
621 ret = recv_subn_get_portinfo(smp, ibdev, port);
628 * rm_pkey - decrecment the reference count for the given PKEY
629 * @dd: the infinipath device
630 * @key: the PKEY index
632 * Return true if this was the last reference and the hardware table entry
633 * needs to be changed.
635 static int rm_pkey(struct ipath_devdata *dd, u16 key)
640 for (i = 0; i < ARRAY_SIZE(dd->ipath_pkeys); i++) {
641 if (dd->ipath_pkeys[i] != key)
643 if (atomic_dec_and_test(&dd->ipath_pkeyrefs[i])) {
644 dd->ipath_pkeys[i] = 0;
658 * add_pkey - add the given PKEY to the hardware table
659 * @dd: the infinipath device
662 * Return an error code if unable to add the entry, zero if no change,
663 * or 1 if the hardware PKEY register needs to be updated.
665 static int add_pkey(struct ipath_devdata *dd, u16 key)
668 u16 lkey = key & 0x7FFF;
672 if (lkey == 0x7FFF) {
677 /* Look for an empty slot or a matching PKEY. */
678 for (i = 0; i < ARRAY_SIZE(dd->ipath_pkeys); i++) {
679 if (!dd->ipath_pkeys[i]) {
683 /* If it matches exactly, try to increment the ref count */
684 if (dd->ipath_pkeys[i] == key) {
685 if (atomic_inc_return(&dd->ipath_pkeyrefs[i]) > 1) {
689 /* Lost the race. Look for an empty slot below. */
690 atomic_dec(&dd->ipath_pkeyrefs[i]);
694 * It makes no sense to have both the limited and unlimited
695 * PKEY set at the same time since the unlimited one will
696 * disable the limited one.
698 if ((dd->ipath_pkeys[i] & 0x7FFF) == lkey) {
707 for (i = 0; i < ARRAY_SIZE(dd->ipath_pkeys); i++) {
708 if (!dd->ipath_pkeys[i] &&
709 atomic_inc_return(&dd->ipath_pkeyrefs[i]) == 1) {
710 /* for ipathstats, etc. */
711 ipath_stats.sps_pkeys[i] = lkey;
712 dd->ipath_pkeys[i] = key;
724 * set_pkeys - set the PKEY table for port 0
725 * @dd: the infinipath device
726 * @pkeys: the PKEY table
728 static int set_pkeys(struct ipath_devdata *dd, u16 *pkeys)
730 struct ipath_portdata *pd;
734 /* always a kernel port, no locking needed */
735 pd = dd->ipath_pd[0];
737 for (i = 0; i < ARRAY_SIZE(pd->port_pkeys); i++) {
739 u16 okey = pd->port_pkeys[i];
744 * The value of this PKEY table entry is changing.
745 * Remove the old entry in the hardware's array of PKEYs.
748 changed |= rm_pkey(dd, okey);
750 int ret = add_pkey(dd, key);
757 pd->port_pkeys[i] = key;
762 pkey = (u64) dd->ipath_pkeys[0] |
763 ((u64) dd->ipath_pkeys[1] << 16) |
764 ((u64) dd->ipath_pkeys[2] << 32) |
765 ((u64) dd->ipath_pkeys[3] << 48);
766 ipath_cdbg(VERBOSE, "p0 new pkey reg %llx\n",
767 (unsigned long long) pkey);
768 ipath_write_kreg(dd, dd->ipath_kregs->kr_partitionkey,
774 static int recv_subn_set_pkeytable(struct ib_smp *smp,
775 struct ib_device *ibdev)
777 u32 startpx = 32 * (be32_to_cpu(smp->attr_mod) & 0xffff);
778 __be16 *p = (__be16 *) smp->data;
779 u16 *q = (u16 *) smp->data;
780 struct ipath_ibdev *dev = to_idev(ibdev);
781 unsigned i, n = ipath_get_npkeys(dev->dd);
783 for (i = 0; i < n; i++)
784 q[i] = be16_to_cpu(p[i]);
786 if (startpx != 0 || set_pkeys(dev->dd, q) != 0)
787 smp->status |= IB_SMP_INVALID_FIELD;
789 return recv_subn_get_pkeytable(smp, ibdev);
792 #define IB_PMA_CLASS_PORT_INFO cpu_to_be16(0x0001)
793 #define IB_PMA_PORT_SAMPLES_CONTROL cpu_to_be16(0x0010)
794 #define IB_PMA_PORT_SAMPLES_RESULT cpu_to_be16(0x0011)
795 #define IB_PMA_PORT_COUNTERS cpu_to_be16(0x0012)
796 #define IB_PMA_PORT_COUNTERS_EXT cpu_to_be16(0x001D)
797 #define IB_PMA_PORT_SAMPLES_RESULT_EXT cpu_to_be16(0x001E)
812 } __attribute__ ((packed));
814 struct ib_pma_classportinfo {
819 u8 resp_time_value; /* only lower 5 bits */
820 union ib_gid redirect_gid;
821 __be32 redirect_tc_sl_fl; /* 8, 4, 20 bits respectively */
823 __be16 redirect_pkey;
824 __be32 redirect_qp; /* only lower 24 bits */
825 __be32 redirect_qkey;
826 union ib_gid trap_gid;
827 __be32 trap_tc_sl_fl; /* 8, 4, 20 bits respectively */
830 __be32 trap_hl_qp; /* 8, 24 bits respectively */
832 } __attribute__ ((packed));
834 struct ib_pma_portsamplescontrol {
838 u8 counter_width; /* only lower 3 bits */
839 __be32 counter_mask0_9; /* 2, 10 * 3, bits */
840 __be16 counter_mask10_14; /* 1, 5 * 3, bits */
841 u8 sample_mechanisms;
842 u8 sample_status; /* only lower 2 bits */
846 __be32 sample_interval;
848 __be16 counter_select[15];
849 } __attribute__ ((packed));
851 struct ib_pma_portsamplesresult {
853 __be16 sample_status; /* only lower 2 bits */
855 } __attribute__ ((packed));
857 struct ib_pma_portsamplesresult_ext {
859 __be16 sample_status; /* only lower 2 bits */
860 __be32 extended_width; /* only upper 2 bits */
862 } __attribute__ ((packed));
864 struct ib_pma_portcounters {
867 __be16 counter_select;
868 __be16 symbol_error_counter;
869 u8 link_error_recovery_counter;
870 u8 link_downed_counter;
871 __be16 port_rcv_errors;
872 __be16 port_rcv_remphys_errors;
873 __be16 port_rcv_switch_relay_errors;
874 __be16 port_xmit_discards;
875 u8 port_xmit_constraint_errors;
876 u8 port_rcv_constraint_errors;
878 u8 lli_ebor_errors; /* 4, 4, bits */
881 __be32 port_xmit_data;
882 __be32 port_rcv_data;
883 __be32 port_xmit_packets;
884 __be32 port_rcv_packets;
885 } __attribute__ ((packed));
887 #define IB_PMA_SEL_SYMBOL_ERROR cpu_to_be16(0x0001)
888 #define IB_PMA_SEL_LINK_ERROR_RECOVERY cpu_to_be16(0x0002)
889 #define IB_PMA_SEL_LINK_DOWNED cpu_to_be16(0x0004)
890 #define IB_PMA_SEL_PORT_RCV_ERRORS cpu_to_be16(0x0008)
891 #define IB_PMA_SEL_PORT_RCV_REMPHYS_ERRORS cpu_to_be16(0x0010)
892 #define IB_PMA_SEL_PORT_XMIT_DISCARDS cpu_to_be16(0x0040)
893 #define IB_PMA_SEL_LOCAL_LINK_INTEGRITY_ERRORS cpu_to_be16(0x0200)
894 #define IB_PMA_SEL_EXCESSIVE_BUFFER_OVERRUNS cpu_to_be16(0x0400)
895 #define IB_PMA_SEL_PORT_VL15_DROPPED cpu_to_be16(0x0800)
896 #define IB_PMA_SEL_PORT_XMIT_DATA cpu_to_be16(0x1000)
897 #define IB_PMA_SEL_PORT_RCV_DATA cpu_to_be16(0x2000)
898 #define IB_PMA_SEL_PORT_XMIT_PACKETS cpu_to_be16(0x4000)
899 #define IB_PMA_SEL_PORT_RCV_PACKETS cpu_to_be16(0x8000)
901 struct ib_pma_portcounters_ext {
904 __be16 counter_select;
906 __be64 port_xmit_data;
907 __be64 port_rcv_data;
908 __be64 port_xmit_packets;
909 __be64 port_rcv_packets;
910 __be64 port_unicast_xmit_packets;
911 __be64 port_unicast_rcv_packets;
912 __be64 port_multicast_xmit_packets;
913 __be64 port_multicast_rcv_packets;
914 } __attribute__ ((packed));
916 #define IB_PMA_SELX_PORT_XMIT_DATA cpu_to_be16(0x0001)
917 #define IB_PMA_SELX_PORT_RCV_DATA cpu_to_be16(0x0002)
918 #define IB_PMA_SELX_PORT_XMIT_PACKETS cpu_to_be16(0x0004)
919 #define IB_PMA_SELX_PORT_RCV_PACKETS cpu_to_be16(0x0008)
920 #define IB_PMA_SELX_PORT_UNI_XMIT_PACKETS cpu_to_be16(0x0010)
921 #define IB_PMA_SELX_PORT_UNI_RCV_PACKETS cpu_to_be16(0x0020)
922 #define IB_PMA_SELX_PORT_MULTI_XMIT_PACKETS cpu_to_be16(0x0040)
923 #define IB_PMA_SELX_PORT_MULTI_RCV_PACKETS cpu_to_be16(0x0080)
925 static int recv_pma_get_classportinfo(struct ib_perf *pmp)
927 struct ib_pma_classportinfo *p =
928 (struct ib_pma_classportinfo *)pmp->data;
930 memset(pmp->data, 0, sizeof(pmp->data));
932 if (pmp->attr_mod != 0)
933 pmp->status |= IB_SMP_INVALID_FIELD;
935 /* Indicate AllPortSelect is valid (only one port anyway) */
936 p->cap_mask = cpu_to_be16(1 << 8);
938 p->class_version = 1;
940 * Expected response time is 4.096 usec. * 2^18 == 1.073741824
943 p->resp_time_value = 18;
945 return reply((struct ib_smp *) pmp);
949 * The PortSamplesControl.CounterMasks field is an array of 3 bit fields
950 * which specify the N'th counter's capabilities. See ch. 16.1.3.2.
951 * We support 5 counters which only count the mandatory quantities.
953 #define COUNTER_MASK(q, n) (q << ((9 - n) * 3))
954 #define COUNTER_MASK0_9 cpu_to_be32(COUNTER_MASK(1, 0) | \
955 COUNTER_MASK(1, 1) | \
956 COUNTER_MASK(1, 2) | \
957 COUNTER_MASK(1, 3) | \
960 static int recv_pma_get_portsamplescontrol(struct ib_perf *pmp,
961 struct ib_device *ibdev, u8 port)
963 struct ib_pma_portsamplescontrol *p =
964 (struct ib_pma_portsamplescontrol *)pmp->data;
965 struct ipath_ibdev *dev = to_idev(ibdev);
966 struct ipath_cregs const *crp = dev->dd->ipath_cregs;
968 u8 port_select = p->port_select;
970 memset(pmp->data, 0, sizeof(pmp->data));
972 p->port_select = port_select;
973 if (pmp->attr_mod != 0 ||
974 (port_select != port && port_select != 0xFF))
975 pmp->status |= IB_SMP_INVALID_FIELD;
977 * Ticks are 10x the link transfer period which for 2.5Gbs is 4
978 * nsec. 0 == 4 nsec., 1 == 8 nsec., ..., 255 == 1020 nsec. Sample
979 * intervals are counted in ticks. Since we use Linux timers, that
980 * count in jiffies, we can't sample for less than 1000 ticks if HZ
981 * == 1000 (4000 ticks if HZ is 250). link_speed_active returns 2 for
982 * DDR, 1 for SDR, set the tick to 1 for DDR, 0 for SDR on chips that
983 * have hardware support for delaying packets.
986 p->tick = dev->dd->ipath_link_speed_active - 1;
988 p->tick = 250; /* 1 usec. */
989 p->counter_width = 4; /* 32 bit counters */
990 p->counter_mask0_9 = COUNTER_MASK0_9;
991 spin_lock_irqsave(&dev->pending_lock, flags);
993 p->sample_status = ipath_read_creg32(dev->dd, crp->cr_psstat);
995 p->sample_status = dev->pma_sample_status;
996 p->sample_start = cpu_to_be32(dev->pma_sample_start);
997 p->sample_interval = cpu_to_be32(dev->pma_sample_interval);
998 p->tag = cpu_to_be16(dev->pma_tag);
999 p->counter_select[0] = dev->pma_counter_select[0];
1000 p->counter_select[1] = dev->pma_counter_select[1];
1001 p->counter_select[2] = dev->pma_counter_select[2];
1002 p->counter_select[3] = dev->pma_counter_select[3];
1003 p->counter_select[4] = dev->pma_counter_select[4];
1004 spin_unlock_irqrestore(&dev->pending_lock, flags);
1006 return reply((struct ib_smp *) pmp);
1009 static int recv_pma_set_portsamplescontrol(struct ib_perf *pmp,
1010 struct ib_device *ibdev, u8 port)
1012 struct ib_pma_portsamplescontrol *p =
1013 (struct ib_pma_portsamplescontrol *)pmp->data;
1014 struct ipath_ibdev *dev = to_idev(ibdev);
1015 struct ipath_cregs const *crp = dev->dd->ipath_cregs;
1016 unsigned long flags;
1020 if (pmp->attr_mod != 0 ||
1021 (p->port_select != port && p->port_select != 0xFF)) {
1022 pmp->status |= IB_SMP_INVALID_FIELD;
1023 ret = reply((struct ib_smp *) pmp);
1027 spin_lock_irqsave(&dev->pending_lock, flags);
1029 status = ipath_read_creg32(dev->dd, crp->cr_psstat);
1031 status = dev->pma_sample_status;
1032 if (status == IB_PMA_SAMPLE_STATUS_DONE) {
1033 dev->pma_sample_start = be32_to_cpu(p->sample_start);
1034 dev->pma_sample_interval = be32_to_cpu(p->sample_interval);
1035 dev->pma_tag = be16_to_cpu(p->tag);
1036 dev->pma_counter_select[0] = p->counter_select[0];
1037 dev->pma_counter_select[1] = p->counter_select[1];
1038 dev->pma_counter_select[2] = p->counter_select[2];
1039 dev->pma_counter_select[3] = p->counter_select[3];
1040 dev->pma_counter_select[4] = p->counter_select[4];
1041 if (crp->cr_psstat) {
1042 ipath_write_creg(dev->dd, crp->cr_psinterval,
1043 dev->pma_sample_interval);
1044 ipath_write_creg(dev->dd, crp->cr_psstart,
1045 dev->pma_sample_start);
1047 dev->pma_sample_status = IB_PMA_SAMPLE_STATUS_STARTED;
1049 spin_unlock_irqrestore(&dev->pending_lock, flags);
1051 ret = recv_pma_get_portsamplescontrol(pmp, ibdev, port);
1057 static u64 get_counter(struct ipath_ibdev *dev,
1058 struct ipath_cregs const *crp,
1064 case IB_PMA_PORT_XMIT_DATA:
1065 ret = (crp->cr_psxmitdatacount) ?
1066 ipath_read_creg32(dev->dd, crp->cr_psxmitdatacount) :
1069 case IB_PMA_PORT_RCV_DATA:
1070 ret = (crp->cr_psrcvdatacount) ?
1071 ipath_read_creg32(dev->dd, crp->cr_psrcvdatacount) :
1074 case IB_PMA_PORT_XMIT_PKTS:
1075 ret = (crp->cr_psxmitpktscount) ?
1076 ipath_read_creg32(dev->dd, crp->cr_psxmitpktscount) :
1079 case IB_PMA_PORT_RCV_PKTS:
1080 ret = (crp->cr_psrcvpktscount) ?
1081 ipath_read_creg32(dev->dd, crp->cr_psrcvpktscount) :
1084 case IB_PMA_PORT_XMIT_WAIT:
1085 ret = (crp->cr_psxmitwaitcount) ?
1086 ipath_read_creg32(dev->dd, crp->cr_psxmitwaitcount) :
1087 dev->ipath_xmit_wait;
1096 static int recv_pma_get_portsamplesresult(struct ib_perf *pmp,
1097 struct ib_device *ibdev)
1099 struct ib_pma_portsamplesresult *p =
1100 (struct ib_pma_portsamplesresult *)pmp->data;
1101 struct ipath_ibdev *dev = to_idev(ibdev);
1102 struct ipath_cregs const *crp = dev->dd->ipath_cregs;
1106 memset(pmp->data, 0, sizeof(pmp->data));
1107 p->tag = cpu_to_be16(dev->pma_tag);
1109 status = ipath_read_creg32(dev->dd, crp->cr_psstat);
1111 status = dev->pma_sample_status;
1112 p->sample_status = cpu_to_be16(status);
1113 for (i = 0; i < ARRAY_SIZE(dev->pma_counter_select); i++)
1114 p->counter[i] = (status != IB_PMA_SAMPLE_STATUS_DONE) ? 0 :
1116 get_counter(dev, crp, dev->pma_counter_select[i]));
1118 return reply((struct ib_smp *) pmp);
1121 static int recv_pma_get_portsamplesresult_ext(struct ib_perf *pmp,
1122 struct ib_device *ibdev)
1124 struct ib_pma_portsamplesresult_ext *p =
1125 (struct ib_pma_portsamplesresult_ext *)pmp->data;
1126 struct ipath_ibdev *dev = to_idev(ibdev);
1127 struct ipath_cregs const *crp = dev->dd->ipath_cregs;
1131 memset(pmp->data, 0, sizeof(pmp->data));
1132 p->tag = cpu_to_be16(dev->pma_tag);
1134 status = ipath_read_creg32(dev->dd, crp->cr_psstat);
1136 status = dev->pma_sample_status;
1137 p->sample_status = cpu_to_be16(status);
1139 p->extended_width = cpu_to_be32(0x80000000);
1140 for (i = 0; i < ARRAY_SIZE(dev->pma_counter_select); i++)
1141 p->counter[i] = (status != IB_PMA_SAMPLE_STATUS_DONE) ? 0 :
1143 get_counter(dev, crp, dev->pma_counter_select[i]));
1145 return reply((struct ib_smp *) pmp);
1148 static int recv_pma_get_portcounters(struct ib_perf *pmp,
1149 struct ib_device *ibdev, u8 port)
1151 struct ib_pma_portcounters *p = (struct ib_pma_portcounters *)
1153 struct ipath_ibdev *dev = to_idev(ibdev);
1154 struct ipath_verbs_counters cntrs;
1155 u8 port_select = p->port_select;
1157 ipath_get_counters(dev->dd, &cntrs);
1159 /* Adjust counters for any resets done. */
1160 cntrs.symbol_error_counter -= dev->z_symbol_error_counter;
1161 cntrs.link_error_recovery_counter -=
1162 dev->z_link_error_recovery_counter;
1163 cntrs.link_downed_counter -= dev->z_link_downed_counter;
1164 cntrs.port_rcv_errors += dev->rcv_errors;
1165 cntrs.port_rcv_errors -= dev->z_port_rcv_errors;
1166 cntrs.port_rcv_remphys_errors -= dev->z_port_rcv_remphys_errors;
1167 cntrs.port_xmit_discards -= dev->z_port_xmit_discards;
1168 cntrs.port_xmit_data -= dev->z_port_xmit_data;
1169 cntrs.port_rcv_data -= dev->z_port_rcv_data;
1170 cntrs.port_xmit_packets -= dev->z_port_xmit_packets;
1171 cntrs.port_rcv_packets -= dev->z_port_rcv_packets;
1172 cntrs.local_link_integrity_errors -=
1173 dev->z_local_link_integrity_errors;
1174 cntrs.excessive_buffer_overrun_errors -=
1175 dev->z_excessive_buffer_overrun_errors;
1176 cntrs.vl15_dropped -= dev->z_vl15_dropped;
1177 cntrs.vl15_dropped += dev->n_vl15_dropped;
1179 memset(pmp->data, 0, sizeof(pmp->data));
1181 p->port_select = port_select;
1182 if (pmp->attr_mod != 0 ||
1183 (port_select != port && port_select != 0xFF))
1184 pmp->status |= IB_SMP_INVALID_FIELD;
1186 if (cntrs.symbol_error_counter > 0xFFFFUL)
1187 p->symbol_error_counter = cpu_to_be16(0xFFFF);
1189 p->symbol_error_counter =
1190 cpu_to_be16((u16)cntrs.symbol_error_counter);
1191 if (cntrs.link_error_recovery_counter > 0xFFUL)
1192 p->link_error_recovery_counter = 0xFF;
1194 p->link_error_recovery_counter =
1195 (u8)cntrs.link_error_recovery_counter;
1196 if (cntrs.link_downed_counter > 0xFFUL)
1197 p->link_downed_counter = 0xFF;
1199 p->link_downed_counter = (u8)cntrs.link_downed_counter;
1200 if (cntrs.port_rcv_errors > 0xFFFFUL)
1201 p->port_rcv_errors = cpu_to_be16(0xFFFF);
1203 p->port_rcv_errors =
1204 cpu_to_be16((u16) cntrs.port_rcv_errors);
1205 if (cntrs.port_rcv_remphys_errors > 0xFFFFUL)
1206 p->port_rcv_remphys_errors = cpu_to_be16(0xFFFF);
1208 p->port_rcv_remphys_errors =
1209 cpu_to_be16((u16)cntrs.port_rcv_remphys_errors);
1210 if (cntrs.port_xmit_discards > 0xFFFFUL)
1211 p->port_xmit_discards = cpu_to_be16(0xFFFF);
1213 p->port_xmit_discards =
1214 cpu_to_be16((u16)cntrs.port_xmit_discards);
1215 if (cntrs.local_link_integrity_errors > 0xFUL)
1216 cntrs.local_link_integrity_errors = 0xFUL;
1217 if (cntrs.excessive_buffer_overrun_errors > 0xFUL)
1218 cntrs.excessive_buffer_overrun_errors = 0xFUL;
1219 p->lli_ebor_errors = (cntrs.local_link_integrity_errors << 4) |
1220 cntrs.excessive_buffer_overrun_errors;
1221 if (cntrs.vl15_dropped > 0xFFFFUL)
1222 p->vl15_dropped = cpu_to_be16(0xFFFF);
1224 p->vl15_dropped = cpu_to_be16((u16)cntrs.vl15_dropped);
1225 if (cntrs.port_xmit_data > 0xFFFFFFFFUL)
1226 p->port_xmit_data = cpu_to_be32(0xFFFFFFFF);
1228 p->port_xmit_data = cpu_to_be32((u32)cntrs.port_xmit_data);
1229 if (cntrs.port_rcv_data > 0xFFFFFFFFUL)
1230 p->port_rcv_data = cpu_to_be32(0xFFFFFFFF);
1232 p->port_rcv_data = cpu_to_be32((u32)cntrs.port_rcv_data);
1233 if (cntrs.port_xmit_packets > 0xFFFFFFFFUL)
1234 p->port_xmit_packets = cpu_to_be32(0xFFFFFFFF);
1236 p->port_xmit_packets =
1237 cpu_to_be32((u32)cntrs.port_xmit_packets);
1238 if (cntrs.port_rcv_packets > 0xFFFFFFFFUL)
1239 p->port_rcv_packets = cpu_to_be32(0xFFFFFFFF);
1241 p->port_rcv_packets =
1242 cpu_to_be32((u32) cntrs.port_rcv_packets);
1244 return reply((struct ib_smp *) pmp);
1247 static int recv_pma_get_portcounters_ext(struct ib_perf *pmp,
1248 struct ib_device *ibdev, u8 port)
1250 struct ib_pma_portcounters_ext *p =
1251 (struct ib_pma_portcounters_ext *)pmp->data;
1252 struct ipath_ibdev *dev = to_idev(ibdev);
1253 u64 swords, rwords, spkts, rpkts, xwait;
1254 u8 port_select = p->port_select;
1256 ipath_snapshot_counters(dev->dd, &swords, &rwords, &spkts,
1259 /* Adjust counters for any resets done. */
1260 swords -= dev->z_port_xmit_data;
1261 rwords -= dev->z_port_rcv_data;
1262 spkts -= dev->z_port_xmit_packets;
1263 rpkts -= dev->z_port_rcv_packets;
1265 memset(pmp->data, 0, sizeof(pmp->data));
1267 p->port_select = port_select;
1268 if (pmp->attr_mod != 0 ||
1269 (port_select != port && port_select != 0xFF))
1270 pmp->status |= IB_SMP_INVALID_FIELD;
1272 p->port_xmit_data = cpu_to_be64(swords);
1273 p->port_rcv_data = cpu_to_be64(rwords);
1274 p->port_xmit_packets = cpu_to_be64(spkts);
1275 p->port_rcv_packets = cpu_to_be64(rpkts);
1276 p->port_unicast_xmit_packets = cpu_to_be64(dev->n_unicast_xmit);
1277 p->port_unicast_rcv_packets = cpu_to_be64(dev->n_unicast_rcv);
1278 p->port_multicast_xmit_packets = cpu_to_be64(dev->n_multicast_xmit);
1279 p->port_multicast_rcv_packets = cpu_to_be64(dev->n_multicast_rcv);
1281 return reply((struct ib_smp *) pmp);
1284 static int recv_pma_set_portcounters(struct ib_perf *pmp,
1285 struct ib_device *ibdev, u8 port)
1287 struct ib_pma_portcounters *p = (struct ib_pma_portcounters *)
1289 struct ipath_ibdev *dev = to_idev(ibdev);
1290 struct ipath_verbs_counters cntrs;
1293 * Since the HW doesn't support clearing counters, we save the
1294 * current count and subtract it from future responses.
1296 ipath_get_counters(dev->dd, &cntrs);
1298 if (p->counter_select & IB_PMA_SEL_SYMBOL_ERROR)
1299 dev->z_symbol_error_counter = cntrs.symbol_error_counter;
1301 if (p->counter_select & IB_PMA_SEL_LINK_ERROR_RECOVERY)
1302 dev->z_link_error_recovery_counter =
1303 cntrs.link_error_recovery_counter;
1305 if (p->counter_select & IB_PMA_SEL_LINK_DOWNED)
1306 dev->z_link_downed_counter = cntrs.link_downed_counter;
1308 if (p->counter_select & IB_PMA_SEL_PORT_RCV_ERRORS)
1309 dev->z_port_rcv_errors =
1310 cntrs.port_rcv_errors + dev->rcv_errors;
1312 if (p->counter_select & IB_PMA_SEL_PORT_RCV_REMPHYS_ERRORS)
1313 dev->z_port_rcv_remphys_errors =
1314 cntrs.port_rcv_remphys_errors;
1316 if (p->counter_select & IB_PMA_SEL_PORT_XMIT_DISCARDS)
1317 dev->z_port_xmit_discards = cntrs.port_xmit_discards;
1319 if (p->counter_select & IB_PMA_SEL_LOCAL_LINK_INTEGRITY_ERRORS)
1320 dev->z_local_link_integrity_errors =
1321 cntrs.local_link_integrity_errors;
1323 if (p->counter_select & IB_PMA_SEL_EXCESSIVE_BUFFER_OVERRUNS)
1324 dev->z_excessive_buffer_overrun_errors =
1325 cntrs.excessive_buffer_overrun_errors;
1327 if (p->counter_select & IB_PMA_SEL_PORT_VL15_DROPPED) {
1328 dev->n_vl15_dropped = 0;
1329 dev->z_vl15_dropped = cntrs.vl15_dropped;
1332 if (p->counter_select & IB_PMA_SEL_PORT_XMIT_DATA)
1333 dev->z_port_xmit_data = cntrs.port_xmit_data;
1335 if (p->counter_select & IB_PMA_SEL_PORT_RCV_DATA)
1336 dev->z_port_rcv_data = cntrs.port_rcv_data;
1338 if (p->counter_select & IB_PMA_SEL_PORT_XMIT_PACKETS)
1339 dev->z_port_xmit_packets = cntrs.port_xmit_packets;
1341 if (p->counter_select & IB_PMA_SEL_PORT_RCV_PACKETS)
1342 dev->z_port_rcv_packets = cntrs.port_rcv_packets;
1344 return recv_pma_get_portcounters(pmp, ibdev, port);
1347 static int recv_pma_set_portcounters_ext(struct ib_perf *pmp,
1348 struct ib_device *ibdev, u8 port)
1350 struct ib_pma_portcounters *p = (struct ib_pma_portcounters *)
1352 struct ipath_ibdev *dev = to_idev(ibdev);
1353 u64 swords, rwords, spkts, rpkts, xwait;
1355 ipath_snapshot_counters(dev->dd, &swords, &rwords, &spkts,
1358 if (p->counter_select & IB_PMA_SELX_PORT_XMIT_DATA)
1359 dev->z_port_xmit_data = swords;
1361 if (p->counter_select & IB_PMA_SELX_PORT_RCV_DATA)
1362 dev->z_port_rcv_data = rwords;
1364 if (p->counter_select & IB_PMA_SELX_PORT_XMIT_PACKETS)
1365 dev->z_port_xmit_packets = spkts;
1367 if (p->counter_select & IB_PMA_SELX_PORT_RCV_PACKETS)
1368 dev->z_port_rcv_packets = rpkts;
1370 if (p->counter_select & IB_PMA_SELX_PORT_UNI_XMIT_PACKETS)
1371 dev->n_unicast_xmit = 0;
1373 if (p->counter_select & IB_PMA_SELX_PORT_UNI_RCV_PACKETS)
1374 dev->n_unicast_rcv = 0;
1376 if (p->counter_select & IB_PMA_SELX_PORT_MULTI_XMIT_PACKETS)
1377 dev->n_multicast_xmit = 0;
1379 if (p->counter_select & IB_PMA_SELX_PORT_MULTI_RCV_PACKETS)
1380 dev->n_multicast_rcv = 0;
1382 return recv_pma_get_portcounters_ext(pmp, ibdev, port);
1385 static int process_subn(struct ib_device *ibdev, int mad_flags,
1386 u8 port_num, struct ib_mad *in_mad,
1387 struct ib_mad *out_mad)
1389 struct ib_smp *smp = (struct ib_smp *)out_mad;
1390 struct ipath_ibdev *dev = to_idev(ibdev);
1394 if (smp->class_version != 1) {
1395 smp->status |= IB_SMP_UNSUP_VERSION;
1400 /* Is the mkey in the process of expiring? */
1401 if (dev->mkey_lease_timeout &&
1402 time_after_eq(jiffies, dev->mkey_lease_timeout)) {
1403 /* Clear timeout and mkey protection field. */
1404 dev->mkey_lease_timeout = 0;
1409 * M_Key checking depends on
1410 * Portinfo:M_Key_protect_bits
1412 if ((mad_flags & IB_MAD_IGNORE_MKEY) == 0 && dev->mkey != 0 &&
1413 dev->mkey != smp->mkey &&
1414 (smp->method == IB_MGMT_METHOD_SET ||
1415 (smp->method == IB_MGMT_METHOD_GET &&
1416 dev->mkeyprot >= 2))) {
1417 if (dev->mkey_violations != 0xFFFF)
1418 ++dev->mkey_violations;
1419 if (dev->mkey_lease_timeout ||
1420 dev->mkey_lease_period == 0) {
1421 ret = IB_MAD_RESULT_SUCCESS |
1422 IB_MAD_RESULT_CONSUMED;
1425 dev->mkey_lease_timeout = jiffies +
1426 dev->mkey_lease_period * HZ;
1427 /* Future: Generate a trap notice. */
1428 ret = IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED;
1430 } else if (dev->mkey_lease_timeout)
1431 dev->mkey_lease_timeout = 0;
1433 switch (smp->method) {
1434 case IB_MGMT_METHOD_GET:
1435 switch (smp->attr_id) {
1436 case IB_SMP_ATTR_NODE_DESC:
1437 ret = recv_subn_get_nodedescription(smp, ibdev);
1439 case IB_SMP_ATTR_NODE_INFO:
1440 ret = recv_subn_get_nodeinfo(smp, ibdev, port_num);
1442 case IB_SMP_ATTR_GUID_INFO:
1443 ret = recv_subn_get_guidinfo(smp, ibdev);
1445 case IB_SMP_ATTR_PORT_INFO:
1446 ret = recv_subn_get_portinfo(smp, ibdev, port_num);
1448 case IB_SMP_ATTR_PKEY_TABLE:
1449 ret = recv_subn_get_pkeytable(smp, ibdev);
1451 case IB_SMP_ATTR_SM_INFO:
1452 if (dev->port_cap_flags & IB_PORT_SM_DISABLED) {
1453 ret = IB_MAD_RESULT_SUCCESS |
1454 IB_MAD_RESULT_CONSUMED;
1457 if (dev->port_cap_flags & IB_PORT_SM) {
1458 ret = IB_MAD_RESULT_SUCCESS;
1463 smp->status |= IB_SMP_UNSUP_METH_ATTR;
1468 case IB_MGMT_METHOD_SET:
1469 switch (smp->attr_id) {
1470 case IB_SMP_ATTR_GUID_INFO:
1471 ret = recv_subn_set_guidinfo(smp, ibdev);
1473 case IB_SMP_ATTR_PORT_INFO:
1474 ret = recv_subn_set_portinfo(smp, ibdev, port_num);
1476 case IB_SMP_ATTR_PKEY_TABLE:
1477 ret = recv_subn_set_pkeytable(smp, ibdev);
1479 case IB_SMP_ATTR_SM_INFO:
1480 if (dev->port_cap_flags & IB_PORT_SM_DISABLED) {
1481 ret = IB_MAD_RESULT_SUCCESS |
1482 IB_MAD_RESULT_CONSUMED;
1485 if (dev->port_cap_flags & IB_PORT_SM) {
1486 ret = IB_MAD_RESULT_SUCCESS;
1491 smp->status |= IB_SMP_UNSUP_METH_ATTR;
1496 case IB_MGMT_METHOD_TRAP:
1497 case IB_MGMT_METHOD_REPORT:
1498 case IB_MGMT_METHOD_REPORT_RESP:
1499 case IB_MGMT_METHOD_TRAP_REPRESS:
1500 case IB_MGMT_METHOD_GET_RESP:
1502 * The ib_mad module will call us to process responses
1503 * before checking for other consumers.
1504 * Just tell the caller to process it normally.
1506 ret = IB_MAD_RESULT_SUCCESS;
1509 smp->status |= IB_SMP_UNSUP_METHOD;
1517 static int process_perf(struct ib_device *ibdev, u8 port_num,
1518 struct ib_mad *in_mad,
1519 struct ib_mad *out_mad)
1521 struct ib_perf *pmp = (struct ib_perf *)out_mad;
1525 if (pmp->class_version != 1) {
1526 pmp->status |= IB_SMP_UNSUP_VERSION;
1527 ret = reply((struct ib_smp *) pmp);
1531 switch (pmp->method) {
1532 case IB_MGMT_METHOD_GET:
1533 switch (pmp->attr_id) {
1534 case IB_PMA_CLASS_PORT_INFO:
1535 ret = recv_pma_get_classportinfo(pmp);
1537 case IB_PMA_PORT_SAMPLES_CONTROL:
1538 ret = recv_pma_get_portsamplescontrol(pmp, ibdev,
1541 case IB_PMA_PORT_SAMPLES_RESULT:
1542 ret = recv_pma_get_portsamplesresult(pmp, ibdev);
1544 case IB_PMA_PORT_SAMPLES_RESULT_EXT:
1545 ret = recv_pma_get_portsamplesresult_ext(pmp,
1548 case IB_PMA_PORT_COUNTERS:
1549 ret = recv_pma_get_portcounters(pmp, ibdev,
1552 case IB_PMA_PORT_COUNTERS_EXT:
1553 ret = recv_pma_get_portcounters_ext(pmp, ibdev,
1557 pmp->status |= IB_SMP_UNSUP_METH_ATTR;
1558 ret = reply((struct ib_smp *) pmp);
1562 case IB_MGMT_METHOD_SET:
1563 switch (pmp->attr_id) {
1564 case IB_PMA_PORT_SAMPLES_CONTROL:
1565 ret = recv_pma_set_portsamplescontrol(pmp, ibdev,
1568 case IB_PMA_PORT_COUNTERS:
1569 ret = recv_pma_set_portcounters(pmp, ibdev,
1572 case IB_PMA_PORT_COUNTERS_EXT:
1573 ret = recv_pma_set_portcounters_ext(pmp, ibdev,
1577 pmp->status |= IB_SMP_UNSUP_METH_ATTR;
1578 ret = reply((struct ib_smp *) pmp);
1582 case IB_MGMT_METHOD_GET_RESP:
1584 * The ib_mad module will call us to process responses
1585 * before checking for other consumers.
1586 * Just tell the caller to process it normally.
1588 ret = IB_MAD_RESULT_SUCCESS;
1591 pmp->status |= IB_SMP_UNSUP_METHOD;
1592 ret = reply((struct ib_smp *) pmp);
1600 * ipath_process_mad - process an incoming MAD packet
1601 * @ibdev: the infiniband device this packet came in on
1602 * @mad_flags: MAD flags
1603 * @port_num: the port number this packet came in on
1604 * @in_wc: the work completion entry for this packet
1605 * @in_grh: the global route header for this packet
1606 * @in_mad: the incoming MAD
1607 * @out_mad: any outgoing MAD reply
1609 * Returns IB_MAD_RESULT_SUCCESS if this is a MAD that we are not
1610 * interested in processing.
1612 * Note that the verbs framework has already done the MAD sanity checks,
1613 * and hop count/pointer updating for IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE
1616 * This is called by the ib_mad module.
1618 int ipath_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num,
1619 struct ib_wc *in_wc, struct ib_grh *in_grh,
1620 struct ib_mad *in_mad, struct ib_mad *out_mad)
1624 switch (in_mad->mad_hdr.mgmt_class) {
1625 case IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE:
1626 case IB_MGMT_CLASS_SUBN_LID_ROUTED:
1627 ret = process_subn(ibdev, mad_flags, port_num,
1630 case IB_MGMT_CLASS_PERF_MGMT:
1631 ret = process_perf(ibdev, port_num, in_mad, out_mad);
1634 ret = IB_MAD_RESULT_SUCCESS;