]> sigrok.org Git - libsigrok.git/blob - src/hardware/sysclk-lwla/protocol.h
aedac6ee325374212827fbacbf4ef98b1287fbcd
[libsigrok.git] / src / hardware / sysclk-lwla / protocol.h
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2014 Daniel Elstner <daniel.kitta@gmail.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef LIBSIGROK_HARDWARE_SYSCLK_LWLA_PROTOCOL_H
21 #define LIBSIGROK_HARDWARE_SYSCLK_LWLA_PROTOCOL_H
22
23 #define LOG_PREFIX "sysclk-lwla"
24
25 #include <stdint.h>
26 #include <glib.h>
27 #include <libsigrok/libsigrok.h>
28 #include "libsigrok-internal.h"
29 #include "lwla.h"
30
31 /* For now, only the LWLA1034 is supported.
32  */
33 #define VENDOR_NAME     "SysClk"
34 #define MODEL_NAME      "LWLA1034"
35
36 #define USB_VID_PID     "2961.6689"
37 #define USB_CONFIG      1
38 #define USB_INTERFACE   0
39 #define USB_TIMEOUT_MS  3000
40
41 #define NUM_CHANNELS    34
42
43 /* Bit mask covering all 34 channels.
44  */
45 #define ALL_CHANNELS_MASK (((uint64_t)1 << NUM_CHANNELS) - 1)
46
47 /** Unit and packet size for the sigrok logic datafeed.
48  */
49 #define UNIT_SIZE       ((NUM_CHANNELS + 7) / 8)
50 #define PACKET_LENGTH   (10 * 1000)     /* units */
51
52 /** Size of the acquisition buffer in device memory units.
53  */
54 #define MEMORY_DEPTH    (256 * 1024)    /* 256k x 36 bit */
55
56 /** Number of device memory units (36 bit) to read at a time.  Slices of 8
57  * consecutive 36-bit words are mapped to 9 32-bit words each, so the chunk
58  * length should be a multiple of 8 to ensure alignment to slice boundaries.
59  *
60  * Experimentation has shown that reading chunks larger than about 1024 bytes
61  * is unreliable.  The threshold seems to relate to the buffer size on the FX2
62  * USB chip:  The configured endpoint buffer size is 512, and with double or
63  * triple buffering enabled a multiple of 512 bytes can be kept in fly.
64  *
65  * The vendor software limits reads to 120 words (15 slices, 540 bytes) at
66  * a time.  So far, it appears safe to increase this to 224 words (28 slices,
67  * 1008 bytes), thus making the most of two 512 byte buffers.
68  */
69 #define READ_CHUNK_LEN  (28 * 8)
70
71 /** Calculate the required buffer size in 32-bit units for reading a given
72  * number of device memory words.  Rounded to a multiple of 8 device words.
73  */
74 #define LWLA1034_MEMBUF_LEN(count) (((count) + 7) / 8 * 9)
75
76 /** Maximum number of 16-bit words sent at a time during acquisition.
77  * Used for allocating the libusb transfer buffer.
78  */
79 #define MAX_ACQ_SEND_WORDS      8 /* 5 for memory read request plus stuffing */
80
81 /** Maximum number of 32-bit words received at a time during acquisition.
82  * Round to the next multiple of the endpoint buffer size to avoid nasty
83  * transfer overflow conditions on hiccups.
84  */
85 #define MAX_ACQ_RECV_LEN        ((READ_CHUNK_LEN / 8 * 9 + 127) / 128 * 128)
86
87 /** Maximum length of a register write sequence.
88  */
89 #define MAX_REG_WRITE_SEQ_LEN   5
90
91 /** Default configured samplerate.
92  */
93 #define DEFAULT_SAMPLERATE      SR_MHZ(125)
94
95 /** Maximum configurable sample count limit.
96  */
97 #define MAX_LIMIT_SAMPLES       (UINT64_C(1) << 48)
98
99 /** Maximum configurable capture duration in milliseconds.
100  */
101 #define MAX_LIMIT_MSEC          (UINT64_C(1) << 32)
102
103 /** LWLA1034 FPGA clock configurations.
104  */
105 enum clock_config {
106         CONF_CLOCK_NONE,
107         CONF_CLOCK_INT,
108         CONF_CLOCK_EXT_RISE,
109         CONF_CLOCK_EXT_FALL,
110 };
111
112 /** Available clock sources.
113  */
114 enum clock_source {
115         CLOCK_INTERNAL,
116         CLOCK_EXT_CLK,
117 };
118
119 /** Available trigger sources.
120  */
121 enum trigger_source {
122         TRIGGER_CHANNELS = 0,
123         TRIGGER_EXT_TRG,
124 };
125
126 /** Available edge choices for the external clock and trigger inputs.
127  */
128 enum signal_edge {
129         EDGE_POSITIVE = 0,
130         EDGE_NEGATIVE,
131 };
132
133 /** LWLA device states.
134  */
135 enum device_state {
136         STATE_IDLE = 0,
137
138         STATE_START_CAPTURE,
139
140         STATE_STATUS_WAIT,
141         STATE_STATUS_REQUEST,
142         STATE_STATUS_RESPONSE,
143
144         STATE_STOP_CAPTURE,
145
146         STATE_LENGTH_REQUEST,
147         STATE_LENGTH_RESPONSE,
148
149         STATE_READ_PREPARE,
150         STATE_READ_REQUEST,
151         STATE_READ_RESPONSE,
152         STATE_READ_END,
153 };
154
155 /** LWLA run-length encoding states.
156  */
157 enum rle_state {
158         RLE_STATE_DATA,
159         RLE_STATE_LEN
160 };
161
162 /** LWLA sample acquisition and decompression state.
163  */
164 struct acquisition_state {
165         uint64_t sample;
166         uint64_t run_len;
167
168         /** Maximum number of samples to process. */
169         uint64_t samples_max;
170         /** Number of samples sent to the session bus. */
171         uint64_t samples_done;
172
173         /** Maximum duration of capture, in milliseconds. */
174         uint64_t duration_max;
175         /** Running capture duration since trigger event. */
176         uint64_t duration_now;
177
178         /** Capture memory fill level. */
179         size_t mem_addr_fill;
180
181         size_t mem_addr_done;
182         size_t mem_addr_next;
183         size_t mem_addr_stop;
184
185         size_t out_index;
186
187         struct libusb_transfer *xfer_in;
188         struct libusb_transfer *xfer_out;
189
190         unsigned int capture_flags;
191
192         enum rle_state rle;
193
194         /** Whether to bypass the clock divider. */
195         gboolean bypass_clockdiv;
196
197         /* Payload data buffers for incoming and outgoing transfers. */
198         uint32_t xfer_buf_in[MAX_ACQ_RECV_LEN];
199         uint16_t xfer_buf_out[MAX_ACQ_SEND_WORDS];
200
201         /* Payload buffer for sigrok logic packets. */
202         uint8_t out_packet[PACKET_LENGTH * UNIT_SIZE];
203 };
204
205 /** Private, per-device-instance driver context.
206  */
207 struct dev_context {
208         /** The samplerate selected by the user. */
209         uint64_t samplerate;
210
211         /** The maximum sampling duration, in milliseconds. */
212         uint64_t limit_msec;
213
214         /** The maximum number of samples to acquire. */
215         uint64_t limit_samples;
216
217         /** Channels to use. */
218         uint64_t channel_mask;
219
220         uint64_t trigger_mask;
221         uint64_t trigger_edge_mask;
222         uint64_t trigger_values;
223
224         struct acquisition_state *acquisition;
225
226         struct regval_pair reg_write_seq[MAX_REG_WRITE_SEQ_LEN];
227         int reg_write_pos;
228         int reg_write_len;
229
230         enum device_state state;
231
232         /** The currently active clock configuration of the device. */
233         enum clock_config cur_clock_config;
234
235         /** Clock source configuration setting. */
236         enum clock_source cfg_clock_source;
237         /** Clock edge configuration setting. */
238         enum signal_edge cfg_clock_edge;
239
240         /** Trigger source configuration setting. */
241         enum trigger_source cfg_trigger_source;
242         /** Trigger slope configuration setting. */
243         enum signal_edge cfg_trigger_slope;
244
245         /** Whether a running acquisition should be canceled. */
246         gboolean cancel_requested;
247
248         /* Indicates that stopping the acquisition is currently in progress. */
249         gboolean stopping_in_progress;
250
251         /* Indicates whether a transfer failed. */
252         gboolean transfer_error;
253 };
254
255 SR_PRIV struct acquisition_state *lwla_alloc_acquisition_state(void);
256 SR_PRIV void lwla_free_acquisition_state(struct acquisition_state *acq);
257
258 SR_PRIV int lwla_init_device(const struct sr_dev_inst *sdi);
259 SR_PRIV int lwla_set_clock_config(const struct sr_dev_inst *sdi);
260 SR_PRIV int lwla_setup_acquisition(const struct sr_dev_inst *sdi);
261 SR_PRIV int lwla_start_acquisition(const struct sr_dev_inst *sdi);
262 SR_PRIV int lwla_abort_acquisition(const struct sr_dev_inst *sdi);
263
264 SR_PRIV int lwla_receive_data(int fd, int revents, void *cb_data);
265
266 #endif