]> sigrok.org Git - libsigrok.git/blobdiff - hardware/link-mso19/protocol.c
build: Portability fixes.
[libsigrok.git] / hardware / link-mso19 / protocol.c
index b4dcfbf97cd0fde58fb15bb7f0046a4308004e1b..5f7aa719876b11c9bd0eab0096f90e5a8d9102f2 100644 (file)
@@ -1,7 +1,9 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the libsigrok project.
  *
- * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
+ * Copyright (C) 2011 Daniel Ribeiro <drwyrm@gmail.com>
+ * Copyright (C) 2012 Renato Caldas <rmsc@fe.up.pt>
+ * Copyright (C) 2013 Lior Elazary <lelazary@yahoo.com>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  */
 
 #include "protocol.h"
-#include <arpa/inet.h>
+
+/* serial protocol */
+#define mso_trans(a, v) \
+       (((v) & 0x3f) | (((v) & 0xc0) << 6) | (((a) & 0xf) << 8) | \
+       ((~(v) & 0x20) << 1) | ((~(v) & 0x80) << 7))
+
+static const char mso_head[] = { 0x40, 0x4c, 0x44, 0x53, 0x7e };
+static const char mso_foot[] = { 0x7e };
 
 extern SR_PRIV struct sr_dev_driver link_mso19_driver_info;
 static struct sr_dev_driver *di = &link_mso19_driver_info;
 
 SR_PRIV int mso_send_control_message(struct sr_serial_dev_inst *serial,
-    uint16_t payload[], int n)
+                                    uint16_t payload[], int n)
 {
        int i, w, ret, s = n * 2 + sizeof(mso_head) + sizeof(mso_foot);
        char *p, *buf;
@@ -45,7 +54,7 @@ SR_PRIV int mso_send_control_message(struct sr_serial_dev_inst *serial,
        p += sizeof(mso_head);
 
        for (i = 0; i < n; i++) {
-               *(uint16_t *) p = htons(payload[i]);
+               *(uint16_t *) p = g_htons(payload[i]);
                p += 2;
        }
        memcpy(p, mso_foot, sizeof(mso_foot));
@@ -66,62 +75,61 @@ ret:
        return ret;
 }
 
-
-SR_PRIV int mso_configure_trigger(struct sr_dev_inst *sdi)
+SR_PRIV int mso_configure_trigger(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc = sdi->priv;
        uint16_t threshold_value = mso_calc_raw_from_mv(devc);
 
+       threshold_value = 0x153C;
+       uint8_t trigger_config = 0;
 
-  threshold_value = 0x153C;
-  uint8_t trigger_config = 0; 
-
-  if (devc->trigger_slope)
-    trigger_config |= 0x04; //Trigger on falling edge
+       if (devc->trigger_slope)
+               trigger_config |= 0x04; //Trigger on falling edge
 
        switch (devc->trigger_outsrc) {
        case 1:
-               trigger_config |= 0x00; //Trigger pulse output
+               trigger_config |= 0x00; //Trigger pulse output
                break;
        case 2:
-               trigger_config |= 0x08; //PWM DAC from the pattern generator buffer
+               trigger_config |= 0x08; //PWM DAC from the pattern generator buffer
                break;
        case 3:
-               trigger_config |= 0x18; //White noise
+               trigger_config |= 0x18; //White noise
                break;
        }
 
        switch (devc->trigger_chan) {
-    case 0:
-      trigger_config |= 0x00; //DSO level trigger //b00000000
-      break;
-    case 1:
-      trigger_config |= 0x20; //DSO level trigger & width < trigger_width
-      break;
-    case 2:
-      trigger_config |= 0x40; //DSO level trigger & width >= trigger_width 
-      break;
-    case 3:
-      trigger_config |= 0x60; //LA combination trigger
-      break;
-  }
-
-  //Last bit of trigger config reg 4 needs to be 1 for trigger enable,
-  //otherwise the trigger is not enabled
-  if (devc->use_trigger)
-    trigger_config |= 0x80;
+       case 0:
+               trigger_config |= 0x00; //DSO level trigger //b00000000
+               break;
+       case 1:
+               trigger_config |= 0x20; //DSO level trigger & width < trigger_width
+               break;
+       case 2:
+               trigger_config |= 0x40; //DSO level trigger & width >= trigger_width 
+               break;
+       case 3:
+               trigger_config |= 0x60; //LA combination trigger
+               break;
+       }
+
+       //Last bit of trigger config reg 4 needs to be 1 for trigger enable,
+       //otherwise the trigger is not enabled
+       if (devc->use_trigger)
+               trigger_config |= 0x80;
 
        uint16_t ops[18];
        ops[0] = mso_trans(3, threshold_value & 0xff);
-  //The trigger_config also holds the 2 MSB bits from the threshold value
-       ops[1] = mso_trans(4, trigger_config | (threshold_value >> 8) & 0x03);
+       //The trigger_config also holds the 2 MSB bits from the threshold value
+       ops[1] = mso_trans(4, trigger_config | ((threshold_value >> 8) & 0x03));
        ops[2] = mso_trans(5, devc->la_trigger);
        ops[3] = mso_trans(6, devc->la_trigger_mask);
        ops[4] = mso_trans(7, devc->trigger_holdoff[0]);
        ops[5] = mso_trans(8, devc->trigger_holdoff[1]);
 
        ops[6] = mso_trans(11,
-                       devc->dso_trigger_width / SR_HZ_TO_NS(devc->cur_rate));
+                          devc->dso_trigger_width /
+                          SR_HZ_TO_NS(devc->cur_rate));
 
        /* Select the SPI/I2C trigger config bank */
        ops[7] = mso_trans(REG_CTL2, (devc->ctlbase2 | BITS_CTL2_BANK(2)));
