Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. |
Roland Dreier | 2a1d9b7 | 2005-08-10 23:03:10 -0700 | [diff] [blame] | 3 | * Copyright (c) 2005 Mellanox Technologies Ltd. All rights reserved. |
| 4 | * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * This software is available to you under a choice of one of two |
| 7 | * licenses. You may choose to be licensed under the terms of the GNU |
| 8 | * General Public License (GPL) Version 2, available from the file |
| 9 | * COPYING in the main directory of this source tree, or the |
| 10 | * OpenIB.org BSD license below: |
| 11 | * |
| 12 | * Redistribution and use in source and binary forms, with or |
| 13 | * without modification, are permitted provided that the following |
| 14 | * conditions are met: |
| 15 | * |
| 16 | * - Redistributions of source code must retain the above |
| 17 | * copyright notice, this list of conditions and the following |
| 18 | * disclaimer. |
| 19 | * |
| 20 | * - Redistributions in binary form must reproduce the above |
| 21 | * copyright notice, this list of conditions and the following |
| 22 | * disclaimer in the documentation and/or other materials |
| 23 | * provided with the distribution. |
| 24 | * |
| 25 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 26 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 27 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 28 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 29 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 30 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 31 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 32 | * SOFTWARE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | */ |
| 34 | |
| 35 | #include "core_priv.h" |
| 36 | |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 37 | #include <linux/slab.h> |
Paul Gortmaker | fc87af7 | 2011-05-27 13:27:45 -0400 | [diff] [blame] | 38 | #include <linux/stat.h> |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 39 | #include <linux/string.h> |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 40 | #include <linux/netdevice.h> |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 41 | |
Roland Dreier | a4d61e8 | 2005-08-25 13:40:04 -0700 | [diff] [blame] | 42 | #include <rdma/ib_mad.h> |
Christoph Lameter | b2788ce | 2015-12-21 08:20:28 -0600 | [diff] [blame] | 43 | #include <rdma/ib_pma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 45 | struct ib_port; |
| 46 | |
| 47 | struct gid_attr_group { |
| 48 | struct ib_port *port; |
| 49 | struct kobject kobj; |
| 50 | struct attribute_group ndev; |
| 51 | struct attribute_group type; |
| 52 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | struct ib_port { |
| 54 | struct kobject kobj; |
| 55 | struct ib_device *ibdev; |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 56 | struct gid_attr_group *gid_attr_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | struct attribute_group gid_group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct attribute_group pkey_group; |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 59 | struct attribute_group *pma_table; |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 60 | struct attribute_group *hw_stats_ag; |
| 61 | struct rdma_hw_stats *hw_stats; |
| 62 | u8 port_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | struct port_attribute { |
| 66 | struct attribute attr; |
| 67 | ssize_t (*show)(struct ib_port *, struct port_attribute *, char *buf); |
| 68 | ssize_t (*store)(struct ib_port *, struct port_attribute *, |
| 69 | const char *buf, size_t count); |
| 70 | }; |
| 71 | |
| 72 | #define PORT_ATTR(_name, _mode, _show, _store) \ |
| 73 | struct port_attribute port_attr_##_name = __ATTR(_name, _mode, _show, _store) |
| 74 | |
| 75 | #define PORT_ATTR_RO(_name) \ |
| 76 | struct port_attribute port_attr_##_name = __ATTR_RO(_name) |
| 77 | |
| 78 | struct port_table_attribute { |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 79 | struct port_attribute attr; |
| 80 | char name[8]; |
| 81 | int index; |
Ira Weiny | 65487fd | 2016-01-03 22:44:25 -0500 | [diff] [blame] | 82 | __be16 attr_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | }; |
| 84 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 85 | struct hw_stats_attribute { |
| 86 | struct attribute attr; |
| 87 | ssize_t (*show)(struct kobject *kobj, |
| 88 | struct attribute *attr, char *buf); |
| 89 | ssize_t (*store)(struct kobject *kobj, |
| 90 | struct attribute *attr, |
| 91 | const char *buf, |
| 92 | size_t count); |
| 93 | int index; |
| 94 | u8 port_num; |
| 95 | }; |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | static ssize_t port_attr_show(struct kobject *kobj, |
| 98 | struct attribute *attr, char *buf) |
| 99 | { |
| 100 | struct port_attribute *port_attr = |
| 101 | container_of(attr, struct port_attribute, attr); |
| 102 | struct ib_port *p = container_of(kobj, struct ib_port, kobj); |
| 103 | |
| 104 | if (!port_attr->show) |
Dmitry Torokhov | 70f2817 | 2005-04-29 01:27:34 -0500 | [diff] [blame] | 105 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | return port_attr->show(p, port_attr, buf); |
| 108 | } |
| 109 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 110 | static const struct sysfs_ops port_sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | .show = port_attr_show |
| 112 | }; |
| 113 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 114 | static ssize_t gid_attr_show(struct kobject *kobj, |
| 115 | struct attribute *attr, char *buf) |
| 116 | { |
| 117 | struct port_attribute *port_attr = |
| 118 | container_of(attr, struct port_attribute, attr); |
| 119 | struct ib_port *p = container_of(kobj, struct gid_attr_group, |
| 120 | kobj)->port; |
| 121 | |
| 122 | if (!port_attr->show) |
| 123 | return -EIO; |
| 124 | |
| 125 | return port_attr->show(p, port_attr, buf); |
| 126 | } |
| 127 | |
| 128 | static const struct sysfs_ops gid_attr_sysfs_ops = { |
| 129 | .show = gid_attr_show |
| 130 | }; |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | static ssize_t state_show(struct ib_port *p, struct port_attribute *unused, |
| 133 | char *buf) |
| 134 | { |
| 135 | struct ib_port_attr attr; |
| 136 | ssize_t ret; |
| 137 | |
| 138 | static const char *state_name[] = { |
| 139 | [IB_PORT_NOP] = "NOP", |
| 140 | [IB_PORT_DOWN] = "DOWN", |
| 141 | [IB_PORT_INIT] = "INIT", |
| 142 | [IB_PORT_ARMED] = "ARMED", |
| 143 | [IB_PORT_ACTIVE] = "ACTIVE", |
| 144 | [IB_PORT_ACTIVE_DEFER] = "ACTIVE_DEFER" |
| 145 | }; |
| 146 | |
| 147 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 148 | if (ret) |
| 149 | return ret; |
| 150 | |
| 151 | return sprintf(buf, "%d: %s\n", attr.state, |
Roland Dreier | 048975a | 2006-03-20 10:08:25 -0800 | [diff] [blame] | 152 | attr.state >= 0 && attr.state < ARRAY_SIZE(state_name) ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | state_name[attr.state] : "UNKNOWN"); |
| 154 | } |
| 155 | |
| 156 | static ssize_t lid_show(struct ib_port *p, struct port_attribute *unused, |
| 157 | char *buf) |
| 158 | { |
| 159 | struct ib_port_attr attr; |
| 160 | ssize_t ret; |
| 161 | |
| 162 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 163 | if (ret) |
| 164 | return ret; |
| 165 | |
| 166 | return sprintf(buf, "0x%x\n", attr.lid); |
| 167 | } |
| 168 | |
| 169 | static ssize_t lid_mask_count_show(struct ib_port *p, |
| 170 | struct port_attribute *unused, |
| 171 | char *buf) |
| 172 | { |
| 173 | struct ib_port_attr attr; |
| 174 | ssize_t ret; |
| 175 | |
| 176 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 177 | if (ret) |
| 178 | return ret; |
| 179 | |
| 180 | return sprintf(buf, "%d\n", attr.lmc); |
| 181 | } |
| 182 | |
| 183 | static ssize_t sm_lid_show(struct ib_port *p, struct port_attribute *unused, |
| 184 | char *buf) |
| 185 | { |
| 186 | struct ib_port_attr attr; |
| 187 | ssize_t ret; |
| 188 | |
| 189 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 190 | if (ret) |
| 191 | return ret; |
| 192 | |
| 193 | return sprintf(buf, "0x%x\n", attr.sm_lid); |
| 194 | } |
| 195 | |
| 196 | static ssize_t sm_sl_show(struct ib_port *p, struct port_attribute *unused, |
| 197 | char *buf) |
| 198 | { |
| 199 | struct ib_port_attr attr; |
| 200 | ssize_t ret; |
| 201 | |
| 202 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 203 | if (ret) |
| 204 | return ret; |
| 205 | |
| 206 | return sprintf(buf, "%d\n", attr.sm_sl); |
| 207 | } |
| 208 | |
| 209 | static ssize_t cap_mask_show(struct ib_port *p, struct port_attribute *unused, |
| 210 | char *buf) |
| 211 | { |
| 212 | struct ib_port_attr attr; |
| 213 | ssize_t ret; |
| 214 | |
| 215 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 216 | if (ret) |
| 217 | return ret; |
| 218 | |
| 219 | return sprintf(buf, "0x%08x\n", attr.port_cap_flags); |
| 220 | } |
| 221 | |
| 222 | static ssize_t rate_show(struct ib_port *p, struct port_attribute *unused, |
| 223 | char *buf) |
| 224 | { |
| 225 | struct ib_port_attr attr; |
| 226 | char *speed = ""; |
Roland Dreier | 0559d8d | 2012-04-02 10:57:31 -0700 | [diff] [blame] | 227 | int rate; /* in deci-Gb/sec */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | ssize_t ret; |
| 229 | |
| 230 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 231 | if (ret) |
| 232 | return ret; |
| 233 | |
| 234 | switch (attr.active_speed) { |
Or Gerlitz | 2e96691 | 2012-02-28 18:49:50 +0200 | [diff] [blame] | 235 | case IB_SPEED_DDR: |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 236 | speed = " DDR"; |
Roland Dreier | e9319b0 | 2012-02-27 09:15:08 -0800 | [diff] [blame] | 237 | rate = 50; |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 238 | break; |
Or Gerlitz | 2e96691 | 2012-02-28 18:49:50 +0200 | [diff] [blame] | 239 | case IB_SPEED_QDR: |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 240 | speed = " QDR"; |
Roland Dreier | e9319b0 | 2012-02-27 09:15:08 -0800 | [diff] [blame] | 241 | rate = 100; |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 242 | break; |
Or Gerlitz | 2e96691 | 2012-02-28 18:49:50 +0200 | [diff] [blame] | 243 | case IB_SPEED_FDR10: |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 244 | speed = " FDR10"; |
Roland Dreier | e9319b0 | 2012-02-27 09:15:08 -0800 | [diff] [blame] | 245 | rate = 100; |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 246 | break; |
Or Gerlitz | 2e96691 | 2012-02-28 18:49:50 +0200 | [diff] [blame] | 247 | case IB_SPEED_FDR: |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 248 | speed = " FDR"; |
Roland Dreier | e9319b0 | 2012-02-27 09:15:08 -0800 | [diff] [blame] | 249 | rate = 140; |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 250 | break; |
Or Gerlitz | 2e96691 | 2012-02-28 18:49:50 +0200 | [diff] [blame] | 251 | case IB_SPEED_EDR: |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 252 | speed = " EDR"; |
Roland Dreier | e9319b0 | 2012-02-27 09:15:08 -0800 | [diff] [blame] | 253 | rate = 250; |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 254 | break; |
Roland Dreier | 0559d8d | 2012-04-02 10:57:31 -0700 | [diff] [blame] | 255 | case IB_SPEED_SDR: |
| 256 | default: /* default to SDR for invalid rates */ |
| 257 | rate = 25; |
| 258 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Marcel Apfelbaum | 71eeba1 | 2011-10-05 14:21:47 +0300 | [diff] [blame] | 261 | rate *= ib_width_enum_to_int(attr.active_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | if (rate < 0) |
| 263 | return -EINVAL; |
| 264 | |
| 265 | return sprintf(buf, "%d%s Gb/sec (%dX%s)\n", |
Roland Dreier | e9319b0 | 2012-02-27 09:15:08 -0800 | [diff] [blame] | 266 | rate / 10, rate % 10 ? ".5" : "", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | ib_width_enum_to_int(attr.active_width), speed); |
| 268 | } |
| 269 | |
| 270 | static ssize_t phys_state_show(struct ib_port *p, struct port_attribute *unused, |
| 271 | char *buf) |
| 272 | { |
| 273 | struct ib_port_attr attr; |
| 274 | |
| 275 | ssize_t ret; |
| 276 | |
| 277 | ret = ib_query_port(p->ibdev, p->port_num, &attr); |
| 278 | if (ret) |
| 279 | return ret; |
| 280 | |
| 281 | switch (attr.phys_state) { |
| 282 | case 1: return sprintf(buf, "1: Sleep\n"); |
| 283 | case 2: return sprintf(buf, "2: Polling\n"); |
| 284 | case 3: return sprintf(buf, "3: Disabled\n"); |
| 285 | case 4: return sprintf(buf, "4: PortConfigurationTraining\n"); |
| 286 | case 5: return sprintf(buf, "5: LinkUp\n"); |
| 287 | case 6: return sprintf(buf, "6: LinkErrorRecovery\n"); |
| 288 | case 7: return sprintf(buf, "7: Phy Test\n"); |
| 289 | default: return sprintf(buf, "%d: <unknown>\n", attr.phys_state); |
| 290 | } |
| 291 | } |
| 292 | |
Eli Cohen | 8ad330a | 2010-10-22 14:32:05 +0200 | [diff] [blame] | 293 | static ssize_t link_layer_show(struct ib_port *p, struct port_attribute *unused, |
| 294 | char *buf) |
| 295 | { |
| 296 | switch (rdma_port_get_link_layer(p->ibdev, p->port_num)) { |
| 297 | case IB_LINK_LAYER_INFINIBAND: |
| 298 | return sprintf(buf, "%s\n", "InfiniBand"); |
| 299 | case IB_LINK_LAYER_ETHERNET: |
| 300 | return sprintf(buf, "%s\n", "Ethernet"); |
| 301 | default: |
| 302 | return sprintf(buf, "%s\n", "Unknown"); |
| 303 | } |
| 304 | } |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | static PORT_ATTR_RO(state); |
| 307 | static PORT_ATTR_RO(lid); |
| 308 | static PORT_ATTR_RO(lid_mask_count); |
| 309 | static PORT_ATTR_RO(sm_lid); |
| 310 | static PORT_ATTR_RO(sm_sl); |
| 311 | static PORT_ATTR_RO(cap_mask); |
| 312 | static PORT_ATTR_RO(rate); |
| 313 | static PORT_ATTR_RO(phys_state); |
Eli Cohen | 8ad330a | 2010-10-22 14:32:05 +0200 | [diff] [blame] | 314 | static PORT_ATTR_RO(link_layer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
| 316 | static struct attribute *port_default_attrs[] = { |
| 317 | &port_attr_state.attr, |
| 318 | &port_attr_lid.attr, |
| 319 | &port_attr_lid_mask_count.attr, |
| 320 | &port_attr_sm_lid.attr, |
| 321 | &port_attr_sm_sl.attr, |
| 322 | &port_attr_cap_mask.attr, |
| 323 | &port_attr_rate.attr, |
| 324 | &port_attr_phys_state.attr, |
Eli Cohen | 8ad330a | 2010-10-22 14:32:05 +0200 | [diff] [blame] | 325 | &port_attr_link_layer.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | NULL |
| 327 | }; |
| 328 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 329 | static size_t print_ndev(struct ib_gid_attr *gid_attr, char *buf) |
| 330 | { |
| 331 | if (!gid_attr->ndev) |
| 332 | return -EINVAL; |
| 333 | |
| 334 | return sprintf(buf, "%s\n", gid_attr->ndev->name); |
| 335 | } |
| 336 | |
| 337 | static size_t print_gid_type(struct ib_gid_attr *gid_attr, char *buf) |
| 338 | { |
| 339 | return sprintf(buf, "%s\n", ib_cache_gid_type_str(gid_attr->gid_type)); |
| 340 | } |
| 341 | |
| 342 | static ssize_t _show_port_gid_attr(struct ib_port *p, |
| 343 | struct port_attribute *attr, |
| 344 | char *buf, |
| 345 | size_t (*print)(struct ib_gid_attr *gid_attr, |
| 346 | char *buf)) |
| 347 | { |
| 348 | struct port_table_attribute *tab_attr = |
| 349 | container_of(attr, struct port_table_attribute, attr); |
| 350 | union ib_gid gid; |
| 351 | struct ib_gid_attr gid_attr = {}; |
| 352 | ssize_t ret; |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 353 | |
| 354 | ret = ib_query_gid(p->ibdev, p->port_num, tab_attr->index, &gid, |
| 355 | &gid_attr); |
| 356 | if (ret) |
| 357 | goto err; |
| 358 | |
| 359 | ret = print(&gid_attr, buf); |
| 360 | |
| 361 | err: |
| 362 | if (gid_attr.ndev) |
| 363 | dev_put(gid_attr.ndev); |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 364 | return ret; |
| 365 | } |
| 366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | static ssize_t show_port_gid(struct ib_port *p, struct port_attribute *attr, |
| 368 | char *buf) |
| 369 | { |
| 370 | struct port_table_attribute *tab_attr = |
| 371 | container_of(attr, struct port_table_attribute, attr); |
| 372 | union ib_gid gid; |
| 373 | ssize_t ret; |
| 374 | |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 375 | ret = ib_query_gid(p->ibdev, p->port_num, tab_attr->index, &gid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | if (ret) |
| 377 | return ret; |
| 378 | |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 379 | return sprintf(buf, "%pI6\n", gid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 382 | static ssize_t show_port_gid_attr_ndev(struct ib_port *p, |
| 383 | struct port_attribute *attr, char *buf) |
| 384 | { |
| 385 | return _show_port_gid_attr(p, attr, buf, print_ndev); |
| 386 | } |
| 387 | |
| 388 | static ssize_t show_port_gid_attr_gid_type(struct ib_port *p, |
| 389 | struct port_attribute *attr, |
| 390 | char *buf) |
| 391 | { |
| 392 | return _show_port_gid_attr(p, attr, buf, print_gid_type); |
| 393 | } |
| 394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | static ssize_t show_port_pkey(struct ib_port *p, struct port_attribute *attr, |
| 396 | char *buf) |
| 397 | { |
| 398 | struct port_table_attribute *tab_attr = |
| 399 | container_of(attr, struct port_table_attribute, attr); |
| 400 | u16 pkey; |
| 401 | ssize_t ret; |
| 402 | |
| 403 | ret = ib_query_pkey(p->ibdev, p->port_num, tab_attr->index, &pkey); |
| 404 | if (ret) |
| 405 | return ret; |
| 406 | |
| 407 | return sprintf(buf, "0x%04x\n", pkey); |
| 408 | } |
| 409 | |
| 410 | #define PORT_PMA_ATTR(_name, _counter, _width, _offset) \ |
| 411 | struct port_table_attribute port_pma_attr_##_name = { \ |
| 412 | .attr = __ATTR(_name, S_IRUGO, show_pma_counter, NULL), \ |
Christoph Lameter | b2788ce | 2015-12-21 08:20:28 -0600 | [diff] [blame] | 413 | .index = (_offset) | ((_width) << 16) | ((_counter) << 24), \ |
| 414 | .attr_id = IB_PMA_PORT_COUNTERS , \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
| 416 | |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 417 | #define PORT_PMA_ATTR_EXT(_name, _width, _offset) \ |
| 418 | struct port_table_attribute port_pma_attr_ext_##_name = { \ |
| 419 | .attr = __ATTR(_name, S_IRUGO, show_pma_counter, NULL), \ |
| 420 | .index = (_offset) | ((_width) << 16), \ |
| 421 | .attr_id = IB_PMA_PORT_COUNTERS_EXT , \ |
| 422 | } |
| 423 | |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 424 | /* |
| 425 | * Get a Perfmgmt MAD block of data. |
| 426 | * Returns error code or the number of bytes retrieved. |
| 427 | */ |
Ira Weiny | 65487fd | 2016-01-03 22:44:25 -0500 | [diff] [blame] | 428 | static int get_perf_mad(struct ib_device *dev, int port_num, __be16 attr, |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 429 | void *data, int offset, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 431 | struct ib_mad *in_mad; |
| 432 | struct ib_mad *out_mad; |
Ira Weiny | 4cd7c94 | 2015-06-06 14:38:31 -0400 | [diff] [blame] | 433 | size_t mad_size = sizeof(*out_mad); |
| 434 | u16 out_mad_pkey_index = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | ssize_t ret; |
| 436 | |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 437 | if (!dev->process_mad) |
| 438 | return -ENOSYS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Roland Dreier | de6eb66 | 2005-11-02 07:23:14 -0800 | [diff] [blame] | 440 | in_mad = kzalloc(sizeof *in_mad, GFP_KERNEL); |
Dotan Barak | 856c52a | 2007-07-10 16:55:57 +0300 | [diff] [blame] | 441 | out_mad = kmalloc(sizeof *out_mad, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | if (!in_mad || !out_mad) { |
| 443 | ret = -ENOMEM; |
| 444 | goto out; |
| 445 | } |
| 446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | in_mad->mad_hdr.base_version = 1; |
| 448 | in_mad->mad_hdr.mgmt_class = IB_MGMT_CLASS_PERF_MGMT; |
| 449 | in_mad->mad_hdr.class_version = 1; |
| 450 | in_mad->mad_hdr.method = IB_MGMT_METHOD_GET; |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 451 | in_mad->mad_hdr.attr_id = attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Hal Rosenstock | 6e2a51a | 2015-12-29 05:43:43 -0500 | [diff] [blame] | 453 | if (attr != IB_PMA_CLASS_PORT_INFO) |
| 454 | in_mad->data[41] = port_num; /* PortSelect field */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 456 | if ((dev->process_mad(dev, IB_MAD_IGNORE_MKEY, |
| 457 | port_num, NULL, NULL, |
Ira Weiny | 4cd7c94 | 2015-06-06 14:38:31 -0400 | [diff] [blame] | 458 | (const struct ib_mad_hdr *)in_mad, mad_size, |
| 459 | (struct ib_mad_hdr *)out_mad, &mad_size, |
| 460 | &out_mad_pkey_index) & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) != |
| 462 | (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) { |
| 463 | ret = -EINVAL; |
| 464 | goto out; |
| 465 | } |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 466 | memcpy(data, out_mad->data + offset, size); |
| 467 | ret = size; |
| 468 | out: |
| 469 | kfree(in_mad); |
| 470 | kfree(out_mad); |
| 471 | return ret; |
| 472 | } |
| 473 | |
| 474 | static ssize_t show_pma_counter(struct ib_port *p, struct port_attribute *attr, |
| 475 | char *buf) |
| 476 | { |
| 477 | struct port_table_attribute *tab_attr = |
| 478 | container_of(attr, struct port_table_attribute, attr); |
| 479 | int offset = tab_attr->index & 0xffff; |
| 480 | int width = (tab_attr->index >> 16) & 0xff; |
| 481 | ssize_t ret; |
| 482 | u8 data[8]; |
| 483 | |
Christoph Lameter | b2788ce | 2015-12-21 08:20:28 -0600 | [diff] [blame] | 484 | ret = get_perf_mad(p->ibdev, p->port_num, tab_attr->attr_id, &data, |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 485 | 40 + offset / 8, sizeof(data)); |
| 486 | if (ret < 0) |
| 487 | return sprintf(buf, "N/A (no PMA)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
| 489 | switch (width) { |
| 490 | case 4: |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 491 | ret = sprintf(buf, "%u\n", (*data >> |
Ralph Campbell | d8b9f23 | 2006-05-09 10:50:28 -0700 | [diff] [blame] | 492 | (4 - (offset % 8))) & 0xf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | break; |
| 494 | case 8: |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 495 | ret = sprintf(buf, "%u\n", *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | break; |
| 497 | case 16: |
| 498 | ret = sprintf(buf, "%u\n", |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 499 | be16_to_cpup((__be16 *)data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | break; |
| 501 | case 32: |
| 502 | ret = sprintf(buf, "%u\n", |
Christoph Lameter | 35c4cbb | 2015-12-21 08:20:27 -0600 | [diff] [blame] | 503 | be32_to_cpup((__be32 *)data)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | break; |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 505 | case 64: |
| 506 | ret = sprintf(buf, "%llu\n", |
| 507 | be64_to_cpup((__be64 *)data)); |
| 508 | break; |
| 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | default: |
| 511 | ret = 0; |
| 512 | } |
| 513 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | return ret; |
| 515 | } |
| 516 | |
| 517 | static PORT_PMA_ATTR(symbol_error , 0, 16, 32); |
| 518 | static PORT_PMA_ATTR(link_error_recovery , 1, 8, 48); |
| 519 | static PORT_PMA_ATTR(link_downed , 2, 8, 56); |
| 520 | static PORT_PMA_ATTR(port_rcv_errors , 3, 16, 64); |
| 521 | static PORT_PMA_ATTR(port_rcv_remote_physical_errors, 4, 16, 80); |
| 522 | static PORT_PMA_ATTR(port_rcv_switch_relay_errors , 5, 16, 96); |
| 523 | static PORT_PMA_ATTR(port_xmit_discards , 6, 16, 112); |
| 524 | static PORT_PMA_ATTR(port_xmit_constraint_errors , 7, 8, 128); |
| 525 | static PORT_PMA_ATTR(port_rcv_constraint_errors , 8, 8, 136); |
| 526 | static PORT_PMA_ATTR(local_link_integrity_errors , 9, 4, 152); |
| 527 | static PORT_PMA_ATTR(excessive_buffer_overrun_errors, 10, 4, 156); |
| 528 | static PORT_PMA_ATTR(VL15_dropped , 11, 16, 176); |
| 529 | static PORT_PMA_ATTR(port_xmit_data , 12, 32, 192); |
| 530 | static PORT_PMA_ATTR(port_rcv_data , 13, 32, 224); |
| 531 | static PORT_PMA_ATTR(port_xmit_packets , 14, 32, 256); |
| 532 | static PORT_PMA_ATTR(port_rcv_packets , 15, 32, 288); |
| 533 | |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 534 | /* |
| 535 | * Counters added by extended set |
| 536 | */ |
| 537 | static PORT_PMA_ATTR_EXT(port_xmit_data , 64, 64); |
| 538 | static PORT_PMA_ATTR_EXT(port_rcv_data , 64, 128); |
| 539 | static PORT_PMA_ATTR_EXT(port_xmit_packets , 64, 192); |
| 540 | static PORT_PMA_ATTR_EXT(port_rcv_packets , 64, 256); |
| 541 | static PORT_PMA_ATTR_EXT(unicast_xmit_packets , 64, 320); |
| 542 | static PORT_PMA_ATTR_EXT(unicast_rcv_packets , 64, 384); |
| 543 | static PORT_PMA_ATTR_EXT(multicast_xmit_packets , 64, 448); |
| 544 | static PORT_PMA_ATTR_EXT(multicast_rcv_packets , 64, 512); |
| 545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | static struct attribute *pma_attrs[] = { |
| 547 | &port_pma_attr_symbol_error.attr.attr, |
| 548 | &port_pma_attr_link_error_recovery.attr.attr, |
| 549 | &port_pma_attr_link_downed.attr.attr, |
| 550 | &port_pma_attr_port_rcv_errors.attr.attr, |
| 551 | &port_pma_attr_port_rcv_remote_physical_errors.attr.attr, |
| 552 | &port_pma_attr_port_rcv_switch_relay_errors.attr.attr, |
| 553 | &port_pma_attr_port_xmit_discards.attr.attr, |
| 554 | &port_pma_attr_port_xmit_constraint_errors.attr.attr, |
| 555 | &port_pma_attr_port_rcv_constraint_errors.attr.attr, |
| 556 | &port_pma_attr_local_link_integrity_errors.attr.attr, |
| 557 | &port_pma_attr_excessive_buffer_overrun_errors.attr.attr, |
| 558 | &port_pma_attr_VL15_dropped.attr.attr, |
| 559 | &port_pma_attr_port_xmit_data.attr.attr, |
| 560 | &port_pma_attr_port_rcv_data.attr.attr, |
| 561 | &port_pma_attr_port_xmit_packets.attr.attr, |
| 562 | &port_pma_attr_port_rcv_packets.attr.attr, |
| 563 | NULL |
| 564 | }; |
| 565 | |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 566 | static struct attribute *pma_attrs_ext[] = { |
| 567 | &port_pma_attr_symbol_error.attr.attr, |
| 568 | &port_pma_attr_link_error_recovery.attr.attr, |
| 569 | &port_pma_attr_link_downed.attr.attr, |
| 570 | &port_pma_attr_port_rcv_errors.attr.attr, |
| 571 | &port_pma_attr_port_rcv_remote_physical_errors.attr.attr, |
| 572 | &port_pma_attr_port_rcv_switch_relay_errors.attr.attr, |
| 573 | &port_pma_attr_port_xmit_discards.attr.attr, |
| 574 | &port_pma_attr_port_xmit_constraint_errors.attr.attr, |
| 575 | &port_pma_attr_port_rcv_constraint_errors.attr.attr, |
| 576 | &port_pma_attr_local_link_integrity_errors.attr.attr, |
| 577 | &port_pma_attr_excessive_buffer_overrun_errors.attr.attr, |
| 578 | &port_pma_attr_VL15_dropped.attr.attr, |
| 579 | &port_pma_attr_ext_port_xmit_data.attr.attr, |
| 580 | &port_pma_attr_ext_port_rcv_data.attr.attr, |
| 581 | &port_pma_attr_ext_port_xmit_packets.attr.attr, |
| 582 | &port_pma_attr_ext_port_rcv_packets.attr.attr, |
| 583 | &port_pma_attr_ext_unicast_rcv_packets.attr.attr, |
| 584 | &port_pma_attr_ext_unicast_xmit_packets.attr.attr, |
| 585 | &port_pma_attr_ext_multicast_rcv_packets.attr.attr, |
| 586 | &port_pma_attr_ext_multicast_xmit_packets.attr.attr, |
| 587 | NULL |
| 588 | }; |
| 589 | |
| 590 | static struct attribute *pma_attrs_noietf[] = { |
| 591 | &port_pma_attr_symbol_error.attr.attr, |
| 592 | &port_pma_attr_link_error_recovery.attr.attr, |
| 593 | &port_pma_attr_link_downed.attr.attr, |
| 594 | &port_pma_attr_port_rcv_errors.attr.attr, |
| 595 | &port_pma_attr_port_rcv_remote_physical_errors.attr.attr, |
| 596 | &port_pma_attr_port_rcv_switch_relay_errors.attr.attr, |
| 597 | &port_pma_attr_port_xmit_discards.attr.attr, |
| 598 | &port_pma_attr_port_xmit_constraint_errors.attr.attr, |
| 599 | &port_pma_attr_port_rcv_constraint_errors.attr.attr, |
| 600 | &port_pma_attr_local_link_integrity_errors.attr.attr, |
| 601 | &port_pma_attr_excessive_buffer_overrun_errors.attr.attr, |
| 602 | &port_pma_attr_VL15_dropped.attr.attr, |
| 603 | &port_pma_attr_ext_port_xmit_data.attr.attr, |
| 604 | &port_pma_attr_ext_port_rcv_data.attr.attr, |
| 605 | &port_pma_attr_ext_port_xmit_packets.attr.attr, |
| 606 | &port_pma_attr_ext_port_rcv_packets.attr.attr, |
| 607 | NULL |
| 608 | }; |
| 609 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | static struct attribute_group pma_group = { |
| 611 | .name = "counters", |
| 612 | .attrs = pma_attrs |
| 613 | }; |
| 614 | |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 615 | static struct attribute_group pma_group_ext = { |
| 616 | .name = "counters", |
| 617 | .attrs = pma_attrs_ext |
| 618 | }; |
| 619 | |
| 620 | static struct attribute_group pma_group_noietf = { |
| 621 | .name = "counters", |
| 622 | .attrs = pma_attrs_noietf |
| 623 | }; |
| 624 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | static void ib_port_release(struct kobject *kobj) |
| 626 | { |
| 627 | struct ib_port *p = container_of(kobj, struct ib_port, kobj); |
| 628 | struct attribute *a; |
| 629 | int i; |
| 630 | |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 631 | if (p->gid_group.attrs) { |
| 632 | for (i = 0; (a = p->gid_group.attrs[i]); ++i) |
| 633 | kfree(a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 635 | kfree(p->gid_group.attrs); |
| 636 | } |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 637 | |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 638 | if (p->pkey_group.attrs) { |
| 639 | for (i = 0; (a = p->pkey_group.attrs[i]); ++i) |
| 640 | kfree(a); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 642 | kfree(p->pkey_group.attrs); |
| 643 | } |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | kfree(p); |
| 646 | } |
| 647 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 648 | static void ib_port_gid_attr_release(struct kobject *kobj) |
| 649 | { |
| 650 | struct gid_attr_group *g = container_of(kobj, struct gid_attr_group, |
| 651 | kobj); |
| 652 | struct attribute *a; |
| 653 | int i; |
| 654 | |
| 655 | if (g->ndev.attrs) { |
| 656 | for (i = 0; (a = g->ndev.attrs[i]); ++i) |
| 657 | kfree(a); |
| 658 | |
| 659 | kfree(g->ndev.attrs); |
| 660 | } |
| 661 | |
| 662 | if (g->type.attrs) { |
| 663 | for (i = 0; (a = g->type.attrs[i]); ++i) |
| 664 | kfree(a); |
| 665 | |
| 666 | kfree(g->type.attrs); |
| 667 | } |
| 668 | |
| 669 | kfree(g); |
| 670 | } |
| 671 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | static struct kobj_type port_type = { |
| 673 | .release = ib_port_release, |
| 674 | .sysfs_ops = &port_sysfs_ops, |
| 675 | .default_attrs = port_default_attrs |
| 676 | }; |
| 677 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 678 | static struct kobj_type gid_attr_type = { |
| 679 | .sysfs_ops = &gid_attr_sysfs_ops, |
| 680 | .release = ib_port_gid_attr_release |
| 681 | }; |
| 682 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 683 | static struct attribute ** |
| 684 | alloc_group_attrs(ssize_t (*show)(struct ib_port *, |
| 685 | struct port_attribute *, char *buf), |
| 686 | int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | { |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 688 | struct attribute **tab_attr; |
| 689 | struct port_table_attribute *element; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 692 | tab_attr = kcalloc(1 + len, sizeof(struct attribute *), GFP_KERNEL); |
| 693 | if (!tab_attr) |
| 694 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 696 | for (i = 0; i < len; i++) { |
Pekka Enberg | 82ca76b | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 697 | element = kzalloc(sizeof(struct port_table_attribute), |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 698 | GFP_KERNEL); |
| 699 | if (!element) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 702 | if (snprintf(element->name, sizeof(element->name), |
Roland Dreier | 048975a | 2006-03-20 10:08:25 -0800 | [diff] [blame] | 703 | "%d", i) >= sizeof(element->name)) { |
| 704 | kfree(element); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | goto err; |
Roland Dreier | 048975a | 2006-03-20 10:08:25 -0800 | [diff] [blame] | 706 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 708 | element->attr.attr.name = element->name; |
| 709 | element->attr.attr.mode = S_IRUGO; |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 710 | element->attr.show = show; |
| 711 | element->index = i; |
Greg Kroah-Hartman | 21e3bde | 2010-03-15 14:01:25 -0700 | [diff] [blame] | 712 | sysfs_attr_init(&element->attr.attr); |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 713 | |
| 714 | tab_attr[i] = &element->attr.attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | } |
| 716 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 717 | return tab_attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
| 719 | err: |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 720 | while (--i >= 0) |
| 721 | kfree(tab_attr[i]); |
| 722 | kfree(tab_attr); |
| 723 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | } |
| 725 | |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 726 | /* |
| 727 | * Figure out which counter table to use depending on |
| 728 | * the device capabilities. |
| 729 | */ |
Hal Rosenstock | 6e2a51a | 2015-12-29 05:43:43 -0500 | [diff] [blame] | 730 | static struct attribute_group *get_counter_table(struct ib_device *dev, |
| 731 | int port_num) |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 732 | { |
| 733 | struct ib_class_port_info cpi; |
| 734 | |
Hal Rosenstock | 6e2a51a | 2015-12-29 05:43:43 -0500 | [diff] [blame] | 735 | if (get_perf_mad(dev, port_num, IB_PMA_CLASS_PORT_INFO, |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 736 | &cpi, 40, sizeof(cpi)) >= 0) { |
Eran Ben Elisha | ee50aea | 2016-02-11 10:24:42 +0200 | [diff] [blame] | 737 | if (cpi.capability_mask & IB_PMA_CLASS_CAP_EXT_WIDTH) |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 738 | /* We have extended counters */ |
| 739 | return &pma_group_ext; |
| 740 | |
Eran Ben Elisha | ee50aea | 2016-02-11 10:24:42 +0200 | [diff] [blame] | 741 | if (cpi.capability_mask & IB_PMA_CLASS_CAP_EXT_WIDTH_NOIETF) |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 742 | /* But not the IETF ones */ |
| 743 | return &pma_group_noietf; |
| 744 | } |
| 745 | |
| 746 | /* Fall back to normal counters */ |
| 747 | return &pma_group; |
| 748 | } |
| 749 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 750 | static int update_hw_stats(struct ib_device *dev, struct rdma_hw_stats *stats, |
| 751 | u8 port_num, int index) |
| 752 | { |
| 753 | int ret; |
| 754 | |
| 755 | if (time_is_after_eq_jiffies(stats->timestamp + stats->lifespan)) |
| 756 | return 0; |
| 757 | ret = dev->get_hw_stats(dev, stats, port_num, index); |
| 758 | if (ret < 0) |
| 759 | return ret; |
| 760 | if (ret == stats->num_counters) |
| 761 | stats->timestamp = jiffies; |
| 762 | |
| 763 | return 0; |
| 764 | } |
| 765 | |
| 766 | static ssize_t print_hw_stat(struct rdma_hw_stats *stats, int index, char *buf) |
| 767 | { |
| 768 | return sprintf(buf, "%llu\n", stats->value[index]); |
| 769 | } |
| 770 | |
| 771 | static ssize_t show_hw_stats(struct kobject *kobj, struct attribute *attr, |
| 772 | char *buf) |
| 773 | { |
| 774 | struct ib_device *dev; |
| 775 | struct ib_port *port; |
| 776 | struct hw_stats_attribute *hsa; |
| 777 | struct rdma_hw_stats *stats; |
| 778 | int ret; |
| 779 | |
| 780 | hsa = container_of(attr, struct hw_stats_attribute, attr); |
| 781 | if (!hsa->port_num) { |
| 782 | dev = container_of((struct device *)kobj, |
| 783 | struct ib_device, dev); |
| 784 | stats = dev->hw_stats; |
| 785 | } else { |
| 786 | port = container_of(kobj, struct ib_port, kobj); |
| 787 | dev = port->ibdev; |
| 788 | stats = port->hw_stats; |
| 789 | } |
| 790 | ret = update_hw_stats(dev, stats, hsa->port_num, hsa->index); |
| 791 | if (ret) |
| 792 | return ret; |
| 793 | return print_hw_stat(stats, hsa->index, buf); |
| 794 | } |
| 795 | |
| 796 | static ssize_t show_stats_lifespan(struct kobject *kobj, |
| 797 | struct attribute *attr, |
| 798 | char *buf) |
| 799 | { |
| 800 | struct hw_stats_attribute *hsa; |
| 801 | int msecs; |
| 802 | |
| 803 | hsa = container_of(attr, struct hw_stats_attribute, attr); |
| 804 | if (!hsa->port_num) { |
| 805 | struct ib_device *dev = container_of((struct device *)kobj, |
| 806 | struct ib_device, dev); |
| 807 | msecs = jiffies_to_msecs(dev->hw_stats->lifespan); |
| 808 | } else { |
| 809 | struct ib_port *p = container_of(kobj, struct ib_port, kobj); |
| 810 | msecs = jiffies_to_msecs(p->hw_stats->lifespan); |
| 811 | } |
| 812 | return sprintf(buf, "%d\n", msecs); |
| 813 | } |
| 814 | |
| 815 | static ssize_t set_stats_lifespan(struct kobject *kobj, |
| 816 | struct attribute *attr, |
| 817 | const char *buf, size_t count) |
| 818 | { |
| 819 | struct hw_stats_attribute *hsa; |
| 820 | int msecs; |
| 821 | int jiffies; |
| 822 | int ret; |
| 823 | |
| 824 | ret = kstrtoint(buf, 10, &msecs); |
| 825 | if (ret) |
| 826 | return ret; |
| 827 | if (msecs < 0 || msecs > 10000) |
| 828 | return -EINVAL; |
| 829 | jiffies = msecs_to_jiffies(msecs); |
| 830 | hsa = container_of(attr, struct hw_stats_attribute, attr); |
| 831 | if (!hsa->port_num) { |
| 832 | struct ib_device *dev = container_of((struct device *)kobj, |
| 833 | struct ib_device, dev); |
| 834 | dev->hw_stats->lifespan = jiffies; |
| 835 | } else { |
| 836 | struct ib_port *p = container_of(kobj, struct ib_port, kobj); |
| 837 | p->hw_stats->lifespan = jiffies; |
| 838 | } |
| 839 | return count; |
| 840 | } |
| 841 | |
| 842 | static void free_hsag(struct kobject *kobj, struct attribute_group *attr_group) |
| 843 | { |
| 844 | struct attribute **attr; |
| 845 | |
| 846 | sysfs_remove_group(kobj, attr_group); |
| 847 | |
| 848 | for (attr = attr_group->attrs; *attr; attr++) |
| 849 | kfree(*attr); |
| 850 | kfree(attr_group); |
| 851 | } |
| 852 | |
| 853 | static struct attribute *alloc_hsa(int index, u8 port_num, const char *name) |
| 854 | { |
| 855 | struct hw_stats_attribute *hsa; |
| 856 | |
| 857 | hsa = kmalloc(sizeof(*hsa), GFP_KERNEL); |
| 858 | if (!hsa) |
| 859 | return NULL; |
| 860 | |
| 861 | hsa->attr.name = (char *)name; |
| 862 | hsa->attr.mode = S_IRUGO; |
| 863 | hsa->show = show_hw_stats; |
| 864 | hsa->store = NULL; |
| 865 | hsa->index = index; |
| 866 | hsa->port_num = port_num; |
| 867 | |
| 868 | return &hsa->attr; |
| 869 | } |
| 870 | |
| 871 | static struct attribute *alloc_hsa_lifespan(char *name, u8 port_num) |
| 872 | { |
| 873 | struct hw_stats_attribute *hsa; |
| 874 | |
| 875 | hsa = kmalloc(sizeof(*hsa), GFP_KERNEL); |
| 876 | if (!hsa) |
| 877 | return NULL; |
| 878 | |
| 879 | hsa->attr.name = name; |
| 880 | hsa->attr.mode = S_IWUSR | S_IRUGO; |
| 881 | hsa->show = show_stats_lifespan; |
| 882 | hsa->store = set_stats_lifespan; |
| 883 | hsa->index = 0; |
| 884 | hsa->port_num = port_num; |
| 885 | |
| 886 | return &hsa->attr; |
| 887 | } |
| 888 | |
| 889 | static void setup_hw_stats(struct ib_device *device, struct ib_port *port, |
| 890 | u8 port_num) |
| 891 | { |
Doug Ledford | 495fbae | 2016-06-07 07:43:46 -0400 | [diff] [blame] | 892 | struct attribute_group *hsag; |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 893 | struct rdma_hw_stats *stats; |
Doug Ledford | 495fbae | 2016-06-07 07:43:46 -0400 | [diff] [blame] | 894 | int i, ret; |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 895 | |
| 896 | stats = device->alloc_hw_stats(device, port_num); |
| 897 | |
| 898 | if (!stats) |
| 899 | return; |
| 900 | |
| 901 | if (!stats->names || stats->num_counters <= 0) |
Colin Ian King | 0147ebc | 2016-06-01 19:06:36 +0100 | [diff] [blame] | 902 | goto err_free_stats; |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 903 | |
Doug Ledford | 41aaa99 | 2016-06-06 19:52:55 -0400 | [diff] [blame] | 904 | /* |
| 905 | * Two extra attribue elements here, one for the lifespan entry and |
| 906 | * one to NULL terminate the list for the sysfs core code |
| 907 | */ |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 908 | hsag = kzalloc(sizeof(*hsag) + |
Doug Ledford | 41aaa99 | 2016-06-06 19:52:55 -0400 | [diff] [blame] | 909 | sizeof(void *) * (stats->num_counters + 2), |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 910 | GFP_KERNEL); |
| 911 | if (!hsag) |
Colin Ian King | 0147ebc | 2016-06-01 19:06:36 +0100 | [diff] [blame] | 912 | goto err_free_stats; |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 913 | |
| 914 | ret = device->get_hw_stats(device, stats, port_num, |
| 915 | stats->num_counters); |
| 916 | if (ret != stats->num_counters) |
Doug Ledford | 495fbae | 2016-06-07 07:43:46 -0400 | [diff] [blame] | 917 | goto err_free_hsag; |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 918 | |
| 919 | stats->timestamp = jiffies; |
| 920 | |
| 921 | hsag->name = "hw_counters"; |
| 922 | hsag->attrs = (void *)hsag + sizeof(*hsag); |
| 923 | |
| 924 | for (i = 0; i < stats->num_counters; i++) { |
| 925 | hsag->attrs[i] = alloc_hsa(i, port_num, stats->names[i]); |
| 926 | if (!hsag->attrs[i]) |
| 927 | goto err; |
Mark Bloch | 8aec013 | 2016-06-04 15:15:24 +0300 | [diff] [blame^] | 928 | sysfs_attr_init(hsag->attrs[i]); |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 929 | } |
| 930 | |
| 931 | /* treat an error here as non-fatal */ |
| 932 | hsag->attrs[i] = alloc_hsa_lifespan("lifespan", port_num); |
Mark Bloch | 8aec013 | 2016-06-04 15:15:24 +0300 | [diff] [blame^] | 933 | if (hsag->attrs[i]) |
| 934 | sysfs_attr_init(hsag->attrs[i]); |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 935 | |
| 936 | if (port) { |
| 937 | struct kobject *kobj = &port->kobj; |
| 938 | ret = sysfs_create_group(kobj, hsag); |
| 939 | if (ret) |
| 940 | goto err; |
| 941 | port->hw_stats_ag = hsag; |
| 942 | port->hw_stats = stats; |
| 943 | } else { |
| 944 | struct kobject *kobj = &device->dev.kobj; |
| 945 | ret = sysfs_create_group(kobj, hsag); |
| 946 | if (ret) |
| 947 | goto err; |
| 948 | device->hw_stats_ag = hsag; |
| 949 | device->hw_stats = stats; |
| 950 | } |
| 951 | |
| 952 | return; |
| 953 | |
| 954 | err: |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 955 | for (; i >= 0; i--) |
| 956 | kfree(hsag->attrs[i]); |
Doug Ledford | 495fbae | 2016-06-07 07:43:46 -0400 | [diff] [blame] | 957 | err_free_hsag: |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 958 | kfree(hsag); |
Colin Ian King | 0147ebc | 2016-06-01 19:06:36 +0100 | [diff] [blame] | 959 | err_free_stats: |
| 960 | kfree(stats); |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 961 | return; |
| 962 | } |
| 963 | |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 964 | static int add_port(struct ib_device *device, int port_num, |
| 965 | int (*port_callback)(struct ib_device *, |
| 966 | u8, struct kobject *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | { |
| 968 | struct ib_port *p; |
| 969 | struct ib_port_attr attr; |
| 970 | int i; |
| 971 | int ret; |
| 972 | |
| 973 | ret = ib_query_port(device, port_num, &attr); |
| 974 | if (ret) |
| 975 | return ret; |
| 976 | |
Roland Dreier | de6eb66 | 2005-11-02 07:23:14 -0800 | [diff] [blame] | 977 | p = kzalloc(sizeof *p, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | if (!p) |
| 979 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
| 981 | p->ibdev = device; |
| 982 | p->port_num = port_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | |
Greg Kroah-Hartman | 35be068 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 984 | ret = kobject_init_and_add(&p->kobj, &port_type, |
Haggai Eran | 373c0ea | 2014-05-18 11:12:24 +0300 | [diff] [blame] | 985 | device->ports_parent, |
Greg Kroah-Hartman | 35be068 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 986 | "%d", port_num); |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 987 | if (ret) { |
| 988 | kfree(p); |
| 989 | return ret; |
| 990 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 992 | p->gid_attr_group = kzalloc(sizeof(*p->gid_attr_group), GFP_KERNEL); |
| 993 | if (!p->gid_attr_group) { |
| 994 | ret = -ENOMEM; |
| 995 | goto err_put; |
| 996 | } |
| 997 | |
| 998 | p->gid_attr_group->port = p; |
| 999 | ret = kobject_init_and_add(&p->gid_attr_group->kobj, &gid_attr_type, |
| 1000 | &p->kobj, "gid_attrs"); |
| 1001 | if (ret) { |
| 1002 | kfree(p->gid_attr_group); |
| 1003 | goto err_put; |
| 1004 | } |
| 1005 | |
Hal Rosenstock | 6e2a51a | 2015-12-29 05:43:43 -0500 | [diff] [blame] | 1006 | p->pma_table = get_counter_table(device, port_num); |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 1007 | ret = sysfs_create_group(&p->kobj, p->pma_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | if (ret) |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 1009 | goto err_put_gid_attrs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | p->gid_group.name = "gids"; |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 1012 | p->gid_group.attrs = alloc_group_attrs(show_port_gid, attr.gid_tbl_len); |
Wei Yongjun | 80b1504 | 2013-06-21 11:24:27 +0800 | [diff] [blame] | 1013 | if (!p->gid_group.attrs) { |
| 1014 | ret = -ENOMEM; |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 1015 | goto err_remove_pma; |
Wei Yongjun | 80b1504 | 2013-06-21 11:24:27 +0800 | [diff] [blame] | 1016 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
| 1018 | ret = sysfs_create_group(&p->kobj, &p->gid_group); |
| 1019 | if (ret) |
| 1020 | goto err_free_gid; |
| 1021 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 1022 | p->gid_attr_group->ndev.name = "ndevs"; |
| 1023 | p->gid_attr_group->ndev.attrs = alloc_group_attrs(show_port_gid_attr_ndev, |
| 1024 | attr.gid_tbl_len); |
| 1025 | if (!p->gid_attr_group->ndev.attrs) { |
| 1026 | ret = -ENOMEM; |
| 1027 | goto err_remove_gid; |
| 1028 | } |
| 1029 | |
| 1030 | ret = sysfs_create_group(&p->gid_attr_group->kobj, |
| 1031 | &p->gid_attr_group->ndev); |
| 1032 | if (ret) |
| 1033 | goto err_free_gid_ndev; |
| 1034 | |
| 1035 | p->gid_attr_group->type.name = "types"; |
| 1036 | p->gid_attr_group->type.attrs = alloc_group_attrs(show_port_gid_attr_gid_type, |
| 1037 | attr.gid_tbl_len); |
| 1038 | if (!p->gid_attr_group->type.attrs) { |
| 1039 | ret = -ENOMEM; |
| 1040 | goto err_remove_gid_ndev; |
| 1041 | } |
| 1042 | |
| 1043 | ret = sysfs_create_group(&p->gid_attr_group->kobj, |
| 1044 | &p->gid_attr_group->type); |
| 1045 | if (ret) |
| 1046 | goto err_free_gid_type; |
| 1047 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | p->pkey_group.name = "pkeys"; |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 1049 | p->pkey_group.attrs = alloc_group_attrs(show_port_pkey, |
| 1050 | attr.pkey_tbl_len); |
Wei Yongjun | 80b1504 | 2013-06-21 11:24:27 +0800 | [diff] [blame] | 1051 | if (!p->pkey_group.attrs) { |
| 1052 | ret = -ENOMEM; |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 1053 | goto err_remove_gid_type; |
Wei Yongjun | 80b1504 | 2013-06-21 11:24:27 +0800 | [diff] [blame] | 1054 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | |
| 1056 | ret = sysfs_create_group(&p->kobj, &p->pkey_group); |
| 1057 | if (ret) |
| 1058 | goto err_free_pkey; |
| 1059 | |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 1060 | if (port_callback) { |
| 1061 | ret = port_callback(device, port_num, &p->kobj); |
| 1062 | if (ret) |
| 1063 | goto err_remove_pkey; |
| 1064 | } |
| 1065 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 1066 | /* |
| 1067 | * If port == 0, it means we have only one port and the parent |
| 1068 | * device, not this port device, should be the holder of the |
| 1069 | * hw_counters |
| 1070 | */ |
| 1071 | if (device->alloc_hw_stats && port_num) |
| 1072 | setup_hw_stats(device, p, port_num); |
| 1073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | list_add_tail(&p->kobj.entry, &device->port_list); |
| 1075 | |
Greg Kroah-Hartman | 35be068 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 1076 | kobject_uevent(&p->kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | return 0; |
| 1078 | |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 1079 | err_remove_pkey: |
| 1080 | sysfs_remove_group(&p->kobj, &p->pkey_group); |
| 1081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | err_free_pkey: |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 1083 | for (i = 0; i < attr.pkey_tbl_len; ++i) |
| 1084 | kfree(p->pkey_group.attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 1086 | kfree(p->pkey_group.attrs); |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 1087 | p->pkey_group.attrs = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 1089 | err_remove_gid_type: |
| 1090 | sysfs_remove_group(&p->gid_attr_group->kobj, |
| 1091 | &p->gid_attr_group->type); |
| 1092 | |
| 1093 | err_free_gid_type: |
| 1094 | for (i = 0; i < attr.gid_tbl_len; ++i) |
| 1095 | kfree(p->gid_attr_group->type.attrs[i]); |
| 1096 | |
| 1097 | kfree(p->gid_attr_group->type.attrs); |
| 1098 | p->gid_attr_group->type.attrs = NULL; |
| 1099 | |
| 1100 | err_remove_gid_ndev: |
| 1101 | sysfs_remove_group(&p->gid_attr_group->kobj, |
| 1102 | &p->gid_attr_group->ndev); |
| 1103 | |
| 1104 | err_free_gid_ndev: |
| 1105 | for (i = 0; i < attr.gid_tbl_len; ++i) |
| 1106 | kfree(p->gid_attr_group->ndev.attrs[i]); |
| 1107 | |
| 1108 | kfree(p->gid_attr_group->ndev.attrs); |
| 1109 | p->gid_attr_group->ndev.attrs = NULL; |
| 1110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | err_remove_gid: |
| 1112 | sysfs_remove_group(&p->kobj, &p->gid_group); |
| 1113 | |
| 1114 | err_free_gid: |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 1115 | for (i = 0; i < attr.gid_tbl_len; ++i) |
| 1116 | kfree(p->gid_group.attrs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | |
Dmitry Torokhov | d48593b | 2005-04-29 00:58:46 -0500 | [diff] [blame] | 1118 | kfree(p->gid_group.attrs); |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 1119 | p->gid_group.attrs = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | |
| 1121 | err_remove_pma: |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 1122 | sysfs_remove_group(&p->kobj, p->pma_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 1124 | err_put_gid_attrs: |
| 1125 | kobject_put(&p->gid_attr_group->kobj); |
| 1126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | err_put: |
Haggai Eran | cad6d02 | 2014-05-18 11:12:25 +0300 | [diff] [blame] | 1128 | kobject_put(&p->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | return ret; |
| 1130 | } |
| 1131 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1132 | static ssize_t show_node_type(struct device *device, |
| 1133 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1135 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | |
| 1137 | switch (dev->node_type) { |
Tom Tucker | 07ebafb | 2006-08-03 16:02:42 -0500 | [diff] [blame] | 1138 | case RDMA_NODE_IB_CA: return sprintf(buf, "%d: CA\n", dev->node_type); |
| 1139 | case RDMA_NODE_RNIC: return sprintf(buf, "%d: RNIC\n", dev->node_type); |
Upinder Malhi \(umalhi\) | 180771a | 2013-09-10 03:36:59 +0000 | [diff] [blame] | 1140 | case RDMA_NODE_USNIC: return sprintf(buf, "%d: usNIC\n", dev->node_type); |
Upinder Malhi | 5db5765 | 2014-01-15 17:02:36 -0800 | [diff] [blame] | 1141 | case RDMA_NODE_USNIC_UDP: return sprintf(buf, "%d: usNIC UDP\n", dev->node_type); |
Tom Tucker | 07ebafb | 2006-08-03 16:02:42 -0500 | [diff] [blame] | 1142 | case RDMA_NODE_IB_SWITCH: return sprintf(buf, "%d: switch\n", dev->node_type); |
| 1143 | case RDMA_NODE_IB_ROUTER: return sprintf(buf, "%d: router\n", dev->node_type); |
| 1144 | default: return sprintf(buf, "%d: <unknown>\n", dev->node_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | } |
| 1146 | } |
| 1147 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1148 | static ssize_t show_sys_image_guid(struct device *device, |
| 1149 | struct device_attribute *dev_attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1151 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | |
| 1153 | return sprintf(buf, "%04x:%04x:%04x:%04x\n", |
Or Gerlitz | 86bee4c | 2015-12-18 10:59:45 +0200 | [diff] [blame] | 1154 | be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[0]), |
| 1155 | be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[1]), |
| 1156 | be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[2]), |
| 1157 | be16_to_cpu(((__be16 *) &dev->attrs.sys_image_guid)[3])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | } |
| 1159 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1160 | static ssize_t show_node_guid(struct device *device, |
| 1161 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1163 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | return sprintf(buf, "%04x:%04x:%04x:%04x\n", |
Sean Hefty | cf311cd | 2006-01-10 07:39:34 -0800 | [diff] [blame] | 1166 | be16_to_cpu(((__be16 *) &dev->node_guid)[0]), |
| 1167 | be16_to_cpu(((__be16 *) &dev->node_guid)[1]), |
| 1168 | be16_to_cpu(((__be16 *) &dev->node_guid)[2]), |
| 1169 | be16_to_cpu(((__be16 *) &dev->node_guid)[3])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | } |
| 1171 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1172 | static ssize_t show_node_desc(struct device *device, |
| 1173 | struct device_attribute *attr, char *buf) |
Roland Dreier | c5bcbbb | 2006-02-02 09:47:14 -0800 | [diff] [blame] | 1174 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1175 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
Roland Dreier | c5bcbbb | 2006-02-02 09:47:14 -0800 | [diff] [blame] | 1176 | |
| 1177 | return sprintf(buf, "%.64s\n", dev->node_desc); |
| 1178 | } |
| 1179 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1180 | static ssize_t set_node_desc(struct device *device, |
| 1181 | struct device_attribute *attr, |
| 1182 | const char *buf, size_t count) |
Roland Dreier | c5bcbbb | 2006-02-02 09:47:14 -0800 | [diff] [blame] | 1183 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1184 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
Roland Dreier | c5bcbbb | 2006-02-02 09:47:14 -0800 | [diff] [blame] | 1185 | struct ib_device_modify desc = {}; |
| 1186 | int ret; |
| 1187 | |
| 1188 | if (!dev->modify_device) |
| 1189 | return -EIO; |
| 1190 | |
| 1191 | memcpy(desc.node_desc, buf, min_t(int, count, 64)); |
| 1192 | ret = ib_modify_device(dev, IB_DEVICE_MODIFY_NODE_DESC, &desc); |
| 1193 | if (ret) |
| 1194 | return ret; |
| 1195 | |
| 1196 | return count; |
| 1197 | } |
| 1198 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1199 | static DEVICE_ATTR(node_type, S_IRUGO, show_node_type, NULL); |
| 1200 | static DEVICE_ATTR(sys_image_guid, S_IRUGO, show_sys_image_guid, NULL); |
| 1201 | static DEVICE_ATTR(node_guid, S_IRUGO, show_node_guid, NULL); |
| 1202 | static DEVICE_ATTR(node_desc, S_IRUGO | S_IWUSR, show_node_desc, set_node_desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1204 | static struct device_attribute *ib_class_attributes[] = { |
| 1205 | &dev_attr_node_type, |
| 1206 | &dev_attr_sys_image_guid, |
| 1207 | &dev_attr_node_guid, |
| 1208 | &dev_attr_node_desc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | }; |
| 1210 | |
Haggai Eran | 584482a | 2014-05-18 11:12:26 +0300 | [diff] [blame] | 1211 | static void free_port_list_attributes(struct ib_device *device) |
| 1212 | { |
| 1213 | struct kobject *p, *t; |
| 1214 | |
| 1215 | list_for_each_entry_safe(p, t, &device->port_list, entry) { |
| 1216 | struct ib_port *port = container_of(p, struct ib_port, kobj); |
| 1217 | list_del(&p->entry); |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 1218 | if (port->hw_stats) { |
| 1219 | kfree(port->hw_stats); |
| 1220 | free_hsag(&port->kobj, port->hw_stats_ag); |
| 1221 | } |
Christoph Lameter | 145d9c5 | 2015-12-21 08:20:29 -0600 | [diff] [blame] | 1222 | sysfs_remove_group(p, port->pma_table); |
Haggai Eran | 584482a | 2014-05-18 11:12:26 +0300 | [diff] [blame] | 1223 | sysfs_remove_group(p, &port->pkey_group); |
| 1224 | sysfs_remove_group(p, &port->gid_group); |
Matan Barak | 470be51 | 2015-12-23 14:56:49 +0200 | [diff] [blame] | 1225 | sysfs_remove_group(&port->gid_attr_group->kobj, |
| 1226 | &port->gid_attr_group->ndev); |
| 1227 | sysfs_remove_group(&port->gid_attr_group->kobj, |
| 1228 | &port->gid_attr_group->type); |
| 1229 | kobject_put(&port->gid_attr_group->kobj); |
Haggai Eran | 584482a | 2014-05-18 11:12:26 +0300 | [diff] [blame] | 1230 | kobject_put(p); |
| 1231 | } |
| 1232 | |
| 1233 | kobject_put(device->ports_parent); |
| 1234 | } |
| 1235 | |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 1236 | int ib_device_register_sysfs(struct ib_device *device, |
| 1237 | int (*port_callback)(struct ib_device *, |
| 1238 | u8, struct kobject *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1240 | struct device *class_dev = &device->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | int ret; |
| 1242 | int i; |
| 1243 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 1244 | device->dev.parent = device->dma_device; |
| 1245 | ret = dev_set_name(class_dev, "%s", device->name); |
| 1246 | if (ret) |
| 1247 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 1249 | ret = device_add(class_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | if (ret) |
| 1251 | goto err; |
| 1252 | |
| 1253 | for (i = 0; i < ARRAY_SIZE(ib_class_attributes); ++i) { |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1254 | ret = device_create_file(class_dev, ib_class_attributes[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | if (ret) |
| 1256 | goto err_unregister; |
| 1257 | } |
| 1258 | |
Greg Kroah-Hartman | 35be068 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 1259 | device->ports_parent = kobject_create_and_add("ports", |
Haggai Eran | 373c0ea | 2014-05-18 11:12:24 +0300 | [diff] [blame] | 1260 | &class_dev->kobj); |
Li Zefan | c7482b8 | 2008-02-15 10:24:49 +0800 | [diff] [blame] | 1261 | if (!device->ports_parent) { |
| 1262 | ret = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | goto err_put; |
Li Zefan | c7482b8 | 2008-02-15 10:24:49 +0800 | [diff] [blame] | 1264 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | |
Hal Rosenstock | 4139032 | 2015-06-29 09:57:00 -0400 | [diff] [blame] | 1266 | if (rdma_cap_ib_switch(device)) { |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 1267 | ret = add_port(device, 0, port_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | if (ret) |
| 1269 | goto err_put; |
| 1270 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | for (i = 1; i <= device->phys_port_cnt; ++i) { |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 1272 | ret = add_port(device, i, port_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | if (ret) |
| 1274 | goto err_put; |
| 1275 | } |
| 1276 | } |
| 1277 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 1278 | if (device->alloc_hw_stats) |
| 1279 | setup_hw_stats(device, NULL, 0); |
Steve Wise | 7f624d0 | 2008-07-14 23:48:48 -0700 | [diff] [blame] | 1280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | return 0; |
| 1282 | |
| 1283 | err_put: |
Haggai Eran | 584482a | 2014-05-18 11:12:26 +0300 | [diff] [blame] | 1284 | free_port_list_attributes(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | err_unregister: |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1287 | device_unregister(class_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | |
| 1289 | err: |
| 1290 | return ret; |
| 1291 | } |
| 1292 | |
| 1293 | void ib_device_unregister_sysfs(struct ib_device *device) |
| 1294 | { |
Haggai Eran | 584482a | 2014-05-18 11:12:26 +0300 | [diff] [blame] | 1295 | int i; |
Roland Dreier | 9206dff | 2009-02-25 13:27:46 -0800 | [diff] [blame] | 1296 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 1297 | /* Hold kobject until ib_dealloc_device() */ |
| 1298 | kobject_get(&device->dev.kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Haggai Eran | 584482a | 2014-05-18 11:12:26 +0300 | [diff] [blame] | 1300 | free_port_list_attributes(device); |
| 1301 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 1302 | if (device->hw_stats) { |
| 1303 | kfree(device->hw_stats); |
| 1304 | free_hsag(&device->dev.kobj, device->hw_stats_ag); |
| 1305 | } |
| 1306 | |
Haggai Eran | 584482a | 2014-05-18 11:12:26 +0300 | [diff] [blame] | 1307 | for (i = 0; i < ARRAY_SIZE(ib_class_attributes); ++i) |
| 1308 | device_remove_file(&device->dev, ib_class_attributes[i]); |
| 1309 | |
Tony Jones | f4e91eb | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1310 | device_unregister(&device->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | } |