Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
arbiter.h
Go to the documentation of this file.
1 #ifndef _ASM_CRIS_ARCH_ARBITER_H
2 #define _ASM_CRIS_ARCH_ARBITER_H
3 
4 #define EXT_REGION 0
5 #define INT_REGION 1
6 
7 typedef void (watch_callback)(void);
8 
9 enum {
11  arbiter_cpu = 0x1800,
13 };
14 
15 enum {
17 };
18 
19 enum {
23 };
24 
25 #define MARB_CLIENTS(foo_cli, bar_cli) (((bar_cli) << 16) | (foo_cli))
26 
28  unsigned long bandwidth);
29 int crisv32_arbiter_watch(unsigned long start, unsigned long size,
30  unsigned long clients, unsigned long accesses,
31  watch_callback * cb);
32 int crisv32_arbiter_unwatch(int id);
33 
34 #endif