qlcnic_sysfs.c 35.1 KB
Newer Older
1 2 3 4 5 6 7
/*
 * QLogic qlcnic NIC Driver
 * Copyright (c) 2009-2013 QLogic Corporation
 *
 * See LICENSE.qlcnic for copyright and licensing details.
 */

8 9 10 11 12
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/interrupt.h>

#include "qlcnic.h"
S
Sony Chacko 已提交
13
#include "qlcnic_hw.h"
14 15 16 17 18 19 20 21 22 23

#include <linux/swab.h>
#include <linux/dma-mapping.h>
#include <net/ip.h>
#include <linux/ipv6.h>
#include <linux/inetdevice.h>
#include <linux/sysfs.h>
#include <linux/aer.h>
#include <linux/log2.h>

S
Sony Chacko 已提交
24 25
#define QLC_STATUS_UNSUPPORTED_CMD	-2

26 27 28 29 30 31 32 33 34 35
int qlcnicvf_config_bridged_mode(struct qlcnic_adapter *adapter, u32 enable)
{
	return -EOPNOTSUPP;
}

int qlcnicvf_config_led(struct qlcnic_adapter *adapter, u32 state, u32 rate)
{
	return -EOPNOTSUPP;
}

36 37 38
static ssize_t qlcnic_store_bridged_mode(struct device *dev,
					 struct device_attribute *attr,
					 const char *buf, size_t len)
39 40 41 42 43
{
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	unsigned long new;
	int ret = -EINVAL;

44
	if (!(adapter->ahw->capabilities & QLCNIC_FW_CAPABILITY_BDG))
45 46 47 48 49
		goto err_out;

	if (!test_bit(__QLCNIC_DEV_UP, &adapter->state))
		goto err_out;

50
	if (kstrtoul(buf, 2, &new))
51 52
		goto err_out;

S
Sony Chacko 已提交
53
	if (!qlcnic_config_bridged_mode(adapter, !!new))
54 55 56 57 58 59
		ret = len;

err_out:
	return ret;
}

60 61 62
static ssize_t qlcnic_show_bridged_mode(struct device *dev,
					struct device_attribute *attr,
					char *buf)
63 64 65 66
{
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	int bridged_mode = 0;

67
	if (adapter->ahw->capabilities & QLCNIC_FW_CAPABILITY_BDG)
68 69 70 71 72
		bridged_mode = !!(adapter->flags & QLCNIC_BRIDGE_ENABLED);

	return sprintf(buf, "%d\n", bridged_mode);
}

73 74 75
static ssize_t qlcnic_store_diag_mode(struct device *dev,
				      struct device_attribute *attr,
				      const char *buf, size_t len)
76 77 78 79
{
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	unsigned long new;

80
	if (kstrtoul(buf, 2, &new))
81 82 83 84 85 86 87 88
		return -EINVAL;

	if (!!new != !!(adapter->flags & QLCNIC_DIAG_ENABLED))
		adapter->flags ^= QLCNIC_DIAG_ENABLED;

	return len;
}

89 90
static ssize_t qlcnic_show_diag_mode(struct device *dev,
				     struct device_attribute *attr, char *buf)
91 92
{
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
S
Sony Chacko 已提交
93
	return sprintf(buf, "%d\n", !!(adapter->flags & QLCNIC_DIAG_ENABLED));
94 95
}

96 97
static int qlcnic_validate_beacon(struct qlcnic_adapter *adapter, u16 beacon,
				  u8 *state, u8 *rate)
98 99 100 101 102 103 104 105 106
{
	*rate = LSB(beacon);
	*state = MSB(beacon);

	QLCDB(adapter, DRV, "rate %x state %x\n", *rate, *state);

	if (!*state) {
		*rate = __QLCNIC_MAX_LED_RATE;
		return 0;
107
	} else if (*state > __QLCNIC_MAX_LED_STATE) {
108
		return -EINVAL;
109
	}
110 111 112 113 114 115 116

	if ((!*rate) || (*rate > __QLCNIC_MAX_LED_RATE))
		return -EINVAL;

	return 0;
}

117 118
static int qlcnic_83xx_store_beacon(struct qlcnic_adapter *adapter,
				    const char *buf, size_t len)
119
{
S
Sony Chacko 已提交
120 121
	struct qlcnic_hardware_context *ahw = adapter->ahw;
	unsigned long h_beacon;
122
	int err;
123

124 125
	if (test_bit(__QLCNIC_RESETTING, &adapter->state))
		return -EIO;
126

127 128
	if (kstrtoul(buf, 2, &h_beacon))
		return -EINVAL;
S
Sony Chacko 已提交
129

130
	if (ahw->beacon_state == h_beacon)
S
Sony Chacko 已提交
131
		return len;
132 133 134 135 136 137 138

	rtnl_lock();
	if (!ahw->beacon_state) {
		if (test_and_set_bit(__QLCNIC_LED_ENABLE, &adapter->state)) {
			rtnl_unlock();
			return -EBUSY;
		}
S
Sony Chacko 已提交
139 140
	}

141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	if (h_beacon)
		err = qlcnic_83xx_config_led(adapter, 1, h_beacon);
	else
		err = qlcnic_83xx_config_led(adapter, 0, !h_beacon);
	if (!err)
		ahw->beacon_state = h_beacon;

	if (!ahw->beacon_state)
		clear_bit(__QLCNIC_LED_ENABLE, &adapter->state);

	rtnl_unlock();
	return len;
}

