aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/include/dspbridge/utildefs.h
blob: 8fe5414824ce4860283f748c8b0d9fb262332d04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * utildefs.h
 *
 * DSP-BIOS Bridge driver support functions for TI OMAP processors.
 *
 * Global UTIL constants and types, shared between DSP API and DSPSYS.
 *
 * Copyright (C) 2005-2006 Texas Instruments, Inc.
 *
 * This package is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 */

#ifndef UTILDEFS_
#define UTILDEFS_

/* constants taken from configmg.h */
#define UTIL_MAXMEMREGS     9
#define UTIL_MAXIOPORTS     20
#define UTIL_MAXIRQS        7
#define UTIL_MAXDMACHNLS    7

/* misc. constants */
#define UTIL_MAXARGVS       10

/* Platform specific important info */
struct util_sysinfo {
	/* Granularity of page protection; usually 1k or 4k */
	u32 dw_page_size;
	u32 dw_allocation_granularity;	/* VM granularity, usually 64K */
	u32 dw_number_of_processors;	/* Used as sanity check */
};

#endif /* UTILDEFS_ */