ols: Use sr_dev_inst to store connection handle
This commit is contained in:
parent
2e5b73c00c
commit
459a0f2623
|
@ -167,7 +167,8 @@ static GSList *hw_scan(GSList *options)
|
||||||
DEFAULT_SAMPLERATE);
|
DEFAULT_SAMPLERATE);
|
||||||
/* Clear trigger masks, values and stages. */
|
/* Clear trigger masks, values and stages. */
|
||||||
ols_configure_probes(sdi);
|
ols_configure_probes(sdi);
|
||||||
devc->serial = serial;
|
sdi->inst_type = SR_INST_SERIAL;
|
||||||
|
sdi->conn = serial;
|
||||||
|
|
||||||
drvc->instances = g_slist_append(drvc->instances, sdi);
|
drvc->instances = g_slist_append(drvc->instances, sdi);
|
||||||
devices = g_slist_append(devices, sdi);
|
devices = g_slist_append(devices, sdi);
|
||||||
|
@ -184,11 +185,10 @@ static GSList *hw_dev_list(void)
|
||||||
|
|
||||||
static int hw_dev_open(struct sr_dev_inst *sdi)
|
static int hw_dev_open(struct sr_dev_inst *sdi)
|
||||||
{
|
{
|
||||||
struct dev_context *devc;
|
struct sr_serial_dev_inst *serial;
|
||||||
|
|
||||||
devc = sdi->priv;
|
serial = sdi->conn;
|
||||||
|
if (serial_open(serial, SERIAL_RDWR) != SR_OK)
|
||||||
if (serial_open(devc->serial, SERIAL_RDWR) != SR_OK)
|
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
sdi->status = SR_ST_ACTIVE;
|
sdi->status = SR_ST_ACTIVE;
|
||||||
|
@ -198,12 +198,11 @@ static int hw_dev_open(struct sr_dev_inst *sdi)
|
||||||
|
|
||||||
static int hw_dev_close(struct sr_dev_inst *sdi)
|
static int hw_dev_close(struct sr_dev_inst *sdi)
|
||||||
{
|
{
|
||||||
struct dev_context *devc;
|
struct sr_serial_dev_inst *serial;
|
||||||
|
|
||||||
devc = sdi->priv;
|
serial = sdi->conn;
|
||||||
|
if (serial && serial->fd != -1) {
|
||||||
if (devc->serial && devc->serial->fd != -1) {
|
serial_close(serial);
|
||||||
serial_close(devc->serial);
|
|
||||||
sdi->status = SR_ST_INACTIVE;
|
sdi->status = SR_ST_INACTIVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -216,6 +215,7 @@ static int hw_cleanup(void)
|
||||||
struct sr_dev_inst *sdi;
|
struct sr_dev_inst *sdi;
|
||||||
struct drv_context *drvc;
|
struct drv_context *drvc;
|
||||||
struct dev_context *devc;
|
struct dev_context *devc;
|
||||||
|
struct sr_serial_dev_inst *serial;
|
||||||
int ret = SR_OK;
|
int ret = SR_OK;
|
||||||
|
|
||||||
if (!(drvc = di->priv))
|
if (!(drvc = di->priv))
|
||||||
|
@ -236,7 +236,8 @@ static int hw_cleanup(void)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
hw_dev_close(sdi);
|
hw_dev_close(sdi);
|
||||||
sr_serial_dev_inst_free(devc->serial);
|
serial = sdi->conn;
|
||||||
|
sr_serial_dev_inst_free(serial);
|
||||||
sr_dev_inst_free(sdi);
|
sr_dev_inst_free(sdi);
|
||||||
}
|
}
|
||||||
g_slist_free(drvc->instances);
|
g_slist_free(drvc->instances);
|
||||||
|
@ -357,6 +358,7 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
||||||
void *cb_data)
|
void *cb_data)
|
||||||
{
|
{
|
||||||
struct dev_context *devc;
|
struct dev_context *devc;
|
||||||
|
struct sr_serial_dev_inst *serial;
|
||||||
uint32_t trigger_config[4];
|
uint32_t trigger_config[4];
|
||||||
uint32_t data;
|
uint32_t data;
|
||||||
uint16_t readcount, delaycount;
|
uint16_t readcount, delaycount;
|
||||||
|
@ -365,6 +367,7 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
devc = sdi->priv;
|
devc = sdi->priv;
|
||||||
|
serial = sdi->conn;
|
||||||
|
|
||||||
if (sdi->status != SR_ST_ACTIVE)
|
if (sdi->status != SR_ST_ACTIVE)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
@ -400,53 +403,53 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
||||||
delaycount = readcount * (1 - devc->capture_ratio / 100.0);
|
delaycount = readcount * (1 - devc->capture_ratio / 100.0);
|
||||||
devc->trigger_at = (readcount - delaycount) * 4 - devc->num_stages;
|
devc->trigger_at = (readcount - delaycount) * 4 - devc->num_stages;
|
||||||
|
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_MASK_0,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_0,
|
||||||
reverse32(devc->trigger_mask[0])) != SR_OK)
|
reverse32(devc->trigger_mask[0])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_VALUE_0,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_0,
|
||||||
reverse32(devc->trigger_value[0])) != SR_OK)
|
reverse32(devc->trigger_value[0])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_CONFIG_0,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_0,
|
||||||
trigger_config[0]) != SR_OK)
|
trigger_config[0]) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_MASK_1,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_1,
|
||||||
reverse32(devc->trigger_mask[1])) != SR_OK)
|
reverse32(devc->trigger_mask[1])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_VALUE_1,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_1,
|
||||||
reverse32(devc->trigger_value[1])) != SR_OK)
|
reverse32(devc->trigger_value[1])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_CONFIG_1,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_1,
|
||||||
trigger_config[1]) != SR_OK)
|
trigger_config[1]) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_MASK_2,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_2,
|
||||||
reverse32(devc->trigger_mask[2])) != SR_OK)
|
reverse32(devc->trigger_mask[2])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_VALUE_2,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_2,
|
||||||
reverse32(devc->trigger_value[2])) != SR_OK)
|
reverse32(devc->trigger_value[2])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_CONFIG_2,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_2,
|
||||||
trigger_config[2]) != SR_OK)
|
trigger_config[2]) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_MASK_3,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_3,
|
||||||
reverse32(devc->trigger_mask[3])) != SR_OK)
|
reverse32(devc->trigger_mask[3])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_VALUE_3,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_3,
|
||||||
reverse32(devc->trigger_value[3])) != SR_OK)
|
reverse32(devc->trigger_value[3])) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_CONFIG_3,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_3,
|
||||||
trigger_config[3]) != SR_OK)
|
trigger_config[3]) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
} else {
|
} else {
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_MASK_0,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_MASK_0,
|
||||||
devc->trigger_mask[0]) != SR_OK)
|
devc->trigger_mask[0]) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_VALUE_0,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_VALUE_0,
|
||||||
devc->trigger_value[0]) != SR_OK)
|
devc->trigger_value[0]) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
if (send_longcommand(devc->serial, CMD_SET_TRIGGER_CONFIG_0,
|
if (send_longcommand(serial, CMD_SET_TRIGGER_CONFIG_0,
|
||||||
0x00000008) != SR_OK)
|
0x00000008) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
delaycount = readcount;
|
delaycount = readcount;
|
||||||
|
@ -455,14 +458,14 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
||||||
sr_info("Setting samplerate to %" PRIu64 "Hz (divider %u, "
|
sr_info("Setting samplerate to %" PRIu64 "Hz (divider %u, "
|
||||||
"demux %s)", devc->cur_samplerate, devc->cur_samplerate_divider,
|
"demux %s)", devc->cur_samplerate, devc->cur_samplerate_divider,
|
||||||
devc->flag_reg & FLAG_DEMUX ? "on" : "off");
|
devc->flag_reg & FLAG_DEMUX ? "on" : "off");
|
||||||
if (send_longcommand(devc->serial, CMD_SET_DIVIDER,
|
if (send_longcommand(serial, CMD_SET_DIVIDER,
|
||||||
reverse32(devc->cur_samplerate_divider)) != SR_OK)
|
reverse32(devc->cur_samplerate_divider)) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
/* Send sample limit and pre/post-trigger capture ratio. */
|
/* Send sample limit and pre/post-trigger capture ratio. */
|
||||||
data = ((readcount - 1) & 0xffff) << 16;
|
data = ((readcount - 1) & 0xffff) << 16;
|
||||||
data |= (delaycount - 1) & 0xffff;
|
data |= (delaycount - 1) & 0xffff;
|
||||||
if (send_longcommand(devc->serial, CMD_CAPTURE_SIZE, reverse16(data)) != SR_OK)
|
if (send_longcommand(serial, CMD_CAPTURE_SIZE, reverse16(data)) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
/* The flag register wants them here, and 1 means "disable channel". */
|
/* The flag register wants them here, and 1 means "disable channel". */
|
||||||
|
@ -470,11 +473,11 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
||||||
devc->flag_reg |= FLAG_FILTER;
|
devc->flag_reg |= FLAG_FILTER;
|
||||||
devc->rle_count = 0;
|
devc->rle_count = 0;
|
||||||
data = (devc->flag_reg << 24) | ((devc->flag_reg << 8) & 0xff0000);
|
data = (devc->flag_reg << 24) | ((devc->flag_reg << 8) & 0xff0000);
|
||||||
if (send_longcommand(devc->serial, CMD_SET_FLAGS, data) != SR_OK)
|
if (send_longcommand(serial, CMD_SET_FLAGS, data) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
/* Start acquisition on the device. */
|
/* Start acquisition on the device. */
|
||||||
if (send_shortcommand(devc->serial, CMD_RUN) != SR_OK)
|
if (send_shortcommand(serial, CMD_RUN) != SR_OK)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
/* Reset all operational states. */
|
/* Reset all operational states. */
|
||||||
|
@ -483,8 +486,7 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
|
||||||
/* Send header packet to the session bus. */
|
/* Send header packet to the session bus. */
|
||||||
std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
|
std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
|
||||||
|
|
||||||
sr_source_add(devc->serial->fd, G_IO_IN, -1, ols_receive_data,
|
sr_source_add(serial->fd, G_IO_IN, -1, ols_receive_data, cb_data);
|
||||||
cb_data);
|
|
||||||
|
|
||||||
return SR_OK;
|
return SR_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -147,8 +147,6 @@ SR_PRIV struct dev_context *ols_dev_new(void)
|
||||||
devc->probe_mask = 0xffffffff;
|
devc->probe_mask = 0xffffffff;
|
||||||
devc->flag_reg = 0;
|
devc->flag_reg = 0;
|
||||||
|
|
||||||
devc->serial = NULL;
|
|
||||||
|
|
||||||
return devc;
|
return devc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,10 +320,10 @@ SR_PRIV int ols_set_samplerate(const struct sr_dev_inst *sdi,
|
||||||
SR_PRIV void abort_acquisition(const struct sr_dev_inst *sdi)
|
SR_PRIV void abort_acquisition(const struct sr_dev_inst *sdi)
|
||||||
{
|
{
|
||||||
struct sr_datafeed_packet packet;
|
struct sr_datafeed_packet packet;
|
||||||
struct dev_context *devc;
|
struct sr_serial_dev_inst *serial;
|
||||||
|
|
||||||
devc = sdi->priv;
|
serial = sdi->conn;
|
||||||
sr_source_remove(devc->serial->fd);
|
sr_source_remove(serial->fd);
|
||||||
|
|
||||||
/* Terminate session */
|
/* Terminate session */
|
||||||
packet.type = SR_DF_END;
|
packet.type = SR_DF_END;
|
||||||
|
@ -334,11 +332,12 @@ SR_PRIV void abort_acquisition(const struct sr_dev_inst *sdi)
|
||||||
|
|
||||||
SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data)
|
SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data)
|
||||||
{
|
{
|
||||||
|
struct drv_context *drvc;
|
||||||
|
struct dev_context *devc;
|
||||||
|
struct sr_serial_dev_inst *serial;
|
||||||
struct sr_datafeed_packet packet;
|
struct sr_datafeed_packet packet;
|
||||||
struct sr_datafeed_logic logic;
|
struct sr_datafeed_logic logic;
|
||||||
struct sr_dev_inst *sdi;
|
struct sr_dev_inst *sdi;
|
||||||
struct drv_context *drvc;
|
|
||||||
struct dev_context *devc;
|
|
||||||
GSList *l;
|
GSList *l;
|
||||||
uint32_t sample;
|
uint32_t sample;
|
||||||
int num_channels, offset, i, j;
|
int num_channels, offset, i, j;
|
||||||
|
@ -351,7 +350,8 @@ SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data)
|
||||||
for (l = drvc->instances; l; l = l->next) {
|
for (l = drvc->instances; l; l = l->next) {
|
||||||
sdi = l->data;
|
sdi = l->data;
|
||||||
devc = sdi->priv;
|
devc = sdi->priv;
|
||||||
if (devc->serial->fd == fd)
|
serial = sdi->conn;
|
||||||
|
if (serial->fd == fd)
|
||||||
break;
|
break;
|
||||||
devc = NULL;
|
devc = NULL;
|
||||||
}
|
}
|
||||||
|
@ -384,7 +384,7 @@ SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (revents == G_IO_IN) {
|
if (revents == G_IO_IN) {
|
||||||
if (serial_read(devc->serial, &byte, 1) != 1)
|
if (serial_read(serial, &byte, 1) != 1)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
/* Ignore it if we've read enough. */
|
/* Ignore it if we've read enough. */
|
||||||
|
@ -506,9 +506,9 @@ SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data)
|
||||||
}
|
}
|
||||||
g_free(devc->raw_sample_buf);
|
g_free(devc->raw_sample_buf);
|
||||||
|
|
||||||
serial_flush(devc->serial);
|
serial_flush(serial);
|
||||||
abort_acquisition(sdi);
|
abort_acquisition(sdi);
|
||||||
serial_close(devc->serial);
|
serial_close(serial);
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
|
@ -77,8 +77,6 @@
|
||||||
|
|
||||||
/* Private, per-device-instance driver context. */
|
/* Private, per-device-instance driver context. */
|
||||||
struct dev_context {
|
struct dev_context {
|
||||||
struct sr_serial_dev_inst *serial;
|
|
||||||
|
|
||||||
/* Fixed device settings */
|
/* Fixed device settings */
|
||||||
uint32_t max_samples;
|
uint32_t max_samples;
|
||||||
uint32_t max_samplerate;
|
uint32_t max_samplerate;
|
||||||
|
|
Loading…
Reference in New Issue