1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159 |
- #ifdef CONFIG_DEBUG_FS
- #include <linux/debugfs.h>
- #include <linux/seq_file.h>
- #include <linux/kernel.h>
- #include <linux/export.h>
- #include <linux/module.h>
- #include "hfi.h"
- #include "debugfs.h"
- #include "device.h"
- #include "qp.h"
- #include "sdma.h"
- static struct dentry *hfi1_dbg_root;
- static ssize_t hfi1_seq_read(
- struct file *file,
- char __user *buf,
- size_t size,
- loff_t *ppos)
- {
- struct dentry *d = file->f_path.dentry;
- int srcu_idx;
- ssize_t r;
- r = debugfs_use_file_start(d, &srcu_idx);
- if (likely(!r))
- r = seq_read(file, buf, size, ppos);
- debugfs_use_file_finish(srcu_idx);
- return r;
- }
- static loff_t hfi1_seq_lseek(
- struct file *file,
- loff_t offset,
- int whence)
- {
- struct dentry *d = file->f_path.dentry;
- int srcu_idx;
- loff_t r;
- r = debugfs_use_file_start(d, &srcu_idx);
- if (likely(!r))
- r = seq_lseek(file, offset, whence);
- debugfs_use_file_finish(srcu_idx);
- return r;
- }
- #define private2dd(file) (file_inode(file)->i_private)
- #define private2ppd(file) (file_inode(file)->i_private)
- #define DEBUGFS_SEQ_FILE_OPS(name) \
- static const struct seq_operations _##name##_seq_ops = { \
- .start = _##name##_seq_start, \
- .next = _##name##_seq_next, \
- .stop = _##name##_seq_stop, \
- .show = _##name##_seq_show \
- }
- #define DEBUGFS_SEQ_FILE_OPEN(name) \
- static int _##name##_open(struct inode *inode, struct file *s) \
- { \
- struct seq_file *seq; \
- int ret; \
- ret = seq_open(s, &_##name##_seq_ops); \
- if (ret) \
- return ret; \
- seq = s->private_data; \
- seq->private = inode->i_private; \
- return 0; \
- }
- #define DEBUGFS_FILE_OPS(name) \
- static const struct file_operations _##name##_file_ops = { \
- .owner = THIS_MODULE, \
- .open = _##name##_open, \
- .read = hfi1_seq_read, \
- .llseek = hfi1_seq_lseek, \
- .release = seq_release \
- }
- #define DEBUGFS_FILE_CREATE(name, parent, data, ops, mode) \
- do { \
- struct dentry *ent; \
- ent = debugfs_create_file(name, mode, parent, \
- data, ops); \
- if (!ent) \
- pr_warn("create of %s failed\n", name); \
- } while (0)
- #define DEBUGFS_SEQ_FILE_CREATE(name, parent, data) \
- DEBUGFS_FILE_CREATE(#name, parent, data, &_##name##_file_ops, S_IRUGO)
- static void *_opcode_stats_seq_start(struct seq_file *s, loff_t *pos)
- {
- struct hfi1_opcode_stats_perctx *opstats;
- if (*pos >= ARRAY_SIZE(opstats->stats))
- return NULL;
- return pos;
- }
- static void *_opcode_stats_seq_next(struct seq_file *s, void *v, loff_t *pos)
- {
- struct hfi1_opcode_stats_perctx *opstats;
- ++*pos;
- if (*pos >= ARRAY_SIZE(opstats->stats))
- return NULL;
- return pos;
- }
- static void _opcode_stats_seq_stop(struct seq_file *s, void *v)
- {
- }
- static int _opcode_stats_seq_show(struct seq_file *s, void *v)
- {
- loff_t *spos = v;
- loff_t i = *spos, j;
- u64 n_packets = 0, n_bytes = 0;
- struct hfi1_ibdev *ibd = (struct hfi1_ibdev *)s->private;
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- for (j = 0; j < dd->first_user_ctxt; j++) {
- if (!dd->rcd[j])
- continue;
- n_packets += dd->rcd[j]->opstats->stats[i].n_packets;
- n_bytes += dd->rcd[j]->opstats->stats[i].n_bytes;
- }
- if (!n_packets && !n_bytes)
- return SEQ_SKIP;
- seq_printf(s, "%02llx %llu/%llu\n", i,
- (unsigned long long)n_packets,
- (unsigned long long)n_bytes);
- return 0;
- }
- DEBUGFS_SEQ_FILE_OPS(opcode_stats);
- DEBUGFS_SEQ_FILE_OPEN(opcode_stats)
- DEBUGFS_FILE_OPS(opcode_stats);
- static void *_ctx_stats_seq_start(struct seq_file *s, loff_t *pos)
- {
- struct hfi1_ibdev *ibd = (struct hfi1_ibdev *)s->private;
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- if (!*pos)
- return SEQ_START_TOKEN;
- if (*pos >= dd->first_user_ctxt)
- return NULL;
- return pos;
- }
- static void *_ctx_stats_seq_next(struct seq_file *s, void *v, loff_t *pos)
- {
- struct hfi1_ibdev *ibd = (struct hfi1_ibdev *)s->private;
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- if (v == SEQ_START_TOKEN)
- return pos;
- ++*pos;
- if (*pos >= dd->first_user_ctxt)
- return NULL;
- return pos;
- }
- static void _ctx_stats_seq_stop(struct seq_file *s, void *v)
- {
-
- }
- static int _ctx_stats_seq_show(struct seq_file *s, void *v)
- {
- loff_t *spos;
- loff_t i, j;
- u64 n_packets = 0;
- struct hfi1_ibdev *ibd = (struct hfi1_ibdev *)s->private;
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- if (v == SEQ_START_TOKEN) {
- seq_puts(s, "Ctx:npkts\n");
- return 0;
- }
- spos = v;
- i = *spos;
- if (!dd->rcd[i])
- return SEQ_SKIP;
- for (j = 0; j < ARRAY_SIZE(dd->rcd[i]->opstats->stats); j++)
- n_packets += dd->rcd[i]->opstats->stats[j].n_packets;
- if (!n_packets)
- return SEQ_SKIP;
- seq_printf(s, " %llu:%llu\n", i, n_packets);
- return 0;
- }
- DEBUGFS_SEQ_FILE_OPS(ctx_stats);
- DEBUGFS_SEQ_FILE_OPEN(ctx_stats)
- DEBUGFS_FILE_OPS(ctx_stats);
- static void *_qp_stats_seq_start(struct seq_file *s, loff_t *pos)
- __acquires(RCU)
- {
- struct qp_iter *iter;
- loff_t n = *pos;
- iter = qp_iter_init(s->private);
-
- rcu_read_lock();
- if (!iter)
- return NULL;
- do {
- if (qp_iter_next(iter)) {
- kfree(iter);
- return NULL;
- }
- } while (n--);
- return iter;
- }
- static void *_qp_stats_seq_next(struct seq_file *s, void *iter_ptr,
- loff_t *pos)
- __must_hold(RCU)
- {
- struct qp_iter *iter = iter_ptr;
- (*pos)++;
- if (qp_iter_next(iter)) {
- kfree(iter);
- return NULL;
- }
- return iter;
- }
- static void _qp_stats_seq_stop(struct seq_file *s, void *iter_ptr)
- __releases(RCU)
- {
- rcu_read_unlock();
- }
- static int _qp_stats_seq_show(struct seq_file *s, void *iter_ptr)
- {
- struct qp_iter *iter = iter_ptr;
- if (!iter)
- return 0;
- qp_iter_print(s, iter);
- return 0;
- }
- DEBUGFS_SEQ_FILE_OPS(qp_stats);
- DEBUGFS_SEQ_FILE_OPEN(qp_stats)
- DEBUGFS_FILE_OPS(qp_stats);
- static void *_sdes_seq_start(struct seq_file *s, loff_t *pos)
- {
- struct hfi1_ibdev *ibd;
- struct hfi1_devdata *dd;
- ibd = (struct hfi1_ibdev *)s->private;
- dd = dd_from_dev(ibd);
- if (!dd->per_sdma || *pos >= dd->num_sdma)
- return NULL;
- return pos;
- }
- static void *_sdes_seq_next(struct seq_file *s, void *v, loff_t *pos)
- {
- struct hfi1_ibdev *ibd = (struct hfi1_ibdev *)s->private;
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- ++*pos;
- if (!dd->per_sdma || *pos >= dd->num_sdma)
- return NULL;
- return pos;
- }
- static void _sdes_seq_stop(struct seq_file *s, void *v)
- {
- }
- static int _sdes_seq_show(struct seq_file *s, void *v)
- {
- struct hfi1_ibdev *ibd = (struct hfi1_ibdev *)s->private;
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- loff_t *spos = v;
- loff_t i = *spos;
- sdma_seqfile_dump_sde(s, &dd->per_sdma[i]);
- return 0;
- }
- DEBUGFS_SEQ_FILE_OPS(sdes);
- DEBUGFS_SEQ_FILE_OPEN(sdes)
- DEBUGFS_FILE_OPS(sdes);
- static ssize_t dev_counters_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- u64 *counters;
- size_t avail;
- struct hfi1_devdata *dd;
- ssize_t rval;
- dd = private2dd(file);
- avail = hfi1_read_cntrs(dd, NULL, &counters);
- rval = simple_read_from_buffer(buf, count, ppos, counters, avail);
- return rval;
- }
- static ssize_t dev_names_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- char *names;
- size_t avail;
- struct hfi1_devdata *dd;
- ssize_t rval;
- dd = private2dd(file);
- avail = hfi1_read_cntrs(dd, &names, NULL);
- rval = simple_read_from_buffer(buf, count, ppos, names, avail);
- return rval;
- }
- struct counter_info {
- char *name;
- const struct file_operations ops;
- };
- static ssize_t portnames_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- char *names;
- size_t avail;
- struct hfi1_devdata *dd;
- ssize_t rval;
- dd = private2dd(file);
- avail = hfi1_read_portcntrs(dd->pport, &names, NULL);
- rval = simple_read_from_buffer(buf, count, ppos, names, avail);
- return rval;
- }
- static ssize_t portcntrs_debugfs_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- u64 *counters;
- size_t avail;
- struct hfi1_pportdata *ppd;
- ssize_t rval;
- ppd = private2ppd(file);
- avail = hfi1_read_portcntrs(ppd, NULL, &counters);
- rval = simple_read_from_buffer(buf, count, ppos, counters, avail);
- return rval;
- }
- static void check_dyn_flag(u64 scratch0, char *p, int size, int *used,
- int this_hfi, int hfi, u32 flag, const char *what)
- {
- u32 mask;
- mask = flag << (hfi ? CR_DYN_SHIFT : 0);
- if (scratch0 & mask) {
- *used += scnprintf(p + *used, size - *used,
- " 0x%08x - HFI%d %s in use, %s device\n",
- mask, hfi, what,
- this_hfi == hfi ? "this" : "other");
- }
- }
- static ssize_t asic_flags_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- struct hfi1_pportdata *ppd;
- struct hfi1_devdata *dd;
- u64 scratch0;
- char *tmp;
- int ret = 0;
- int size;
- int used;
- int i;
- ppd = private2ppd(file);
- dd = ppd->dd;
- size = PAGE_SIZE;
- used = 0;
- tmp = kmalloc(size, GFP_KERNEL);
- if (!tmp)
- return -ENOMEM;
- scratch0 = read_csr(dd, ASIC_CFG_SCRATCH);
- used += scnprintf(tmp + used, size - used,
- "Resource flags: 0x%016llx\n", scratch0);
-
- if (scratch0 & CR_THERM_INIT) {
- used += scnprintf(tmp + used, size - used,
- " 0x%08x - thermal monitoring initialized\n",
- (u32)CR_THERM_INIT);
- }
-
- for (i = 0; i < 2; i++) {
- check_dyn_flag(scratch0, tmp, size, &used, dd->hfi1_id, i,
- CR_SBUS, "SBus");
- check_dyn_flag(scratch0, tmp, size, &used, dd->hfi1_id, i,
- CR_EPROM, "EPROM");
- check_dyn_flag(scratch0, tmp, size, &used, dd->hfi1_id, i,
- CR_I2C1, "i2c chain 1");
- check_dyn_flag(scratch0, tmp, size, &used, dd->hfi1_id, i,
- CR_I2C2, "i2c chain 2");
- }
- used += scnprintf(tmp + used, size - used, "Write bits to clear\n");
- ret = simple_read_from_buffer(buf, count, ppos, tmp, used);
- kfree(tmp);
- return ret;
- }
- static ssize_t asic_flags_write(struct file *file, const char __user *buf,
- size_t count, loff_t *ppos)
- {
- struct hfi1_pportdata *ppd;
- struct hfi1_devdata *dd;
- char *buff;
- int ret;
- unsigned long long value;
- u64 scratch0;
- u64 clear;
- ppd = private2ppd(file);
- dd = ppd->dd;
- buff = kmalloc(count + 1, GFP_KERNEL);
- if (!buff)
- return -ENOMEM;
- ret = copy_from_user(buff, buf, count);
- if (ret > 0) {
- ret = -EFAULT;
- goto do_free;
- }
-
- buff[count] = 0;
- ret = kstrtoull(buff, 0, &value);
- if (ret)
- goto do_free;
- clear = value;
-
- mutex_lock(&dd->asic_data->asic_resource_mutex);
- acquire_hw_mutex(dd);
- scratch0 = read_csr(dd, ASIC_CFG_SCRATCH);
- scratch0 &= ~clear;
- write_csr(dd, ASIC_CFG_SCRATCH, scratch0);
-
- (void)read_csr(dd, ASIC_CFG_SCRATCH);
- release_hw_mutex(dd);
- mutex_unlock(&dd->asic_data->asic_resource_mutex);
-
- ret = count;
- do_free:
- kfree(buff);
- return ret;
- }
- static ssize_t qsfp_debugfs_dump(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- struct hfi1_pportdata *ppd;
- char *tmp;
- int ret;
- ppd = private2ppd(file);
- tmp = kmalloc(PAGE_SIZE, GFP_KERNEL);
- if (!tmp)
- return -ENOMEM;
- ret = qsfp_dump(ppd, tmp, PAGE_SIZE);
- if (ret > 0)
- ret = simple_read_from_buffer(buf, count, ppos, tmp, ret);
- kfree(tmp);
- return ret;
- }
- static ssize_t __i2c_debugfs_write(struct file *file, const char __user *buf,
- size_t count, loff_t *ppos, u32 target)
- {
- struct hfi1_pportdata *ppd;
- char *buff;
- int ret;
- int i2c_addr;
- int offset;
- int total_written;
- ppd = private2ppd(file);
-
- i2c_addr = (*ppos >> 16) & 0xffff;
- offset = *ppos & 0xffff;
-
- if (i2c_addr == 0)
- return -EINVAL;
- buff = kmalloc(count, GFP_KERNEL);
- if (!buff)
- return -ENOMEM;
- ret = copy_from_user(buff, buf, count);
- if (ret > 0) {
- ret = -EFAULT;
- goto _free;
- }
- total_written = i2c_write(ppd, target, i2c_addr, offset, buff, count);
- if (total_written < 0) {
- ret = total_written;
- goto _free;
- }
- *ppos += total_written;
- ret = total_written;
- _free:
- kfree(buff);
- return ret;
- }
- static ssize_t i2c1_debugfs_write(struct file *file, const char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __i2c_debugfs_write(file, buf, count, ppos, 0);
- }
- static ssize_t i2c2_debugfs_write(struct file *file, const char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __i2c_debugfs_write(file, buf, count, ppos, 1);
- }
- static ssize_t __i2c_debugfs_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos, u32 target)
- {
- struct hfi1_pportdata *ppd;
- char *buff;
- int ret;
- int i2c_addr;
- int offset;
- int total_read;
- ppd = private2ppd(file);
-
- i2c_addr = (*ppos >> 16) & 0xffff;
- offset = *ppos & 0xffff;
-
- if (i2c_addr == 0)
- return -EINVAL;
- buff = kmalloc(count, GFP_KERNEL);
- if (!buff)
- return -ENOMEM;
- total_read = i2c_read(ppd, target, i2c_addr, offset, buff, count);
- if (total_read < 0) {
- ret = total_read;
- goto _free;
- }
- *ppos += total_read;
- ret = copy_to_user(buf, buff, total_read);
- if (ret > 0) {
- ret = -EFAULT;
- goto _free;
- }
- ret = total_read;
- _free:
- kfree(buff);
- return ret;
- }
- static ssize_t i2c1_debugfs_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __i2c_debugfs_read(file, buf, count, ppos, 0);
- }
- static ssize_t i2c2_debugfs_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __i2c_debugfs_read(file, buf, count, ppos, 1);
- }
- static ssize_t __qsfp_debugfs_write(struct file *file, const char __user *buf,
- size_t count, loff_t *ppos, u32 target)
- {
- struct hfi1_pportdata *ppd;
- char *buff;
- int ret;
- int total_written;
- if (*ppos + count > QSFP_PAGESIZE * 4)
- return -EINVAL;
- ppd = private2ppd(file);
- buff = kmalloc(count, GFP_KERNEL);
- if (!buff)
- return -ENOMEM;
- ret = copy_from_user(buff, buf, count);
- if (ret > 0) {
- ret = -EFAULT;
- goto _free;
- }
- total_written = qsfp_write(ppd, target, *ppos, buff, count);
- if (total_written < 0) {
- ret = total_written;
- goto _free;
- }
- *ppos += total_written;
- ret = total_written;
- _free:
- kfree(buff);
- return ret;
- }
- static ssize_t qsfp1_debugfs_write(struct file *file, const char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __qsfp_debugfs_write(file, buf, count, ppos, 0);
- }
- static ssize_t qsfp2_debugfs_write(struct file *file, const char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __qsfp_debugfs_write(file, buf, count, ppos, 1);
- }
- static ssize_t __qsfp_debugfs_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos, u32 target)
- {
- struct hfi1_pportdata *ppd;
- char *buff;
- int ret;
- int total_read;
- if (*ppos + count > QSFP_PAGESIZE * 4) {
- ret = -EINVAL;
- goto _return;
- }
- ppd = private2ppd(file);
- buff = kmalloc(count, GFP_KERNEL);
- if (!buff) {
- ret = -ENOMEM;
- goto _return;
- }
- total_read = qsfp_read(ppd, target, *ppos, buff, count);
- if (total_read < 0) {
- ret = total_read;
- goto _free;
- }
- *ppos += total_read;
- ret = copy_to_user(buf, buff, total_read);
- if (ret > 0) {
- ret = -EFAULT;
- goto _free;
- }
- ret = total_read;
- _free:
- kfree(buff);
- _return:
- return ret;
- }
- static ssize_t qsfp1_debugfs_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __qsfp_debugfs_read(file, buf, count, ppos, 0);
- }
- static ssize_t qsfp2_debugfs_read(struct file *file, char __user *buf,
- size_t count, loff_t *ppos)
- {
- return __qsfp_debugfs_read(file, buf, count, ppos, 1);
- }
- static int __i2c_debugfs_open(struct inode *in, struct file *fp, u32 target)
- {
- struct hfi1_pportdata *ppd;
- int ret;
- if (!try_module_get(THIS_MODULE))
- return -ENODEV;
- ppd = private2ppd(fp);
- ret = acquire_chip_resource(ppd->dd, i2c_target(target), 0);
- if (ret)
- module_put(THIS_MODULE);
- return ret;
- }
- static int i2c1_debugfs_open(struct inode *in, struct file *fp)
- {
- return __i2c_debugfs_open(in, fp, 0);
- }
- static int i2c2_debugfs_open(struct inode *in, struct file *fp)
- {
- return __i2c_debugfs_open(in, fp, 1);
- }
- static int __i2c_debugfs_release(struct inode *in, struct file *fp, u32 target)
- {
- struct hfi1_pportdata *ppd;
- ppd = private2ppd(fp);
- release_chip_resource(ppd->dd, i2c_target(target));
- module_put(THIS_MODULE);
- return 0;
- }
- static int i2c1_debugfs_release(struct inode *in, struct file *fp)
- {
- return __i2c_debugfs_release(in, fp, 0);
- }
- static int i2c2_debugfs_release(struct inode *in, struct file *fp)
- {
- return __i2c_debugfs_release(in, fp, 1);
- }
- static int __qsfp_debugfs_open(struct inode *in, struct file *fp, u32 target)
- {
- struct hfi1_pportdata *ppd;
- int ret;
- if (!try_module_get(THIS_MODULE))
- return -ENODEV;
- ppd = private2ppd(fp);
- ret = acquire_chip_resource(ppd->dd, i2c_target(target), 0);
- if (ret)
- module_put(THIS_MODULE);
- return ret;
- }
- static int qsfp1_debugfs_open(struct inode *in, struct file *fp)
- {
- return __qsfp_debugfs_open(in, fp, 0);
- }
- static int qsfp2_debugfs_open(struct inode *in, struct file *fp)
- {
- return __qsfp_debugfs_open(in, fp, 1);
- }
- static int __qsfp_debugfs_release(struct inode *in, struct file *fp, u32 target)
- {
- struct hfi1_pportdata *ppd;
- ppd = private2ppd(fp);
- release_chip_resource(ppd->dd, i2c_target(target));
- module_put(THIS_MODULE);
- return 0;
- }
- static int qsfp1_debugfs_release(struct inode *in, struct file *fp)
- {
- return __qsfp_debugfs_release(in, fp, 0);
- }
- static int qsfp2_debugfs_release(struct inode *in, struct file *fp)
- {
- return __qsfp_debugfs_release(in, fp, 1);
- }
- #define DEBUGFS_OPS(nm, readroutine, writeroutine) \
- { \
- .name = nm, \
- .ops = { \
- .read = readroutine, \
- .write = writeroutine, \
- .llseek = generic_file_llseek, \
- }, \
- }
- #define DEBUGFS_XOPS(nm, readf, writef, openf, releasef) \
- { \
- .name = nm, \
- .ops = { \
- .read = readf, \
- .write = writef, \
- .llseek = generic_file_llseek, \
- .open = openf, \
- .release = releasef \
- }, \
- }
- static const struct counter_info cntr_ops[] = {
- DEBUGFS_OPS("counter_names", dev_names_read, NULL),
- DEBUGFS_OPS("counters", dev_counters_read, NULL),
- DEBUGFS_OPS("portcounter_names", portnames_read, NULL),
- };
- static const struct counter_info port_cntr_ops[] = {
- DEBUGFS_OPS("port%dcounters", portcntrs_debugfs_read, NULL),
- DEBUGFS_XOPS("i2c1", i2c1_debugfs_read, i2c1_debugfs_write,
- i2c1_debugfs_open, i2c1_debugfs_release),
- DEBUGFS_XOPS("i2c2", i2c2_debugfs_read, i2c2_debugfs_write,
- i2c2_debugfs_open, i2c2_debugfs_release),
- DEBUGFS_OPS("qsfp_dump%d", qsfp_debugfs_dump, NULL),
- DEBUGFS_XOPS("qsfp1", qsfp1_debugfs_read, qsfp1_debugfs_write,
- qsfp1_debugfs_open, qsfp1_debugfs_release),
- DEBUGFS_XOPS("qsfp2", qsfp2_debugfs_read, qsfp2_debugfs_write,
- qsfp2_debugfs_open, qsfp2_debugfs_release),
- DEBUGFS_OPS("asic_flags", asic_flags_read, asic_flags_write),
- };
- static void *_sdma_cpu_list_seq_start(struct seq_file *s, loff_t *pos)
- {
- if (*pos >= num_online_cpus())
- return NULL;
- return pos;
- }
- static void *_sdma_cpu_list_seq_next(struct seq_file *s, void *v, loff_t *pos)
- {
- ++*pos;
- if (*pos >= num_online_cpus())
- return NULL;
- return pos;
- }
- static void _sdma_cpu_list_seq_stop(struct seq_file *s, void *v)
- {
-
- }
- static int _sdma_cpu_list_seq_show(struct seq_file *s, void *v)
- {
- struct hfi1_ibdev *ibd = (struct hfi1_ibdev *)s->private;
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- loff_t *spos = v;
- loff_t i = *spos;
- sdma_seqfile_dump_cpu_list(s, dd, (unsigned long)i);
- return 0;
- }
- DEBUGFS_SEQ_FILE_OPS(sdma_cpu_list);
- DEBUGFS_SEQ_FILE_OPEN(sdma_cpu_list)
- DEBUGFS_FILE_OPS(sdma_cpu_list);
- void hfi1_dbg_ibdev_init(struct hfi1_ibdev *ibd)
- {
- char name[sizeof("port0counters") + 1];
- char link[10];
- struct hfi1_devdata *dd = dd_from_dev(ibd);
- struct hfi1_pportdata *ppd;
- int unit = dd->unit;
- int i, j;
- if (!hfi1_dbg_root)
- return;
- snprintf(name, sizeof(name), "%s_%d", class_name(), unit);
- snprintf(link, sizeof(link), "%d", unit);
- ibd->hfi1_ibdev_dbg = debugfs_create_dir(name, hfi1_dbg_root);
- if (!ibd->hfi1_ibdev_dbg) {
- pr_warn("create of %s failed\n", name);
- return;
- }
- ibd->hfi1_ibdev_link =
- debugfs_create_symlink(link, hfi1_dbg_root, name);
- if (!ibd->hfi1_ibdev_link) {
- pr_warn("create of %s symlink failed\n", name);
- return;
- }
- DEBUGFS_SEQ_FILE_CREATE(opcode_stats, ibd->hfi1_ibdev_dbg, ibd);
- DEBUGFS_SEQ_FILE_CREATE(ctx_stats, ibd->hfi1_ibdev_dbg, ibd);
- DEBUGFS_SEQ_FILE_CREATE(qp_stats, ibd->hfi1_ibdev_dbg, ibd);
- DEBUGFS_SEQ_FILE_CREATE(sdes, ibd->hfi1_ibdev_dbg, ibd);
- DEBUGFS_SEQ_FILE_CREATE(sdma_cpu_list, ibd->hfi1_ibdev_dbg, ibd);
-
- for (i = 0; i < ARRAY_SIZE(cntr_ops); i++)
- DEBUGFS_FILE_CREATE(cntr_ops[i].name,
- ibd->hfi1_ibdev_dbg,
- dd,
- &cntr_ops[i].ops, S_IRUGO);
-
- for (ppd = dd->pport, j = 0; j < dd->num_pports; j++, ppd++)
- for (i = 0; i < ARRAY_SIZE(port_cntr_ops); i++) {
- snprintf(name,
- sizeof(name),
- port_cntr_ops[i].name,
- j + 1);
- DEBUGFS_FILE_CREATE(name,
- ibd->hfi1_ibdev_dbg,
- ppd,
- &port_cntr_ops[i].ops,
- !port_cntr_ops[i].ops.write ?
- S_IRUGO : S_IRUGO | S_IWUSR);
- }
- }
- void hfi1_dbg_ibdev_exit(struct hfi1_ibdev *ibd)
- {
- if (!hfi1_dbg_root)
- goto out;
- debugfs_remove(ibd->hfi1_ibdev_link);
- debugfs_remove_recursive(ibd->hfi1_ibdev_dbg);
- out:
- ibd->hfi1_ibdev_dbg = NULL;
- }
- static const char * const hfi1_statnames[] = {
-
- "KernIntr",
- "ErrorIntr",
- "Tx_Errs",
- "Rcv_Errs",
- "H/W_Errs",
- "NoPIOBufs",
- "CtxtsOpen",
- "RcvLen_Errs",
- "EgrBufFull",
- "EgrHdrFull"
- };
- static void *_driver_stats_names_seq_start(struct seq_file *s, loff_t *pos)
- {
- if (*pos >= ARRAY_SIZE(hfi1_statnames))
- return NULL;
- return pos;
- }
- static void *_driver_stats_names_seq_next(
- struct seq_file *s,
- void *v,
- loff_t *pos)
- {
- ++*pos;
- if (*pos >= ARRAY_SIZE(hfi1_statnames))
- return NULL;
- return pos;
- }
- static void _driver_stats_names_seq_stop(struct seq_file *s, void *v)
- {
- }
- static int _driver_stats_names_seq_show(struct seq_file *s, void *v)
- {
- loff_t *spos = v;
- seq_printf(s, "%s\n", hfi1_statnames[*spos]);
- return 0;
- }
- DEBUGFS_SEQ_FILE_OPS(driver_stats_names);
- DEBUGFS_SEQ_FILE_OPEN(driver_stats_names)
- DEBUGFS_FILE_OPS(driver_stats_names);
- static void *_driver_stats_seq_start(struct seq_file *s, loff_t *pos)
- {
- if (*pos >= ARRAY_SIZE(hfi1_statnames))
- return NULL;
- return pos;
- }
- static void *_driver_stats_seq_next(struct seq_file *s, void *v, loff_t *pos)
- {
- ++*pos;
- if (*pos >= ARRAY_SIZE(hfi1_statnames))
- return NULL;
- return pos;
- }
- static void _driver_stats_seq_stop(struct seq_file *s, void *v)
- {
- }
- static u64 hfi1_sps_ints(void)
- {
- unsigned long flags;
- struct hfi1_devdata *dd;
- u64 sps_ints = 0;
- spin_lock_irqsave(&hfi1_devs_lock, flags);
- list_for_each_entry(dd, &hfi1_dev_list, list) {
- sps_ints += get_all_cpu_total(dd->int_counter);
- }
- spin_unlock_irqrestore(&hfi1_devs_lock, flags);
- return sps_ints;
- }
- static int _driver_stats_seq_show(struct seq_file *s, void *v)
- {
- loff_t *spos = v;
- char *buffer;
- u64 *stats = (u64 *)&hfi1_stats;
- size_t sz = seq_get_buf(s, &buffer);
- if (sz < sizeof(u64))
- return SEQ_SKIP;
-
- if (*spos == 0)
- *(u64 *)buffer = hfi1_sps_ints();
- else
- *(u64 *)buffer = stats[*spos];
- seq_commit(s, sizeof(u64));
- return 0;
- }
- DEBUGFS_SEQ_FILE_OPS(driver_stats);
- DEBUGFS_SEQ_FILE_OPEN(driver_stats)
- DEBUGFS_FILE_OPS(driver_stats);
- void hfi1_dbg_init(void)
- {
- hfi1_dbg_root = debugfs_create_dir(DRIVER_NAME, NULL);
- if (!hfi1_dbg_root)
- pr_warn("init of debugfs failed\n");
- DEBUGFS_SEQ_FILE_CREATE(driver_stats_names, hfi1_dbg_root, NULL);
- DEBUGFS_SEQ_FILE_CREATE(driver_stats, hfi1_dbg_root, NULL);
- }
- void hfi1_dbg_exit(void)
- {
- debugfs_remove_recursive(hfi1_dbg_root);
- hfi1_dbg_root = NULL;
- }
- #endif
|