1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/*
* xtrx debug server header file
* Copyright (c) 2018 Sergey Kostanbaev <sergey.kostanbaev@fairwaves.co>
* For more information, please visit: http://xtrx.io
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef XTRX_DEBUG_H
#define XTRX_DEBUG_H
#include <stdint.h>
struct xtrx_debug_ctx;
typedef struct xtrx_debug_ctx xtrx_debug_ctx_t;
enum dubug_cmd {
DEBUG_RFIC_SPI_WR,
DEBUG_RFIC_SPI_RD,
DEBUG_BOARD_TEMP,
DEBUG_GET_REFCLK,
DEBUG_ANT_RX,
DEBUG_ANT_TX,
DEBUG_BOARD_DAC,
DEBUG_GET_DEVICES,
DEBUG_GET_RXIQ_ODD,
DEBUG_GET_RXIQ_MISS,
DEBUG_VIO,
DEBUG_V33,
DEBUG_FGP_CTRL,
DEBUG_XTRX_GET_REG,
};
struct xtrx_debug_ops {
int (*param_io)(void* obj, unsigned param, unsigned chno, uint64_t val, uint64_t* oval);
};
typedef struct xtrx_debug_ops xtrx_debug_ops_t;
int xtrx_debug_init(const char *params,
const xtrx_debug_ops_t* ops,
void *obj,
xtrx_debug_ctx_t** octx);
int xtrx_debug_free(xtrx_debug_ctx_t* ctx);
#endif
|