@@ -141,7 +149,7 @@ SR_PRIV int mso_configure_trigger(struct sr_dev_inst *sdi)
        return mso_send_control_message(devc->serial, ARRAY_AND_SIZE(ops));
 }
 
-SR_PRIV int mso_configure_threshold_level(struct sr_dev_inst *sdi)
+SR_PRIV int mso_configure_threshold_level(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc = sdi->priv;
 
@@ -157,7 +165,7 @@ SR_PRIV int mso_read_buffer(struct sr_dev_inst *sdi)
        return mso_send_control_message(devc->serial, ARRAY_AND_SIZE(ops));
 }
 
-SR_PRIV int mso_arm(struct sr_dev_inst *sdi)
+SR_PRIV int mso_arm(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc = sdi->priv;
        uint16_t ops[] = {
@@ -182,7 +190,7 @@ SR_PRIV int mso_force_capture(struct sr_dev_inst *sdi)
        return mso_send_control_message(devc->serial, ARRAY_AND_SIZE(ops));
 }
 
-SR_PRIV int mso_dac_out(struct sr_dev_inst *sdi, uint16_t val)
+SR_PRIV int mso_dac_out(const struct sr_dev_inst *sdi, uint16_t val)
 {
        struct dev_context *devc = sdi->priv;
        uint16_t ops[] = {
@@ -195,31 +203,30 @@ SR_PRIV int mso_dac_out(struct sr_dev_inst *sdi, uint16_t val)
        return mso_send_control_message(devc->serial, ARRAY_AND_SIZE(ops));
 }
 
-SR_PRIV inline uint16_t mso_calc_raw_from_mv(struct dev_context *devc)
+SR_PRIV inline uint16_t mso_calc_raw_from_mv(struct dev_context * devc)
 {
        return (uint16_t) (0x200 -
-                       ((devc->dso_trigger_voltage / devc->dso_probe_attn) /
-                        devc->vbit));
+                          ((devc->dso_trigger_voltage / devc->dso_probe_attn) /
+                           devc->vbit));
 }
 
-
 SR_PRIV int mso_parse_serial(const char *iSerial, const char *iProduct,
-    struct dev_context *devc)
+                            struct dev_context *devc)
 {
        unsigned int u1, u2, u3, u4, u5, u6;
 
-  iProduct = iProduct;
-  /* FIXME: This code is in the original app, but I think its
-   * used only for the GUI */
-  /*   if (strstr(iProduct, "REV_02") || strstr(iProduct, "REV_03"))
-      devc->num_sample_rates = 0x16;
-      else
-      devc->num_sample_rates = 0x10; */
-  
+       (void)iProduct;
+
+       /* FIXME: This code is in the original app, but I think its
+        * used only for the GUI */
+       /*    if (strstr(iProduct, "REV_02") || strstr(iProduct, "REV_03"))
+          devc->num_sample_rates = 0x16;
+          else
+          devc->num_sample_rates = 0x10; */
 
        /* parse iSerial */
        if (iSerial[0] != '4' || sscanf(iSerial, "%5u%3u%3u%1u%1u%6u",
-                               &u1, &u2, &u3, &u4, &u5, &u6) != 6)
+                                       &u1, &u2, &u3, &u4, &u5, &u6) != 6)
                return SR_ERR;
        devc->hwmodel = u4;
        devc->hwrev = u5;
