Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * arch/sh/kernel/hw_breakpoint.c
  4 *
  5 * Unified kernel/user-space hardware breakpoint facility for the on-chip UBC.
  6 *
  7 * Copyright (C) 2009 - 2010  Paul Mundt
 
 
 
 
  8 */
  9#include <linux/init.h>
 10#include <linux/perf_event.h>
 11#include <linux/sched/signal.h>
 12#include <linux/hw_breakpoint.h>
 13#include <linux/percpu.h>
 14#include <linux/kallsyms.h>
 15#include <linux/notifier.h>
 16#include <linux/kprobes.h>
 17#include <linux/kdebug.h>
 18#include <linux/io.h>
 19#include <linux/clk.h>
 20#include <asm/hw_breakpoint.h>
 21#include <asm/mmu_context.h>
 22#include <asm/ptrace.h>
 23#include <asm/traps.h>
 24
 25/*
 26 * Stores the breakpoints currently in use on each breakpoint address
 27 * register for each cpus
 28 */
 29static DEFINE_PER_CPU(struct perf_event *, bp_per_reg[HBP_NUM]);
 30
 31/*
 32 * A dummy placeholder for early accesses until the CPUs get a chance to
 33 * register their UBCs later in the boot process.
 34 */
 35static struct sh_ubc ubc_dummy = { .num_events = 0 };
 36
 37static struct sh_ubc *sh_ubc __read_mostly = &ubc_dummy;
 38
 39/*
 40 * Install a perf counter breakpoint.
 41 *
 42 * We seek a free UBC channel and use it for this breakpoint.
 43 *
 44 * Atomic: we hold the counter->ctx->lock and we only handle variables
 45 * and registers local to this cpu.
 46 */
 47int arch_install_hw_breakpoint(struct perf_event *bp)
 48{
 49	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
 50	int i;
 51
 52	for (i = 0; i < sh_ubc->num_events; i++) {
 53		struct perf_event **slot = this_cpu_ptr(&bp_per_reg[i]);
 54
 55		if (!*slot) {
 56			*slot = bp;
 57			break;
 58		}
 59	}
 60
 61	if (WARN_ONCE(i == sh_ubc->num_events, "Can't find any breakpoint slot"))
 62		return -EBUSY;
 63
 64	clk_enable(sh_ubc->clk);
 65	sh_ubc->enable(info, i);
 66
 67	return 0;
 68}
 69
 70/*
 71 * Uninstall the breakpoint contained in the given counter.
 72 *
 73 * First we search the debug address register it uses and then we disable
 74 * it.
 75 *
 76 * Atomic: we hold the counter->ctx->lock and we only handle variables
 77 * and registers local to this cpu.
 78 */
 79void arch_uninstall_hw_breakpoint(struct perf_event *bp)
 80{
 81	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
 82	int i;
 83
 84	for (i = 0; i < sh_ubc->num_events; i++) {
 85		struct perf_event **slot = this_cpu_ptr(&bp_per_reg[i]);
 86
 87		if (*slot == bp) {
 88			*slot = NULL;
 89			break;
 90		}
 91	}
 92
 93	if (WARN_ONCE(i == sh_ubc->num_events, "Can't find any breakpoint slot"))
 94		return;
 95
 96	sh_ubc->disable(info, i);
 97	clk_disable(sh_ubc->clk);
 98}
 99
