]> sigrok.org Git - libsigrok.git/blame - src/hardware/kingst-la2016/protocol.h
rigol-ds: improve robustness in samplerate getting code path
[libsigrok.git] / src / hardware / kingst-la2016 / protocol.h
CommitLineData
f2cd2deb
FS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2020 Florian Schmidt <schmidt_florian@gmx.de>
5 * Copyright (C) 2013 Marcus Comstedt <marcus@mc.pp.se>
6 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
7 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#ifndef LIBSIGROK_HARDWARE_KINGST_LA2016_PROTOCOL_H
24#define LIBSIGROK_HARDWARE_KINGST_LA2016_PROTOCOL_H
25
26#include <stdint.h>
27#include <glib.h>
28#include <libsigrok/libsigrok.h>
29#include "libsigrok-internal.h"
30
31#define LOG_PREFIX "kingst-la2016"
32
f2cd2deb
FS
33#define LA2016_VID 0x77a1
34#define LA2016_PID 0x01a2
35#define USB_INTERFACE 0
40a0b2f4 36#define USB_CONFIGURATION 1
f2cd2deb
FS
37
38#define LA2016_BULK_MAX 8388608
39
e847645b
KG
40/*
41 * On Windows sigrok uses WinUSB RAW_IO policy which requires the
42 * USB transfer buffer size to be a multiple of the endpoint max packet
43 * size, which is 512 bytes in this case. Also, the maximum allowed size of
44 * the transfer buffer is normally read from WinUSB_GetPipePolicy API but
45 * libusb does not expose this function. Typically, max size is 2MB.
46 */
47#define LA2016_EP6_PKTSZ 512 /* endpoint 6 max packet size */
48#define LA2016_USB_BUFSZ (256 * 2 * LA2016_EP6_PKTSZ) /* 256KB buffer */
49
f2cd2deb
FS
50#define MAX_RENUM_DELAY_MS 3000
51#define DEFAULT_TIMEOUT_MS 200
52
53#define LA2016_THR_VOLTAGE_MIN 0.40
54#define LA2016_THR_VOLTAGE_MAX 4.00
55
56#define LA2016_NUM_SAMPLES_MIN 256
57#define LA2016_NUM_SAMPLES_MAX (10UL * 1000 * 1000 * 1000)
58
59typedef struct pwm_setting_dev {
60 uint32_t period;
61 uint32_t duty;
c3d40037 62} pwm_setting_dev_t;
f2cd2deb
FS
63
64typedef struct trigger_cfg {
65 uint32_t channels;
66 uint32_t enabled;
67 uint32_t level;
68 uint32_t high_or_falling;
c3d40037 69} trigger_cfg_t;
f2cd2deb
FS
70
71typedef struct capture_info {
72 uint32_t n_rep_packets;
73 uint32_t n_rep_packets_before_trigger;
74 uint32_t write_pos;
c3d40037 75} capture_info_t;
f2cd2deb 76
c3d40037
HK
77#define NUM_PACKETS_IN_CHUNK 5
78#define TRANSFER_PACKET_LENGTH 16
f2cd2deb
FS
79
80typedef struct pwm_setting {
81 uint8_t enabled;
82 float freq;
83 float duty;
f2cd2deb
FS
84} pwm_setting_t;
85
86struct dev_context {
87 struct sr_context *ctx;
88
89 int64_t fw_updated;
90 pwm_setting_t pwm_setting[2];
91 unsigned int threshold_voltage_idx;
92 float threshold_voltage;
8b172e78 93 uint64_t max_samplerate;
f2cd2deb
FS
94 uint64_t cur_samplerate;
95 uint64_t limit_samples;
96 uint64_t capture_ratio;
97 uint16_t cur_channels;
98 int num_channels;
99
3f48ab02
FS
100 uint32_t bitstream_size;
101
f2cd2deb
FS
102 /* derived stuff */
103 uint64_t pre_trigger_size;
104
105 /* state after sampling */
106 int had_triggers_configured;
107 int have_trigger;
108 int transfer_finished;
109 capture_info_t info;
110 unsigned int n_transfer_packets_to_read; /* each with 5 acq packets */
111 unsigned int n_bytes_to_read;
112 unsigned int n_reps_until_trigger;
113 unsigned int reading_behind_trigger;
114 uint64_t total_samples;
115 uint32_t read_pos;
116
117 unsigned int convbuffer_size;
118 uint8_t *convbuffer;
119 struct libusb_transfer *transfer;
120};
121
122SR_PRIV int la2016_upload_firmware(struct sr_context *sr_ctx, libusb_device *dev, uint16_t product_id);
123SR_PRIV int la2016_setup_acquisition(const struct sr_dev_inst *sdi);
124SR_PRIV int la2016_start_acquisition(const struct sr_dev_inst *sdi);
125SR_PRIV int la2016_stop_acquisition(const struct sr_dev_inst *sdi);
126SR_PRIV int la2016_abort_acquisition(const struct sr_dev_inst *sdi);
127SR_PRIV int la2016_has_triggered(const struct sr_dev_inst *sdi);
128SR_PRIV int la2016_start_retrieval(const struct sr_dev_inst *sdi, libusb_transfer_cb_fn cb);
129SR_PRIV int la2016_init_device(const struct sr_dev_inst *sdi);
130SR_PRIV int la2016_deinit_device(const struct sr_dev_inst *sdi);
131
f2cd2deb 132#endif