| 
									
										
										
										
											2009-03-23 09:10:32 +00:00
										 |  |  | /*====================================================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    filename:     gdsp_interface.h | 
					
						
							|  |  |  |    project:      GCemu | 
					
						
							|  |  |  |    created:      2004-6-18 | 
					
						
							|  |  |  |    mail:		  duddie@walla.com | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Copyright (c) 2005 Duddie & Tratax | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |    modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |    as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  |    of the License, or (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |    GNU General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |    along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    ====================================================================*/ | 
					
						
							| 
									
										
										
										
											2010-01-12 21:38:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-23 09:10:32 +00:00
										 |  |  | #ifndef _GDSP_INTERFACE_H
 | 
					
						
							|  |  |  | #define _GDSP_INTERFACE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 10:21:40 +00:00
										 |  |  | #include "Common.h"
 | 
					
						
							| 
									
										
										
										
											2009-03-23 09:10:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define GDSP_MBOX_CPU   0
 | 
					
						
							|  |  |  | #define GDSP_MBOX_DSP   1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-30 03:27:31 +00:00
										 |  |  | u32  gdsp_mbox_peek(u8 mbx); | 
					
						
							| 
									
										
										
										
											2009-04-08 21:46:54 +00:00
										 |  |  | void gdsp_mbox_write_h(u8 mbx, u16 val); | 
					
						
							|  |  |  | void gdsp_mbox_write_l(u8 mbx, u16 val); | 
					
						
							| 
									
										
										
										
											2009-03-30 03:27:31 +00:00
										 |  |  | u16  gdsp_mbox_read_h(u8 mbx); | 
					
						
							|  |  |  | u16  gdsp_mbox_read_l(u8 mbx); | 
					
						
							| 
									
										
										
										
											2009-03-23 09:10:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-08 21:46:54 +00:00
										 |  |  | void gdsp_ifx_init(); | 
					
						
							| 
									
										
										
										
											2009-03-23 09:10:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-25 14:24:55 +00:00
										 |  |  | void gdsp_ifx_write(u32 addr, u32 val); | 
					
						
							| 
									
										
										
										
											2009-04-08 21:46:54 +00:00
										 |  |  | u16  gdsp_ifx_read(u16 addr); | 
					
						
							| 
									
										
										
										
											2009-04-05 19:17:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-08 21:46:54 +00:00
										 |  |  | void gdsp_idma_in(u16 dsp_addr, u32 addr, u32 size); | 
					
						
							| 
									
										
										
										
											2009-03-23 09:10:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |