| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2004, 2005 MIPS Technologies, Inc.  All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-27 17:27:28 +02:00
										 |  |  | #ifndef __ASM_RTLX_H_
 | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | #define __ASM_RTLX_H_
 | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-08 02:14:29 +09:00
										 |  |  | #include <irq.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | #define LX_NODE_BASE 10
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MIPS_CPU_RTLX_IRQ 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | #define RTLX_VERSION 2
 | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | #define RTLX_xID 0x12345600
 | 
					
						
							|  |  |  | #define RTLX_ID (RTLX_xID | RTLX_VERSION)
 | 
					
						
							|  |  |  | #define RTLX_CHANNELS 8
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | #define RTLX_CHANNEL_STDIO	0
 | 
					
						
							|  |  |  | #define RTLX_CHANNEL_DBG	1
 | 
					
						
							|  |  |  | #define RTLX_CHANNEL_SYSIO	2
 | 
					
						
							| 
									
										
										
										
											2005-10-31 00:30:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | extern int rtlx_open(int index, int can_sleep); | 
					
						
							|  |  |  | extern int rtlx_release(int index); | 
					
						
							| 
									
										
										
										
											2007-03-16 12:16:27 +00:00
										 |  |  | extern ssize_t rtlx_read(int index, void __user *buff, size_t count); | 
					
						
							|  |  |  | extern ssize_t rtlx_write(int index, const void __user *buffer, size_t count); | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | extern unsigned int rtlx_read_poll(int index, int can_sleep); | 
					
						
							|  |  |  | extern unsigned int rtlx_write_poll(int index); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum rtlx_state { | 
					
						
							| 
									
										
										
										
											2008-04-16 15:32:22 +02:00
										 |  |  | 	RTLX_STATE_UNUSED = 0, | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | 	RTLX_STATE_INITIALISED, | 
					
						
							|  |  |  | 	RTLX_STATE_REMOTE_READY, | 
					
						
							|  |  |  | 	RTLX_STATE_OPENED | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-16 15:32:22 +02:00
										 |  |  | #define RTLX_BUFFER_SIZE 2048
 | 
					
						
							| 
									
										
										
										
											2005-10-31 00:30:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | /* each channel supports read and write.
 | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  |    linux (vpe0) reads lx_buffer	 and writes rt_buffer | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  |    SP (vpe1) reads rt_buffer and writes lx_buffer | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2005-10-31 00:30:39 +00:00
										 |  |  | struct rtlx_channel { | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | 	enum rtlx_state rt_state; | 
					
						
							|  |  |  | 	enum rtlx_state lx_state; | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int buffer_size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* read and write indexes per buffer */ | 
					
						
							|  |  |  | 	int rt_write, rt_read; | 
					
						
							|  |  |  | 	char *rt_buffer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int lx_write, lx_read; | 
					
						
							|  |  |  | 	char *lx_buffer; | 
					
						
							| 
									
										
										
										
											2005-10-31 00:30:39 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-31 00:30:39 +00:00
										 |  |  | struct rtlx_info { | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | 	unsigned long id; | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | 	enum rtlx_state state; | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct rtlx_channel channel[RTLX_CHANNELS]; | 
					
						
							| 
									
										
										
										
											2005-10-31 00:30:39 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-07-14 15:57:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-05 09:45:45 +01:00
										 |  |  | #endif /* __ASM_RTLX_H_ */
 |