static int qlcnic_82xx_store_beacon(struct qlcnic_adapter *adapter,
				    const char *buf, size_t len)
{
	struct qlcnic_hardware_context *ahw = adapter->ahw;
159
	int err, drv_sds_rings = adapter->drv_sds_rings;
160 161 162
	u16 beacon;
	u8 h_beacon_state, b_state, b_rate;

163 164 165 166 167 168 169 170
	if (len != sizeof(u16))
		return QL_STATUS_INVALID_PARAM;

	memcpy(&beacon, buf, sizeof(u16));
	err = qlcnic_validate_beacon(adapter, beacon, &b_state, &b_rate);
	if (err)
		return err;

171
	if (ahw->extra_capability[0] & QLCNIC_FW_CAPABILITY_2_BEACON) {
172
		err = qlcnic_get_beacon_state(adapter, &h_beacon_state);
173 174 175
		if (err) {
			netdev_err(adapter->netdev,
				   "Failed to get current beacon state\n");
176 177 178 179 180 181 182 183 184
		} else {
			if (h_beacon_state == QLCNIC_BEACON_DISABLE)
				ahw->beacon_state = 0;
			else if (h_beacon_state == QLCNIC_BEACON_EANBLE)
				ahw->beacon_state = 2;
		}
	}

	if (ahw->beacon_state == b_state)
185 186 187
		return len;

	rtnl_lock();
188
	if (!ahw->beacon_state) {
189 190 191 192
		if (test_and_set_bit(__QLCNIC_LED_ENABLE, &adapter->state)) {
			rtnl_unlock();
			return -EBUSY;
		}
193
	}
194 195 196 197 198 199 200 201 202 203 204 205 206 207

	if (test_bit(__QLCNIC_RESETTING, &adapter->state)) {
		err = -EIO;
		goto out;
	}

	if (!test_bit(__QLCNIC_DEV_UP, &adapter->state)) {
		err = qlcnic_diag_alloc_res(adapter->netdev, QLCNIC_LED_TEST);
		if (err)
			goto out;
		set_bit(__QLCNIC_DIAG_RES_ALLOC, &adapter->state);
	}

	err = qlcnic_config_led(adapter, b_state, b_rate);
208
	if (!err) {
209
		err = len;
S
Sony Chacko 已提交
210
		ahw->beacon_state = b_state;
211
	}
212 213

	if (test_and_clear_bit(__QLCNIC_DIAG_RES_ALLOC, &adapter->state))
214
		qlcnic_diag_free_res(adapter->netdev, drv_sds_rings);
215

216 217
out:
	if (!ahw->beacon_state)
218 219 220 221 222 223
		clear_bit(__QLCNIC_LED_ENABLE, &adapter->state);
	rtnl_unlock();

	return err;
}

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
static ssize_t qlcnic_store_beacon(struct device *dev,
				   struct device_attribute *attr,
				   const char *buf, size_t len)
{
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	int err = 0;

	if (adapter->ahw->op_mode == QLCNIC_NON_PRIV_FUNC) {
		dev_warn(dev,
			 "LED test not supported in non privileged mode\n");
		return -EOPNOTSUPP;
	}

	if (qlcnic_82xx_check(adapter))
		err = qlcnic_82xx_store_beacon(adapter, buf, len);
	else if (qlcnic_83xx_check(adapter))
		err = qlcnic_83xx_store_beacon(adapter, buf, len);
	else
		return -EIO;

	return err;
}

247 248
static ssize_t qlcnic_show_beacon(struct device *dev,
				  struct device_attribute *attr, char *buf)
249 250 251 252 253 254
{
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);

	return sprintf(buf, "%d\n", adapter->ahw->beacon_state);
}

255 256
static int qlcnic_sysfs_validate_crb(struct qlcnic_adapter *adapter,
				     loff_t offset, size_t size)
257 258 259 260 261 262 263 264
{
	size_t crb_size = 4;

	if (!(adapter->flags & QLCNIC_DIAG_ENABLED))
		return -EIO;

	if (offset < QLCNIC_PCI_CRBSPACE) {
		if (ADDR_IN_RANGE(offset, QLCNIC_PCI_CAMQM,
265
				  QLCNIC_PCI_CAMQM_END))
266 267 268 269 270 271 272 273 274 275 276
			crb_size = 8;
		else
			return -EINVAL;
	}

	if ((size != crb_size) || (offset & (crb_size-1)))
		return  -EINVAL;

	return 0;
}

277 278 279
static ssize_t qlcnic_sysfs_read_crb(struct file *filp, struct kobject *kobj,
				     struct bin_attribute *attr, char *buf,
				     loff_t offset, size_t size)
280 281 282 283 284 285 286 287
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	int ret;

	ret = qlcnic_sysfs_validate_crb(adapter, offset, size);
	if (ret != 0)
		return ret;
S
Sony Chacko 已提交
288
	qlcnic_read_crb(adapter, buf, offset, size);
289 290 291 292

	return size;
}

293 294 295
static ssize_t qlcnic_sysfs_write_crb(struct file *filp, struct kobject *kobj,
				      struct bin_attribute *attr, char *buf,
				      loff_t offset, size_t size)
296 297 298 299 300 301 302 303 304
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	int ret;

	ret = qlcnic_sysfs_validate_crb(adapter, offset, size);
	if (ret != 0)
		return ret;

S
Sony Chacko 已提交
305
	qlcnic_write_crb(adapter, buf, offset, size);
306 307 308
	return size;
}

309 310
static int qlcnic_sysfs_validate_mem(struct qlcnic_adapter *adapter,
				     loff_t offset, size_t size)
311 312 313 314 315 316 317 318 319 320
{
	if (!(adapter->flags & QLCNIC_DIAG_ENABLED))
		return -EIO;

	if ((size != 8) || (offset & 0x7))
		return  -EIO;

	return 0;
}

321 322 323
static ssize_t qlcnic_sysfs_read_mem(struct file *filp, struct kobject *kobj,
				     struct bin_attribute *attr, char *buf,
				     loff_t offset, size_t size)
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	u64 data;
	int ret;

	ret = qlcnic_sysfs_validate_mem(adapter, offset, size);
	if (ret != 0)
		return ret;

	if (qlcnic_pci_mem_read_2M(adapter, offset, &data))
		return -EIO;

	memcpy(buf, &data, size);

	return size;
}

342 343 344
static ssize_t qlcnic_sysfs_write_mem(struct file *filp, struct kobject *kobj,
				      struct bin_attribute *attr, char *buf,
				      loff_t offset, size_t size)
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	u64 data;
	int ret;

	ret = qlcnic_sysfs_validate_mem(adapter, offset, size);
	if (ret != 0)
		return ret;

	memcpy(&data, buf, size);

	if (qlcnic_pci_mem_write_2M(adapter, offset, data))
		return -EIO;

	return size;
}

363
static u32 qlcnic_get_pci_func_count(struct qlcnic_adapter *adapter)
S
Sony Chacko 已提交
364
{
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
	struct qlcnic_hardware_context *ahw = adapter->ahw;
	u32 count = 0;

	if (!(adapter->flags & QLCNIC_ESWITCH_ENABLED))
		return ahw->total_nic_func;

	if (ahw->total_pci_func <= QLC_DEFAULT_VNIC_COUNT)
		count = QLC_DEFAULT_VNIC_COUNT;
	else
		count = ahw->max_vnic_func;

	return count;
}

int qlcnic_is_valid_nic_func(struct qlcnic_adapter *adapter, u8 pci_func)
{
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
S
Sony Chacko 已提交
382
	int i;
383 384

	for (i = 0; i < pci_func_count; i++) {
S
Sony Chacko 已提交
385 386 387 388 389 390 391
		if (adapter->npars[i].pci_func == pci_func)
			return i;
	}

	return -1;
}

