blob: 76cd51c6be397979beb615f70914b413f9ccfef1 [file] [log] [blame]
Ralf Baechlee01402b2005-07-14 15:57:16 +00001/*
2 * Copyright (C) 2004, 2005 MIPS Technologies, Inc. All rights reserved.
3 *
4 */
5
Ralf Baechle26009902006-04-05 09:45:45 +01006#ifndef __ASM_RTLX_H
7#define __ASM_RTLX_H_
Ralf Baechlee01402b2005-07-14 15:57:16 +00008
9#define LX_NODE_BASE 10
10
11#define MIPSCPU_INT_BASE 16
12#define MIPS_CPU_RTLX_IRQ 0
13
Ralf Baechle26009902006-04-05 09:45:45 +010014#define RTLX_VERSION 2
Ralf Baechlee01402b2005-07-14 15:57:16 +000015#define RTLX_xID 0x12345600
16#define RTLX_ID (RTLX_xID | RTLX_VERSION)
17#define RTLX_CHANNELS 8
18
Ralf Baechle26009902006-04-05 09:45:45 +010019#define RTLX_CHANNEL_STDIO 0
20#define RTLX_CHANNEL_DBG 1
21#define RTLX_CHANNEL_SYSIO 2
Ralf Baechleafc48412005-10-31 00:30:39 +000022
Ralf Baechle26009902006-04-05 09:45:45 +010023extern int rtlx_open(int index, int can_sleep);
24extern int rtlx_release(int index);
25extern ssize_t rtlx_read(int index, void *buff, size_t count, int user);
26extern ssize_t rtlx_write(int index, void *buffer, size_t count, int user);
27extern unsigned int rtlx_read_poll(int index, int can_sleep);
28extern unsigned int rtlx_write_poll(int index);
29
30enum rtlx_state {
31 RTLX_STATE_UNUSED,
32 RTLX_STATE_INITIALISED,
33 RTLX_STATE_REMOTE_READY,
34 RTLX_STATE_OPENED
35};
36
37#define RTLX_BUFFER_SIZE 1024
Ralf Baechleafc48412005-10-31 00:30:39 +000038
Ralf Baechlee01402b2005-07-14 15:57:16 +000039/* each channel supports read and write.
40 linux (vpe0) reads lx_buffer and writes rt_buffer
41 SP (vpe1) reads rt_buffer and writes lx_buffer
42*/
Ralf Baechleafc48412005-10-31 00:30:39 +000043struct rtlx_channel {
Ralf Baechle26009902006-04-05 09:45:45 +010044 enum rtlx_state rt_state;
45 enum rtlx_state lx_state;
Ralf Baechlee01402b2005-07-14 15:57:16 +000046
47 int buffer_size;
48
49 /* read and write indexes per buffer */
50 int rt_write, rt_read;
51 char *rt_buffer;
52
53 int lx_write, lx_read;
54 char *lx_buffer;
Ralf Baechleafc48412005-10-31 00:30:39 +000055};
Ralf Baechlee01402b2005-07-14 15:57:16 +000056
Ralf Baechleafc48412005-10-31 00:30:39 +000057struct rtlx_info {
Ralf Baechlee01402b2005-07-14 15:57:16 +000058 unsigned long id;
Ralf Baechle26009902006-04-05 09:45:45 +010059 enum rtlx_state state;
Ralf Baechlee01402b2005-07-14 15:57:16 +000060
61 struct rtlx_channel channel[RTLX_CHANNELS];
Ralf Baechleafc48412005-10-31 00:30:39 +000062};
Ralf Baechlee01402b2005-07-14 15:57:16 +000063
Ralf Baechle26009902006-04-05 09:45:45 +010064#endif /* __ASM_RTLX_H_ */