s390/pci: add locking for fmb access
[pandora-kernel.git] / arch / s390 / pci / pci_debug.c
1 /*
2  *  Copyright IBM Corp. 2012
3  *
4  *  Author(s):
5  *    Jan Glauber <jang@linux.vnet.ibm.com>
6  */
7
8 #define KMSG_COMPONENT "zpci"
9 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10
11 #include <linux/kernel.h>
12 #include <linux/seq_file.h>
13 #include <linux/debugfs.h>
14 #include <linux/export.h>
15 #include <linux/pci.h>
16 #include <asm/debug.h>
17
18 #include <asm/pci_dma.h>
19
20 static struct dentry *debugfs_root;
21 debug_info_t *pci_debug_msg_id;
22 EXPORT_SYMBOL_GPL(pci_debug_msg_id);
23 debug_info_t *pci_debug_err_id;
24 EXPORT_SYMBOL_GPL(pci_debug_err_id);
25
26 static 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",
34 };
35
36 static char *pci_sw_names[] = {
37         "Allocated pages",
38         "Mapped pages",
39         "Unmapped pages",
40 };
41
42 static 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
53 static 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;
61
62         mutex_lock(&zdev->lock);
63         if (!zdev->fmb) {
64                 mutex_unlock(&zdev->lock);
65                 return seq_printf(m, "FMB statistics disabled\n");
66         }
67
68         /* header */
69         seq_printf(m, "FMB @ %p\n", zdev->fmb);
70         seq_printf(m, "Update interval: %u ms\n", zdev->fmb_update);
71         seq_printf(m, "Samples: %u\n", zdev->fmb->samples);
72         seq_printf(m, "Last update TOD: %Lx\n", zdev->fmb->last_update);
73
74         /* hardware counters */
75         stat = (u64 *) &zdev->fmb->ld_ops;
76         for (i = 0; i < 4; i++)
77                 seq_printf(m, "%26s:\t%llu\n",
78                            pci_perf_names[i], *(stat + i));
79         if (zdev->fmb->dma_valid)
80                 for (i = 4; i < 6; i++)
81                         seq_printf(m, "%26s:\t%llu\n",
82                                    pci_perf_names[i], *(stat + i));
83
84         pci_sw_counter_show(m);
85         mutex_unlock(&zdev->lock);
86         return 0;
87 }
88
89 static ssize_t pci_perf_seq_write(struct file *file, const char __user *ubuf,
90                                   size_t count, loff_t *off)
91 {
92         struct zpci_dev *zdev = ((struct seq_file *) file->private_data)->private;
93         unsigned long val;
94         int rc;
95
96         if (!zdev)
97                 return 0;
98
99         rc = kstrtoul_from_user(ubuf, count, 10, &val);
100         if (rc)
101                 return rc;
102
103         mutex_lock(&zdev->lock);
104         switch (val) {
105         case 0:
106                 rc = zpci_fmb_disable_device(zdev);
107                 break;
108         case 1:
109                 rc = zpci_fmb_enable_device(zdev);
110                 break;
111         }
112         mutex_unlock(&zdev->lock);
113         return rc ? rc : count;
114 }
115
116 static int pci_perf_seq_open(struct inode *inode, struct file *filp)
117 {
118         return single_open(filp, pci_perf_show,
119                            file_inode(filp)->i_private);
120 }
121
122 static const struct file_operations debugfs_pci_perf_fops = {
123         .open    = pci_perf_seq_open,
124         .read    = seq_read,
125         .write   = pci_perf_seq_write,
126         .llseek  = seq_lseek,
127         .release = single_release,
128 };
129
130 void zpci_debug_init_device(struct zpci_dev *zdev)
131 {
132         zdev->debugfs_dev = debugfs_create_dir(dev_name(&zdev->pdev->dev),
133                                                debugfs_root);
134         if (IS_ERR(zdev->debugfs_dev))
135                 zdev->debugfs_dev = NULL;
136
137         zdev->debugfs_perf = debugfs_create_file("statistics",
138                                 S_IFREG | S_IRUGO | S_IWUSR,
139                                 zdev->debugfs_dev, zdev,
140                                 &debugfs_pci_perf_fops);
141         if (IS_ERR(zdev->debugfs_perf))
142                 zdev->debugfs_perf = NULL;
143 }
144
145 void zpci_debug_exit_device(struct zpci_dev *zdev)
146 {
147         debugfs_remove(zdev->debugfs_perf);
148         debugfs_remove(zdev->debugfs_dev);
149 }
150
151 int __init zpci_debug_init(void)
152 {
153         /* event trace buffer */
154         pci_debug_msg_id = debug_register("pci_msg", 8, 1, 8 * sizeof(long));
155         if (!pci_debug_msg_id)
156                 return -EINVAL;
157         debug_register_view(pci_debug_msg_id, &debug_sprintf_view);
158         debug_set_level(pci_debug_msg_id, 3);
159
160         /* error log */
161         pci_debug_err_id = debug_register("pci_error", 2, 1, 16);
162         if (!pci_debug_err_id)
163                 return -EINVAL;
164         debug_register_view(pci_debug_err_id, &debug_hex_ascii_view);
165         debug_set_level(pci_debug_err_id, 6);
166
167         debugfs_root = debugfs_create_dir("pci", NULL);
168         return 0;
169 }
170
171 void zpci_debug_exit(void)
172 {
173         debug_unregister(pci_debug_msg_id);
174         debug_unregister(pci_debug_err_id);
175         debugfs_remove(debugfs_root);
176 }