blob: 2de71faca911c0e74f86c033d3030f919f66af29 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Gibsonf7f6f4f2005-10-19 14:53:32 +10002 * arch/powerpc/kernel/pmc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 David Gibson, IBM Corporation.
David Gibsonf7f6f4f2005-10-19 14:53:32 +10005 * Includes code formerly from arch/ppc/kernel/perfmon.c:
6 * Author: Andy Fleming
7 * Copyright (c) 2004 Freescale Semiconductor, Inc
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
Paul Gortmaker50af5ea2012-01-20 18:35:53 -050016#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/spinlock.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040018#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/processor.h>
Olof Johansson6529c132007-01-28 21:25:57 -060021#include <asm/cputable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/pmc.h>
23
Anton Blanchard177e9ea2007-05-20 03:13:43 +100024#ifndef MMCR0_PMAO
25#define MMCR0_PMAO 0
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060026#endif
27
28static void dummy_perf(struct pt_regs *regs)
29{
Andy Fleming39aef682008-02-04 18:27:55 -060030#if defined(CONFIG_FSL_EMB_PERFMON)
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060031 mtpmr(PMRN_PMGC0, mfpmr(PMRN_PMGC0) & ~PMGC0_PMIE);
Christophe Leroyd7cceda2018-11-17 10:24:56 +000032#elif defined(CONFIG_PPC64) || defined(CONFIG_PPC_BOOK3S_32)
Olof Johansson6529c132007-01-28 21:25:57 -060033 if (cur_cpu_spec->pmc_type == PPC_PMC_IBM)
Anton Blanchard177e9ea2007-05-20 03:13:43 +100034 mtspr(SPRN_MMCR0, mfspr(SPRN_MMCR0) & ~(MMCR0_PMXE|MMCR0_PMAO));
David Gibsonf7f6f4f2005-10-19 14:53:32 +100035#else
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060036 mtspr(SPRN_MMCR0, mfspr(SPRN_MMCR0) & ~MMCR0_PMXE);
David Gibsonf7f6f4f2005-10-19 14:53:32 +100037#endif
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060038}
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Thomas Gleixner071c06c2010-02-18 02:22:27 +000041static DEFINE_RAW_SPINLOCK(pmc_owner_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static void *pmc_owner_caller; /* mostly for debugging */
43perf_irq_t perf_irq = dummy_perf;
44
45int reserve_pmc_hardware(perf_irq_t new_perf_irq)
46{
47 int err = 0;
48
Thomas Gleixner071c06c2010-02-18 02:22:27 +000049 raw_spin_lock(&pmc_owner_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 if (pmc_owner_caller) {
52 printk(KERN_WARNING "reserve_pmc_hardware: "
53 "PMC hardware busy (reserved by caller %p)\n",
54 pmc_owner_caller);
55 err = -EBUSY;
56 goto out;
57 }
58
59 pmc_owner_caller = __builtin_return_address(0);
Andy Flemingdd6c89f2006-10-27 15:06:32 -050060 perf_irq = new_perf_irq ? new_perf_irq : dummy_perf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 out:
Thomas Gleixner071c06c2010-02-18 02:22:27 +000063 raw_spin_unlock(&pmc_owner_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return err;
65}
66EXPORT_SYMBOL_GPL(reserve_pmc_hardware);
67
68void release_pmc_hardware(void)
69{
Thomas Gleixner071c06c2010-02-18 02:22:27 +000070 raw_spin_lock(&pmc_owner_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 WARN_ON(! pmc_owner_caller);
73
74 pmc_owner_caller = NULL;
75 perf_irq = dummy_perf;
76
Thomas Gleixner071c06c2010-02-18 02:22:27 +000077 raw_spin_unlock(&pmc_owner_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79EXPORT_SYMBOL_GPL(release_pmc_hardware);
Michael Ellerman180a3362005-08-09 11:13:36 +100080
David Gibsonf7f6f4f2005-10-19 14:53:32 +100081#ifdef CONFIG_PPC64
Michael Ellerman180a3362005-08-09 11:13:36 +100082void power4_enable_pmcs(void)
83{
84 unsigned long hid0;
85
Paul Mackerrasb5bbeb22005-10-10 14:01:07 +100086 hid0 = mfspr(SPRN_HID0);
Michael Ellerman180a3362005-08-09 11:13:36 +100087 hid0 |= 1UL << (63 - 20);
88
89 /* POWER4 requires the following sequence */
90 asm volatile(
91 "sync\n"
92 "mtspr %1, %0\n"
93 "mfspr %0, %1\n"
94 "mfspr %0, %1\n"
95 "mfspr %0, %1\n"
96 "mfspr %0, %1\n"
97 "mfspr %0, %1\n"
98 "mfspr %0, %1\n"
Paul Mackerrasb5bbeb22005-10-10 14:01:07 +100099 "isync" : "=&r" (hid0) : "i" (SPRN_HID0), "0" (hid0):
Michael Ellerman180a3362005-08-09 11:13:36 +1000100 "memory");
101}
David Gibsonf7f6f4f2005-10-19 14:53:32 +1000102#endif /* CONFIG_PPC64 */