392 393
static int validate_pm_config(struct qlcnic_adapter *adapter,
			      struct qlcnic_pm_func_cfg *pm_cfg, int count)
394
{
S
Sony Chacko 已提交
395 396 397
	u8 src_pci_func, s_esw_id, d_esw_id;
	u8 dest_pci_func;
	int i, src_index, dest_index;
398 399 400 401

	for (i = 0; i < count; i++) {
		src_pci_func = pm_cfg[i].pci_func;
		dest_pci_func = pm_cfg[i].dest_npar;
S
Sony Chacko 已提交
402 403
		src_index = qlcnic_is_valid_nic_func(adapter, src_pci_func);
		if (src_index < 0)
404 405
			return QL_STATUS_INVALID_PARAM;

S
Sony Chacko 已提交
406 407
		dest_index = qlcnic_is_valid_nic_func(adapter, dest_pci_func);
		if (dest_index < 0)
408 409
			return QL_STATUS_INVALID_PARAM;

S
Sony Chacko 已提交
410 411
		s_esw_id = adapter->npars[src_index].phy_port;
		d_esw_id = adapter->npars[dest_index].phy_port;
412 413 414 415 416

		if (s_esw_id != d_esw_id)
			return QL_STATUS_INVALID_PARAM;
	}

S
Sony Chacko 已提交
417
	return 0;
418 419
}

420 421 422 423 424
static ssize_t qlcnic_sysfs_write_pm_config(struct file *filp,
					    struct kobject *kobj,
					    struct bin_attribute *attr,
					    char *buf, loff_t offset,
					    size_t size)
425 426 427 428 429
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	struct qlcnic_pm_func_cfg *pm_cfg;
	u32 id, action, pci_func;
S
Sony Chacko 已提交
430
	int count, rem, i, ret, index;
431 432 433 434 435 436

	count	= size / sizeof(struct qlcnic_pm_func_cfg);
	rem	= size % sizeof(struct qlcnic_pm_func_cfg);
	if (rem)
		return QL_STATUS_INVALID_PARAM;

437
	pm_cfg = (struct qlcnic_pm_func_cfg *)buf;
438
	ret = validate_pm_config(adapter, pm_cfg, count);
S
Sony Chacko 已提交
439

440 441 442 443 444
	if (ret)
		return ret;
	for (i = 0; i < count; i++) {
		pci_func = pm_cfg[i].pci_func;
		action = !!pm_cfg[i].action;
S
Sony Chacko 已提交
445 446 447 448 449 450 451
		index = qlcnic_is_valid_nic_func(adapter, pci_func);
		if (index < 0)
			return QL_STATUS_INVALID_PARAM;

		id = adapter->npars[index].phy_port;
		ret = qlcnic_config_port_mirroring(adapter, id,
						   action, pci_func);
452 453 454 455 456 457
		if (ret)
			return ret;
	}

	for (i = 0; i < count; i++) {
		pci_func = pm_cfg[i].pci_func;
S
Sony Chacko 已提交
458
		index = qlcnic_is_valid_nic_func(adapter, pci_func);
459 460
		if (index < 0)
			return QL_STATUS_INVALID_PARAM;
S
Sony Chacko 已提交
461 462 463
		id = adapter->npars[index].phy_port;
		adapter->npars[index].enable_pm = !!pm_cfg[i].action;
		adapter->npars[index].dest_npar = id;
464
	}
S
Sony Chacko 已提交
465

466 467 468
	return size;
}

469 470 471 472 473
static ssize_t qlcnic_sysfs_read_pm_config(struct file *filp,
					   struct kobject *kobj,
					   struct bin_attribute *attr,
					   char *buf, loff_t offset,
					   size_t size)
474 475 476
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
477 478 479
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
	struct qlcnic_pm_func_cfg *pm_cfg;
	int i, pm_cfg_size;
S
Sony Chacko 已提交
480
	u8 pci_func;
481

482 483
	pm_cfg_size = pci_func_count * sizeof(*pm_cfg);
	if (size != pm_cfg_size)
484 485
		return QL_STATUS_INVALID_PARAM;

486 487
	memset(buf, 0, pm_cfg_size);
	pm_cfg = (struct qlcnic_pm_func_cfg *)buf;
S
Sony Chacko 已提交
488

489
	for (i = 0; i < pci_func_count; i++) {
S
Sony Chacko 已提交
490
		pci_func = adapter->npars[i].pci_func;
491 492 493 494 495 496
		if (!adapter->npars[i].active)
			continue;

		if (!adapter->npars[i].eswitch_status)
			continue;

S
Sony Chacko 已提交
497 498 499
		pm_cfg[pci_func].action = adapter->npars[i].enable_pm;
		pm_cfg[pci_func].dest_npar = 0;
		pm_cfg[pci_func].pci_func = i;
500 501 502 503
	}
	return size;
}

504 505
static int validate_esw_config(struct qlcnic_adapter *adapter,
			       struct qlcnic_esw_func_cfg *esw_cfg, int count)
506
{
507 508 509
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
	struct qlcnic_hardware_context *ahw = adapter->ahw;
	int i, ret;
510 511 512
	u32 op_mode;
	u8 pci_func;

S
Sony Chacko 已提交
513
	if (qlcnic_82xx_check(adapter))
514
		op_mode = readl(ahw->pci_base0 + QLCNIC_DRV_OP_MODE);
S
Sony Chacko 已提交
515
	else
516
		op_mode = QLCRDX(ahw, QLC_83XX_DRV_OP_MODE);
517 518 519

	for (i = 0; i < count; i++) {
		pci_func = esw_cfg[i].pci_func;
520
		if (pci_func >= pci_func_count)
521 522
			return QL_STATUS_INVALID_PARAM;

S
Sony Chacko 已提交
523 524
		if (adapter->ahw->op_mode == QLCNIC_MGMT_FUNC)
			if (qlcnic_is_valid_nic_func(adapter, pci_func) < 0)
525 526 527 528
				return QL_STATUS_INVALID_PARAM;

		switch (esw_cfg[i].op_mode) {
		case QLCNIC_PORT_DEFAULTS:
S
Sony Chacko 已提交
529 530 531 532 533 534 535 536 537
			if (qlcnic_82xx_check(adapter)) {
				ret = QLC_DEV_GET_DRV(op_mode, pci_func);
			} else {
				ret = QLC_83XX_GET_FUNC_PRIVILEGE(op_mode,
								  pci_func);
				esw_cfg[i].offload_flags = 0;
			}

			if (ret != QLCNIC_NON_PRIV_FUNC) {
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
				if (esw_cfg[i].mac_anti_spoof != 0)
					return QL_STATUS_INVALID_PARAM;
				if (esw_cfg[i].mac_override != 1)
					return QL_STATUS_INVALID_PARAM;
				if (esw_cfg[i].promisc_mode != 1)
					return QL_STATUS_INVALID_PARAM;
			}
			break;
		case QLCNIC_ADD_VLAN:
			if (!IS_VALID_VLAN(esw_cfg[i].vlan_id))
				return QL_STATUS_INVALID_PARAM;
			if (!esw_cfg[i].op_type)
				return QL_STATUS_INVALID_PARAM;
			break;
		case QLCNIC_DEL_VLAN:
			if (!esw_cfg[i].op_type)
				return QL_STATUS_INVALID_PARAM;
			break;
		default:
			return QL_STATUS_INVALID_PARAM;
		}
	}
S
Sony Chacko 已提交
560

561 562 563
	return 0;
}

