]> sigrok.org Git - libsigrok.git/blob - src/hardware/link-mso19/api.c
c1162c982207f2c9f01317edc8b08a8563f343e9
[libsigrok.git] / src / hardware / link-mso19 / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2011 Daniel Ribeiro <drwyrm@gmail.com>
5  * Copyright (C) 2012 Renato Caldas <rmsc@fe.up.pt>
6  * Copyright (C) 2013 Lior Elazary <lelazary@yahoo.com>
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #include "protocol.h"
23
24 static const uint32_t devopts[] = {
25         SR_CONF_OSCILLOSCOPE,
26         SR_CONF_LOGIC_ANALYZER,
27         SR_CONF_LIMIT_SAMPLES | SR_CONF_SET,
28         SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
29         SR_CONF_TRIGGER_TYPE | SR_CONF_LIST,
30         SR_CONF_TRIGGER_SLOPE | SR_CONF_SET,
31         SR_CONF_HORIZ_TRIGGERPOS | SR_CONF_SET,
32         SR_CONF_CAPTURE_RATIO | SR_CONF_SET,
33         SR_CONF_RLE | SR_CONF_SET,
34 };
35
36 /*
37  * Channels are numbered 0 to 7.
38  *
39  * See also: http://www.linkinstruments.com/images/mso19_1113.gif
40  */
41 SR_PRIV const char *mso19_channel_names[NUM_CHANNELS + 1] = {
42         /* Note: DSO needs to be first. */
43         "DSO", "0", "1", "2", "3", "4", "5", "6", "7", NULL,
44 };
45
46 static const uint64_t samplerates[] = {
47         SR_HZ(100),
48         SR_MHZ(200),
49         SR_HZ(100),
50 };
51
52 SR_PRIV struct sr_dev_driver link_mso19_driver_info;
53 static struct sr_dev_driver *di = &link_mso19_driver_info;
54
55 /* TODO: Use sr_dev_inst to store connection handle & use std_dev_clear(). */
56 static int dev_clear(void)
57 {
58         GSList *l;
59         struct sr_dev_inst *sdi;
60         struct drv_context *drvc;
61         struct dev_context *devc;
62         int ret = SR_OK;
63
64         if (!(drvc = di->priv))
65                 return SR_OK;
66
67         /* Properly close and free all devices. */
68         for (l = drvc->instances; l; l = l->next) {
69                 if (!(sdi = l->data)) {
70                         /* Log error, but continue cleaning up the rest. */
71                         sr_err("%s: sdi was NULL, continuing", __func__);
72                         ret = SR_ERR_BUG;
73                         continue;
74                 }
75                 if (!(devc = sdi->priv)) {
76                         /* Log error, but continue cleaning up the rest. */
77                         sr_err("%s: sdi->priv was NULL, continuing", __func__);
78                         ret = SR_ERR_BUG;
79                         continue;
80                 }
81                 std_serial_dev_close(sdi);
82                 sr_serial_dev_inst_free(devc->serial);
83                 sr_dev_inst_free(sdi);
84         }
85         g_slist_free(drvc->instances);
86         drvc->instances = NULL;
87
88         return ret;
89 }
90
91 static int init(struct sr_context *sr_ctx)
92 {
93         return std_init(sr_ctx, di, LOG_PREFIX);
94 }
95
96 static GSList *scan(GSList *options)
97 {
98         int i;
99         GSList *devices = NULL;
100         const char *conn = NULL;
101         const char *serialcomm = NULL;
102         GSList *l;
103         struct sr_config *src;
104         struct udev *udev;
105         int chtype;
106
107         for (l = options; l; l = l->next) {
108                 src = l->data;
109                 switch (src->key) {
110                 case SR_CONF_CONN:
111                         conn = g_variant_get_string(src->data, NULL);
112                         break;
113                 case SR_CONF_SERIALCOMM:
114                         serialcomm = g_variant_get_string(src->data, NULL);
115                         break;
116                 }
117         }
118         if (!conn)
119                 conn = SERIALCONN;
120         if (serialcomm == NULL)
121                 serialcomm = SERIALCOMM;
122
123         udev = udev_new();
124         if (!udev) {
125                 sr_err("Failed to initialize udev.");
126         }
127
128         struct udev_enumerate *enumerate = udev_enumerate_new(udev);
129         udev_enumerate_add_match_subsystem(enumerate, "usb-serial");
130         udev_enumerate_scan_devices(enumerate);
131         struct udev_list_entry *devs = udev_enumerate_get_list_entry(enumerate);
132         struct udev_list_entry *dev_list_entry;
133         for (dev_list_entry = devs;
134              dev_list_entry != NULL;
135              dev_list_entry = udev_list_entry_get_next(dev_list_entry)) {
136                 const char *syspath = udev_list_entry_get_name(dev_list_entry);
137                 struct udev_device *dev =
138                     udev_device_new_from_syspath(udev, syspath);
139                 const char *sysname = udev_device_get_sysname(dev);
140                 struct udev_device *parent =
141                     udev_device_get_parent_with_subsystem_devtype(dev, "usb",
142                                                                   "usb_device");
143
144                 if (!parent) {
145                         sr_err("Unable to find parent usb device for %s",
146                                sysname);
147                         continue;
148                 }
149
150                 const char *idVendor =
151                     udev_device_get_sysattr_value(parent, "idVendor");
152                 const char *idProduct =
153                     udev_device_get_sysattr_value(parent, "idProduct");
154                 if (strcmp(USB_VENDOR, idVendor)
155                     || strcmp(USB_PRODUCT, idProduct))
156                         continue;
157
158                 const char *iSerial =
159                     udev_device_get_sysattr_value(parent, "serial");
160                 const char *iProduct =
161                     udev_device_get_sysattr_value(parent, "product");
162
163                 char path[32];
164                 snprintf(path, sizeof(path), "/dev/%s", sysname);
165                 conn = path;
166
167                 size_t s = strcspn(iProduct, " ");
168                 char product[32];
169                 char manufacturer[32];
170                 if (s > sizeof(product) ||
171                     strlen(iProduct) - s > sizeof(manufacturer)) {
172                         sr_err("Could not parse iProduct: %s.", iProduct);
173                         continue;
174                 }
175                 strncpy(product, iProduct, s);
176                 product[s] = 0;
177                 strcpy(manufacturer, iProduct + s + 1);
178
179                 //Create the device context and set its params
180                 struct dev_context *devc;
181                 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
182                         sr_err("Device context malloc failed.");
183                         return devices;
184                 }
185
186                 if (mso_parse_serial(iSerial, iProduct, devc) != SR_OK) {
187                         sr_err("Invalid iSerial: %s.", iSerial);
188                         g_free(devc);
189                         return devices;
190                 }
191
192                 char hwrev[32];
193                 sprintf(hwrev, "r%d", devc->hwrev);
194                 devc->ctlbase1 = 0;
195                 devc->protocol_trigger.spimode = 0;
196                 for (i = 0; i < 4; i++) {
197                         devc->protocol_trigger.word[i] = 0;
198                         devc->protocol_trigger.mask[i] = 0xff;
199                 }
200
201                 if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm))) {
202                         g_free(devc);
203                         return devices;
204                 }
205
206                 struct sr_dev_inst *sdi = g_malloc0(sizeof(struct sr_dev_inst));
207                 sdi->status = SR_ST_INACTIVE;
208                 sdi->vendor = g_strdup(manufacturer);
209                 sdi->model = g_strdup(product);
210                 sdi->version = g_strdup(hwrev);
211
212                 if (!sdi) {
213                         sr_err("Unable to create device instance for %s",
214                                sysname);
215                         sr_dev_inst_free(sdi);
216                         g_free(devc);
217                         return devices;
218                 }
219
220                 sdi->driver = di;
221                 sdi->priv = devc;
222
223                 for (i = 0; i < NUM_CHANNELS; i++) {
224                         struct sr_channel *ch;
225                         chtype = (i == 0) ? SR_CHANNEL_ANALOG : SR_CHANNEL_LOGIC;
226                         if (!(ch = sr_channel_new(i, chtype, TRUE,
227                                                    mso19_channel_names[i])))
228                                 return 0;
229                         sdi->channels = g_slist_append(sdi->channels, ch);
230                 }
231
232                 //Add the driver
233                 struct drv_context *drvc = di->priv;
234                 drvc->instances = g_slist_append(drvc->instances, sdi);
235                 devices = g_slist_append(devices, sdi);
236         }
237
238         return devices;
239 }
240
241 static GSList *dev_list(void)
242 {
243         return ((struct drv_context *)(di->priv))->instances;
244 }
245
246 static int dev_open(struct sr_dev_inst *sdi)
247 {
248         int ret;
249         struct dev_context *devc;
250
251         devc = sdi->priv;
252
253         if (serial_open(devc->serial, SERIAL_RDWR) != SR_OK)
254                 return SR_ERR;
255
256         sdi->status = SR_ST_ACTIVE;
257
258         /* FIXME: discard serial buffer */
259         mso_check_trigger(devc->serial, &devc->trigger_state);
260         sr_dbg("Trigger state: 0x%x.", devc->trigger_state);
261
262         ret = mso_reset_adc(sdi);
263         if (ret != SR_OK)
264                 return ret;
265
266         mso_check_trigger(devc->serial, &devc->trigger_state);
267         sr_dbg("Trigger state: 0x%x.", devc->trigger_state);
268
269         //    ret = mso_reset_fsm(sdi);
270         //    if (ret != SR_OK)
271         //            return ret;
272         //    return SR_ERR;
273
274         return SR_OK;
275 }
276
277 static int cleanup(void)
278 {
279         return dev_clear();
280 }
281
282 static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi,
283                 const struct sr_channel_group *cg)
284 {
285         struct dev_context *devc;
286
287         (void)cg;
288
289         switch (id) {
290         case SR_CONF_SAMPLERATE:
291                 if (sdi) {
292                         devc = sdi->priv;
293                         *data = g_variant_new_uint64(devc->cur_rate);
294                 } else
295                         return SR_ERR;
296                 break;
297         default:
298                 return SR_ERR_NA;
299         }
300
301         return SR_OK;
302 }
303
304 static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi,
305                 const struct sr_channel_group *cg)
306 {
307         int ret;
308         struct dev_context *devc;
309         uint64_t num_samples;
310         const char *slope;
311         int trigger_pos;
312         double pos;
313
314         (void)cg;
315         devc = sdi->priv;
316
317         if (sdi->status != SR_ST_ACTIVE)
318                 return SR_ERR_DEV_CLOSED;
319
320         switch (id) {
321         case SR_CONF_SAMPLERATE:
322                 // FIXME
323                 return mso_configure_rate(sdi, g_variant_get_uint64(data));
324                 ret = SR_OK;
325                 break;
326         case SR_CONF_LIMIT_SAMPLES:
327                 num_samples = g_variant_get_uint64(data);
328                 if (num_samples != 1024) {
329                         sr_err("Only 1024 samples are supported.");
330                         ret = SR_ERR_ARG;
331                 } else {
332                         devc->limit_samples = num_samples;
333                         sr_dbg("setting limit_samples to %i\n",
334                                num_samples);
335                         ret = SR_OK;
336                 }
337                 break;
338         case SR_CONF_CAPTURE_RATIO:
339                 ret = SR_OK;
340                 break;
341         case SR_CONF_TRIGGER_SLOPE:
342                 slope = g_variant_get_string(data, NULL);
343
344                 if (!slope || !(slope[0] == 'f' || slope[0] == 'r'))
345                         sr_err("Invalid trigger slope");
346                         ret = SR_ERR_ARG;
347                 } else {
348                         devc->trigger_slope = (slope[0] == 'r')
349                                 ? SLOPE_POSITIVE : SLOPE_NEGATIVE;
350                         ret = SR_OK;
351                 }
352                 break;
353         case SR_CONF_HORIZ_TRIGGERPOS:
354                 pos = g_variant_get_double(data);
355                 if (pos < 0 || pos > 255) {
356                         sr_err("Trigger position (%f) should be between 0 and 255.", pos);
357                         ret = SR_ERR_ARG;
358                 } else {
359                         trigger_pos = (int)pos;
360                         devc->trigger_holdoff[0] = trigger_pos & 0xff;
361                         ret = SR_OK;
362                 }
363                 break;
364         case SR_CONF_RLE:
365                 ret = SR_OK;
366                 break;
367         default:
368                 ret = SR_ERR_NA;
369                 break;
370         }
371
372         return ret;
373 }
374
375 static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi,
376                 const struct sr_channel_group *cg)
377 {
378         GVariant *gvar;
379         GVariantBuilder gvb;
380
381         (void)cg;
382         (void)sdi;
383
384         switch (key) {
385         case SR_CONF_DEVICE_OPTIONS:
386                 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
387                                 devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
388                 break;
389         case SR_CONF_SAMPLERATE:
390                 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
391                 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
392                                 ARRAY_SIZE(samplerates), sizeof(uint64_t));
393                 g_variant_builder_add(&gvb, "{sv}", "samplerate-steps", gvar);
394                 *data = g_variant_builder_end(&gvb);
395                 break;
396         case SR_CONF_TRIGGER_TYPE:
397                 *data = g_variant_new_string(TRIGGER_TYPE);
398                 break;
399         default:
400                 return SR_ERR_NA;
401         }
402
403         return SR_OK;
404 }
405
406 static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data)
407 {
408         struct dev_context *devc;
409         int ret = SR_ERR;
410
411         if (sdi->status != SR_ST_ACTIVE)
412                 return SR_ERR_DEV_CLOSED;
413
414         devc = sdi->priv;
415
416         if (mso_configure_channels(sdi) != SR_OK) {
417                 sr_err("Failed to configure channels.");
418                 return SR_ERR;
419         }
420
421         /* FIXME: No need to do full reconfigure every time */
422 //      ret = mso_reset_fsm(sdi);
423 //      if (ret != SR_OK)
424 //              return ret;
425
426         /* FIXME: ACDC Mode */
427         devc->ctlbase1 &= 0x7f;
428 //      devc->ctlbase1 |= devc->acdcmode;
429
430         ret = mso_configure_rate(sdi, devc->cur_rate);
431         if (ret != SR_OK)
432                 return ret;
433
434         /* set dac offset */
435         ret = mso_dac_out(sdi, devc->dac_offset);
436         if (ret != SR_OK)
437                 return ret;
438
439         ret = mso_configure_threshold_level(sdi);
440         if (ret != SR_OK)
441                 return ret;
442
443         ret = mso_configure_trigger(sdi);
444         if (ret != SR_OK)
445                 return ret;
446
447         /* END of config hardware part */
448         ret = mso_arm(sdi);
449         if (ret != SR_OK)
450                 return ret;
451
452         /* Start acquisition on the device. */
453         mso_check_trigger(devc->serial, &devc->trigger_state);
454         ret = mso_check_trigger(devc->serial, NULL);
455         if (ret != SR_OK)
456                 return ret;
457
458         /* Reset trigger state. */
459         devc->trigger_state = 0x00;
460
461         /* Send header packet to the session bus. */
462         std_session_send_df_header(cb_data, LOG_PREFIX);
463
464         /* Our first channel is analog, the other 8 are of type 'logic'. */
465         /* TODO. */
466
467         serial_source_add(sdi->session, devc->serial, G_IO_IN, -1,
468                         mso_receive_data, cb_data);
469
470         return SR_OK;
471 }
472
473 /* This stops acquisition on ALL devices, ignoring dev_index. */
474 static int dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
475 {
476         (void)cb_data;
477
478         stop_acquisition(sdi);
479
480         return SR_OK;
481 }
482
483 SR_PRIV struct sr_dev_driver link_mso19_driver_info = {
484         .name = "link-mso19",
485         .longname = "Link Instruments MSO-19",
486         .api_version = 1,
487         .init = init,
488         .cleanup = cleanup,
489         .scan = scan,
490         .dev_list = dev_list,
491         .dev_clear = dev_clear,
492         .config_get = config_get,
493         .config_set = config_set,
494         .config_list = config_list,
495         .dev_open = dev_open,
496         .dev_close = std_serial_dev_close,
497         .dev_acquisition_start = dev_acquisition_start,
498         .dev_acquisition_stop = dev_acquisition_stop,
499         .priv = NULL,
500 };