]> sigrok.org Git - libsigrok.git/blame - input/input_chronovu_la8.c
Fix outdated ezusb_install_firmware() prototype.
[libsigrok.git] / input / input_chronovu_la8.c
CommitLineData
83e9d586
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdlib.h>
22#include <fcntl.h>
23#include <unistd.h>
24#include <sigrok.h>
b08024a8 25#include <sigrok-internal.h>
83e9d586
UH
26
27#define NUM_PACKETS 2048
28#define PACKET_SIZE 4096
29#define DEFAULT_NUM_PROBES 8
30
31/**
32 * Convert the LA8 'divcount' value to the respective samplerate (in Hz).
33 *
34 * LA8 hardware: sample period = (divcount + 1) * 10ns.
35 * Min. value for divcount: 0x00 (10ns sample period, 100MHz samplerate).
36 * Max. value for divcount: 0xfe (2550ns sample period, 392.15kHz samplerate).
37 *
38 * @param divcount The divcount value as needed by the hardware.
39 * @return The samplerate in Hz, or 0xffffffffffffffff upon errors.
40 */
41static uint64_t divcount_to_samplerate(uint8_t divcount)
42{
43 if (divcount == 0xff)
44 return 0xffffffffffffffffULL;
45
46 return SR_MHZ(100) / (divcount + 1);
47}
48
49static int format_match(const char *filename)
50{
51 if (!filename) {
b08024a8 52 sr_warn("la8input: %s: filename was NULL", __func__);
83e9d586
UH
53 // return SR_ERR; /* FIXME */
54 return FALSE;
55 }
56
57 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
b08024a8
UH
58 sr_warn("la8input: %s: input file '%s' does not exist",
59 __func__, filename);
83e9d586
UH
60 // return SR_ERR; /* FIXME */
61 return FALSE;
62 }
63
64 if (!g_file_test(filename, G_FILE_TEST_IS_REGULAR)) {
b08024a8
UH
65 sr_warn("la8input: %s: input file '%s' not a regular file",
66 __func__, filename);
83e9d586
UH
67 // return SR_ERR; /* FIXME */
68 return FALSE;
69 }
70
71 /* TODO: Only accept files of length 8MB + 5 bytes. */
72
73 /* TODO: Check for divcount != 0xff. */
74
75 return TRUE;
76}
77
78static int init(struct sr_input *in)
79{
80 int num_probes;
81
82 if (in->param && in->param[0]) {
83 num_probes = strtoul(in->param, NULL, 10);
84 if (num_probes < 1) {
b08024a8 85 sr_warn("la8input: %s: strtoul failed", __func__);
83e9d586
UH
86 return SR_ERR;
87 }
88 } else {
89 num_probes = DEFAULT_NUM_PROBES;
90 }
91
92 /* Create a virtual device. */
93 in->vdevice = sr_device_new(NULL, 0, num_probes);
94
95 return SR_OK;
96}
97
98static int loadfile(struct sr_input *in, const char *filename)
99{
100 struct sr_datafeed_header header;
101 struct sr_datafeed_packet packet;
9c939c51 102 struct sr_datafeed_logic logic;
83e9d586
UH
103 uint8_t buf[PACKET_SIZE], divcount;
104 int i, fd, size, num_probes;
105 uint64_t samplerate;
106
107 /* TODO: Use glib functions! GIOChannel, g_fopen, etc. */
108 if ((fd = open(filename, O_RDONLY)) == -1) {
b08024a8 109 sr_warn("la8input: %s: file open failed", __func__);
83e9d586
UH
110 return SR_ERR;
111 }
112
113 num_probes = g_slist_length(in->vdevice->probes);
114
115 /* Seek to the end of the file, and read the divcount byte. */
116 divcount = 0x00; /* TODO: Don't hardcode! */
117
118 /* Convert the divcount value to a samplerate. */
119 samplerate = divcount_to_samplerate(divcount);
120 if (samplerate == 0xffffffffffffffffULL) {
121 close(fd); /* FIXME */
122 return SR_ERR;
123 }
b08024a8 124 sr_dbg("la8input: %s: samplerate is %" PRIu64, __func__, samplerate);
83e9d586
UH
125
126 /* Send header packet to the session bus. */
b08024a8 127 sr_dbg("la8input: %s: sending SR_DF_HEADER packet", __func__);
83e9d586 128 packet.type = SR_DF_HEADER;
83e9d586
UH
129 packet.payload = &header;
130 header.feed_version = 1;
131 gettimeofday(&header.starttime, NULL);
132 header.num_logic_probes = num_probes;
133 header.num_analog_probes = 0;
83e9d586
UH
134 header.samplerate = samplerate;
135 sr_session_bus(in->vdevice, &packet);
136
137 /* TODO: Handle trigger point. */
138
139 /* Send data packets to the session bus. */
b08024a8 140 sr_dbg("la8input: %s: sending SR_DF_LOGIC data packets", __func__);
83e9d586 141 packet.type = SR_DF_LOGIC;
9c939c51
BV
142 packet.payload = &logic;
143 logic.unitsize = (num_probes + 7) / 8;
144 logic.data = buf;
83e9d586
UH
145
146 /* Send 8MB of total data to the session bus in small chunks. */
147 for (i = 0; i < NUM_PACKETS; i++) {
148 /* TODO: Handle errors, handle incomplete reads. */
149 size = read(fd, buf, PACKET_SIZE);
9c939c51 150 logic.length = PACKET_SIZE;
83e9d586
UH
151 sr_session_bus(in->vdevice, &packet);
152 }
153 close(fd); /* FIXME */
154
155 /* Send end packet to the session bus. */
b08024a8 156 sr_dbg("la8input: %s: sending SR_DF_END", __func__);
83e9d586 157 packet.type = SR_DF_END;
83e9d586
UH
158 packet.payload = NULL;
159 sr_session_bus(in->vdevice, &packet);
160
161 return SR_OK;
162}
163
164struct sr_input_format input_chronovu_la8 = {
165 .id = "chronovu-la8",
166 .description = "ChronoVu LA8",
167 .format_match = format_match,
168 .init = init,
169 .loadfile = loadfile,
170};