summaryrefslogtreecommitdiff
path: root/arch/sh/include/cpu-common/cpu/ubc.h
blob: b60461930a324ae1366ff8b7ce52e5d44a59c897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __ARCH_SH_CPU_UBC_H__
#define __ARCH_SH_CPU_UBC_H__

enum {
	SH_BREAKPOINT_READ	= (1 << 1),
	SH_BREAKPOINT_WRITE	= (1 << 2),
	SH_BREAKPOINT_RW	= SH_BREAKPOINT_READ | SH_BREAKPOINT_WRITE,

	SH_BREAKPOINT_LEN_1	= (1 << 12),
	SH_BREAKPOINT_LEN_2	= (1 << 13),
	SH_BREAKPOINT_LEN_4	= SH_BREAKPOINT_LEN_1 | SH_BREAKPOINT_LEN_2,
	SH_BREAKPOINT_LEN_8	= (1 << 14),
};

#define UBC_64BIT	1

#endif /* __ARCH_SH_CPU_UBC_H__ */