564 565 566 567 568
static ssize_t qlcnic_sysfs_write_esw_config(struct file *file,
					     struct kobject *kobj,
					     struct bin_attribute *attr,
					     char *buf, loff_t offset,
					     size_t size)
569 570 571 572 573 574
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	struct qlcnic_esw_func_cfg *esw_cfg;
	struct qlcnic_npar_info *npar;
	int count, rem, i, ret;
S
Sony Chacko 已提交
575 576
	int index;
	u8 op_mode = 0, pci_func;
577 578 579 580 581 582

	count	= size / sizeof(struct qlcnic_esw_func_cfg);
	rem	= size % sizeof(struct qlcnic_esw_func_cfg);
	if (rem)
		return QL_STATUS_INVALID_PARAM;

583
	esw_cfg = (struct qlcnic_esw_func_cfg *)buf;
584 585 586 587 588
	ret = validate_esw_config(adapter, esw_cfg, count);
	if (ret)
		return ret;

	for (i = 0; i < count; i++) {
S
Sony Chacko 已提交
589
		if (adapter->ahw->op_mode == QLCNIC_MGMT_FUNC)
590 591 592 593 594 595 596 597 598 599 600 601 602 603
			if (qlcnic_config_switch_port(adapter, &esw_cfg[i]))
				return QL_STATUS_INVALID_PARAM;

		if (adapter->ahw->pci_func != esw_cfg[i].pci_func)
			continue;

		op_mode = esw_cfg[i].op_mode;
		qlcnic_get_eswitch_port_config(adapter, &esw_cfg[i]);
		esw_cfg[i].op_mode = op_mode;
		esw_cfg[i].pci_func = adapter->ahw->pci_func;

		switch (esw_cfg[i].op_mode) {
		case QLCNIC_PORT_DEFAULTS:
			qlcnic_set_eswitch_port_features(adapter, &esw_cfg[i]);
604 605 606
			rtnl_lock();
			qlcnic_set_netdev_features(adapter, &esw_cfg[i]);
			rtnl_unlock();
607 608 609 610 611 612 613 614 615 616 617
			break;
		case QLCNIC_ADD_VLAN:
			qlcnic_set_vlan_config(adapter, &esw_cfg[i]);
			break;
		case QLCNIC_DEL_VLAN:
			esw_cfg[i].vlan_id = 0;
			qlcnic_set_vlan_config(adapter, &esw_cfg[i]);
			break;
		}
	}

618
	if (adapter->ahw->op_mode != QLCNIC_MGMT_FUNC)
619 620 621 622
		goto out;

	for (i = 0; i < count; i++) {
		pci_func = esw_cfg[i].pci_func;
S
Sony Chacko 已提交
623
		index = qlcnic_is_valid_nic_func(adapter, pci_func);
624 625
		if (index < 0)
			return QL_STATUS_INVALID_PARAM;
S
Sony Chacko 已提交
626
		npar = &adapter->npars[index];
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
		switch (esw_cfg[i].op_mode) {
		case QLCNIC_PORT_DEFAULTS:
			npar->promisc_mode = esw_cfg[i].promisc_mode;
			npar->mac_override = esw_cfg[i].mac_override;
			npar->offload_flags = esw_cfg[i].offload_flags;
			npar->mac_anti_spoof = esw_cfg[i].mac_anti_spoof;
			npar->discard_tagged = esw_cfg[i].discard_tagged;
			break;
		case QLCNIC_ADD_VLAN:
			npar->pvid = esw_cfg[i].vlan_id;
			break;
		case QLCNIC_DEL_VLAN:
			npar->pvid = 0;
			break;
		}
	}
out:
	return size;
}

647 648 649 650 651
static ssize_t qlcnic_sysfs_read_esw_config(struct file *file,
					    struct kobject *kobj,
					    struct bin_attribute *attr,
					    char *buf, loff_t offset,
					    size_t size)
652 653 654
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
655 656 657
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
	struct qlcnic_esw_func_cfg *esw_cfg;
	size_t esw_cfg_size;
S
Sony Chacko 已提交
658
	u8 i, pci_func;
659

660 661
	esw_cfg_size = pci_func_count * sizeof(*esw_cfg);
	if (size != esw_cfg_size)
662 663
		return QL_STATUS_INVALID_PARAM;

664 665
	memset(buf, 0, esw_cfg_size);
	esw_cfg = (struct qlcnic_esw_func_cfg *)buf;
S
Sony Chacko 已提交
666

667
	for (i = 0; i < pci_func_count; i++) {
S
Sony Chacko 已提交
668
		pci_func = adapter->npars[i].pci_func;
669 670 671 672 673 674
		if (!adapter->npars[i].active)
			continue;

		if (!adapter->npars[i].eswitch_status)
			continue;

S
Sony Chacko 已提交
675 676
		esw_cfg[pci_func].pci_func = pci_func;
		if (qlcnic_get_eswitch_port_config(adapter, &esw_cfg[pci_func]))
677 678 679 680 681
			return QL_STATUS_INVALID_PARAM;
	}
	return size;
}

682 683 684
static int validate_npar_config(struct qlcnic_adapter *adapter,
				struct qlcnic_npar_func_cfg *np_cfg,
				int count)
685 686 687 688 689
{
	u8 pci_func, i;

	for (i = 0; i < count; i++) {
		pci_func = np_cfg[i].pci_func;
S
Sony Chacko 已提交
690
		if (qlcnic_is_valid_nic_func(adapter, pci_func) < 0)
691 692 693 694 695 696 697 698 699
			return QL_STATUS_INVALID_PARAM;

		if (!IS_VALID_BW(np_cfg[i].min_bw) ||
		    !IS_VALID_BW(np_cfg[i].max_bw))
			return QL_STATUS_INVALID_PARAM;
	}
	return 0;
}

