2011-04-10 22:21:19 +00:00
|
|
|
/*
|
2013-04-23 20:24:30 +00:00
|
|
|
* This file is part of the libsigrok project.
|
2011-04-10 22:21:19 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2012-05-30 00:27:30 +00:00
|
|
|
#include <sys/stat.h>
|
2012-07-04 22:55:07 +00:00
|
|
|
#include "libsigrok.h"
|
|
|
|
#include "libsigrok-internal.h"
|
2011-04-10 22:21:19 +00:00
|
|
|
|
2013-05-03 19:59:32 +00:00
|
|
|
/* Message logging helpers with subsystem-specific prefix string. */
|
|
|
|
#define LOG_PREFIX "input/chronovu-la8: "
|
|
|
|
#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
|
|
|
|
#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
|
|
|
|
#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
|
|
|
|
#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
|
|
|
|
#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
|
|
|
|
#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
|
2012-11-11 08:20:08 +00:00
|
|
|
|
2011-04-10 22:21:19 +00:00
|
|
|
#define NUM_PACKETS 2048
|
|
|
|
#define PACKET_SIZE 4096
|
|
|
|
#define DEFAULT_NUM_PROBES 8
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert the LA8 'divcount' value to the respective samplerate (in Hz).
|
|
|
|
*
|
|
|
|
* LA8 hardware: sample period = (divcount + 1) * 10ns.
|
|
|
|
* Min. value for divcount: 0x00 (10ns sample period, 100MHz samplerate).
|
|
|
|
* Max. value for divcount: 0xfe (2550ns sample period, 392.15kHz samplerate).
|
|
|
|
*
|
|
|
|
* @param divcount The divcount value as needed by the hardware.
|
2012-02-17 19:44:19 +00:00
|
|
|
*
|
2011-04-10 22:21:19 +00:00
|
|
|
* @return The samplerate in Hz, or 0xffffffffffffffff upon errors.
|
|
|
|
*/
|
|
|
|
static uint64_t divcount_to_samplerate(uint8_t divcount)
|
|
|
|
{
|
|
|
|
if (divcount == 0xff)
|
|
|
|
return 0xffffffffffffffffULL;
|
|
|
|
|
|
|
|
return SR_MHZ(100) / (divcount + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int format_match(const char *filename)
|
|
|
|
{
|
2012-05-28 22:21:21 +00:00
|
|
|
struct stat stat_buf;
|
|
|
|
int ret;
|
|
|
|
|
2011-04-10 22:21:19 +00:00
|
|
|
if (!filename) {
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_err("%s: filename was NULL", __func__);
|
2011-04-10 22:21:19 +00:00
|
|
|
// return SR_ERR; /* FIXME */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_err("%s: input file '%s' does not exist",
|
2012-02-11 19:06:46 +00:00
|
|
|
__func__, filename);
|
2011-04-10 22:21:19 +00:00
|
|
|
// return SR_ERR; /* FIXME */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_file_test(filename, G_FILE_TEST_IS_REGULAR)) {
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_err("%s: input file '%s' not a regular file",
|
2012-02-11 19:06:46 +00:00
|
|
|
__func__, filename);
|
2011-04-10 22:21:19 +00:00
|
|
|
// return SR_ERR; /* FIXME */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-05-28 22:21:21 +00:00
|
|
|
/* Only accept files of length 8MB + 5 bytes. */
|
|
|
|
ret = stat(filename, &stat_buf);
|
|
|
|
if (ret != 0) {
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_err("%s: Error getting file size of '%s'",
|
2012-05-28 22:21:21 +00:00
|
|
|
__func__, filename);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (stat_buf.st_size != (8 * 1024 * 1024 + 5)) {
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_dbg("%s: File size must be exactly 8388613 bytes ("
|
2012-05-28 22:21:21 +00:00
|
|
|
"it actually is %d bytes in size), so this is not a "
|
|
|
|
"ChronoVu LA8 file.", __func__, stat_buf.st_size);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-04-10 22:21:19 +00:00
|
|
|
|
|
|
|
/* TODO: Check for divcount != 0xff. */
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-02-21 13:48:43 +00:00
|
|
|
static int init(struct sr_input *in, const char *filename)
|
2011-04-10 22:21:19 +00:00
|
|
|
{
|
2012-07-20 19:37:36 +00:00
|
|
|
struct sr_probe *probe;
|
2011-12-29 16:04:31 +00:00
|
|
|
int num_probes, i;
|
2011-12-29 18:50:14 +00:00
|
|
|
char name[SR_MAX_PROBENAME_LEN + 1];
|
2012-07-04 14:29:13 +00:00
|
|
|
char *param;
|
|
|
|
|
2013-02-21 13:48:43 +00:00
|
|
|
(void)filename;
|
|
|
|
|
2012-07-04 14:29:13 +00:00
|
|
|
num_probes = DEFAULT_NUM_PROBES;
|
|
|
|
|
|
|
|
if (in->param) {
|
|
|
|
param = g_hash_table_lookup(in->param, "numprobes");
|
|
|
|
if (param) {
|
|
|
|
num_probes = strtoul(param, NULL, 10);
|
|
|
|
if (num_probes < 1) {
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_err("%s: strtoul failed", __func__);
|
2012-07-04 14:29:13 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
2011-04-10 22:21:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a virtual device. */
|
2012-07-20 19:37:36 +00:00
|
|
|
in->sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, NULL, NULL, NULL);
|
2011-12-29 16:04:31 +00:00
|
|
|
|
|
|
|
for (i = 0; i < num_probes; i++) {
|
|
|
|
snprintf(name, SR_MAX_PROBENAME_LEN, "%d", i);
|
2011-12-29 18:50:14 +00:00
|
|
|
/* TODO: Check return value. */
|
2012-07-20 19:37:36 +00:00
|
|
|
if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE, name)))
|
|
|
|
return SR_ERR;
|
|
|
|
in->sdi->probes = g_slist_append(in->sdi->probes, probe);
|
2011-12-29 16:04:31 +00:00
|
|
|
}
|
2011-04-10 22:21:19 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int loadfile(struct sr_input *in, const char *filename)
|
|
|
|
{
|
|
|
|
struct sr_datafeed_packet packet;
|
2013-01-20 14:45:09 +00:00
|
|
|
struct sr_datafeed_meta meta;
|
2011-06-19 12:28:50 +00:00
|
|
|
struct sr_datafeed_logic logic;
|
2013-01-20 14:45:09 +00:00
|
|
|
struct sr_config *src;
|
2011-04-10 22:21:19 +00:00
|
|
|
uint8_t buf[PACKET_SIZE], divcount;
|
|
|
|
int i, fd, size, num_probes;
|
|
|
|
uint64_t samplerate;
|
|
|
|
|
|
|
|
/* TODO: Use glib functions! GIOChannel, g_fopen, etc. */
|
|
|
|
if ((fd = open(filename, O_RDONLY)) == -1) {
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_err("%s: file open failed", __func__);
|
2011-04-10 22:21:19 +00:00
|
|
|
return SR_ERR;
|
|
|
|
}
|
|
|
|
|
2012-07-20 19:37:36 +00:00
|
|
|
num_probes = g_slist_length(in->sdi->probes);
|
2011-04-10 22:21:19 +00:00
|
|
|
|
|
|
|
/* Seek to the end of the file, and read the divcount byte. */
|
|
|
|
divcount = 0x00; /* TODO: Don't hardcode! */
|
|
|
|
|
|
|
|
/* Convert the divcount value to a samplerate. */
|
|
|
|
samplerate = divcount_to_samplerate(divcount);
|
|
|
|
if (samplerate == 0xffffffffffffffffULL) {
|
|
|
|
close(fd); /* FIXME */
|
|
|
|
return SR_ERR;
|
|
|
|
}
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_dbg("%s: samplerate is %" PRIu64, __func__, samplerate);
|
2011-04-10 22:21:19 +00:00
|
|
|
|
|
|
|
/* Send header packet to the session bus. */
|
2013-05-03 19:59:32 +00:00
|
|
|
std_session_send_df_header(in->sdi, LOG_PREFIX);
|
2012-04-22 18:06:19 +00:00
|
|
|
|
|
|
|
/* Send metadata about the SR_DF_LOGIC packets to come. */
|
2013-01-20 14:45:09 +00:00
|
|
|
packet.type = SR_DF_META;
|
2012-04-22 18:06:19 +00:00
|
|
|
packet.payload = &meta;
|
2013-03-25 19:27:26 +00:00
|
|
|
src = sr_config_new(SR_CONF_SAMPLERATE, g_variant_new_uint64(samplerate));
|
2013-01-20 14:45:09 +00:00
|
|
|
meta.config = g_slist_append(NULL, src);
|
2012-07-20 19:37:36 +00:00
|
|
|
sr_session_send(in->sdi, &packet);
|
2013-03-25 19:27:26 +00:00
|
|
|
sr_config_free(src);
|
2011-04-10 22:21:19 +00:00
|
|
|
|
|
|
|
/* TODO: Handle trigger point. */
|
|
|
|
|
|
|
|
/* Send data packets to the session bus. */
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_dbg("%s: sending SR_DF_LOGIC data packets", __func__);
|
2011-04-10 22:21:19 +00:00
|
|
|
packet.type = SR_DF_LOGIC;
|
2011-06-19 12:28:50 +00:00
|
|
|
packet.payload = &logic;
|
|
|
|
logic.unitsize = (num_probes + 7) / 8;
|
|
|
|
logic.data = buf;
|
2011-04-10 22:21:19 +00:00
|
|
|
|
|
|
|
/* Send 8MB of total data to the session bus in small chunks. */
|
|
|
|
for (i = 0; i < NUM_PACKETS; i++) {
|
|
|
|
/* TODO: Handle errors, handle incomplete reads. */
|
|
|
|
size = read(fd, buf, PACKET_SIZE);
|
2012-02-28 16:47:02 +00:00
|
|
|
logic.length = size;
|
2012-07-20 19:37:36 +00:00
|
|
|
sr_session_send(in->sdi, &packet);
|
2011-04-10 22:21:19 +00:00
|
|
|
}
|
|
|
|
close(fd); /* FIXME */
|
|
|
|
|
|
|
|
/* Send end packet to the session bus. */
|
2012-11-11 08:20:08 +00:00
|
|
|
sr_dbg("%s: sending SR_DF_END", __func__);
|
2011-04-10 22:21:19 +00:00
|
|
|
packet.type = SR_DF_END;
|
|
|
|
packet.payload = NULL;
|
2012-07-20 19:37:36 +00:00
|
|
|
sr_session_send(in->sdi, &packet);
|
2011-04-10 22:21:19 +00:00
|
|
|
|
|
|
|
return SR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-04 09:56:51 +00:00
|
|
|
SR_PRIV struct sr_input_format input_chronovu_la8 = {
|
2011-04-10 22:21:19 +00:00
|
|
|
.id = "chronovu-la8",
|
|
|
|
.description = "ChronoVu LA8",
|
|
|
|
.format_match = format_match,
|
|
|
|
.init = init,
|
|
|
|
.loadfile = loadfile,
|
|
|
|
};
|