172 lines
4.6 KiB
C
Raw Normal View History

2014-06-29 19:27:43 +08:00
/*
* This file is part of the libsigrok project.
*
* Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2015-04-17 00:21:14 +08:00
#ifndef LIBDSL_HARDWARE_COMMAND_H
#define LIBDSL_HARDWARE_COMMAND_H
2014-06-29 19:27:43 +08:00
#include <glib.h>
#include "libsigrok.h"
2015-04-17 00:21:14 +08:00
#include "libsigrok-internal.h"
2014-06-29 19:27:43 +08:00
/* Protocol commands */
#define CMD_GET_FW_VERSION 0xb0
#define CMD_GET_REVID_VERSION 0xb1
#define CMD_START 0xb2
#define CMD_CONFIG 0xb3
#define CMD_SETTING 0xb4
#define CMD_CONTROL 0xb5
2014-09-24 18:43:42 +08:00
#define CMD_STATUS 0xb6
2015-04-17 00:21:14 +08:00
#define CMD_STATUS_INFO 0xb7
2016-06-08 12:18:50 +08:00
#define CMD_WR_REG 0xb8
2015-04-17 00:21:14 +08:00
#define CMD_WR_NVM 0xb9
#define CMD_RD_NVM 0xba
#define CMD_RD_NVM_PRE 0xbb
#define CMD_GET_HW_INFO 0xbc
2014-06-29 19:27:43 +08:00
2014-09-24 18:43:42 +08:00
#define CMD_START_FLAGS_MODE_POS 4
2014-06-29 19:27:43 +08:00
#define CMD_START_FLAGS_WIDE_POS 5
#define CMD_START_FLAGS_CLK_SRC_POS 6
#define CMD_START_FLAGS_STOP_POS 7
2014-09-24 18:43:42 +08:00
#define CMD_START_FLAGS_MODE_LA (1 << CMD_START_FLAGS_MODE_POS)
#define CMD_START_FLAGS_SAMPLE_8BIT (0 << CMD_START_FLAGS_WIDE_POS)
2014-06-29 19:27:43 +08:00
#define CMD_START_FLAGS_SAMPLE_16BIT (1 << CMD_START_FLAGS_WIDE_POS)
#define CMD_START_FLAGS_CLK_30MHZ (0 << CMD_START_FLAGS_CLK_SRC_POS)
#define CMD_START_FLAGS_CLK_48MHZ (1 << CMD_START_FLAGS_CLK_SRC_POS)
#define CMD_START_FLAGS_STOP (1 << CMD_START_FLAGS_STOP_POS)
2015-04-17 00:21:14 +08:00
#define CMD_STATUS_CNT 32
2016-06-08 12:18:50 +08:00
#define VTH_ADDR 0x78
#define EEWP_ADDR 0x70
#define COMB_ADDR 0x68
2014-06-29 19:27:43 +08:00
#pragma pack(push, 1)
struct version_info {
uint8_t major;
uint8_t minor;
};
struct cmd_start_acquisition {
uint8_t flags;
uint8_t sample_delay_h;
uint8_t sample_delay_l;
};
struct cmd_setting_count {
uint8_t byte0;
uint8_t byte1;
uint8_t byte2;
};
struct cmd_cfg_count {
uint8_t byte0;
uint8_t byte1;
uint8_t byte2;
};
struct cmd_control {
uint8_t byte0;
uint8_t byte1;
uint8_t byte2;
uint8_t byte3;
2015-04-17 00:21:14 +08:00
uint8_t byte4;
uint8_t byte5;
uint8_t byte6;
uint8_t byte7;
};
struct cmd_status_info {
uint8_t begin;
uint8_t end;
};
struct cmd_zero_info {
uint8_t zero_addr;
2016-06-08 12:18:50 +08:00
uint8_t voff0;
uint8_t voff1;
uint8_t voff2;
uint8_t voff3;
uint8_t voff4;
uint8_t voff5;
uint8_t voff6;
uint8_t voff7;
uint8_t voff8;
uint8_t voff9;
uint8_t voff10;
uint8_t voff11;
uint8_t voff12;
uint8_t voff13;
uint8_t voff14;
uint8_t voff15;
uint8_t diff0;
uint8_t diff1;
uint8_t trans0;
uint8_t trans1;
2015-04-17 00:21:14 +08:00
};
2016-06-08 12:18:50 +08:00
struct cmd_vga_info {
uint8_t vga_addr;
uint16_t vga0;
uint16_t vga1;
uint16_t vga2;
uint16_t vga3;
uint16_t vga4;
uint16_t vga5;
uint16_t vga6;
uint16_t vga7;
2015-04-17 00:21:14 +08:00
};
struct cmd_nvm_info {
uint16_t addr;
2015-04-17 00:21:14 +08:00
uint8_t len;
2014-06-29 19:27:43 +08:00
};
#pragma pack(pop)
SR_PRIV int command_get_fw_version(libusb_device_handle *devhdl,
struct version_info *vi);
SR_PRIV int command_get_revid_version(libusb_device_handle *devhdl,
uint8_t *revid);
SR_PRIV int command_start_acquisition(libusb_device_handle *devhdl,
2014-09-24 18:43:42 +08:00
uint64_t samplerate, gboolean samplewide, gboolean la_mode);
2017-05-23 22:39:00 +08:00
SR_PRIV int command_stop_acquisition(libusb_device_handle *devhdl);
2014-06-29 19:27:43 +08:00
SR_PRIV int command_fpga_config(libusb_device_handle *devhdl);
SR_PRIV int command_fpga_setting(libusb_device_handle *devhdl, uint32_t setting_count);
2015-04-17 00:21:14 +08:00
SR_PRIV int command_dso_ctrl(libusb_device_handle *devhdl, uint64_t command);
2014-06-29 19:27:43 +08:00
2014-09-24 18:43:42 +08:00
SR_PRIV int command_get_status(libusb_device_handle *devhdl,
2015-04-17 00:21:14 +08:00
unsigned char *status,
int begin, int end);
2016-06-08 12:18:50 +08:00
SR_PRIV int command_wr_reg(libusb_device_handle *devhdl, uint8_t value, uint8_t addr);
2015-04-17 00:21:14 +08:00
SR_PRIV int command_wr_nvm(libusb_device_handle *devhdl, unsigned char *ctx, uint8_t len);
SR_PRIV int command_rd_nvm(libusb_device_handle *devhdl, unsigned char *ctx, uint16_t addr, uint8_t len);
2014-09-24 18:43:42 +08:00
SR_PRIV int command_get_hw_info(libusb_device_handle *devhdl,
uint8_t *fpga_done);
2014-06-29 19:27:43 +08:00
#endif