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 = 0xc00,
13 };
14 
15 enum {
19 };
20 
22  unsigned long bandwidth);
23 int crisv32_arbiter_watch(unsigned long start, unsigned long size,
24  unsigned long clients, unsigned long accesses,
25  watch_callback * cb);
26 int crisv32_arbiter_unwatch(int id);
27 
28 #endif