Files @ 95e39e5412bd
Branch filter:

Location: vmkdrivers/vmkdrivers/src_9/drivers/net/nx_nic/unm_nic_procfs.c

unknown
ESXi-6.0-GA
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/*
 * Copyright (C) 2003 - 2009 NetXen, Inc.
 * Copyright (C) 2009 - QLogic Corporation.
 * All rights reserved.
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 * MA 02111-1307, USA.
 * 
 * The full GNU General Public License is included in this distribution
 * in the file called LICENSE.
 * 
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/netdevice.h>
#include <linux/proc_fs.h>

#include "nx_errorcode.h"
#include "nxplat.h"
#include "nxhal_nic_interface.h"
#include "nxhal_nic_api.h"

#include "unm_inc.h"
#include "unm_brdcfg.h"
#include "unm_nic.h"

#include "nxhal.h"

static int unm_nic_port_read_proc(char *buf, char **start, off_t offset,
					int count, int *eof, void *data);
int unm_init_proc_drv_dir(void);
void unm_cleanup_proc_drv_entries(void);
void unm_init_proc_entries(struct unm_adapter_s *adapter);
void unm_cleanup_proc_entries(struct unm_adapter_s *adapter);
int nx_read_lro_state(char *buf, char **start, off_t offset, int count,
				int *eof, void *data); 
int nx_write_lro_state(struct file *file, const char *buffer,
		unsigned long count, void *data);
int nx_read_lro_stats(char *buf, char **start, off_t offset, int count,
		      int *eof, void *data);
int nx_read_auto_fw_reset(char *buf, char **start, off_t offset, int count,
		      int *eof, void *data);
int nx_write_lro_stats(struct file *file, const char *buffer,
		       unsigned long count, void *data);
int nx_write_auto_fw_reset(struct file *file, const char *buffer,
		       unsigned long count, void *data);
static int nx_read_md_enable(char *buf, char **start, off_t offset, int count,
              int *eof, void *data);
static int nx_write_md_enable(struct file *file, const char *buffer,
               unsigned long count, void *data);
static int nx_read_log_collect_enable(char *buf, char **start, off_t offset, int count,
		int *eof, void *data);
static int nx_write_log_collect_enable(struct file *file, const char *buffer,
		unsigned long count, void *data);

/*Contains all the procfs related fucntions here */
static struct proc_dir_entry *unm_proc_dir_entry;

/*
 * Gets the proc file directory where the procfs files are created.
 *
 * Parameters:
 *	None
 *
 * Returns:
 *	NULL - If the file system is not created.
 *	The directory that was created.
 */
struct proc_dir_entry *nx_nic_get_base_procfs_dir(void)
{
	return (unm_proc_dir_entry);
}
int unm_init_proc_drv_dir(void) {

#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
	unm_proc_dir_entry = proc_mkdir(unm_nic_driver_name, init_net.proc_net);
#else
	unm_proc_dir_entry = proc_mkdir(unm_nic_driver_name, proc_net);
#endif
	if(!unm_proc_dir_entry) {
		printk(KERN_WARNING "%s: Unable to create /proc/net/%s",
		       unm_nic_driver_name, unm_nic_driver_name);
		return -ENOMEM;
	}
	unm_proc_dir_entry->owner = THIS_MODULE;
	return 0;
}
void unm_cleanup_proc_drv_entries(void) {

	if (unm_proc_dir_entry != NULL) {

#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
		remove_proc_entry(unm_proc_dir_entry->name, init_net.proc_net);
#else
		remove_proc_entry(unm_proc_dir_entry->name, proc_net);
#endif
		unm_proc_dir_entry = NULL;
	}
}

