summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tms320dm320/dsp-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tms320dm320/dsp-target.h')
-rw-r--r--firmware/target/arm/tms320dm320/dsp-target.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/firmware/target/arm/tms320dm320/dsp-target.h b/firmware/target/arm/tms320dm320/dsp-target.h
new file mode 100644
index 0000000000..bbb36088f4
--- /dev/null
+++ b/firmware/target/arm/tms320dm320/dsp-target.h
@@ -0,0 +1,29 @@
1/*
2 * (C) Copyright 2007 Catalin Patulea <cat@vv.carleton.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
17 * MA 02111-1307 USA
18 *
19 */
20#ifndef DSP_H
21#define DSP_H
22
23/* DSP memory is mapped into ARM space via HPIB. */
24#define DSP_(addr) (*(volatile unsigned short *)(0x40000 + ((addr) << 1)))
25
26void dsp_init(void);
27void dsp_wake(void);
28
29#endif