rtlx.h 883 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (C) 2004, 2005 MIPS Technologies, Inc.  All rights reserved.
 *
 */

#ifndef _RTLX_H
#define _RTLX_H_

#define LX_NODE_BASE 10

#define MIPSCPU_INT_BASE       16
#define MIPS_CPU_RTLX_IRQ 0

#define RTLX_VERSION 1
#define RTLX_xID 0x12345600
#define RTLX_ID (RTLX_xID | RTLX_VERSION)
#define RTLX_CHANNELS 8

#define RTLX_BUFFER_SIZE 1024
R
Ralf Baechle 已提交
20 21 22 23 24 25

/*
 * lx_state bits
 */
#define RTLX_STATE_OPENED 1UL

26 27 28 29
/* each channel supports read and write.
   linux (vpe0) reads lx_buffer  and writes rt_buffer
   SP (vpe1) reads rt_buffer and writes lx_buffer
*/
R
Ralf Baechle 已提交
30 31
struct rtlx_channel {
	unsigned long lx_state;
32 33 34 35 36 37 38 39 40 41 42 43

	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;

	void *queues;

R
Ralf Baechle 已提交
44
};
45

R
Ralf Baechle 已提交
46
struct rtlx_info {
47 48 49
	unsigned long id;

	struct rtlx_channel channel[RTLX_CHANNELS];
R
Ralf Baechle 已提交
50
};
51

R
Ralf Baechle 已提交
52
#endif /* _RTLX_H_ */