e5cfaa8b4695e4b2ee6167f8da3372d3100d094e
[fw/openocd] / src / target / openrisc / jsp_server.h
1 #ifndef OPENOCD_TARGET_OPENRISC_JSP_SERVER_H
2 #define OPENOCD_TARGET_OPENRISC_JSP_SERVER_H
3
4 #include "or1k_tap.h"
5 #include "or1k.h"
6 #include "or1k_du.h"
7
8 struct jsp_service {
9         char *banner;
10         struct or1k_jtag *jtag_info;
11         struct connection *connection;
12 };
13
14 int jsp_init(struct or1k_jtag *jtag_info, char *banner);
15 int jsp_register_commands(struct command_context *cmd_ctx);
16 void jsp_service_free(void);
17
18 #endif /* OPENOCD_TARGET_OPENRISC_JSP_SERVER_H */