void unm_init_proc_entries(struct unm_adapter_s *adapter) {
	struct net_device *netdev = adapter->netdev;
	struct proc_dir_entry *stats_file, *state_file, *rate_file = NULL;
	struct proc_dir_entry *lro_file = NULL;
	struct proc_dir_entry *lro_stats_file = NULL;
	struct proc_dir_entry *auto_fw_reset_file = NULL;
	struct proc_dir_entry *md_enable_file = NULL;
	struct proc_dir_entry *collect_logs_file = NULL;
	uint64_t cur_fn = (uint64_t)unm_init_proc_entries;

	adapter->dev_dir = proc_mkdir(adapter->procname, unm_proc_dir_entry);
	stats_file = create_proc_entry("stats", S_IRUGO, adapter->dev_dir);
       	state_file = create_proc_entry("led_blink_state", S_IRUGO|S_IWUSR, adapter->dev_dir);
	rate_file = create_proc_entry("led_blink_rate", S_IRUGO|S_IWUSR, adapter->dev_dir);	
	lro_file = create_proc_entry("lro_enabled", S_IRUGO|S_IWUSR, adapter->dev_dir);	
	lro_stats_file = create_proc_entry("lro_stats", S_IRUGO|S_IWUSR, adapter->dev_dir);
	if(adapter->portnum == 0) {
		auto_fw_reset_file = create_proc_entry("auto_fw_reset",S_IRUGO|S_IWUSR ,adapter->dev_dir);
		md_enable_file = create_proc_entry("md_enable", S_IRUGO|S_IWUSR, adapter->dev_dir);
		collect_logs_file = create_proc_entry("collect_fw_logs", S_IRUGO|S_IWUSR, adapter->dev_dir);
	}
	if (stats_file) {
		stats_file->data = netdev;
		stats_file->owner = THIS_MODULE;
		stats_file->read_proc = unm_nic_port_read_proc;
		NX_NIC_TRC_FN(adapter, cur_fn, stats_file);
	}
	if (state_file) {
		state_file->data = netdev;
		state_file->owner = THIS_MODULE;
		state_file->read_proc = unm_read_blink_state;
		state_file->write_proc = unm_write_blink_state;
		NX_NIC_TRC_FN(adapter, cur_fn, state_file);
	}
	if (rate_file) {
		rate_file->data = netdev;
		rate_file->owner = THIS_MODULE;
		rate_file->read_proc = unm_read_blink_rate;
		rate_file->write_proc = unm_write_blink_rate;
		NX_NIC_TRC_FN(adapter, cur_fn, rate_file);
	}
	if (lro_file) {
		lro_file->data = netdev;
		lro_file->owner = THIS_MODULE;
		lro_file->read_proc = nx_read_lro_state;
		lro_file->write_proc = nx_write_lro_state;
		NX_NIC_TRC_FN(adapter, cur_fn, lro_file);
	}
	if (lro_stats_file) {
		lro_stats_file->data = netdev;
		lro_stats_file->owner = THIS_MODULE;
		lro_stats_file->read_proc = nx_read_lro_stats;
		lro_stats_file->write_proc = nx_write_lro_stats;
		NX_NIC_TRC_FN(adapter, cur_fn, lro_stats_file);
	}

	if(adapter->portnum == 0) {
		if(auto_fw_reset_file) {
			auto_fw_reset_file->data = netdev;
			auto_fw_reset_file->owner = THIS_MODULE;
			auto_fw_reset_file->read_proc = nx_read_auto_fw_reset;
			auto_fw_reset_file->write_proc = nx_write_auto_fw_reset;
			NX_NIC_TRC_FN(adapter, cur_fn, auto_fw_reset_file);
		}
		if (md_enable_file) {
			md_enable_file->data = netdev;
			md_enable_file->owner = THIS_MODULE;
			md_enable_file->read_proc = nx_read_md_enable;
			md_enable_file->write_proc = nx_write_md_enable;
		}
		if (collect_logs_file) {
			collect_logs_file->data = netdev;
			collect_logs_file->owner = THIS_MODULE;
			collect_logs_file->read_proc = nx_read_log_collect_enable;
			collect_logs_file->write_proc = nx_write_log_collect_enable;
		}
	}
}
void unm_cleanup_proc_entries(struct unm_adapter_s *adapter) {

	if (strlen(adapter->procname) > 0) {
		if(adapter->portnum == 0) {
			remove_proc_entry("auto_fw_reset", adapter->dev_dir);
            remove_proc_entry("md_enable", adapter->dev_dir);
			remove_proc_entry("collect_fw_logs", adapter->dev_dir);
		}
		remove_proc_entry("stats", adapter->dev_dir);
		remove_proc_entry("led_blink_state", adapter->dev_dir);
		remove_proc_entry("led_blink_rate", adapter->dev_dir);
		remove_proc_entry("lro_enabled", adapter->dev_dir);
		remove_proc_entry("lro_stats", adapter->dev_dir);
		remove_proc_entry(adapter->procname, unm_proc_dir_entry);
	}
}

