]> sigrok.org Git - libsigrok.git/blob - hardware/link-mso19/api.c
77faf08b79fd4ed2d4918f27b28a9a905e0619bd
[libsigrok.git] / hardware / link-mso19 / api.c
1 /*
2  * This file is part of the sigrok 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 int hwcaps[] = {
25         SR_CONF_LOGIC_ANALYZER,
26         SR_CONF_SAMPLERATE,
27         SR_CONF_TRIGGER_SLOPE,
28         SR_CONF_HORIZ_TRIGGERPOS,
29 //      SR_CONF_CAPTURE_RATIO,
30         SR_CONF_LIMIT_SAMPLES,
31 //      SR_CONF_RLE,
32         0,
33 };
34
35 /*
36  * Probes are numbered 0 to 7.
37  *
38  * See also: http://www.linkinstruments.com/images/mso19_1113.gif
39  */
40 SR_PRIV const char *mso19_probe_names[NUM_PROBES + 1] = {
41         "0", "1", "2", "3", "4", "5", "6", "7", NULL
42 };
43
44 /*supported samplerates */
45 static const struct sr_samplerates samplerates = {
46         SR_HZ(100),
47         SR_MHZ(200),
48         SR_HZ(100),
49         NULL,
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 static int hw_init(struct sr_context *sr_ctx)
56 {
57         struct drv_context *drvc;
58
59         if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
60                 sr_err("Driver context malloc failed.");
61                 return SR_ERR_MALLOC;
62         }
63
64         drvc->sr_ctx = sr_ctx;
65         di->priv = drvc;
66
67         return SR_OK;
68 }
69
70 static GSList *hw_scan(GSList *options)
71 {
72         int i;
73         GSList *devices = NULL;
74         const char *conn = NULL;
75         const char *serialcomm = NULL;
76         GSList *l;
77         struct sr_config *src;
78         struct udev *udev;
79
80         (void)options;
81
82         for (l = options; l; l = l->next) {
83                 src = l->data;
84                 switch (src->key) {
85                 case SR_CONF_CONN:
86                         conn = src->value;
87                         break;
88                 case SR_CONF_SERIALCOMM:
89                         serialcomm = src->value;
90                         break;
91                 }
92         }
93         if (!conn)
94                 conn = SERIALCONN;
95         if (serialcomm == NULL)
96                 serialcomm = SERIALCOMM;
97
98         udev = udev_new();
99         if (!udev) {
100                 sr_err("Failed to initialize udev.");
101         }
102
103         struct udev_enumerate *enumerate = udev_enumerate_new(udev);
104         udev_enumerate_add_match_subsystem(enumerate, "usb-serial");
105         udev_enumerate_scan_devices(enumerate);
106         struct udev_list_entry *devs = udev_enumerate_get_list_entry(enumerate);
107         struct udev_list_entry *dev_list_entry;
108         for (dev_list_entry = devs;
109              dev_list_entry != NULL;
110              dev_list_entry = udev_list_entry_get_next(dev_list_entry)) {
111                 const char *syspath = udev_list_entry_get_name(dev_list_entry);
112                 struct udev_device *dev =
113                     udev_device_new_from_syspath(udev, syspath);
114                 const char *sysname = udev_device_get_sysname(dev);
115                 struct udev_device *parent =
116                     udev_device_get_parent_with_subsystem_devtype(dev, "usb",
117                                                                   "usb_device");
118
119                 if (!parent) {
120                         sr_err("Unable to find parent usb device for %s",
121                                sysname);
122                         continue;
123                 }
124
125                 const char *idVendor =
126                     udev_device_get_sysattr_value(parent, "idVendor");
127                 const char *idProduct =
128                     udev_device_get_sysattr_value(parent, "idProduct");
129                 if (strcmp(USB_VENDOR, idVendor)
130                     || strcmp(USB_PRODUCT, idProduct))
131                         continue;
132
133                 const char *iSerial =
134                     udev_device_get_sysattr_value(parent, "serial");
135                 const char *iProduct =
136                     udev_device_get_sysattr_value(parent, "product");
137
138                 char path[32];
139                 snprintf(path, sizeof(path), "/dev/%s", sysname);
140                 conn = path;
141
142                 size_t s = strcspn(iProduct, " ");
143                 char product[32];
144                 char manufacturer[32];
145                 if (s > sizeof(product) ||
146                     strlen(iProduct) - s > sizeof(manufacturer)) {
147                         sr_err("Could not parse iProduct: %s.", iProduct);
148                         continue;
149                 }
150                 strncpy(product, iProduct, s);
151                 product[s] = 0;
152                 strcpy(manufacturer, iProduct + s + 1);
153
154                 //Create the device context and set its params
155                 struct dev_context *devc;
156                 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
157                         sr_err("Device context malloc failed.");
158                         return devices;
159                 }
160
161                 if (mso_parse_serial(iSerial, iProduct, devc) != SR_OK) {
162                         sr_err("Invalid iSerial: %s.", iSerial);
163                         g_free(devc);
164                         return devices;
165                 }
166
167                 char hwrev[32];
168                 sprintf(hwrev, "r%d", devc->hwrev);
169                 devc->ctlbase1 = 0;
170                 devc->protocol_trigger.spimode = 0;
171                 for (i = 0; i < 4; i++) {
172                         devc->protocol_trigger.word[i] = 0;
173                         devc->protocol_trigger.mask[i] = 0xff;
174                 }
175
176                 if (!(devc->serial = sr_serial_dev_inst_new(conn, serialcomm))) {
177                         g_free(devc);
178                         return devices;
179                 }
180
181                 struct sr_dev_inst *sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
182                                                 manufacturer, product, hwrev);
183
184                 if (!sdi) {
185                         sr_err("Unable to create device instance for %s",
186                                sysname);
187                         sr_dev_inst_free(sdi);
188                         g_free(devc);
189                         return devices;
190                 }
191
192                 sdi->driver = di;
193                 sdi->priv = devc;
194
195                 for (i = 0; i < NUM_PROBES; i++) {
196                         struct sr_probe *probe;
197                         if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
198                                                    mso19_probe_names[i])))
199                                 return 0;
200                         sdi->probes = g_slist_append(sdi->probes, probe);
201                 }
202
203                 //Add the driver
204                 struct drv_context *drvc = di->priv;
205                 drvc->instances = g_slist_append(drvc->instances, sdi);
206                 devices = g_slist_append(devices, sdi);
207         }
208
209         return devices;
210 }
211
212 static GSList *hw_dev_list(void)
213 {
214         struct drv_context *drvc;
215
216         drvc = di->priv;
217
218         return drvc->instances;
219 }
220
221 static int hw_dev_open(struct sr_dev_inst *sdi)
222 {
223         int ret;
224         struct dev_context *devc;
225
226         devc = sdi->priv;
227
228         if (serial_open(devc->serial, SERIAL_RDWR) != SR_OK)
229                 return SR_ERR;
230
231         sdi->status = SR_ST_ACTIVE;
232
233         /* FIXME: discard serial buffer */
234         mso_check_trigger(devc->serial, &devc->trigger_state);
235         sr_dbg("Trigger state: 0x%x.", devc->trigger_state);
236
237         ret = mso_reset_adc(sdi);
238         if (ret != SR_OK)
239                 return ret;
240
241         mso_check_trigger(devc->serial, &devc->trigger_state);
242         sr_dbg("Trigger state: 0x%x.", devc->trigger_state);
243
244         //    ret = mso_reset_fsm(sdi);
245         //    if (ret != SR_OK)
246         //            return ret;
247         //    return SR_ERR;
248
249         return SR_OK;
250 }
251
252 static int hw_dev_close(struct sr_dev_inst *sdi)
253 {
254         struct dev_context *devc;
255
256         devc = sdi->priv;
257
258         if (devc->serial && devc->serial->fd != -1) {
259                 serial_close(devc->serial);
260                 sdi->status = SR_ST_INACTIVE;
261         }
262
263         return SR_OK;
264 }
265
266 static int hw_cleanup(void)
267 {
268         GSList *l;
269         struct sr_dev_inst *sdi;
270         struct drv_context *drvc;
271         struct dev_context *devc;
272         int ret = SR_OK;
273
274         if (!(drvc = di->priv))
275                 return SR_OK;
276
277         /* Properly close and free all devices. */
278         for (l = drvc->instances; l; l = l->next) {
279                 if (!(sdi = l->data)) {
280                         /* Log error, but continue cleaning up the rest. */
281                         sr_err("%s: sdi was NULL, continuing", __func__);
282                         ret = SR_ERR_BUG;
283                         continue;
284                 }
285                 if (!(devc = sdi->priv)) {
286                         /* Log error, but continue cleaning up the rest. */
287                         sr_err("%s: sdi->priv was NULL, continuing", __func__);
288                         ret = SR_ERR_BUG;
289                         continue;
290                 }
291                 hw_dev_close(sdi);
292                 sr_serial_dev_inst_free(devc->serial);
293                 sr_dev_inst_free(sdi);
294         }
295         g_slist_free(drvc->instances);
296         drvc->instances = NULL;
297
298         return ret;
299 }
300
301 static int config_get(int id, const void **data, const struct sr_dev_inst *sdi)
302 {
303         struct dev_context *devc;
304
305         switch (id) {
306         case SR_DI_HWCAPS:
307                 *data = hwcaps;
308                 break;
309         case SR_CONF_SAMPLERATE:
310                 if (sdi) {
311                         devc = sdi->priv;
312                         *data = &devc->cur_rate;
313                 } else
314                         return SR_ERR;
315                 break;
316         default:
317                 return SR_ERR_ARG;
318         }
319
320         return SR_OK;
321 }
322
323 static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
324 {
325         int ret;
326         struct dev_context *devc;
327         uint64_t num_samples, slope;
328         int trigger_pos;
329         float pos;
330
331         devc = sdi->priv;
332
333         if (sdi->status != SR_ST_ACTIVE)
334                 return SR_ERR;
335
336         switch (id) {
337         case SR_CONF_SAMPLERATE:
338                 // FIXME
339                 return mso_configure_rate(sdi, *(const uint64_t *)value);
340                 ret = SR_OK;
341                 break;
342         case SR_CONF_LIMIT_SAMPLES:
343                 num_samples = *(uint64_t *)value;
344                 if (num_samples < 1024) {
345                         sr_err("minimum of 1024 samples required");
346                         ret = SR_ERR_ARG;
347                 } else {
348                         devc->limit_samples = num_samples;
349                         sr_dbg("setting limit_samples to %i\n",
350                                num_samples);
351                         ret = SR_OK;
352                 }
353                 break;
354         case SR_CONF_CAPTURE_RATIO:
355                 ret = SR_OK;
356                 break;
357         case SR_CONF_TRIGGER_SLOPE:
358                 slope = *(uint64_t *)value;
359                 if (slope != SLOPE_NEGATIVE && slope != SLOPE_POSITIVE) {
360                         sr_err("Invalid trigger slope");
361                         ret = SR_ERR_ARG;
362                 } else {
363                         devc->trigger_slope = slope;
364                         ret = SR_OK;
365                 }
366                 break;
367         case SR_CONF_HORIZ_TRIGGERPOS:
368                 pos = *(float *)value;
369                 if (pos < 0 || pos > 255) {
370                         sr_err("Trigger position (%f) should be between 0 and 255.", pos);
371                         ret = SR_ERR_ARG;
372                 } else {
373                         trigger_pos = (int)pos;
374                         devc->trigger_holdoff[0] = trigger_pos & 0xff;
375                         ret = SR_OK;
376                 }
377                 break;
378         case SR_CONF_RLE:
379                 ret = SR_OK;
380                 break;
381         default:
382                 ret = SR_ERR;
383                 break;
384         }
385
386         return ret;
387 }
388
389 static int config_list(int key, const void **data, const struct sr_dev_inst *sdi)
390 {
391
392         (void)sdi;
393
394         switch (key) {
395         case SR_CONF_SAMPLERATE:
396                 *data = &samplerates;
397                 break;
398         case SR_CONF_TRIGGER_TYPE:
399                 *data = (char *)TRIGGER_TYPE;
400                 break;
401         default:
402                 return SR_ERR_ARG;
403         }
404
405         return SR_OK;
406 }
407
408 static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
409                                     void *cb_data)
410 {
411         struct sr_datafeed_packet *packet;
412         struct sr_datafeed_header *header;
413         struct dev_context *devc;
414         int ret = SR_ERR;
415
416         devc = sdi->priv;
417
418         if (sdi->status != SR_ST_ACTIVE)
419                 return SR_ERR;
420
421         if (mso_configure_probes(sdi) != SR_OK) {
422                 sr_err("Failed to configure probes.");
423                 return SR_ERR;
424         }
425
426         /* FIXME: No need to do full reconfigure every time */
427 //      ret = mso_reset_fsm(sdi);
428 //      if (ret != SR_OK)
429 //              return ret;
430
431         /* FIXME: ACDC Mode */
432         devc->ctlbase1 &= 0x7f;
433 //      devc->ctlbase1 |= devc->acdcmode;
434
435         ret = mso_configure_rate(sdi, devc->cur_rate);
436         if (ret != SR_OK)
437                 return ret;
438
439         /* set dac offset */
440         ret = mso_dac_out(sdi, devc->dac_offset);
441         if (ret != SR_OK)
442                 return ret;
443
444         ret = mso_configure_threshold_level(sdi);
445         if (ret != SR_OK)
446                 return ret;
447
448         ret = mso_configure_trigger(sdi);
449         if (ret != SR_OK)
450                 return ret;
451
452         /* END of config hardware part */
453         ret = mso_arm(sdi);
454         if (ret != SR_OK)
455                 return ret;
456
457         /* Start acquisition on the device. */
458         mso_check_trigger(devc->serial, &devc->trigger_state);
459         ret = mso_check_trigger(devc->serial, NULL);
460         if (ret != SR_OK)
461                 return ret;
462
463         sr_source_add(devc->serial->fd, G_IO_IN, -1, mso_receive_data, cb_data);
464
465         if (!(packet = g_try_malloc(sizeof(struct sr_datafeed_packet)))) {
466                 sr_err("Datafeed packet malloc failed.");
467                 return SR_ERR_MALLOC;
468         }
469
470         if (!(header = g_try_malloc(sizeof(struct sr_datafeed_header)))) {
471                 sr_err("Datafeed header malloc failed.");
472                 g_free(packet);
473                 return SR_ERR_MALLOC;
474         }
475
476         packet->type = SR_DF_HEADER;
477         packet->payload = (unsigned char *)header;
478         header->feed_version = 1;
479         gettimeofday(&header->starttime, NULL);
480         sr_session_send(cb_data, packet);
481
482         g_free(header);
483         g_free(packet);
484
485         return SR_OK;
486 }
487
488 /* This stops acquisition on ALL devices, ignoring dev_index. */
489 static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
490 {
491         (void)cb_data;
492
493         stop_acquisition(sdi);
494
495         return SR_OK;
496 }
497
498 SR_PRIV struct sr_dev_driver link_mso19_driver_info = {
499         .name = "link-mso19",
500         .longname = "Link Instruments MSO-19",
501         .api_version = 1,
502         .init = hw_init,
503         .cleanup = hw_cleanup,
504         .scan = hw_scan,
505         .dev_list = hw_dev_list,
506         .dev_clear = hw_cleanup,
507         .config_get = config_get,
508         .config_set = config_set,
509         .config_list = config_list,
510         .dev_open = hw_dev_open,
511         .dev_close = hw_dev_close,
512         .dev_acquisition_start = hw_dev_acquisition_start,
513         .dev_acquisition_stop = hw_dev_acquisition_stop,
514         .priv = NULL,
515 };