100static int get_hbp_len(u16 hbp_len)
101{
102	unsigned int len_in_bytes = 0;
103
104	switch (hbp_len) {
105	case SH_BREAKPOINT_LEN_1:
106		len_in_bytes = 1;
107		break;
108	case SH_BREAKPOINT_LEN_2:
109		len_in_bytes = 2;
110		break;
111	case SH_BREAKPOINT_LEN_4:
112		len_in_bytes = 4;
113		break;
114	case SH_BREAKPOINT_LEN_8:
115		len_in_bytes = 8;
116		break;
117	}
118	return len_in_bytes;
119}
120
121/*
122 * Check for virtual address in kernel space.
123 */
124int arch_check_bp_in_kernelspace(struct arch_hw_breakpoint *hw)
125{
126	unsigned int len;
127	unsigned long va;
 
128
129	va = hw->address;
130	len = get_hbp_len(hw->len);
131
132	return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
133}
134
135int arch_bp_generic_fields(int sh_len, int sh_type,
136			   int *gen_len, int *gen_type)
137{
138	/* Len */
139	switch (sh_len) {
140	case SH_BREAKPOINT_LEN_1:
141		*gen_len = HW_BREAKPOINT_LEN_1;
142		break;
143	case SH_BREAKPOINT_LEN_2:
144		*gen_len = HW_BREAKPOINT_LEN_2;
145		break;
146	case SH_BREAKPOINT_LEN_4:
147		*gen_len = HW_BREAKPOINT_LEN_4;
148		break;
149	case SH_BREAKPOINT_LEN_8:
150		*gen_len = HW_BREAKPOINT_LEN_8;
151		break;
152	default:
153		return -EINVAL;
154	}
155
156	/* Type */
157	switch (sh_type) {
158	case SH_BREAKPOINT_READ:
159		*gen_type = HW_BREAKPOINT_R;
160		break;
161	case SH_BREAKPOINT_WRITE:
162		*gen_type = HW_BREAKPOINT_W;
163		break;
164	case SH_BREAKPOINT_RW:
165		*gen_type = HW_BREAKPOINT_W | HW_BREAKPOINT_R;
166		break;
167	default:
168		return -EINVAL;
169	}
170
171	return 0;
172}
173
174static int arch_build_bp_info(struct perf_event *bp,
175			      const struct perf_event_attr *attr,
176			      struct arch_hw_breakpoint *hw)
177{
178	hw->address = attr->bp_addr;
 
 
179
180	/* Len */
181	switch (attr->bp_len) {
182	case HW_BREAKPOINT_LEN_1:
183		hw->len = SH_BREAKPOINT_LEN_1;
184		break;
185	case HW_BREAKPOINT_LEN_2:
186		hw->len = SH_BREAKPOINT_LEN_2;
187		break;
188	case HW_BREAKPOINT_LEN_4:
189		hw->len = SH_BREAKPOINT_LEN_4;
190		break;
191	case HW_BREAKPOINT_LEN_8:
192		hw->len = SH_BREAKPOINT_LEN_8;
193		break;
194	default:
195		return -EINVAL;
196	}
197
198	/* Type */
199	switch (attr->bp_type) {
200	case HW_BREAKPOINT_R:
201		hw->type = SH_BREAKPOINT_READ;
202		break;
203	case HW_BREAKPOINT_W:
204		hw->type = SH_BREAKPOINT_WRITE;
205		break;
206	case HW_BREAKPOINT_W | HW_BREAKPOINT_R:
207		hw->type = SH_BREAKPOINT_RW;
208		break;
209	default:
210		return -EINVAL;
211	}
212
213	return 0;
214}
215
216/*
217 * Validate the arch-specific HW Breakpoint register settings
218 */
219int hw_breakpoint_arch_parse(struct perf_event *bp,
220			     const struct perf_event_attr *attr,
221			     struct arch_hw_breakpoint *hw)
222{
 
223	unsigned int align;
224	int ret;
225
226	ret = arch_build_bp_info(bp, attr, hw);
227	if (ret)
228		return ret;
229
230	ret = -EINVAL;
231
232	switch (hw->len) {
233	case SH_BREAKPOINT_LEN_1:
234		align = 0;
235		break;
236	case SH_BREAKPOINT_LEN_2:
237		align = 1;
238		break;
239	case SH_BREAKPOINT_LEN_4:
240		align = 3;
241		break;
242	case SH_BREAKPOINT_LEN_8:
243		align = 7;
244		break;
245	default:
246		return ret;
247	}
248
249	/*
 
 
 
 
 
 
 
250	 * Check that the low-order bits of the address are appropriate
251	 * for the alignment implied by len.
252	 */
253	if (hw->address & align)
254		return -EINVAL;
255
256	return 0;
257}
258
259/*
260 * Release the user breakpoints used by ptrace
261 */
262void flush_ptrace_hw_breakpoint(struct task_struct *tsk)
263{
264	int i;
265	struct thread_struct *t = &tsk->thread;
266
267	for (i = 0; i < sh_ubc->num_events; i++) {
268		unregister_hw_breakpoint(t->ptrace_bps[i]);
269		t->ptrace_bps[i] = NULL;
270	}
271}
272
273static int __kprobes hw_breakpoint_handler(struct die_args *args)
274{
275	int cpu, i, rc = NOTIFY_STOP;
276	struct perf_event *bp;
277	unsigned int cmf, resume_mask;
278
279	/*
280	 * Do an early return if none of the channels triggered.
281	 */
282	cmf = sh_ubc->triggered_mask();
283	if (unlikely(!cmf))
284		return NOTIFY_DONE;
285
286	/*
287	 * By default, resume all of the active channels.
288	 */
289	resume_mask = sh_ubc->active_mask();
290
291	/*
292	 * Disable breakpoints during exception handling.
293	 */
294	sh_ubc->disable_all();
295
296	cpu = get_cpu();
297	for (i = 0; i < sh_ubc->num_events; i++) {
298		unsigned long event_mask = (1 << i);
299
300		if (likely(!(cmf & event_mask)))
301			continue;
302
303		/*
304		 * The counter may be concurrently released but that can only
305		 * occur from a call_rcu() path. We can then safely fetch
306		 * the breakpoint, use its callback, touch its counter
307		 * while we are in an rcu_read_lock() path.
308		 */
309		rcu_read_lock();
310
311		bp = per_cpu(bp_per_reg[i], cpu);
312		if (bp)
313			rc = NOTIFY_DONE;
314
315		/*
316		 * Reset the condition match flag to denote completion of
317		 * exception handling.
318		 */
319		sh_ubc->clear_triggered_mask(event_mask);
320
321		/*
322		 * bp can be NULL due to concurrent perf counter
323		 * removing.
324		 */
325		if (!bp) {
326			rcu_read_unlock();
327			break;
328		}
329
330		/*
331		 * Don't restore the channel if the breakpoint is from
332		 * ptrace, as it always operates in one-shot mode.
333		 */
334		if (bp->overflow_handler == ptrace_triggered)
335			resume_mask &= ~(1 << i);
336
337		perf_bp_event(bp, args->regs);
338
339		/* Deliver the signal to userspace */
340		if (!arch_check_bp_in_kernelspace(&bp->hw.info)) {
341			force_sig_fault(SIGTRAP, TRAP_HWBKPT,
342					(void __user *)NULL);
 
 
 
 
 
343		}
344
345		rcu_read_unlock();
346	}
347
348	if (cmf == 0)
349		rc = NOTIFY_DONE;
350
351	sh_ubc->enable_all(resume_mask);
352
353	put_cpu();
354
355	return rc;
356}
357
358BUILD_TRAP_HANDLER(breakpoint)
359{
360	unsigned long ex = lookup_exception_vector();
361	TRAP_HANDLER_DECL;
362
363	notify_die(DIE_BREAKPOINT, "breakpoint", regs, 0, ex, SIGTRAP);
364}
365
366/*
367 * Handle debug exception notifications.
368 */
369int __kprobes hw_breakpoint_exceptions_notify(struct notifier_block *unused,
370				    unsigned long val, void *data)
371{
372	struct die_args *args = data;
373
374	if (val != DIE_BREAKPOINT)
375		return NOTIFY_DONE;
376
377	/*
378	 * If the breakpoint hasn't been triggered by the UBC, it's
379	 * probably from a debugger, so don't do anything more here.
380	 *
381	 * This also permits the UBC interface clock to remain off for
382	 * non-UBC breakpoints, as we don't need to check the triggered
383	 * or active channel masks.
384	 */
385	if (args->trapnr != sh_ubc->trap_nr)
386		return NOTIFY_DONE;
387
388	return hw_breakpoint_handler(data);
389}
390
391void hw_breakpoint_pmu_read(struct perf_event *bp)
392{
393	/* TODO */
394}
395
396int register_sh_ubc(struct sh_ubc *ubc)
397{
398	/* Bail if it's already assigned */
399	if (sh_ubc != &ubc_dummy)
400		return -EBUSY;
401	sh_ubc = ubc;
402
403	pr_info("HW Breakpoints: %s UBC support registered\n", ubc->name);
404
405	WARN_ON(ubc->num_events > HBP_NUM);
406
407	return 0;
408}
v3.1
 
  1/*
  2 * arch/sh/kernel/hw_breakpoint.c
  3 *
  4 * Unified kernel/user-space hardware breakpoint facility for the on-chip UBC.
  5 *
  6 * Copyright (C) 2009 - 2010  Paul Mundt
  7 *
  8 * This file is subject to the terms and conditions of the GNU General Public
  9 * License.  See the file "COPYING" in the main directory of this archive
 10 * for more details.
 11 */
 12#include <linux/init.h>
 13#include <linux/perf_event.h>
 
 14#include <linux/hw_breakpoint.h>
 15#include <linux/percpu.h>
 16#include <linux/kallsyms.h>
 17#include <linux/notifier.h>
 18#include <linux/kprobes.h>
 19#include <linux/kdebug.h>
 20#include <linux/io.h>
 21#include <linux/clk.h>
 22#include <asm/hw_breakpoint.h>
 23#include <asm/mmu_context.h>
 24#include <asm/ptrace.h>
 
 25
 26/*
 27 * Stores the breakpoints currently in use on each breakpoint address
 28 * register for each cpus
 29 */
 30static DEFINE_PER_CPU(struct perf_event *, bp_per_reg[HBP_NUM]);
 31
 32/*
 33 * A dummy placeholder for early accesses until the CPUs get a chance to
 34 * register their UBCs later in the boot process.
 35 */
 36static struct sh_ubc ubc_dummy = { .num_events = 0 };
 37
 38static struct sh_ubc *sh_ubc __read_mostly = &ubc_dummy;
 39
 40/*
 41 * Install a perf counter breakpoint.
 42 *
 43 * We seek a free UBC channel and use it for this breakpoint.
 44 *
 45 * Atomic: we hold the counter->ctx->lock and we only handle variables
 46 * and registers local to this cpu.
 47 */
 48int arch_install_hw_breakpoint(struct perf_event *bp)
 49{
 50	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
 51	int i;
 52
 53	for (i = 0; i < sh_ubc->num_events; i++) {
 54		struct perf_event **slot = &__get_cpu_var(bp_per_reg[i]);
 55
 56		if (!*slot) {
 57			*slot = bp;
 58			break;
 59		}
 60	}
 61
 62	if (WARN_ONCE(i == sh_ubc->num_events, "Can't find any breakpoint slot"))
 63		return -EBUSY;
 64
 65	clk_enable(sh_ubc->clk);
 66	sh_ubc->enable(info, i);
 67
 68	return 0;
 69}
 70
 71/*
 72 * Uninstall the breakpoint contained in the given counter.
 73 *
 74 * First we search the debug address register it uses and then we disable
 75 * it.
 76 *
 77 * Atomic: we hold the counter->ctx->lock and we only handle variables
 78 * and registers local to this cpu.
 79 */
 80void arch_uninstall_hw_breakpoint(struct perf_event *bp)
 81{
 82	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
 83	int i;
 84
 85	for (i = 0; i < sh_ubc->num_events; i++) {
 86		struct perf_event **slot = &__get_cpu_var(bp_per_reg[i]);
 87
 88		if (*slot == bp) {
 89			*slot = NULL;
 90			break;
 91		}
 92	}
 93
 94	if (WARN_ONCE(i == sh_ubc->num_events, "Can't find any breakpoint slot"))
 95		return;
 96
 97	sh_ubc->disable(info, i);
 98	clk_disable(sh_ubc->clk);
 99}
