blob: 4129b0a5fd780f1f1b74260ee6be656ff93d91c1 [file] [log] [blame]
Jan Glauberd0b08852012-12-11 14:53:35 +01001/*
2 * Copyright IBM Corp. 2012
3 *
4 * Author(s):
5 * Jan Glauber <jang@linux.vnet.ibm.com>
6 */
7
Gerald Schaefer896cb7e2014-07-16 17:21:01 +02008#define KMSG_COMPONENT "zpci"
9#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
Jan Glauberd0b08852012-12-11 14:53:35 +010010
11#include <linux/kernel.h>
12#include <linux/seq_file.h>
13#include <linux/debugfs.h>
Sebastian Otta2ab8332013-04-16 14:11:14 +020014#include <linux/export.h>
Jan Glauberd0b08852012-12-11 14:53:35 +010015#include <linux/pci.h>
16#include <asm/debug.h>
17
18#include <asm/pci_dma.h>
19
20static struct dentry *debugfs_root;
Sebastian Otta2ab8332013-04-16 14:11:14 +020021debug_info_t *pci_debug_msg_id;
22EXPORT_SYMBOL_GPL(pci_debug_msg_id);
23debug_info_t *pci_debug_err_id;
24EXPORT_SYMBOL_GPL(pci_debug_err_id);
Jan Glauberd0b08852012-12-11 14:53:35 +010025
26static char *pci_perf_names[] = {
27 /* hardware counters */
28 "Load operations",
29 "Store operations",
30 "Store block operations",
31 "Refresh operations",
32 "DMA read bytes",
33 "DMA write bytes",
Sebastian Ott60010182015-04-10 14:33:08 +020034};
35
36static char *pci_sw_names[] = {
Jan Glauberd0b08852012-12-11 14:53:35 +010037 "Allocated pages",
38 "Mapped pages",
39 "Unmapped pages",
40};
41
Sebastian Ott60010182015-04-10 14:33:08 +020042static void pci_sw_counter_show(struct seq_file *m)
43{
44 struct zpci_dev *zdev = m->private;
45 atomic64_t *counter = &zdev->allocated_pages;
46 int i;
47
48 for (i = 0; i < ARRAY_SIZE(pci_sw_names); i++, counter++)
49 seq_printf(m, "%26s:\t%llu\n", pci_sw_names[i],
50 atomic64_read(counter));
51}
52
Jan Glauberd0b08852012-12-11 14:53:35 +010053static int pci_perf_show(struct seq_file *m, void *v)
54{
55 struct zpci_dev *zdev = m->private;
56 u64 *stat;
57 int i;
58
59 if (!zdev)
60 return 0;
Sebastian Ott80ed1562015-04-10 14:34:33 +020061
62 mutex_lock(&zdev->lock);
Joe Perchesc2f0b612015-04-15 16:18:14 -070063 if (!zdev->fmb) {
Sebastian Ott80ed1562015-04-10 14:34:33 +020064 mutex_unlock(&zdev->lock);
Joe Perchesc2f0b612015-04-15 16:18:14 -070065 seq_puts(m, "FMB statistics disabled\n");
66 return 0;
67 }
Jan Glauberd0b08852012-12-11 14:53:35 +010068
69 /* header */
70 seq_printf(m, "FMB @ %p\n", zdev->fmb);
71 seq_printf(m, "Update interval: %u ms\n", zdev->fmb_update);
72 seq_printf(m, "Samples: %u\n", zdev->fmb->samples);
73 seq_printf(m, "Last update TOD: %Lx\n", zdev->fmb->last_update);
74
75 /* hardware counters */
76 stat = (u64 *) &zdev->fmb->ld_ops;
77 for (i = 0; i < 4; i++)
78 seq_printf(m, "%26s:\t%llu\n",
79 pci_perf_names[i], *(stat + i));
80 if (zdev->fmb->dma_valid)
81 for (i = 4; i < 6; i++)
82 seq_printf(m, "%26s:\t%llu\n",
83 pci_perf_names[i], *(stat + i));
Jan Glauberd0b08852012-12-11 14:53:35 +010084
Sebastian Ott60010182015-04-10 14:33:08 +020085 pci_sw_counter_show(m);
Sebastian Ott80ed1562015-04-10 14:34:33 +020086 mutex_unlock(&zdev->lock);
Jan Glauberd0b08852012-12-11 14:53:35 +010087 return 0;
88}
89
90static ssize_t pci_perf_seq_write(struct file *file, const char __user *ubuf,
91 size_t count, loff_t *off)
92{
93 struct zpci_dev *zdev = ((struct seq_file *) file->private_data)->private;
94 unsigned long val;
95 int rc;
96
97 if (!zdev)
98 return 0;
99
100 rc = kstrtoul_from_user(ubuf, count, 10, &val);
101 if (rc)
102 return rc;
103
Sebastian Ott80ed1562015-04-10 14:34:33 +0200104 mutex_lock(&zdev->lock);
Jan Glauberd0b08852012-12-11 14:53:35 +0100105 switch (val) {
106 case 0:
107 rc = zpci_fmb_disable_device(zdev);
Jan Glauberd0b08852012-12-11 14:53:35 +0100108 break;
109 case 1:
110 rc = zpci_fmb_enable_device(zdev);
Jan Glauberd0b08852012-12-11 14:53:35 +0100111 break;
112 }
Sebastian Ott80ed1562015-04-10 14:34:33 +0200113 mutex_unlock(&zdev->lock);
114 return rc ? rc : count;
Jan Glauberd0b08852012-12-11 14:53:35 +0100115}
116
117static int pci_perf_seq_open(struct inode *inode, struct file *filp)
118{
119 return single_open(filp, pci_perf_show,
Al Viro496ad9a2013-01-23 17:07:38 -0500120 file_inode(filp)->i_private);
Jan Glauberd0b08852012-12-11 14:53:35 +0100121}
122
123static const struct file_operations debugfs_pci_perf_fops = {
124 .open = pci_perf_seq_open,
125 .read = seq_read,
126 .write = pci_perf_seq_write,
127 .llseek = seq_lseek,
128 .release = single_release,
129};
130
Jan Glauberd0b08852012-12-11 14:53:35 +0100131void zpci_debug_init_device(struct zpci_dev *zdev)
132{
133 zdev->debugfs_dev = debugfs_create_dir(dev_name(&zdev->pdev->dev),
134 debugfs_root);
135 if (IS_ERR(zdev->debugfs_dev))
136 zdev->debugfs_dev = NULL;
137
138 zdev->debugfs_perf = debugfs_create_file("statistics",
139 S_IFREG | S_IRUGO | S_IWUSR,
140 zdev->debugfs_dev, zdev,
141 &debugfs_pci_perf_fops);
142 if (IS_ERR(zdev->debugfs_perf))
143 zdev->debugfs_perf = NULL;
Jan Glauberd0b08852012-12-11 14:53:35 +0100144}
145
146void zpci_debug_exit_device(struct zpci_dev *zdev)
147{
148 debugfs_remove(zdev->debugfs_perf);
Jan Glauberd0b08852012-12-11 14:53:35 +0100149 debugfs_remove(zdev->debugfs_dev);
150}
151
152int __init zpci_debug_init(void)
153{
154 /* event trace buffer */
Sebastian Ottf7e1e652014-02-17 11:16:10 +0100155 pci_debug_msg_id = debug_register("pci_msg", 8, 1, 8 * sizeof(long));
Jan Glauberd0b08852012-12-11 14:53:35 +0100156 if (!pci_debug_msg_id)
157 return -EINVAL;
158 debug_register_view(pci_debug_msg_id, &debug_sprintf_view);
159 debug_set_level(pci_debug_msg_id, 3);
Jan Glauberd0b08852012-12-11 14:53:35 +0100160
161 /* error log */
162 pci_debug_err_id = debug_register("pci_error", 2, 1, 16);
163 if (!pci_debug_err_id)
164 return -EINVAL;
165 debug_register_view(pci_debug_err_id, &debug_hex_ascii_view);
166 debug_set_level(pci_debug_err_id, 6);
Jan Glauberd0b08852012-12-11 14:53:35 +0100167
168 debugfs_root = debugfs_create_dir("pci", NULL);
169 return 0;
170}
171
172void zpci_debug_exit(void)
173{
Markus Elfring8c080bd2014-11-22 15:00:55 +0100174 debug_unregister(pci_debug_msg_id);
175 debug_unregister(pci_debug_err_id);
Jan Glauberd0b08852012-12-11 14:53:35 +0100176 debugfs_remove(debugfs_root);
177}