static int
unm_nic_port_read_proc(char *buf, char **start, off_t offset, int count,
		       int *eof, void *data)
{
	struct net_device *netdev = (struct net_device *)data;
	int j;
	int len = 0;
	struct unm_adapter_s *adapter = (struct unm_adapter_s *)netdev_priv(netdev);
	 rds_host_ring_t *host_rds_ring = NULL;
	 sds_host_ring_t         *host_sds_ring = NULL;
	 nx_host_sds_ring_t      *nxhal_sds_ring = NULL;

	if (netdev == NULL) {
		len = sprintf(buf, "No Statistics available now. Device is"
			      " NULL\n");
		*eof = 1;
		return len;
	}
	len = sprintf(buf + len, "%s NIC port statistics\n",
		      unm_nic_driver_name);
	len += sprintf(buf + len, "\n");
	len += sprintf(buf + len, "Interface Name           : %s\n",
		       netdev->name);
	len += sprintf(buf + len, "PCIE Function Number     : %d\n",
		       adapter->ahw.pci_func);
	if (adapter->interface_id != -1) {
		len += sprintf(buf + len,
				"Virtual Port Number      : %d\n",
				adapter->interface_id >> PORT_BITS);
		len += sprintf(buf + len,
				"Physical Port Number     : %d\n",
				adapter->interface_id & PORT_MASK);
	} else {
		len += sprintf(buf + len,
				"Virtual Port Number      : Unavailable\n");
		len += sprintf(buf + len,
				"Physical Port Number     : Unavailable\n");
	}
	len += sprintf(buf + len, "Bad SKB                  : %llu\n",
		       adapter->stats.rcvdbadskb);
	len += sprintf(buf + len, "Xmit called              : %llu\n",
		       adapter->stats.xmitcalled);
	len += sprintf(buf + len, "Xmited Frames            : %llu\n",
		       adapter->stats.xmitedframes);
	len += sprintf(buf + len, "Bad SKB length           : %llu\n",
		       adapter->stats.badskblen);
	len += sprintf(buf + len, "Cmd Desc Error           : %llu\n",
		       adapter->stats.nocmddescriptor);
	len += sprintf(buf + len, "Polled for Rcv           : %llu\n",
		       adapter->stats.polled);
	len += sprintf(buf + len, "Received Desc            : %llu\n",
		       adapter->stats.no_rcv);
	len += sprintf(buf + len, "Rcv to stack             : %llu\n",
		       adapter->stats.uphappy);
	len += sprintf(buf + len, "Stack dropped            : %llu\n",
		       adapter->stats.updropped);
	len += sprintf(buf + len, "Xmit finished            : %llu\n",
		       adapter->stats.xmitfinished);
	len += sprintf(buf + len, "Tx dropped SKBs          : %llu\n",
		       adapter->stats.txdropped);
	len += sprintf(buf + len, "TxOutOfBounceBuf dropped : %llu\n",
                       adapter->stats.txOutOfBounceBufDropped);
	len += sprintf(buf + len, "Rcv of CSUMed SKB        : %llu\n",
		       adapter->stats.csummed);
	len += sprintf(buf + len, "skb alloc fail immediate : %llu\n",
		       adapter->stats.alloc_failures_imm);
	len += sprintf(buf + len, "skb alloc fail deferred  : %llu\n",
		       adapter->stats.alloc_failures_def);
	len += sprintf(buf + len, "rcv buf crunch           : %llu\n",
		       adapter->stats.rcv_buf_crunch);
	len += sprintf(buf + len, "\n");
	len += sprintf(buf + len, "Ring Statistics\n");
	len += sprintf(buf + len, "Command Producer    : %u\n",
		       adapter->cmdProducer);
	len += sprintf(buf + len, "LastCommand Consumer: %u\n",
		       adapter->lastCmdConsumer);
	if(adapter->is_up == ADAPTER_UP_MAGIC) {
		for (j = 0; j < adapter->max_rds_rings; j++) {
			host_rds_ring =
			    (rds_host_ring_t *) adapter->nx_dev->rx_ctxs[0]->
		    				rds_rings[j].os_data;
			len += sprintf(buf + len, "Rcv Ring %d\n", j);
			len += sprintf(buf + len, "\tReceive Producer [%d]:"
					" %u\n", j,host_rds_ring->producer);
		}
		for (j = 0; j < adapter->nx_dev->rx_ctxs[0]->
						num_sds_rings; j++) {
                	nxhal_sds_ring  = &adapter->nx_dev->rx_ctxs[0]->
							sds_rings[j];
	                host_sds_ring   = (sds_host_ring_t *)
						nxhal_sds_ring->os_data;
        	        len += sprintf(buf+len, "Rx Status Producer[%d]: %u\n",
                	               j, host_sds_ring->producer);
	                len += sprintf(buf+len, "Rx Status Consumer[%d]: %u\n",
        	                       j, host_sds_ring->consumer);
                	len += sprintf(buf+len, "Rx Status Polled[%d]: %llu\n",
                        	       j, host_sds_ring->polled);
			len += sprintf(buf+len, "Rx Status Processed[%d]: "
				       "%llu\n", j, host_sds_ring->count);
		}
	} else {
		for (j = 0; j < adapter->max_rds_rings; j++) {
			len += sprintf(buf + len, "Rcv Ring %d\n", j);	
			len += sprintf(buf + len, "\tReceive Producer [%d]: "
					"0\n", j);
		}
	}
	len += sprintf(buf + len, "\n");
	if (adapter->link_width < 8) {
		len += sprintf(buf + len, "PCIE Negotiated Link width : x%d\n",
			       adapter->link_width);
	} else {
		len += sprintf(buf + len, "PCIE Negotiated Link width : x%d\n",
			       adapter->link_width);
	}

	*eof = 1;
	return len;
}

