]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/sh/include/cpu-common/cpu/ubc.h
Merge remote-tracking branch 'pm/linux-next'
[karo-tx-linux.git] / arch / sh / include / cpu-common / cpu / ubc.h
1 #ifndef __ARCH_SH_CPU_UBC_H__
2 #define __ARCH_SH_CPU_UBC_H__
3
4 enum {
5         SH_BREAKPOINT_READ      = (1 << 1),
6         SH_BREAKPOINT_WRITE     = (1 << 2),
7         SH_BREAKPOINT_RW        = SH_BREAKPOINT_READ | SH_BREAKPOINT_WRITE,
8
9         SH_BREAKPOINT_LEN_1     = (1 << 12),
10         SH_BREAKPOINT_LEN_2     = (1 << 13),
11         SH_BREAKPOINT_LEN_4     = SH_BREAKPOINT_LEN_1 | SH_BREAKPOINT_LEN_2,
12         SH_BREAKPOINT_LEN_8     = (1 << 14),
13 };
14
15 #define UBC_64BIT       1
16
17 #endif /* __ARCH_SH_CPU_UBC_H__ */