700 701 702 703 704
static ssize_t qlcnic_sysfs_write_npar_config(struct file *file,
					      struct kobject *kobj,
					      struct bin_attribute *attr,
					      char *buf, loff_t offset,
					      size_t size)
705 706 707 708 709
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	struct qlcnic_info nic_info;
	struct qlcnic_npar_func_cfg *np_cfg;
S
Sony Chacko 已提交
710
	int i, count, rem, ret, index;
711 712 713 714 715 716 717
	u8 pci_func;

	count	= size / sizeof(struct qlcnic_npar_func_cfg);
	rem	= size % sizeof(struct qlcnic_npar_func_cfg);
	if (rem)
		return QL_STATUS_INVALID_PARAM;

718
	np_cfg = (struct qlcnic_npar_func_cfg *)buf;
719 720 721 722
	ret = validate_npar_config(adapter, np_cfg, count);
	if (ret)
		return ret;

S
Sony Chacko 已提交
723
	for (i = 0; i < count; i++) {
724
		pci_func = np_cfg[i].pci_func;
S
Sony Chacko 已提交
725 726

		memset(&nic_info, 0, sizeof(struct qlcnic_info));
727 728 729 730 731 732 733 734 735
		ret = qlcnic_get_nic_info(adapter, &nic_info, pci_func);
		if (ret)
			return ret;
		nic_info.pci_func = pci_func;
		nic_info.min_tx_bw = np_cfg[i].min_bw;
		nic_info.max_tx_bw = np_cfg[i].max_bw;
		ret = qlcnic_set_nic_info(adapter, &nic_info);
		if (ret)
			return ret;
S
Sony Chacko 已提交
736
		index = qlcnic_is_valid_nic_func(adapter, pci_func);
737 738
		if (index < 0)
			return QL_STATUS_INVALID_PARAM;
S
Sony Chacko 已提交
739 740
		adapter->npars[index].min_bw = nic_info.min_tx_bw;
		adapter->npars[index].max_bw = nic_info.max_tx_bw;
741 742 743 744
	}

	return size;
}
745 746 747 748 749 750

static ssize_t qlcnic_sysfs_read_npar_config(struct file *file,
					     struct kobject *kobj,
					     struct bin_attribute *attr,
					     char *buf, loff_t offset,
					     size_t size)
751 752 753
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
754 755
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
	struct qlcnic_npar_func_cfg *np_cfg;
756
	struct qlcnic_info nic_info;
757
	size_t np_cfg_size;
758 759
	int i, ret;

760 761
	np_cfg_size = pci_func_count * sizeof(*np_cfg);
	if (size != np_cfg_size)
762 763
		return QL_STATUS_INVALID_PARAM;

S
Sony Chacko 已提交
764
	memset(&nic_info, 0, sizeof(struct qlcnic_info));
765 766
	memset(buf, 0, np_cfg_size);
	np_cfg = (struct qlcnic_npar_func_cfg *)buf;
S
Sony Chacko 已提交
767

768
	for (i = 0; i < pci_func_count; i++) {
S
Sony Chacko 已提交
769
		if (qlcnic_is_valid_nic_func(adapter, i) < 0)
770 771 772 773
			continue;
		ret = qlcnic_get_nic_info(adapter, &nic_info, i);
		if (ret)
			return ret;
774 775
		if (!adapter->npars[i].eswitch_status)
			continue;
776 777 778 779
		np_cfg[i].pci_func = i;
		np_cfg[i].op_mode = (u8)nic_info.op_mode;
		np_cfg[i].port_num = nic_info.phys_port;
		np_cfg[i].fw_capab = nic_info.capabilities;
780
		np_cfg[i].min_bw = nic_info.min_tx_bw;
781 782 783 784 785 786 787
		np_cfg[i].max_bw = nic_info.max_tx_bw;
		np_cfg[i].max_tx_queues = nic_info.max_tx_ques;
		np_cfg[i].max_rx_queues = nic_info.max_rx_ques;
	}
	return size;
}

788 789 790 791 792
static ssize_t qlcnic_sysfs_get_port_stats(struct file *file,
					   struct kobject *kobj,
					   struct bin_attribute *attr,
					   char *buf, loff_t offset,
					   size_t size)
793 794 795
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
796
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
797 798 799
	struct qlcnic_esw_statistics port_stats;
	int ret;

S
Sony Chacko 已提交
800 801 802
	if (qlcnic_83xx_check(adapter))
		return QLC_STATUS_UNSUPPORTED_CMD;

803 804 805
	if (size != sizeof(struct qlcnic_esw_statistics))
		return QL_STATUS_INVALID_PARAM;

806
	if (offset >= pci_func_count)
807 808 809 810
		return QL_STATUS_INVALID_PARAM;

	memset(&port_stats, 0, size);
	ret = qlcnic_get_port_stats(adapter, offset, QLCNIC_QUERY_RX_COUNTER,
811
				    &port_stats.rx);
812 813 814 815
	if (ret)
		return ret;

	ret = qlcnic_get_port_stats(adapter, offset, QLCNIC_QUERY_TX_COUNTER,
816
				    &port_stats.tx);
817 818 819 820 821 822 823
	if (ret)
		return ret;

	memcpy(buf, &port_stats, size);
	return size;
}

824 825 826 827 828
static ssize_t qlcnic_sysfs_get_esw_stats(struct file *file,
					  struct kobject *kobj,
					  struct bin_attribute *attr,
					  char *buf, loff_t offset,
					  size_t size)
829 830 831 832 833 834
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	struct qlcnic_esw_statistics esw_stats;
	int ret;

S
Sony Chacko 已提交
835 836 837
	if (qlcnic_83xx_check(adapter))
		return QLC_STATUS_UNSUPPORTED_CMD;

838 839 840 841 842 843 844 845
	if (size != sizeof(struct qlcnic_esw_statistics))
		return QL_STATUS_INVALID_PARAM;

	if (offset >= QLCNIC_NIU_MAX_XG_PORTS)
		return QL_STATUS_INVALID_PARAM;

	memset(&esw_stats, 0, size);
	ret = qlcnic_get_eswitch_stats(adapter, offset, QLCNIC_QUERY_RX_COUNTER,
846
				       &esw_stats.rx);
