aboutsummaryrefslogtreecommitdiff
path: root/src/target/openrisc/jsp_server.h
blob: 3e7c1145def19b0740ef8ca3e586f37cfc43e578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _JSP_SERVER_H_
#define _JSP_SERVER_H_

#include "or1k_tap.h"
#include "or1k.h"
#include "or1k_du.h"

struct jsp_service {
	char *banner;
	struct or1k_jtag *jtag_info;
	struct connection *connection;
};

int jsp_init(struct or1k_jtag *jtag_info, char *banner);
int jsp_register_commands(struct command_context *cmd_ctx);

#endif	/* _JSP_SERVER_H_ */