2 * Virtual Processor Dispatch Trace Log
4 * (C) Copyright IBM Corporation 2009
6 * Author: Jeremy Kerr <jk@ozlabs.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/slab.h>
24 #include <linux/debugfs.h>
25 #include <linux/spinlock.h>
27 #include <linux/uaccess.h>
28 #include <asm/firmware.h>
29 #include <asm/lppaca.h>
30 #include <asm/debug.h>
31 #include <asm/plpar_wrappers.h>
32 #include <asm/machdep.h>
35 struct dtl_entry
*buf
;
42 static DEFINE_PER_CPU(struct dtl
, cpu_dtl
);
45 * Dispatch trace log event mask:
46 * 0x7: 0x1: voluntary virtual processor waits
47 * 0x2: time-slice preempts
48 * 0x4: virtual partition memory page faults
50 static u8 dtl_event_mask
= 0x7;
54 * Size of per-cpu log buffers. Firmware requires that the buffer does
55 * not cross a 4k boundary.
57 static int dtl_buf_entries
= N_DISPATCH_LOG
;
59 #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
62 struct dtl_entry
*write_ptr
;
63 struct dtl_entry
*buf
;
64 struct dtl_entry
*buf_end
;
68 static DEFINE_PER_CPU(struct dtl_ring
, dtl_rings
);
70 static atomic_t dtl_count
;
73 * The cpu accounting code controls the DTL ring buffer, and we get
74 * given entries as they are processed.
76 static void consume_dtle(struct dtl_entry
*dtle
, u64 index
)
78 struct dtl_ring
*dtlr
= this_cpu_ptr(&dtl_rings
);
79 struct dtl_entry
*wp
= dtlr
->write_ptr
;
80 struct lppaca
*vpa
= local_paca
->lppaca_ptr
;
88 /* check for hypervisor ring buffer overflow, ignore this entry if so */
89 if (index
+ N_DISPATCH_LOG
< be64_to_cpu(vpa
->dtl_idx
))
93 if (wp
== dtlr
->buf_end
)
97 /* incrementing write_index makes the new entry visible */
102 static int dtl_start(struct dtl
*dtl
)
104 struct dtl_ring
*dtlr
= &per_cpu(dtl_rings
, dtl
->cpu
);
106 dtlr
->buf
= dtl
->buf
;
107 dtlr
->buf_end
= dtl
->buf
+ dtl
->buf_entries
;
108 dtlr
->write_index
= 0;
110 /* setting write_ptr enables logging into our buffer */
112 dtlr
->write_ptr
= dtl
->buf
;
114 /* enable event logging */
115 dtlr
->saved_dtl_mask
= lppaca_of(dtl
->cpu
).dtl_enable_mask
;
116 lppaca_of(dtl
->cpu
).dtl_enable_mask
|= dtl_event_mask
;
118 dtl_consumer
= consume_dtle
;
119 atomic_inc(&dtl_count
);
123 static void dtl_stop(struct dtl
*dtl
)
125 struct dtl_ring
*dtlr
= &per_cpu(dtl_rings
, dtl
->cpu
);
127 dtlr
->write_ptr
= NULL
;
132 /* restore dtl_enable_mask */
133 lppaca_of(dtl
->cpu
).dtl_enable_mask
= dtlr
->saved_dtl_mask
;
135 if (atomic_dec_and_test(&dtl_count
))
139 static u64
dtl_current_index(struct dtl
*dtl
)
141 return per_cpu(dtl_rings
, dtl
->cpu
).write_index
;
144 #else /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
146 static int dtl_start(struct dtl
*dtl
)
151 /* Register our dtl buffer with the hypervisor. The HV expects the
152 * buffer size to be passed in the second word of the buffer */
153 ((u32
*)dtl
->buf
)[1] = DISPATCH_LOG_BYTES
;
155 hwcpu
= get_hard_smp_processor_id(dtl
->cpu
);
156 addr
= __pa(dtl
->buf
);
157 ret
= register_dtl(hwcpu
, addr
);
159 printk(KERN_WARNING
"%s: DTL registration for cpu %d (hw %d) "
160 "failed with %d\n", __func__
, dtl
->cpu
, hwcpu
, ret
);
164 /* set our initial buffer indices */
165 lppaca_of(dtl
->cpu
).dtl_idx
= 0;
167 /* ensure that our updates to the lppaca fields have occurred before
168 * we actually enable the logging */
171 /* enable event logging */
172 lppaca_of(dtl
->cpu
).dtl_enable_mask
= dtl_event_mask
;
177 static void dtl_stop(struct dtl
*dtl
)
179 int hwcpu
= get_hard_smp_processor_id(dtl
->cpu
);
181 lppaca_of(dtl
->cpu
).dtl_enable_mask
= 0x0;
183 unregister_dtl(hwcpu
);
186 static u64
dtl_current_index(struct dtl
*dtl
)
188 return lppaca_of(dtl
->cpu
).dtl_idx
;
190 #endif /* CONFIG_VIRT_CPU_ACCOUNTING_NATIVE */
192 static int dtl_enable(struct dtl
*dtl
)
196 struct dtl_entry
*buf
= NULL
;
201 /* only allow one reader */
205 n_entries
= dtl_buf_entries
;
206 buf
= kmem_cache_alloc_node(dtl_cache
, GFP_KERNEL
, cpu_to_node(dtl
->cpu
));
208 printk(KERN_WARNING
"%s: buffer alloc failed for cpu %d\n",
213 spin_lock(&dtl
->lock
);
216 /* store the original allocation size for use during read */
217 dtl
->buf_entries
= n_entries
;
224 spin_unlock(&dtl
->lock
);
227 kmem_cache_free(dtl_cache
, buf
);
231 static void dtl_disable(struct dtl
*dtl
)
233 spin_lock(&dtl
->lock
);
235 kmem_cache_free(dtl_cache
, dtl
->buf
);
237 dtl
->buf_entries
= 0;
238 spin_unlock(&dtl
->lock
);
243 static int dtl_file_open(struct inode
*inode
, struct file
*filp
)
245 struct dtl
*dtl
= inode
->i_private
;
248 rc
= dtl_enable(dtl
);
252 filp
->private_data
= dtl
;
256 static int dtl_file_release(struct inode
*inode
, struct file
*filp
)
258 struct dtl
*dtl
= inode
->i_private
;
263 static ssize_t
dtl_file_read(struct file
*filp
, char __user
*buf
, size_t len
,
266 long int rc
, n_read
, n_req
, read_size
;
268 u64 cur_idx
, last_idx
, i
;
270 if ((len
% sizeof(struct dtl_entry
)) != 0)
273 dtl
= filp
->private_data
;
275 /* requested number of entries to read */
276 n_req
= len
/ sizeof(struct dtl_entry
);
278 /* actual number of entries read */
281 spin_lock(&dtl
->lock
);
283 cur_idx
= dtl_current_index(dtl
);
284 last_idx
= dtl
->last_idx
;
286 if (last_idx
+ dtl
->buf_entries
<= cur_idx
)
287 last_idx
= cur_idx
- dtl
->buf_entries
+ 1;
289 if (last_idx
+ n_req
> cur_idx
)
290 n_req
= cur_idx
- last_idx
;
293 dtl
->last_idx
= last_idx
+ n_req
;
295 spin_unlock(&dtl
->lock
);
300 i
= last_idx
% dtl
->buf_entries
;
302 /* read the tail of the buffer if we've wrapped */
303 if (i
+ n_req
> dtl
->buf_entries
) {
304 read_size
= dtl
->buf_entries
- i
;
306 rc
= copy_to_user(buf
, &dtl
->buf
[i
],
307 read_size
* sizeof(struct dtl_entry
));
314 buf
+= read_size
* sizeof(struct dtl_entry
);
317 /* .. and now the head */
318 rc
= copy_to_user(buf
, &dtl
->buf
[i
], n_req
* sizeof(struct dtl_entry
));
324 return n_read
* sizeof(struct dtl_entry
);
327 static const struct file_operations dtl_fops
= {
328 .open
= dtl_file_open
,
329 .release
= dtl_file_release
,
330 .read
= dtl_file_read
,
334 static struct dentry
*dtl_dir
;
336 static int dtl_setup_file(struct dtl
*dtl
)
340 sprintf(name
, "cpu-%d", dtl
->cpu
);
342 dtl
->file
= debugfs_create_file(name
, 0400, dtl_dir
, dtl
, &dtl_fops
);
349 static int dtl_init(void)
351 struct dentry
*event_mask_file
, *buf_entries_file
;
354 if (!firmware_has_feature(FW_FEATURE_SPLPAR
))
357 /* set up common debugfs structure */
360 dtl_dir
= debugfs_create_dir("dtl", powerpc_debugfs_root
);
362 printk(KERN_WARNING
"%s: can't create dtl root dir\n",
367 event_mask_file
= debugfs_create_x8("dtl_event_mask", 0600,
368 dtl_dir
, &dtl_event_mask
);
369 buf_entries_file
= debugfs_create_u32("dtl_buf_entries", 0400,
370 dtl_dir
, &dtl_buf_entries
);
372 if (!event_mask_file
|| !buf_entries_file
) {
373 printk(KERN_WARNING
"%s: can't create dtl files\n", __func__
);
377 /* set up the per-cpu log structures */
378 for_each_possible_cpu(i
) {
379 struct dtl
*dtl
= &per_cpu(cpu_dtl
, i
);
380 spin_lock_init(&dtl
->lock
);
383 rc
= dtl_setup_file(dtl
);
391 debugfs_remove_recursive(dtl_dir
);
395 machine_arch_initcall(pseries
, dtl_init
);