proc: test /proc/thread-self symlink
[linux/fpc-iii.git] / virt / kvm / arm / vgic / vgic-debug.c
blobc589d4c2b478b2df7ada6cee1837340c762a41b5
1 /*
2 * Copyright (C) 2016 Linaro
3 * Author: Christoffer Dall <christoffer.dall@linaro.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/cpu.h>
19 #include <linux/debugfs.h>
20 #include <linux/interrupt.h>
21 #include <linux/kvm_host.h>
22 #include <linux/seq_file.h>
23 #include <kvm/arm_vgic.h>
24 #include <asm/kvm_mmu.h>
25 #include "vgic.h"
28 * Structure to control looping through the entire vgic state. We start at
29 * zero for each field and move upwards. So, if dist_id is 0 we print the
30 * distributor info. When dist_id is 1, we have already printed it and move
31 * on.
33 * When vcpu_id < nr_cpus we print the vcpu info until vcpu_id == nr_cpus and
34 * so on.
36 struct vgic_state_iter {
37 int nr_cpus;
38 int nr_spis;
39 int dist_id;
40 int vcpu_id;
41 int intid;
44 static void iter_next(struct vgic_state_iter *iter)
46 if (iter->dist_id == 0) {
47 iter->dist_id++;
48 return;
51 iter->intid++;
52 if (iter->intid == VGIC_NR_PRIVATE_IRQS &&
53 ++iter->vcpu_id < iter->nr_cpus)
54 iter->intid = 0;
57 static void iter_init(struct kvm *kvm, struct vgic_state_iter *iter,
58 loff_t pos)
60 int nr_cpus = atomic_read(&kvm->online_vcpus);
62 memset(iter, 0, sizeof(*iter));
64 iter->nr_cpus = nr_cpus;
65 iter->nr_spis = kvm->arch.vgic.nr_spis;
67 /* Fast forward to the right position if needed */
68 while (pos--)
69 iter_next(iter);
72 static bool end_of_vgic(struct vgic_state_iter *iter)
74 return iter->dist_id > 0 &&
75 iter->vcpu_id == iter->nr_cpus &&
76 (iter->intid - VGIC_NR_PRIVATE_IRQS) == iter->nr_spis;
79 static void *vgic_debug_start(struct seq_file *s, loff_t *pos)
81 struct kvm *kvm = (struct kvm *)s->private;
82 struct vgic_state_iter *iter;
84 mutex_lock(&kvm->lock);
85 iter = kvm->arch.vgic.iter;
86 if (iter) {
87 iter = ERR_PTR(-EBUSY);
88 goto out;
91 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
92 if (!iter) {
93 iter = ERR_PTR(-ENOMEM);
94 goto out;
97 iter_init(kvm, iter, *pos);
98 kvm->arch.vgic.iter = iter;
100 if (end_of_vgic(iter))
101 iter = NULL;
102 out:
103 mutex_unlock(&kvm->lock);
104 return iter;
107 static void *vgic_debug_next(struct seq_file *s, void *v, loff_t *pos)
109 struct kvm *kvm = (struct kvm *)s->private;
110 struct vgic_state_iter *iter = kvm->arch.vgic.iter;
112 ++*pos;
113 iter_next(iter);
114 if (end_of_vgic(iter))
115 iter = NULL;
116 return iter;
119 static void vgic_debug_stop(struct seq_file *s, void *v)
121 struct kvm *kvm = (struct kvm *)s->private;
122 struct vgic_state_iter *iter;
125 * If the seq file wasn't properly opened, there's nothing to clearn
126 * up.
128 if (IS_ERR(v))
129 return;
131 mutex_lock(&kvm->lock);
132 iter = kvm->arch.vgic.iter;
133 kfree(iter);
134 kvm->arch.vgic.iter = NULL;
135 mutex_unlock(&kvm->lock);
138 static void print_dist_state(struct seq_file *s, struct vgic_dist *dist)
140 seq_printf(s, "Distributor\n");
141 seq_printf(s, "===========\n");
142 seq_printf(s, "vgic_model:\t%s\n",
143 (dist->vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) ?
144 "GICv3" : "GICv2");
145 seq_printf(s, "nr_spis:\t%d\n", dist->nr_spis);
146 seq_printf(s, "enabled:\t%d\n", dist->enabled);
147 seq_printf(s, "\n");
149 seq_printf(s, "P=pending_latch, L=line_level, A=active\n");
150 seq_printf(s, "E=enabled, H=hw, C=config (level=1, edge=0)\n");
153 static void print_header(struct seq_file *s, struct vgic_irq *irq,
154 struct kvm_vcpu *vcpu)
156 int id = 0;
157 char *hdr = "SPI ";
159 if (vcpu) {
160 hdr = "VCPU";
161 id = vcpu->vcpu_id;
164 seq_printf(s, "\n");
165 seq_printf(s, "%s%2d TYP ID TGT_ID PLAEHC HWID TARGET SRC PRI VCPU_ID\n", hdr, id);
166 seq_printf(s, "---------------------------------------------------------------\n");
169 static void print_irq_state(struct seq_file *s, struct vgic_irq *irq,
170 struct kvm_vcpu *vcpu)
172 char *type;
173 if (irq->intid < VGIC_NR_SGIS)
174 type = "SGI";
175 else if (irq->intid < VGIC_NR_PRIVATE_IRQS)
176 type = "PPI";
177 else
178 type = "SPI";
180 if (irq->intid ==0 || irq->intid == VGIC_NR_PRIVATE_IRQS)
181 print_header(s, irq, vcpu);
183 seq_printf(s, " %s %4d "
184 " %2d "
185 "%d%d%d%d%d%d "
186 "%8d "
187 "%8x "
188 " %2x "
189 "%3d "
190 " %2d "
191 "\n",
192 type, irq->intid,
193 (irq->target_vcpu) ? irq->target_vcpu->vcpu_id : -1,
194 irq->pending_latch,
195 irq->line_level,
196 irq->active,
197 irq->enabled,
198 irq->hw,
199 irq->config == VGIC_CONFIG_LEVEL,
200 irq->hwintid,
201 irq->mpidr,
202 irq->source,
203 irq->priority,
204 (irq->vcpu) ? irq->vcpu->vcpu_id : -1);
208 static int vgic_debug_show(struct seq_file *s, void *v)
210 struct kvm *kvm = (struct kvm *)s->private;
211 struct vgic_state_iter *iter = (struct vgic_state_iter *)v;
212 struct vgic_irq *irq;
213 struct kvm_vcpu *vcpu = NULL;
214 unsigned long flags;
216 if (iter->dist_id == 0) {
217 print_dist_state(s, &kvm->arch.vgic);
218 return 0;
221 if (!kvm->arch.vgic.initialized)
222 return 0;
224 if (iter->vcpu_id < iter->nr_cpus) {
225 vcpu = kvm_get_vcpu(kvm, iter->vcpu_id);
226 irq = &vcpu->arch.vgic_cpu.private_irqs[iter->intid];
227 } else {
228 irq = &kvm->arch.vgic.spis[iter->intid - VGIC_NR_PRIVATE_IRQS];
231 spin_lock_irqsave(&irq->irq_lock, flags);
232 print_irq_state(s, irq, vcpu);
233 spin_unlock_irqrestore(&irq->irq_lock, flags);
235 return 0;
238 static const struct seq_operations vgic_debug_seq_ops = {
239 .start = vgic_debug_start,
240 .next = vgic_debug_next,
241 .stop = vgic_debug_stop,
242 .show = vgic_debug_show
245 static int debug_open(struct inode *inode, struct file *file)
247 int ret;
248 ret = seq_open(file, &vgic_debug_seq_ops);
249 if (!ret) {
250 struct seq_file *seq;
251 /* seq_open will have modified file->private_data */
252 seq = file->private_data;
253 seq->private = inode->i_private;
256 return ret;
259 static const struct file_operations vgic_debug_fops = {
260 .owner = THIS_MODULE,
261 .open = debug_open,
262 .read = seq_read,
263 .llseek = seq_lseek,
264 .release = seq_release
267 void vgic_debug_init(struct kvm *kvm)
269 debugfs_create_file("vgic-state", 0444, kvm->debugfs_dentry, kvm,
270 &vgic_debug_fops);
273 void vgic_debug_destroy(struct kvm *kvm)