2012-11-14 11:51:51 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 by Amaury Pouly
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2013-06-13 00:02:53 +00:00
|
|
|
#ifndef __HWSTUB__
|
|
|
|
#define __HWSTUB__
|
2012-11-14 11:51:51 +00:00
|
|
|
|
|
|
|
#include <libusb.h>
|
2013-06-13 00:02:53 +00:00
|
|
|
#include "hwstub_protocol.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2012-11-14 11:51:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Low-Level interface
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-06-13 00:02:53 +00:00
|
|
|
struct hwstub_device_t
|
2012-11-14 11:51:51 +00:00
|
|
|
{
|
|
|
|
libusb_device_handle *handle;
|
|
|
|
int intf;
|
|
|
|
int bulk_in;
|
|
|
|
int bulk_out;
|
|
|
|
int int_in;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Requires then ->handle field only. Returns 0 on success */
|
2013-06-13 00:02:53 +00:00
|
|
|
int hwstub_probe(struct hwstub_device_t *dev);
|
2012-11-14 11:51:51 +00:00
|
|
|
/* Returns 0 on success */
|
2013-06-13 00:02:53 +00:00
|
|
|
int hwstub_release(struct hwstub_device_t *dev);
|
2012-11-14 11:51:51 +00:00
|
|
|
|
|
|
|
/* Returns number of bytes filled */
|
2013-06-13 00:02:53 +00:00
|
|
|
int hwstub_get_info(struct hwstub_device_t *dev, uint16_t idx, void *info, size_t sz);
|
2012-11-14 11:51:51 +00:00
|
|
|
/* Returns number of bytes filled */
|
2013-06-13 00:02:53 +00:00
|
|
|
int hwstub_get_log(struct hwstub_device_t *dev, void *buf, size_t sz);
|
2012-11-14 11:51:51 +00:00
|
|
|
/* Returns number of bytes written/read or <0 on error */
|
2013-06-13 00:02:53 +00:00
|
|
|
int hwstub_rw_mem(struct hwstub_device_t *dev, int read, uint32_t addr, void *buf, size_t sz);
|
2012-11-14 11:51:51 +00:00
|
|
|
/* Returns <0 on error */
|
2013-06-13 00:02:53 +00:00
|
|
|
int hwstub_call(struct hwstub_device_t *dev, uint32_t addr);
|
|
|
|
int hwstub_jump(struct hwstub_device_t *dev, uint32_t addr);
|
2013-07-16 17:29:42 +00:00
|
|
|
/* Returns <0 on error */
|
|
|
|
int hwstub_atexit(struct hwstub_device_t *dev, int action);
|
|
|
|
int hwstub_exit(struct hwstub_device_t *dev);
|
2013-06-13 00:02:53 +00:00
|
|
|
|
|
|
|
const char *hwstub_get_product_string(struct usb_resp_info_stmp_t *stmp);
|
|
|
|
const char *hwstub_get_rev_string(struct usb_resp_info_stmp_t *stmp);
|
2012-11-14 11:51:51 +00:00
|
|
|
|
2013-06-13 00:02:53 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
2012-11-14 11:51:51 +00:00
|
|
|
|
2013-06-13 00:02:53 +00:00
|
|
|
#endif /* __HWSTUB__ */
|