blob: 43d9525c36fc3e491525acd7d50caf3ae79802a1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * S390 Version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2002, 2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Thomas Spatzier (tspat@de.ibm.com)
Heinz Graalfsc814d162011-02-15 13:02:14 -05006 * Author(s): Mahesh Salgaonkar (mahesh@linux.vnet.ibm.com)
7 * Author(s): Heinz Graalfs (graalfs@linux.vnet.ibm.com)
Andreas Krebbeldd3c4672011-11-25 20:03:05 +01008 * Author(s): Andreas Krebbel (krebbel@linux.vnet.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Heinz Graalfsc814d162011-02-15 13:02:14 -050010 * @remark Copyright 2002-2011 OProfile authors
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/oprofile.h>
14#include <linux/init.h>
Andreas Krebbeldd3c4672011-11-25 20:03:05 +010015#include <asm/processor.h>
Heinz Graalfsc814d162011-02-15 13:02:14 -050016
Heiko Carstensd0208632016-10-17 11:08:31 +020017static int __s390_backtrace(void *data, unsigned long address, int reliable)
Heiko Carstens758d39e2016-02-09 12:58:54 +010018{
19 unsigned int *depth = data;
20
21 if (*depth == 0)
22 return 1;
23 (*depth)--;
24 oprofile_add_trace(address);
25 return 0;
26}
27
28static void s390_backtrace(struct pt_regs *regs, unsigned int depth)
29{
30 if (user_mode(regs))
31 return;
32 dump_trace(__s390_backtrace, &depth, NULL, regs->gprs[15]);
33}
34
Robert Richterec6b4262011-03-16 12:10:12 +010035int __init oprofile_arch_init(struct oprofile_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Andreas Krebbeld0f4c162006-01-06 00:19:16 -080037 ops->backtrace = s390_backtrace;
Andreas Krebbeldd3c4672011-11-25 20:03:05 +010038 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41void oprofile_arch_exit(void)
42{
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}