847 848 849 850
	if (ret)
		return ret;

	ret = qlcnic_get_eswitch_stats(adapter, offset, QLCNIC_QUERY_TX_COUNTER,
851
				       &esw_stats.tx);
852 853 854 855 856 857 858
	if (ret)
		return ret;

	memcpy(buf, &esw_stats, size);
	return size;
}

859 860 861 862 863
static ssize_t qlcnic_sysfs_clear_esw_stats(struct file *file,
					    struct kobject *kobj,
					    struct bin_attribute *attr,
					    char *buf, loff_t offset,
					    size_t size)
864 865 866 867 868
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
	int ret;

S
Sony Chacko 已提交
869 870 871
	if (qlcnic_83xx_check(adapter))
		return QLC_STATUS_UNSUPPORTED_CMD;

872 873 874 875
	if (offset >= QLCNIC_NIU_MAX_XG_PORTS)
		return QL_STATUS_INVALID_PARAM;

	ret = qlcnic_clear_esw_stats(adapter, QLCNIC_STATS_ESWITCH, offset,
876
				     QLCNIC_QUERY_RX_COUNTER);
877 878 879 880
	if (ret)
		return ret;

	ret = qlcnic_clear_esw_stats(adapter, QLCNIC_STATS_ESWITCH, offset,
881
				     QLCNIC_QUERY_TX_COUNTER);
882 883 884 885 886 887
	if (ret)
		return ret;

	return size;
}

888 889 890 891 892
static ssize_t qlcnic_sysfs_clear_port_stats(struct file *file,
					     struct kobject *kobj,
					     struct bin_attribute *attr,
					     char *buf, loff_t offset,
					     size_t size)
893
{
S
Sony Chacko 已提交
894

895 896
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
897
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
898 899
	int ret;

S
Sony Chacko 已提交
900 901 902
	if (qlcnic_83xx_check(adapter))
		return QLC_STATUS_UNSUPPORTED_CMD;

903
	if (offset >= pci_func_count)
904 905 906
		return QL_STATUS_INVALID_PARAM;

	ret = qlcnic_clear_esw_stats(adapter, QLCNIC_STATS_PORT, offset,
907
				     QLCNIC_QUERY_RX_COUNTER);
908 909 910 911
	if (ret)
		return ret;

	ret = qlcnic_clear_esw_stats(adapter, QLCNIC_STATS_PORT, offset,
912
				     QLCNIC_QUERY_TX_COUNTER);
913 914 915 916 917 918
	if (ret)
		return ret;

	return size;
}

919 920 921 922 923
static ssize_t qlcnic_sysfs_read_pci_config(struct file *file,
					    struct kobject *kobj,
					    struct bin_attribute *attr,
					    char *buf, loff_t offset,
					    size_t size)
924 925 926
{
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
927 928
	u32 pci_func_count = qlcnic_get_pci_func_count(adapter);
	struct qlcnic_pci_func_cfg *pci_cfg;
929
	struct qlcnic_pci_info *pci_info;
930
	size_t pci_info_sz, pci_cfg_sz;
931 932
	int i, ret;

933 934
	pci_cfg_sz = pci_func_count * sizeof(*pci_cfg);
	if (size != pci_cfg_sz)
935 936
		return QL_STATUS_INVALID_PARAM;

937 938
	pci_info_sz = pci_func_count * sizeof(*pci_info);
	pci_info = vmalloc(pci_info_sz);
939 940 941
	if (!pci_info)
		return -ENOMEM;

942 943 944 945
	memset(pci_info, 0, pci_info_sz);
	memset(buf, 0, pci_cfg_sz);
	pci_cfg = (struct qlcnic_pci_func_cfg *)buf;

946 947
	ret = qlcnic_get_pci_info(adapter, pci_info);
	if (ret) {
948
		vfree(pci_info);
949 950 951
		return ret;
	}

952
	for (i = 0; i < pci_func_count; i++) {
953 954 955 956 957 958 959
		pci_cfg[i].pci_func = pci_info[i].id;
		pci_cfg[i].func_type = pci_info[i].type;
		pci_cfg[i].port_num = pci_info[i].default_port;
		pci_cfg[i].min_bw = pci_info[i].tx_min_bw;
		pci_cfg[i].max_bw = pci_info[i].tx_max_bw;
		memcpy(&pci_cfg[i].def_mac_addr, &pci_info[i].mac, ETH_ALEN);
	}
S
Sony Chacko 已提交
960

961
	vfree(pci_info);
962 963 964
	return size;
}

965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
static ssize_t qlcnic_83xx_sysfs_flash_read_handler(struct file *filp,
						    struct kobject *kobj,
						    struct bin_attribute *attr,
						    char *buf, loff_t offset,
						    size_t size)
{
	unsigned char *p_read_buf;
	int  ret, count;
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);

	if (!size)
		return QL_STATUS_INVALID_PARAM;
	if (!buf)
		return QL_STATUS_INVALID_PARAM;

	count = size / sizeof(u32);

	if (size % sizeof(u32))
		count++;

	p_read_buf = kcalloc(size, sizeof(unsigned char), GFP_KERNEL);
	if (!p_read_buf)
		return -ENOMEM;
	if (qlcnic_83xx_lock_flash(adapter) != 0) {
		kfree(p_read_buf);
		return -EIO;
	}

	ret = qlcnic_83xx_lockless_flash_read32(adapter, offset, p_read_buf,
						count);

	if (ret) {
		qlcnic_83xx_unlock_flash(adapter);
		kfree(p_read_buf);
		return ret;
	}

	qlcnic_83xx_unlock_flash(adapter);
	memcpy(buf, p_read_buf, size);
	kfree(p_read_buf);

	return size;
}

