| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2009 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <gccore.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DSPCR bits
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #define DSPCR_DSPRESET 0x0800   // Reset DSP
 | 
					
						
							|  |  |  | #define DSPCR_ARDMA 0x0200      // ARAM DMA in progress, if set
 | 
					
						
							|  |  |  | #define DSPCR_DSPINTMSK 0x0100  // * interrupt mask   (RW)
 | 
					
						
							|  |  |  | #define DSPCR_DSPINT 0x0080     // * interrupt active (RWC)
 | 
					
						
							|  |  |  | #define DSPCR_ARINTMSK 0x0040
 | 
					
						
							|  |  |  | #define DSPCR_ARINT 0x0020
 | 
					
						
							|  |  |  | #define DSPCR_AIINTMSK 0x0010
 | 
					
						
							|  |  |  | #define DSPCR_AIINT 0x0008
 | 
					
						
							|  |  |  | #define DSPCR_HALT 0x0004   // halt DSP
 | 
					
						
							|  |  |  | #define DSPCR_PIINT 0x0002  // assert DSP PI interrupt
 | 
					
						
							|  |  |  | #define DSPCR_RES 0x0001    // reset DSP
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | class IDSP | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   virtual ~IDSP() {} | 
					
						
							|  |  |  |   virtual void Init() = 0; | 
					
						
							|  |  |  |   virtual void Reset() = 0; | 
					
						
							|  |  |  |   virtual u32 CheckMailTo() = 0; | 
					
						
							|  |  |  |   virtual void SendMailTo(u32 mail) = 0; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   // Yeah, yeah, having a method here makes this not a pure interface - but
 | 
					
						
							|  |  |  |   // the implementation does nothing but calling the virtual methods above.
 | 
					
						
							|  |  |  |   void SendTask(void* addr, u16 iram_addr, u16 len, u16 start); | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | }; |