100
101static int get_hbp_len(u16 hbp_len)
102{
103	unsigned int len_in_bytes = 0;
104
105	switch (hbp_len) {
106	case SH_BREAKPOINT_LEN_1:
107		len_in_bytes = 1;
108		break;
109	case SH_BREAKPOINT_LEN_2:
110		len_in_bytes = 2;
111		break;
112	case SH_BREAKPOINT_LEN_4:
113		len_in_bytes = 4;
114		break;
115	case SH_BREAKPOINT_LEN_8:
116		len_in_bytes = 8;
117		break;
118	}
119	return len_in_bytes;
120}
121
122/*
123 * Check for virtual address in kernel space.
124 */
125int arch_check_bp_in_kernelspace(struct perf_event *bp)
126{
127	unsigned int len;
128	unsigned long va;
129	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
130
131	va = info->address;
132	len = get_hbp_len(info->len);
133
134	return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE);
135}
136
137int arch_bp_generic_fields(int sh_len, int sh_type,
138			   int *gen_len, int *gen_type)
139{
140	/* Len */
141	switch (sh_len) {
142	case SH_BREAKPOINT_LEN_1:
143		*gen_len = HW_BREAKPOINT_LEN_1;
144		break;
145	case SH_BREAKPOINT_LEN_2:
146		*gen_len = HW_BREAKPOINT_LEN_2;
147		break;
148	case SH_BREAKPOINT_LEN_4:
149		*gen_len = HW_BREAKPOINT_LEN_4;
150		break;
151	case SH_BREAKPOINT_LEN_8:
152		*gen_len = HW_BREAKPOINT_LEN_8;
153		break;
154	default:
155		return -EINVAL;
156	}
157
158	/* Type */
159	switch (sh_type) {
160	case SH_BREAKPOINT_READ:
161		*gen_type = HW_BREAKPOINT_R;
 
162	case SH_BREAKPOINT_WRITE:
163		*gen_type = HW_BREAKPOINT_W;
164		break;
165	case SH_BREAKPOINT_RW:
166		*gen_type = HW_BREAKPOINT_W | HW_BREAKPOINT_R;
167		break;
168	default:
169		return -EINVAL;
170	}
171
172	return 0;
173}
174
175static int arch_build_bp_info(struct perf_event *bp)
 
 
176{
177	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
178
179	info->address = bp->attr.bp_addr;
180
181	/* Len */
182	switch (bp->attr.bp_len) {
183	case HW_BREAKPOINT_LEN_1:
184		info->len = SH_BREAKPOINT_LEN_1;
185		break;
186	case HW_BREAKPOINT_LEN_2:
187		info->len = SH_BREAKPOINT_LEN_2;
188		break;
189	case HW_BREAKPOINT_LEN_4:
190		info->len = SH_BREAKPOINT_LEN_4;
191		break;
192	case HW_BREAKPOINT_LEN_8:
193		info->len = SH_BREAKPOINT_LEN_8;
194		break;
195	default:
196		return -EINVAL;
197	}
198
199	/* Type */
200	switch (bp->attr.bp_type) {
201	case HW_BREAKPOINT_R:
202		info->type = SH_BREAKPOINT_READ;
203		break;
204	case HW_BREAKPOINT_W:
205		info->type = SH_BREAKPOINT_WRITE;
206		break;
207	case HW_BREAKPOINT_W | HW_BREAKPOINT_R:
208		info->type = SH_BREAKPOINT_RW;
209		break;
210	default:
211		return -EINVAL;
212	}
213
214	return 0;
215}
216
217/*
218 * Validate the arch-specific HW Breakpoint register settings
219 */
220int arch_validate_hwbkpt_settings(struct perf_event *bp)
 
 
221{
222	struct arch_hw_breakpoint *info = counter_arch_bp(bp);
223	unsigned int align;
224	int ret;
225
226	ret = arch_build_bp_info(bp);
227	if (ret)
228		return ret;
229
230	ret = -EINVAL;
231
232	switch (info->len) {
233	case SH_BREAKPOINT_LEN_1:
234		align = 0;
235		break;
236	case SH_BREAKPOINT_LEN_2:
237		align = 1;
238		break;
239	case SH_BREAKPOINT_LEN_4:
240		align = 3;
241		break;
242	case SH_BREAKPOINT_LEN_8:
243		align = 7;
244		break;
245	default:
246		return ret;
247	}
248
249	/*
250	 * For kernel-addresses, either the address or symbol name can be
251	 * specified.
252	 */
253	if (info->name)
254		info->address = (unsigned long)kallsyms_lookup_name(info->name);
255
256	/*
257	 * Check that the low-order bits of the address are appropriate
258	 * for the alignment implied by len.
259	 */
260	if (info->address & align)
261		return -EINVAL;
262
263	return 0;
264}
265
266/*
267 * Release the user breakpoints used by ptrace
268 */
269void flush_ptrace_hw_breakpoint(struct task_struct *tsk)
270{
271	int i;
272	struct thread_struct *t = &tsk->thread;
273
274	for (i = 0; i < sh_ubc->num_events; i++) {
275		unregister_hw_breakpoint(t->ptrace_bps[i]);
276		t->ptrace_bps[i] = NULL;
277	}
278}
279
280static int __kprobes hw_breakpoint_handler(struct die_args *args)
281{
282	int cpu, i, rc = NOTIFY_STOP;
283	struct perf_event *bp;
284	unsigned int cmf, resume_mask;
285
286	/*
287	 * Do an early return if none of the channels triggered.
288	 */
289	cmf = sh_ubc->triggered_mask();
290	if (unlikely(!cmf))
291		return NOTIFY_DONE;
292
293	/*
294	 * By default, resume all of the active channels.
295	 */
296	resume_mask = sh_ubc->active_mask();
297
298	/*
299	 * Disable breakpoints during exception handling.
300	 */
301	sh_ubc->disable_all();
302
303	cpu = get_cpu();
304	for (i = 0; i < sh_ubc->num_events; i++) {
305		unsigned long event_mask = (1 << i);
306
307		if (likely(!(cmf & event_mask)))
308			continue;
309
310		/*
311		 * The counter may be concurrently released but that can only
312		 * occur from a call_rcu() path. We can then safely fetch
313		 * the breakpoint, use its callback, touch its counter
314		 * while we are in an rcu_read_lock() path.
315		 */
316		rcu_read_lock();
317
318		bp = per_cpu(bp_per_reg[i], cpu);
319		if (bp)
320			rc = NOTIFY_DONE;
321
322		/*
323		 * Reset the condition match flag to denote completion of
324		 * exception handling.
325		 */
326		sh_ubc->clear_triggered_mask(event_mask);
327
328		/*
329		 * bp can be NULL due to concurrent perf counter
330		 * removing.
331		 */
332		if (!bp) {
333			rcu_read_unlock();
334			break;
335		}
336
337		/*
338		 * Don't restore the channel if the breakpoint is from
339		 * ptrace, as it always operates in one-shot mode.
340		 */
341		if (bp->overflow_handler == ptrace_triggered)
342			resume_mask &= ~(1 << i);
343
344		perf_bp_event(bp, args->regs);
345
346		/* Deliver the signal to userspace */
347		if (!arch_check_bp_in_kernelspace(bp)) {
348			siginfo_t info;
349
350			info.si_signo = args->signr;
351			info.si_errno = notifier_to_errno(rc);
352			info.si_code = TRAP_HWBKPT;
353
354			force_sig_info(args->signr, &info, current);
355		}
356
357		rcu_read_unlock();
358	}
359
360	if (cmf == 0)
361		rc = NOTIFY_DONE;
362
363	sh_ubc->enable_all(resume_mask);
364
365	put_cpu();
366
367	return rc;
368}
369
370BUILD_TRAP_HANDLER(breakpoint)
371{
372	unsigned long ex = lookup_exception_vector();
373	TRAP_HANDLER_DECL;
374
375	notify_die(DIE_BREAKPOINT, "breakpoint", regs, 0, ex, SIGTRAP);
376}
377
378/*
379 * Handle debug exception notifications.
380 */
381int __kprobes hw_breakpoint_exceptions_notify(struct notifier_block *unused,
382				    unsigned long val, void *data)
383{
384	struct die_args *args = data;
385
386	if (val != DIE_BREAKPOINT)
387		return NOTIFY_DONE;
388
389	/*
390	 * If the breakpoint hasn't been triggered by the UBC, it's
391	 * probably from a debugger, so don't do anything more here.
392	 *
393	 * This also permits the UBC interface clock to remain off for
394	 * non-UBC breakpoints, as we don't need to check the triggered
395	 * or active channel masks.
396	 */
397	if (args->trapnr != sh_ubc->trap_nr)
398		return NOTIFY_DONE;
399
400	return hw_breakpoint_handler(data);
401}
402
403void hw_breakpoint_pmu_read(struct perf_event *bp)
404{
405	/* TODO */
406}
407
408int register_sh_ubc(struct sh_ubc *ubc)
409{
410	/* Bail if it's already assigned */
411	if (sh_ubc != &ubc_dummy)
412		return -EBUSY;
413	sh_ubc = ubc;
414
415	pr_info("HW Breakpoints: %s UBC support registered\n", ubc->name);
416
417	WARN_ON(ubc->num_events > HBP_NUM);
418
419	return 0;
420}