static int qlcnic_83xx_sysfs_flash_bulk_write(struct qlcnic_adapter *adapter,
					      char *buf, loff_t offset,
					      size_t size)
{
	int  i, ret, count;
	unsigned char *p_cache, *p_src;

	p_cache = kcalloc(size, sizeof(unsigned char), GFP_KERNEL);
	if (!p_cache)
		return -ENOMEM;

	memcpy(p_cache, buf, size);
	p_src = p_cache;
	count = size / sizeof(u32);

	if (qlcnic_83xx_lock_flash(adapter) != 0) {
		kfree(p_cache);
		return -EIO;
	}

	if (adapter->ahw->fdt.mfg_id == adapter->flash_mfg_id) {
		ret = qlcnic_83xx_enable_flash_write(adapter);
		if (ret) {
			kfree(p_cache);
			qlcnic_83xx_unlock_flash(adapter);
			return -EIO;
		}
	}

	for (i = 0; i < count / QLC_83XX_FLASH_WRITE_MAX; i++) {
		ret = qlcnic_83xx_flash_bulk_write(adapter, offset,
						   (u32 *)p_src,
						   QLC_83XX_FLASH_WRITE_MAX);

		if (ret) {
			if (adapter->ahw->fdt.mfg_id == adapter->flash_mfg_id) {
				ret = qlcnic_83xx_disable_flash_write(adapter);
				if (ret) {
					kfree(p_cache);
					qlcnic_83xx_unlock_flash(adapter);
					return -EIO;
				}
			}

			kfree(p_cache);
			qlcnic_83xx_unlock_flash(adapter);
			return -EIO;
		}

		p_src = p_src + sizeof(u32)*QLC_83XX_FLASH_WRITE_MAX;
		offset = offset + sizeof(u32)*QLC_83XX_FLASH_WRITE_MAX;
	}

	if (adapter->ahw->fdt.mfg_id == adapter->flash_mfg_id) {
		ret = qlcnic_83xx_disable_flash_write(adapter);
		if (ret) {
			kfree(p_cache);
			qlcnic_83xx_unlock_flash(adapter);
			return -EIO;
		}
	}

	kfree(p_cache);
	qlcnic_83xx_unlock_flash(adapter);

	return 0;
}

static int qlcnic_83xx_sysfs_flash_write(struct qlcnic_adapter *adapter,
					 char *buf, loff_t offset, size_t size)
{
	int  i, ret, count;
	unsigned char *p_cache, *p_src;

	p_cache = kcalloc(size, sizeof(unsigned char), GFP_KERNEL);
	if (!p_cache)
		return -ENOMEM;

	memcpy(p_cache, buf, size);
	p_src = p_cache;
	count = size / sizeof(u32);

	if (qlcnic_83xx_lock_flash(adapter) != 0) {
		kfree(p_cache);
		return -EIO;
	}

	if (adapter->ahw->fdt.mfg_id == adapter->flash_mfg_id) {
		ret = qlcnic_83xx_enable_flash_write(adapter);
		if (ret) {
			kfree(p_cache);
			qlcnic_83xx_unlock_flash(adapter);
			return -EIO;
		}
	}

	for (i = 0; i < count; i++) {
		ret = qlcnic_83xx_flash_write32(adapter, offset, (u32 *)p_src);
		if (ret) {
			if (adapter->ahw->fdt.mfg_id == adapter->flash_mfg_id) {
				ret = qlcnic_83xx_disable_flash_write(adapter);
				if (ret) {
					kfree(p_cache);
					qlcnic_83xx_unlock_flash(adapter);
					return -EIO;
				}
			}
			kfree(p_cache);
			qlcnic_83xx_unlock_flash(adapter);
			return -EIO;
		}

		p_src = p_src + sizeof(u32);
		offset = offset + sizeof(u32);
	}

	if (adapter->ahw->fdt.mfg_id == adapter->flash_mfg_id) {
		ret = qlcnic_83xx_disable_flash_write(adapter);
		if (ret) {
			kfree(p_cache);
			qlcnic_83xx_unlock_flash(adapter);
			return -EIO;
		}
	}

	kfree(p_cache);
	qlcnic_83xx_unlock_flash(adapter);

	return 0;
}

static ssize_t qlcnic_83xx_sysfs_flash_write_handler(struct file *filp,
						     struct kobject *kobj,
						     struct bin_attribute *attr,
						     char *buf, loff_t offset,
						     size_t size)
{
	int  ret;
	static int flash_mode;
	unsigned long data;
	struct device *dev = container_of(kobj, struct device, kobj);
	struct qlcnic_adapter *adapter = dev_get_drvdata(dev);

	if (!buf)
		return QL_STATUS_INVALID_PARAM;

	ret = kstrtoul(buf, 16, &data);

	switch (data) {
	case QLC_83XX_FLASH_SECTOR_ERASE_CMD:
		flash_mode = QLC_83XX_ERASE_MODE;
		ret = qlcnic_83xx_erase_flash_sector(adapter, offset);
		if (ret) {
			dev_err(&adapter->pdev->dev,
				"%s failed at %d\n", __func__, __LINE__);
			return -EIO;
		}
		break;

	case QLC_83XX_FLASH_BULK_WRITE_CMD:
		flash_mode = QLC_83XX_BULK_WRITE_MODE;
		break;

	case QLC_83XX_FLASH_WRITE_CMD:
		flash_mode = QLC_83XX_WRITE_MODE;
		break;
	default:
		if (flash_mode == QLC_83XX_BULK_WRITE_MODE) {
			ret = qlcnic_83xx_sysfs_flash_bulk_write(adapter, buf,
								 offset, size);
			if (ret) {
				dev_err(&adapter->pdev->dev,
					"%s failed at %d\n",
					__func__, __LINE__);
				return -EIO;
			}
		}

		if (flash_mode == QLC_83XX_WRITE_MODE) {
			ret = qlcnic_83xx_sysfs_flash_write(adapter, buf,
							    offset, size);
			if (ret) {
				dev_err(&adapter->pdev->dev,
					"%s failed at %d\n", __func__,
					__LINE__);
				return -EIO;
			}
		}
	}

	return size;
}

1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
static struct device_attribute dev_attr_bridged_mode = {
       .attr = {.name = "bridged_mode", .mode = (S_IRUGO | S_IWUSR)},
       .show = qlcnic_show_bridged_mode,
       .store = qlcnic_store_bridged_mode,
};

static struct device_attribute dev_attr_diag_mode = {
	.attr = {.name = "diag_mode", .mode = (S_IRUGO | S_IWUSR)},
	.show = qlcnic_show_diag_mode,
	.store = qlcnic_store_diag_mode,
};

static struct device_attribute dev_attr_beacon = {
	.attr = {.name = "beacon", .mode = (S_IRUGO | S_IWUSR)},
	.show = qlcnic_show_beacon,
	.store = qlcnic_store_beacon,
};

