]> sigrok.org Git - libsigrok.git/blob - src/hardware/kingst-la2016/protocol.h
kingst-la2016: rephrase comments for style, readability, and text length
[libsigrok.git] / src / hardware / kingst-la2016 / protocol.h
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 <libsigrok/libsigrok.h>
27 #include <stdint.h>
28
29 #define LOG_PREFIX      "kingst-la2016"
30
31 #define LA2016_VID              0x77a1
32 #define LA2016_PID              0x01a2
33 #define USB_INTERFACE           0
34 #define USB_CONFIGURATION       1
35
36 /*
37  * On Windows sigrok uses WinUSB RAW_IO policy which requires the
38  * USB transfer buffer size to be a multiple of the endpoint max packet
39  * size, which is 512 bytes in this case. Also, the maximum allowed size
40  * of the transfer buffer is normally read from WinUSB_GetPipePolicy API
41  * but libusb does not expose this function. Typically, max size is 2MB.
42  */
43 #define LA2016_EP6_PKTSZ        512 /* Max packet size of USB endpoint 6. */
44 #define LA2016_USB_BUFSZ        (256 * 2 * LA2016_EP6_PKTSZ) /* 256KiB buffer. */
45
46 #define MAX_RENUM_DELAY_MS      3000
47 #define DEFAULT_TIMEOUT_MS      200
48
49 #define LA2016_THR_VOLTAGE_MIN  0.40
50 #define LA2016_THR_VOLTAGE_MAX  4.00
51
52 #define LA2016_NUM_SAMPLES_MIN  256
53 #define LA2016_NUM_SAMPLES_MAX  (10UL * 1000 * 1000 * 1000)
54
55 typedef struct pwm_setting_dev {
56         uint32_t period;
57         uint32_t duty;
58 } pwm_setting_dev_t;
59
60 typedef struct trigger_cfg {
61         uint32_t channels;
62         uint32_t enabled;
63         uint32_t level;
64         uint32_t high_or_falling;
65 } trigger_cfg_t;
66
67 typedef struct capture_info {
68         uint32_t n_rep_packets;
69         uint32_t n_rep_packets_before_trigger;
70         uint32_t write_pos;
71 } capture_info_t;
72
73 #define NUM_PACKETS_IN_CHUNK    5
74 #define TRANSFER_PACKET_LENGTH  16
75
76 typedef struct pwm_setting {
77         uint8_t enabled;
78         float freq;
79         float duty;
80 } pwm_setting_t;
81
82 struct dev_context {
83         struct sr_context *ctx;
84
85         int64_t fw_updated;
86
87         /* User specified parameters. */
88         pwm_setting_t pwm_setting[2];
89         unsigned int threshold_voltage_idx;
90         float threshold_voltage;
91         uint64_t max_samplerate;
92         uint64_t cur_samplerate;
93         uint64_t limit_samples;
94         uint64_t capture_ratio;
95         uint16_t cur_channels;
96         int num_channels;
97
98         uint32_t bitstream_size;
99
100         /* Values derived from user specs. */
101         uint64_t pre_trigger_size;
102
103         /* Internal acquisition and download state. */
104         int had_triggers_configured;
105         int have_trigger;
106         int transfer_finished;
107         capture_info_t info;
108         unsigned int n_transfer_packets_to_read; /* each with 5 acq packets */
109         unsigned int n_bytes_to_read;
110         unsigned int n_reps_until_trigger;
111         unsigned int reading_behind_trigger;
112         uint64_t total_samples;
113         uint32_t read_pos;
114
115         unsigned int convbuffer_size;
116         uint8_t *convbuffer;
117         struct libusb_transfer *transfer;
118 };
119
120 SR_PRIV int la2016_upload_firmware(struct sr_context *sr_ctx, libusb_device *dev, uint16_t product_id);
121 SR_PRIV int la2016_setup_acquisition(const struct sr_dev_inst *sdi);
122 SR_PRIV int la2016_start_acquisition(const struct sr_dev_inst *sdi);
123 SR_PRIV int la2016_abort_acquisition(const struct sr_dev_inst *sdi);
124 SR_PRIV int la2016_receive_data(int fd, int revents, void *cb_data);
125 SR_PRIV int la2016_init_device(const struct sr_dev_inst *sdi);
126 SR_PRIV int la2016_deinit_device(const struct sr_dev_inst *sdi);
127
128 #endif