X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fchronovu-la8%2Fapi.c;h=09daa6cb9eb9fc80800b06705cf258eb643d4f03;hb=cfe8a84dd7b5a22e6a225d6b078bde6d0ad8fde4;hp=7b671ab70a78e41ce6c5fe99db5fda95e82db40e;hpb=765ef2f725a11aa9598bfc621136f93666a1bc86;p=libsigrok.git diff --git a/hardware/chronovu-la8/api.c b/hardware/chronovu-la8/api.c index 7b671ab7..09daa6cb 100644 --- a/hardware/chronovu-la8/api.c +++ b/hardware/chronovu-la8/api.c @@ -40,6 +40,31 @@ static const uint16_t usb_pids[] = { /* Function prototypes. */ static int hw_dev_acquisition_stop(int dev_index, void *cb_data); +static void clear_instances(void) +{ + GSList *l; + struct sr_dev_inst *sdi; + struct context *ctx; + + /* Properly close all devices. */ + for (l = cdi->instances; l; l = l->next) { + if (!(sdi = l->data)) { + /* Log error, but continue cleaning up the rest. */ + sr_err("la8: %s: sdi was NULL, continuing", __func__); + continue; + } + if (sdi->priv) { + ctx = sdi->priv; + ftdi_free(ctx->ftdic); + g_free(ctx); + } + sr_dev_inst_free(sdi); + } + g_slist_free(cdi->instances); + cdi->instances = NULL; + +} + static int hw_init(void) { @@ -48,12 +73,15 @@ static int hw_init(void) return SR_OK; } -static int hw_scan(void) +static GSList *hw_scan(GSList *options) { int ret; struct sr_dev_inst *sdi; struct context *ctx; - unsigned int i; + GSList *devices; + + (void)options; + devices = NULL; /* Allocate memory for our private driver context. */ if (!(ctx = g_try_malloc(sizeof(struct context)))) { @@ -113,9 +141,10 @@ static int hw_scan(void) sr_err("la8: %s: sr_dev_inst_new failed", __func__); goto err_close_ftdic; } - + sdi->driver = cdi; sdi->priv = ctx; + devices = g_slist_append(devices, sdi); cdi->instances = g_slist_append(cdi->instances, sdi); sr_spew("la8: Device init successful."); @@ -123,7 +152,7 @@ static int hw_scan(void) /* Close device. We'll reopen it again when we need it. */ (void) la8_close(ctx); /* Log, but ignore errors. */ - return 1; + return devices; err_close_ftdic: (void) la8_close(ctx); /* Log, but ignore errors. */ @@ -135,7 +164,7 @@ err_free_ctx: g_free(ctx); err_free_nothing: - return 0; + return NULL; } static int hw_dev_open(int dev_index) @@ -232,82 +261,55 @@ static int hw_dev_close(int dev_index) static int hw_cleanup(void) { - GSList *l; - struct sr_dev_inst *sdi; - int ret = SR_OK; - /* Properly close all devices. */ - for (l = cdi->instances; l; l = l->next) { - if (!(sdi = l->data)) { - /* Log error, but continue cleaning up the rest. */ - sr_err("la8: %s: sdi was NULL, continuing", __func__); - ret = SR_ERR_BUG; - continue; - } - sr_dev_inst_free(sdi); /* Returns void. */ - } - g_slist_free(cdi->instances); /* Returns void. */ - cdi->instances = NULL; + clear_instances(); - return ret; + return SR_OK; } -static const void *hw_dev_info_get(int dev_index, int dev_info_id) +static int hw_info_get(int info_id, const void **data, + const struct sr_dev_inst *sdi) { - struct sr_dev_inst *sdi; struct context *ctx; - const void *info; - - if (!(sdi = sr_dev_inst_get(cdi->instances, dev_index))) { - sr_err("la8: %s: sdi was NULL", __func__); - return NULL; - } - if (!(ctx = sdi->priv)) { - sr_err("la8: %s: sdi->priv was NULL", __func__); - return NULL; - } - - sr_spew("la8: %s: dev_index %d, dev_info_id %d.", __func__, - dev_index, dev_info_id); - - switch (dev_info_id) { + switch (info_id) { case SR_DI_INST: - info = sdi; + *data = sdi; sr_spew("la8: %s: Returning sdi.", __func__); break; case SR_DI_NUM_PROBES: - info = GINT_TO_POINTER(NUM_PROBES); + *data = GINT_TO_POINTER(NUM_PROBES); sr_spew("la8: %s: Returning number of probes: %d.", __func__, NUM_PROBES); break; case SR_DI_PROBE_NAMES: - info = probe_names; + *data = probe_names; sr_spew("la8: %s: Returning probenames.", __func__); break; case SR_DI_SAMPLERATES: fill_supported_samplerates_if_needed(); - info = &samplerates; + *data = &samplerates; sr_spew("la8: %s: Returning samplerates.", __func__); break; case SR_DI_TRIGGER_TYPES: - info = TRIGGER_TYPES; + *data = (char *)TRIGGER_TYPES; sr_spew("la8: %s: Returning trigger types: %s.", __func__, TRIGGER_TYPES); break; case SR_DI_CUR_SAMPLERATE: - info = &ctx->cur_samplerate; - sr_spew("la8: %s: Returning samplerate: %" PRIu64 "Hz.", - __func__, ctx->cur_samplerate); + if (sdi) { + ctx = sdi->priv; + *data = &ctx->cur_samplerate; + sr_spew("la8: %s: Returning samplerate: %" PRIu64 "Hz.", + __func__, ctx->cur_samplerate); + } else + return SR_ERR; break; default: - /* Unknown device info ID, return NULL. */ - sr_err("la8: %s: Unknown device info ID", __func__); - info = NULL; - break; + return SR_ERR_ARG; } - return info; + return SR_OK; } static int hw_dev_status_get(int dev_index) @@ -554,9 +556,9 @@ SR_PRIV struct sr_dev_driver chronovu_la8_driver_info = { .scan = hw_scan, .dev_open = hw_dev_open, .dev_close = hw_dev_close, - .dev_info_get = hw_dev_info_get, + .info_get = hw_info_get, .dev_status_get = hw_dev_status_get, - .hwcap_get_all = hw_hwcap_get_all, +// .hwcap_get_all = hw_hwcap_get_all, .dev_config_set = hw_dev_config_set, .dev_acquisition_start = hw_dev_acquisition_start, .dev_acquisition_stop = hw_dev_acquisition_stop,