static struct bin_attribute bin_attr_crb = {
	.attr = {.name = "crb", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_read_crb,
	.write = qlcnic_sysfs_write_crb,
};

static struct bin_attribute bin_attr_mem = {
	.attr = {.name = "mem", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_read_mem,
	.write = qlcnic_sysfs_write_mem,
};

static struct bin_attribute bin_attr_npar_config = {
	.attr = {.name = "npar_config", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_read_npar_config,
	.write = qlcnic_sysfs_write_npar_config,
};

static struct bin_attribute bin_attr_pci_config = {
	.attr = {.name = "pci_config", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_read_pci_config,
	.write = NULL,
};

static struct bin_attribute bin_attr_port_stats = {
	.attr = {.name = "port_stats", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_get_port_stats,
	.write = qlcnic_sysfs_clear_port_stats,
};

static struct bin_attribute bin_attr_esw_stats = {
	.attr = {.name = "esw_stats", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_get_esw_stats,
	.write = qlcnic_sysfs_clear_esw_stats,
};

static struct bin_attribute bin_attr_esw_config = {
	.attr = {.name = "esw_config", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_read_esw_config,
	.write = qlcnic_sysfs_write_esw_config,
};

static struct bin_attribute bin_attr_pm_config = {
	.attr = {.name = "pm_config", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_sysfs_read_pm_config,
	.write = qlcnic_sysfs_write_pm_config,
};

1277 1278 1279 1280 1281 1282 1283
static struct bin_attribute bin_attr_flash = {
	.attr = {.name = "flash", .mode = (S_IRUGO | S_IWUSR)},
	.size = 0,
	.read = qlcnic_83xx_sysfs_flash_read_handler,
	.write = qlcnic_83xx_sysfs_flash_write_handler,
};

1284 1285 1286 1287
void qlcnic_create_sysfs_entries(struct qlcnic_adapter *adapter)
{
	struct device *dev = &adapter->pdev->dev;

1288
	if (adapter->ahw->capabilities & QLCNIC_FW_CAPABILITY_BDG)
1289 1290
		if (device_create_file(dev, &dev_attr_bridged_mode))
			dev_warn(dev,
1291
				 "failed to create bridged_mode sysfs entry\n");
1292 1293 1294 1295 1296 1297
}

void qlcnic_remove_sysfs_entries(struct qlcnic_adapter *adapter)
{
	struct device *dev = &adapter->pdev->dev;

1298
	if (adapter->ahw->capabilities & QLCNIC_FW_CAPABILITY_BDG)
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
		device_remove_file(dev, &dev_attr_bridged_mode);
}

void qlcnic_create_diag_entries(struct qlcnic_adapter *adapter)
{
	struct device *dev = &adapter->pdev->dev;

	if (device_create_bin_file(dev, &bin_attr_port_stats))
		dev_info(dev, "failed to create port stats sysfs entry");

1309
	if (adapter->ahw->op_mode == QLCNIC_NON_PRIV_FUNC)
1310 1311 1312 1313 1314 1315 1316 1317
		return;
	if (device_create_file(dev, &dev_attr_diag_mode))
		dev_info(dev, "failed to create diag_mode sysfs entry\n");
	if (device_create_bin_file(dev, &bin_attr_crb))
		dev_info(dev, "failed to create crb sysfs entry\n");
	if (device_create_bin_file(dev, &bin_attr_mem))
		dev_info(dev, "failed to create mem sysfs entry\n");

1318
	if (test_bit(__QLCNIC_MAINTENANCE_MODE, &adapter->state))
1319 1320
		return;

1321 1322
	if (device_create_bin_file(dev, &bin_attr_pci_config))
		dev_info(dev, "failed to create pci config sysfs entry");
1323

1324 1325 1326 1327 1328 1329 1330
	if (device_create_file(dev, &dev_attr_beacon))
		dev_info(dev, "failed to create beacon sysfs entry");

	if (!(adapter->flags & QLCNIC_ESWITCH_ENABLED))
		return;
	if (device_create_bin_file(dev, &bin_attr_esw_config))
		dev_info(dev, "failed to create esw config sysfs entry");
1331
	if (adapter->ahw->op_mode != QLCNIC_MGMT_FUNC)
1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
		return;
	if (device_create_bin_file(dev, &bin_attr_npar_config))
		dev_info(dev, "failed to create npar config sysfs entry");
	if (device_create_bin_file(dev, &bin_attr_pm_config))
		dev_info(dev, "failed to create pm config sysfs entry");
	if (device_create_bin_file(dev, &bin_attr_esw_stats))
		dev_info(dev, "failed to create eswitch stats sysfs entry");
}

void qlcnic_remove_diag_entries(struct qlcnic_adapter *adapter)
{
	struct device *dev = &adapter->pdev->dev;

	device_remove_bin_file(dev, &bin_attr_port_stats);

1347
	if (adapter->ahw->op_mode == QLCNIC_NON_PRIV_FUNC)
1348 1349 1350 1351
		return;
	device_remove_file(dev, &dev_attr_diag_mode);
	device_remove_bin_file(dev, &bin_attr_crb);
	device_remove_bin_file(dev, &bin_attr_mem);
1352

1353
	if (test_bit(__QLCNIC_MAINTENANCE_MODE, &adapter->state))
1354 1355
		return;

1356 1357 1358 1359 1360
	device_remove_bin_file(dev, &bin_attr_pci_config);
	device_remove_file(dev, &dev_attr_beacon);
	if (!(adapter->flags & QLCNIC_ESWITCH_ENABLED))
		return;
	device_remove_bin_file(dev, &bin_attr_esw_config);
1361
	if (adapter->ahw->op_mode != QLCNIC_MGMT_FUNC)
1362 1363 1364 1365 1366
		return;
	device_remove_bin_file(dev, &bin_attr_npar_config);
	device_remove_bin_file(dev, &bin_attr_pm_config);
	device_remove_bin_file(dev, &bin_attr_esw_stats);
}
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376

void qlcnic_82xx_add_sysfs(struct qlcnic_adapter *adapter)
{
	qlcnic_create_diag_entries(adapter);
}

void qlcnic_82xx_remove_sysfs(struct qlcnic_adapter *adapter)
{
	qlcnic_remove_diag_entries(adapter);
}
S
Sony Chacko 已提交
1377 1378 1379

void qlcnic_83xx_add_sysfs(struct qlcnic_adapter *adapter)
{
1380 1381
	struct device *dev = &adapter->pdev->dev;

S
Sony Chacko 已提交
1382
	qlcnic_create_diag_entries(adapter);
1383 1384 1385

	if (sysfs_create_bin_file(&dev->kobj, &bin_attr_flash))
		dev_info(dev, "failed to create flash sysfs entry\n");
S
Sony Chacko 已提交
1386 1387 1388 1389
}

void qlcnic_83xx_remove_sysfs(struct qlcnic_adapter *adapter)
{
1390 1391
	struct device *dev = &adapter->pdev->dev;

S
Sony Chacko 已提交
1392
	qlcnic_remove_diag_entries(adapter);
1393
	sysfs_remove_bin_file(&dev->kobj, &bin_attr_flash);
S
Sony Chacko 已提交
1394
}