]> sigrok.org Git - libsigrok.git/blobdiff - hwdriver.c
Unify all SR_HWOPT_* and SR_HWCAP_* enums.
[libsigrok.git] / hwdriver.c
index bee5c022b22c2c291d17fa085cb3f11192046957..adbab4e9f258ce33939a60ad5add054178273625 100644 (file)
  * @{
  */
 
-/* Driver scanning options. */
-static struct sr_hwcap_option sr_drvopts[] = {
-       {SR_HWOPT_MODEL, SR_T_KEYVALUE, "Model", "model"},
-       {SR_HWOPT_CONN, SR_T_CHAR, "Connection", "conn"},
-       {SR_HWOPT_SERIALCOMM, SR_T_CHAR, "Serial communication", "serialcomm"},
-       {0, 0, NULL, NULL},
-};
-
-/* Device instance options. */
-static struct sr_hwcap_option sr_devopts[] = {
-       {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
-       {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
-       {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "pattern"},
-       {SR_HWCAP_RLE, SR_T_BOOL, "Run Length Encoding", "rle"},
-       {SR_HWCAP_TRIGGER_SLOPE, SR_T_UINT64, "Trigger slope", "triggerslope"},
-       {SR_HWCAP_TRIGGER_SOURCE, SR_T_CHAR, "Trigger source", "triggersource"},
-       {SR_HWCAP_HORIZ_TRIGGERPOS, SR_T_FLOAT, "Horizontal trigger position",
-                       "horiz_triggerpos"},
-       {SR_HWCAP_BUFFERSIZE, SR_T_UINT64, "Buffer size", "buffersize"},
-       {SR_HWCAP_TIMEBASE, SR_T_RATIONAL_PERIOD, "Time base", "timebase"},
-       {SR_HWCAP_FILTER, SR_T_CHAR, "Filter targets", "filter"},
-       {SR_HWCAP_VDIV, SR_T_RATIONAL_VOLT, "Volts/div", "vdiv"},
-       {SR_HWCAP_COUPLING, SR_T_CHAR, "Coupling", "coupling"},
-       {0, 0, NULL, NULL},
+static struct sr_config_info sr_config_info_data[] = {
+       {SR_HWOPT_CONN, SR_T_CHAR, "conn",
+               "Connection", NULL},
+       {SR_HWOPT_SERIALCOMM, SR_T_CHAR, "serialcomm",
+               "Serial communication", NULL},
+       {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "samplerate",
+               "Sample rate", NULL},
+       {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "captureratio",
+               "Pre-trigger capture ratio", NULL},
+       {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "pattern",
+               "Pattern generator mode", NULL},
+       {SR_HWCAP_RLE, SR_T_BOOL, "rle",
+               "Run Length Encoding", NULL},
+       {SR_HWCAP_TRIGGER_SLOPE, SR_T_UINT64, "triggerslope",
+               "Trigger slope", NULL},
+       {SR_HWCAP_TRIGGER_SOURCE, SR_T_CHAR, "triggersource",
+               "Trigger source", NULL},
+       {SR_HWCAP_HORIZ_TRIGGERPOS, SR_T_FLOAT, "horiz_triggerpos",
+               "Horizontal trigger position", NULL},
+       {SR_HWCAP_BUFFERSIZE, SR_T_UINT64, "buffersize",
+               "Buffer size", NULL},
+       {SR_HWCAP_TIMEBASE, SR_T_RATIONAL_PERIOD, "timebase",
+               "Time base", NULL},
+       {SR_HWCAP_FILTER, SR_T_CHAR, "filter",
+               "Filter targets", NULL},
+       {SR_HWCAP_VDIV, SR_T_RATIONAL_VOLT, "vdiv",
+               "Volts/div", NULL},
+       {SR_HWCAP_COUPLING, SR_T_CHAR, "coupling",
+               "Coupling", NULL},
+       {0, 0, NULL, NULL, NULL},
 };
 
 /** @cond PRIVATE */
@@ -83,6 +89,9 @@ extern SR_PRIV struct sr_dev_driver nexus_osciprime_driver_info;
 #ifdef HAVE_LA_OLS
 extern SR_PRIV struct sr_dev_driver ols_driver_info;
 #endif
+#ifdef HAVE_HW_RIGOL_DS1XX2
+extern SR_PRIV struct sr_dev_driver rigol_ds1xx2_driver_info;
+#endif
 #ifdef HAVE_HW_TONDAJ_SL_814
 extern SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info;
 #endif
@@ -154,6 +163,9 @@ static struct sr_dev_driver *drivers_list[] = {
 #ifdef HAVE_LA_OLS
        &ols_driver_info,
 #endif
+#ifdef HAVE_HW_RIGOL_DS1XX2
+       &rigol_ds1xx2_driver_info,
+#endif
 #ifdef HAVE_HW_TONDAJ_SL_814
        &tondaj_sl_814_driver_info,
 #endif
@@ -279,6 +291,18 @@ SR_PRIV void sr_hw_cleanup_all(void)
        }
 }
 
+SR_PRIV struct sr_config *sr_config_make(int key, const void *value)
+{
+       struct sr_config *src;
+
+       if (!(src = g_try_malloc(sizeof(struct sr_config))))
+               return NULL;
+       src->key = key;
+       src->value = value;
+
+       return src;
+}
+
 /**
  * Returns information about the given driver or device instance.
  *
@@ -337,80 +361,40 @@ SR_API gboolean sr_driver_hwcap_exists(struct sr_dev_driver *driver, int hwcap)
 }
 
 /**
- * Get information about a hardware driver option.
- *
- * @param opt The option to get.
- *
- * @return A pointer to a struct sr_hwcap_option, or NULL if the option
- *         was not found.
- */
-SR_API const struct sr_hwcap_option *sr_drvopt_get(int opt)
-{
-       int i;
-
-       for (i = 0; sr_drvopts[i].hwcap; i++) {
-               if (sr_drvopts[i].hwcap == opt)
-                       return &sr_drvopts[i];
-       }
-
-       return NULL;
-}
-
-/**
- * Get information about a hardware driver option, by name.
- *
- * @param optname The name of the option to get.
- *
- * @return A pointer to a struct sr_hwcap_option, or NULL if the option
- *         was not found.
- */
-SR_API const struct sr_hwcap_option *sr_drvopt_name_get(const char *optname)
-{
-       int i;
-
-       for (i = 0; sr_drvopts[i].hwcap; i++) {
-               if (!strcmp(sr_drvopts[i].shortname, optname))
-                       return &sr_drvopts[i];
-       }
-
-       return NULL;
-}
-
-/**
- * Get information about a device option.
+ * Get information about an sr_config key.
  *
- * @param opt The option to get.
+ * @param opt The sr_config key.
  *
- * @return A pointer to a struct sr_hwcap_option, or NULL if the option
+ * @return A pointer to a struct sr_config_info, or NULL if the key
  *         was not found.
  */
-SR_API const struct sr_hwcap_option *sr_devopt_get(int opt)
+SR_API const struct sr_config_info *sr_config_info_get(int key)
 {
        int i;
 
-       for (i = 0; sr_devopts[i].hwcap; i++) {
-               if (sr_devopts[i].hwcap == opt)
-                       return &sr_devopts[i];
+       for (i = 0; sr_config_info_data[i].key; i++) {
+               if (sr_config_info_data[i].key == key)
+                       return &sr_config_info_data[i];
        }
 
        return NULL;
 }
 
 /**
- * Get information about a device option, by name.
+ * Get information about an sr_config key, by name.
  *
- * @param optname The name of the option to get.
+ * @param optname The sr_config key.
  *
- * @return A pointer to a struct sr_hwcap_option, or NULL if the option
+ * @return A pointer to a struct sr_config_info, or NULL if the key
  *         was not found.
  */
-SR_API const struct sr_hwcap_option *sr_devopt_name_get(const char *optname)
+SR_API const struct sr_config_info *sr_config_info_name_get(const char *optname)
 {
        int i;
 
-       for (i = 0; sr_devopts[i].hwcap; i++) {
-               if (!strcmp(sr_devopts[i].shortname, optname))
-                       return &sr_devopts[i];
+       for (i = 0; sr_config_info_data[i].key; i++) {
+               if (!strcmp(sr_config_info_data[i].id, optname))
+                       return &sr_config_info_data[i];
        }
 
        return NULL;