• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/include/dspbridge/
1/*
2 * dehdefs.h
3 *
4 * DSP-BIOS Bridge driver support functions for TI OMAP processors.
5 *
6 * Definition for Bridge driver module DEH.
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 DEHDEFS_
20#define DEHDEFS_
21
22#include <dspbridge/mbx_sh.h>	/* shared mailbox codes */
23
24/* DEH object manager */
25struct deh_mgr;
26
27/* Magic code used to determine if DSP signaled exception. */
28#define DEH_BASE        MBX_DEH_BASE
29#define DEH_USERS_BASE  MBX_DEH_USERS_BASE
30#define DEH_LIMIT       MBX_DEH_LIMIT
31
32#endif /* _DEHDEFS_H */
33