Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph...
[pandora-kernel.git] / drivers / staging / tidspbridge / include / dspbridge / dispdefs.h
1 /*
2  * dispdefs.h
3  *
4  * DSP-BIOS Bridge driver support functions for TI OMAP processors.
5  *
6  * Global DISP constants and types, shared by PROCESSOR, NODE, and DISP.
7  *
8  * Copyright (C) 2005-2006 Texas Instruments, Inc.
9  *
10  * This package is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17  */
18
19 #ifndef DISPDEFS_
20 #define DISPDEFS_
21
22 struct disp_object;
23
24 /* Node Dispatcher attributes */
25 struct disp_attr {
26         u32 ul_chnl_offset;     /* Offset of channel ids reserved for RMS */
27         /* Size of buffer for sending data to RMS */
28         u32 ul_chnl_buf_size;
29         int proc_family;        /* eg, 5000 */
30         int proc_type;          /* eg, 5510 */
31         void *reserved1;        /* Reserved for future use. */
32         u32 reserved2;          /* Reserved for future use. */
33 };
34
35 #endif /* DISPDEFS_ */