int nx_write_auto_fw_reset(struct file *file, const char *buffer,
                       unsigned long count, void *data)
{
	struct net_device       *netdev = (struct net_device *)data;
	struct unm_adapter_s    *adapter;
	int                     val = 0;

	adapter = (struct unm_adapter_s *)netdev_priv(netdev);
	if (!capable(CAP_NET_ADMIN)) {
		return -EACCES;
	}

	memcpy((void *)&val, (const void *)buffer, 1);

	val = val - '0';
	adapter->auto_fw_reset = val;
	return count;
}


int nx_read_auto_fw_reset(char *buf, char **start, off_t offset, int count,
                                int *eof, void *data)
{

        int len = 0;
        struct net_device *netdev = (struct net_device *)data;
        struct unm_adapter_s *adapter = (struct unm_adapter_s *)netdev_priv(netdev);
        len = sprintf(buf,"%d\n", adapter->auto_fw_reset);
        *eof = 1;
        return len ;
}

static int nx_write_md_enable(struct file *file, const char *buffer,
                       unsigned long count, void *data)
{
		int  val = 0;
		struct net_device *netdev = (struct net_device *)data;
		struct unm_adapter_s *adapter = (struct unm_adapter_s *)netdev_priv(netdev);

		if (!capable(CAP_NET_ADMIN)) {
			return -EPERM;
		}

		if (!buffer) {
			return -EINVAL;
		}

		memcpy((void *)&val, (const void *)buffer, 1);
		val = val - '0';

		adapter->mdump.dump_needed = !!val;

		return count;
}

static int nx_read_md_enable(char *buf, char **start, off_t offset, int count,
                                int *eof, void *data)
{
        int len = 0;
    	struct net_device *netdev = (struct net_device *)data;
	    struct unm_adapter_s *adapter = (struct unm_adapter_s *)netdev_priv(netdev);

        if (!buf)
            return -EINVAL;

        len = sprintf(buf, "%d\n", adapter->mdump.dump_needed);

        *eof = 1;
        return len ;
}

static int nx_write_log_collect_enable(struct file *file, const char *buffer,
		unsigned long count, void *data)
{
	uint32_t  val = 0;
	struct net_device *netdev;
	struct unm_adapter_s *adapter;

	if (!capable(CAP_NET_ADMIN)) {
		return -EPERM;
	}

	if (!buffer || !data)
		return -EINVAL;

	netdev = (struct net_device *)data;
	adapter = (struct unm_adapter_s *)netdev_priv(netdev);

	memcpy((void *)&val, (const void *)buffer, 1);
	val = val - '0';

	if (val != 0 && val != 1) 
		return -EINVAL;

	adapter->fw_dmp.enabled = val;

	return count;
}

static int nx_read_log_collect_enable(char *buf, char **start, off_t offset, int count,
		int *eof, void *data)
{
	int len = 0;
	struct net_device *netdev;
	struct unm_adapter_s *adapter;

	if (!buf || !data)
		return -EINVAL;

	netdev = (struct net_device *)data;
	adapter = (struct unm_adapter_s *)netdev_priv(netdev);

	len = sprintf(buf, "%u\n", adapter->fw_dmp.enabled);

	*eof = 1;
	return len ;
}

EXPORT_SYMBOL(nx_nic_get_base_procfs_dir);