@@ -287,7 +294,7 @@ SR_PRIV void stop_acquisition(const struct sr_dev_inst *sdi)
        struct dev_context *devc;
 
        devc = sdi->priv;
-       sr_source_remove(devc->serial->fd);
+       serial_source_remove(sdi->session, devc->serial);
 
        /* Terminate session */
        packet.type = SR_DF_END;
@@ -305,7 +312,7 @@ SR_PRIV int mso_clkrate_out(struct sr_serial_dev_inst *serial, uint16_t val)
        return mso_send_control_message(serial, ARRAY_AND_SIZE(ops));
 }
 
-SR_PRIV int mso_configure_rate(struct sr_dev_inst *sdi, uint32_t rate)
+SR_PRIV int mso_configure_rate(const struct sr_dev_inst *sdi, uint32_t rate)
 {
        struct dev_context *devc = sdi->priv;
        unsigned int i;
@@ -321,16 +328,12 @@ SR_PRIV int mso_configure_rate(struct sr_dev_inst *sdi, uint32_t rate)
                }
        }
 
-  if (ret != SR_OK)
+       if (ret != SR_OK)
                sr_err("Unsupported rate.");
 
        return ret;
 }
 
-
-
-
-
 SR_PRIV int mso_check_trigger(struct sr_serial_dev_inst *serial, uint8_t *info)
 {
        uint16_t ops[] = { mso_trans(REG_TRIGGER, 0) };
@@ -341,11 +344,11 @@ SR_PRIV int mso_check_trigger(struct sr_serial_dev_inst *serial, uint8_t *info)
        if (info == NULL || ret != SR_OK)
                return ret;
 
-
-  uint8_t buf = 0;
-       if (serial_read(serial, &buf, 1) != 1) /* FIXME: Need timeout */
+       uint8_t buf = 0;
+       if (serial_read(serial, &buf, 1) != 1)  /* FIXME: Need timeout */
                ret = SR_ERR;
-       *info = buf;
+       if (!info)
+               *info = buf;
 
        sr_dbg("Trigger state is: 0x%x.", *info);
        return ret;
@@ -353,7 +356,6 @@ SR_PRIV int mso_check_trigger(struct sr_serial_dev_inst *serial, uint8_t *info)
 
 SR_PRIV int mso_receive_data(int fd, int revents, void *cb_data)
 {
-
        struct sr_datafeed_packet packet;
        struct sr_datafeed_logic logic;
        struct sr_dev_inst *sdi;
@@ -382,21 +384,19 @@ SR_PRIV int mso_receive_data(int fd, int revents, void *cb_data)
 
        if (s <= 0)
                return FALSE;
-  
-  /* Check if we triggered, then send a command that we are ready
-   * to read the data */
-  if (devc->trigger_state != MSO_TRIGGER_DATAREADY) {
-    devc->trigger_state = in[0];
-    //printf("Got %c for trigger \n", in[0]);
-    if (devc->trigger_state == MSO_TRIGGER_DATAREADY) {
-      //printf("Trigger is ready %c\n", MSO_TRIGGER_DATAREADY);
-      mso_read_buffer(sdi);
-      devc->buffer_n = 0;
-    } else {
-      mso_check_trigger(devc->serial, NULL);
-    }
-    return TRUE;
-  }
+
+       /* Check if we triggered, then send a command that we are ready
+        * to read the data */
+       if (devc->trigger_state != MSO_TRIGGER_DATAREADY) {
+               devc->trigger_state = in[0];
+               if (devc->trigger_state == MSO_TRIGGER_DATAREADY) {
+                       mso_read_buffer(sdi);
+                       devc->buffer_n = 0;
+               } else {
+                       mso_check_trigger(devc->serial, NULL);
+               }
+               return TRUE;
+       }
 
        /* the hardware always dumps 1024 samples, 24bits each */
        if (devc->buffer_n < 3072) {
@@ -406,16 +406,16 @@ SR_PRIV int mso_receive_data(int fd, int revents, void *cb_data)
        if (devc->buffer_n < 3072)
                return TRUE;
 
-  printf("Got samples, write out the data\n");
        /* do the conversion */
        uint8_t logic_out[1024];
        double analog_out[1024];
        for (i = 0; i < 1024; i++) {
                /* FIXME: Need to do conversion to mV */
                analog_out[i] = (devc->buffer[i * 3] & 0x3f) |
-                       ((devc->buffer[i * 3 + 1] & 0xf) << 6);
+                   ((devc->buffer[i * 3 + 1] & 0xf) << 6);
+               (void)analog_out;
                logic_out[i] = ((devc->buffer[i * 3 + 1] & 0x30) >> 4) |
-                       ((devc->buffer[i * 3 + 2] & 0x3f) << 2);
+                   ((devc->buffer[i * 3 + 2] & 0x3f) << 2);
        }
 
        packet.type = SR_DF_LOGIC;
@@ -423,70 +423,52 @@ SR_PRIV int mso_receive_data(int fd, int revents, void *cb_data)
        logic.length = 1024;
        logic.unitsize = 1;
        logic.data = logic_out;
-  printf("Send Data\n");
        sr_session_send(cb_data, &packet);
 
-       // Dont bother fixing this yet, keep it "old style"
-       /*
-       packet.type = SR_DF_ANALOG;
-       packet.length = 1024;
-       packet.unitsize = sizeof(double);
-       packet.payload = analog_out;
-       sr_session_send(ctx->session_dev_id, &packet);
-       */
-
-  //printf("Send END\n");
-       //packet.type = SR_DF_END;
-       //sr_session_send(devc->session_dev_id, &packet);
-
- // serial_flush(devc->serial);
- // abort_acquisition(sdi);
- // serial_close(devc->serial);
-
-  return FALSE;
-  printf("REturn \n");
-  return TRUE;
+       devc->num_samples += 1024;
+
+       if (devc->limit_samples && devc->num_samples >= devc->limit_samples) {
+               sr_info("Requested number of samples reached.");
+               sdi->driver->dev_acquisition_stop(sdi, cb_data);
+       }
+
+       return TRUE;
 }
 
-SR_PRIV int mso_configure_probes(const struct sr_dev_inst *sdi)
+SR_PRIV int mso_configure_channels(const struct sr_dev_inst *sdi)
 {
        struct dev_context *devc;
-       struct sr_probe *probe;
+       struct sr_channel *ch;
        GSList *l;
-       int probe_bit, stage, i;
        char *tc;
 
-  
        devc = sdi->priv;
 
-  devc->la_trigger_mask = 0xFF; //the mask for the LA_TRIGGER (bits set to 0 matter, those set to 1 are ignored).
-  devc->la_trigger = 0x00;  //The value of the LA byte that generates a trigger event (in that mode).
-  devc->dso_trigger_voltage = 3;
-  devc->dso_probe_attn = 1;
-  devc->trigger_outsrc = 0;
-  devc->trigger_chan = 3; //LA combination trigger
-  devc->use_trigger = FALSE;
-
-       for (l = sdi->probes; l; l = l->next) {
-               probe = (struct sr_probe *)l->data;
-               if (probe->enabled == FALSE)
+       devc->la_trigger_mask = 0xFF;   //the mask for the LA_TRIGGER (bits set to 0 matter, those set to 1 are ignored).
+       devc->la_trigger = 0x00;        //The value of the LA byte that generates a trigger event (in that mode).
+       devc->dso_trigger_voltage = 3;
+       devc->dso_probe_attn = 1;
+       devc->trigger_outsrc = 0;
+       devc->trigger_chan = 3; //LA combination trigger
+       devc->use_trigger = FALSE;
+
+       for (l = sdi->channels; l; l = l->next) {
+               ch = (struct sr_channel *)l->data;
+               if (ch->enabled == FALSE)
                        continue;
 
-               int probe_bit = 1 << (probe->index);
-               if (!(probe->trigger))
+               int channel_bit = 1 << (ch->index);
+               if (!(ch->trigger))
                        continue;
 
-    devc->use_trigger = TRUE;
+               devc->use_trigger = TRUE;
                //Configure trigger mask and value.
-               for (tc = probe->trigger; *tc; tc++) {
-                       devc->la_trigger_mask &= ~probe_bit;
-      if (*tc == '1')
-        devc->la_trigger |= probe_bit;
-    }
-  }
+               for (tc = ch->trigger; *tc; tc++) {
+                       devc->la_trigger_mask &= ~channel_bit;
+                       if (*tc == '1')
+                               devc->la_trigger |= channel_bit;
+               }
+       }
 
        return SR_OK;
 }
-
-
-