]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/nexus-osciprime/api.c
sr_driver_scan(): Improve checks.
[libsigrok.git] / hardware / nexus-osciprime / api.c
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <string.h>
21#include <glib.h>
22#include "libsigrok.h"
23#include "libsigrok-internal.h"
24#include "protocol.h"
25
26#define OSCI_VENDOR "Nexus Computing"
27#define OSCI_MODEL "OsciPrime"
28#define OSCI_VERSION "1.0"
29#define OSCI_FIRMWARE FIRMWARE_DIR "/nexus-osciprime.fw"
30#define OSCI_VIDPID "04b4.1004"
31
32static const int hwopts[] = {
33 SR_CONF_CONN,
34 SR_CONF_SERIALCOMM,
35 0,
36};
37
38static const int hwcaps[] = {
39 SR_CONF_OSCILLOSCOPE,
40 SR_CONF_LIMIT_SAMPLES,
41 SR_CONF_CONTINUOUS,
42 SR_CONF_TIMEBASE,
43 SR_CONF_VDIV,
44 0,
45};
46
47static const struct sr_rational timebases[] = {
48 /* 24 MHz */
49 { 42, 1e9 },
50 /* 12 MHz */
51 { 83, 1e9 },
52 /* 6 MHz */
53 { 167, 1e9 },
54 /* 3 MHz */
55 { 333, 1e9 },
56 /* 1.5 MHz */
57 { 667, 1e9 },
58 /* 750 kHz */
59 { 1333, 1e9 },
60 /* 375 kHz */
61 { 2667, 1e9 },
62 /* 187.5 kHz */
63 { 5333, 1e9 },
64 /* 93.25 kHz */
65 { 10724, 1e9 },
66 /* 46.875 kHz */
67 { 21333, 1e9 },
68 /* 23.4375 kHz */
69 { 42666, 1e9 },
70 /* 11.718 kHz */
71 { 85339, 1e9 },
72 /* 5.859 kHz */
73 { 170678, 1e9 },
74 /* 2.929 kHz */
75 { 341413, 1e9 },
76 /* 1.465 kHz */
77 { 682594, 1e9 },
78 /* 732 Hz */
79 { 1366, 1e6 },
80 /* 366 Hz */
81 { 2732, 1e6 },
82 /* 183 Hz */
83 { 5464, 1e6 },
84 /* 91 Hz */
85 { 10989, 1e6 },
86 /* 46 Hz */
87 { 21739, 1e6 },
88 /* 23 Hz */
89 { 43478, 1e6 },
90 /* 12 Hz */
91 { 83333, 1e6 },
92};
93
94static const char *probe_names[] = {
95 "CHA", "CHB",
96 NULL,
97};
98
99static const struct sr_rational vdivs[] = {
100 { 1, 1 },
101 { 2, 1 },
102 { 5, 2 },
103 { 5, 1 },
104 { 10, 1 },
105};
106
107
108SR_PRIV struct sr_dev_driver nexus_osciprime_driver_info;
109static struct sr_dev_driver *di = &nexus_osciprime_driver_info;
110static int hw_dev_close(struct sr_dev_inst *sdi);
111
112/* Properly close and free all devices. */
113static int clear_instances(void)
114{
115 struct sr_dev_inst *sdi;
116 struct drv_context *drvc;
117 struct dev_context *devc;
118 GSList *l;
119
120 if (!(drvc = di->priv))
121 return SR_OK;
122
123 for (l = drvc->instances; l; l = l->next) {
124 if (!(sdi = l->data))
125 continue;
126 if (!(devc = sdi->priv))
127 continue;
128
129 hw_dev_close(sdi);
130 sr_usb_dev_inst_free(devc->usb);
131 sr_dev_inst_free(sdi);
132 }
133
134 g_slist_free(drvc->instances);
135 drvc->instances = NULL;
136
137 return SR_OK;
138}
139
140static int hw_init(struct sr_context *sr_ctx)
141{
142 struct drv_context *drvc;
143
144 if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
145 sr_err("Driver context malloc failed.");
146 return SR_ERR_MALLOC;
147 }
148
149 drvc->sr_ctx = sr_ctx;
150 di->priv = drvc;
151
152 return SR_OK;
153}
154
155static GSList *hw_scan(GSList *options)
156{
157 struct drv_context *drvc;
158 struct dev_context *devc;
159 struct sr_dev_inst *sdi;
160 struct sr_usb_dev_inst *usb;
161 struct sr_config *src;
162 struct sr_probe *probe;
163 libusb_device *dev;
164 GSList *usb_devices, *devices, *l;
165 int i;
166 const char *conn;
167
168 (void)options;
169
170 drvc = di->priv;
171
172 /* USB scan is always authoritative. */
173 clear_instances();
174
175 conn = NULL;
176 for (l = options; l; l = l->next) {
177 src = l->data;
178 switch (src->key) {
179 case SR_CONF_CONN:
180 conn = src->value;
181 break;
182 }
183 }
184 if (!conn)
185 conn = OSCI_VIDPID;
186
187 devices = NULL;
188 if ((usb_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn))) {
189 for (l = usb_devices; l; l = l->next) {
190 usb = l->data;
191 if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
192 OSCI_VENDOR, OSCI_MODEL, OSCI_VERSION)))
193 return NULL;
194 sdi->driver = di;
195 for (i = 0; probe_names[i]; i++) {
196 if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG, TRUE,
197 probe_names[i])))
198 return NULL;
199 sdi->probes = g_slist_append(sdi->probes, probe);
200 }
201
202 if (!(devc = g_try_malloc0(sizeof(struct dev_context))))
203 return NULL;
204 sdi->priv = devc;
205 devc->usb = usb;
206
207 if (strcmp(conn, OSCI_VIDPID)) {
208 if (sr_usb_open(drvc->sr_ctx->libusb_ctx, usb) != SR_OK)
209 break;
210 dev = libusb_get_device(usb->devhdl);
211 if (ezusb_upload_firmware(dev, 0, OSCI_FIRMWARE) == SR_OK)
212 /* Remember when the firmware on this device was updated */
213 devc->fw_updated = g_get_monotonic_time();
214 else
215 sr_err("Firmware upload failed for device "
216 "at bus %d address %d.", usb->bus, usb->address);
217 }
218
219 drvc->instances = g_slist_append(drvc->instances, sdi);
220 devices = g_slist_append(devices, sdi);
221 }
222 g_slist_free(usb_devices);
223 } else
224 g_slist_free_full(usb_devices, g_free);
225
226 return devices;
227}
228
229static GSList *hw_dev_list(void)
230{
231 struct drv_context *drvc;
232
233 drvc = di->priv;
234
235 return drvc->instances;
236}
237
238static int hw_dev_open(struct sr_dev_inst *sdi)
239{
240
241 /* TODO */
242 (void)sdi;
243
244 return SR_OK;
245}
246
247static int hw_dev_close(struct sr_dev_inst *sdi)
248{
249
250 /* TODO */
251 (void)sdi;
252
253 return SR_OK;
254}
255
256static int hw_cleanup(void)
257{
258 clear_instances();
259
260 /* TODO */
261
262 return SR_OK;
263}
264
265static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
266{
267 int ret;
268
269 /* TODO */
270 (void)value;
271
272 if (sdi->status != SR_ST_ACTIVE) {
273 sr_err("Device inactive, can't set config options.");
274 return SR_ERR;
275 }
276
277 ret = SR_OK;
278 switch (id) {
279
280 default:
281 sr_err("Unknown hardware capability: %d.", id);
282 ret = SR_ERR_ARG;
283 }
284
285 return ret;
286}
287
288static int config_list(int key, const void **data, const struct sr_dev_inst *sdi)
289{
290
291 (void)sdi;
292
293 switch (key) {
294 default:
295 return SR_ERR_ARG;
296 }
297
298 return SR_OK;
299}
300
301static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
302 void *cb_data)
303{
304 /* TODO */
305 (void)sdi;
306 (void)cb_data;
307
308 return SR_OK;
309}
310
311static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
312{
313 (void)cb_data;
314
315 if (sdi->status != SR_ST_ACTIVE) {
316 sr_err("Device inactive, can't stop acquisition.");
317 return SR_ERR;
318 }
319
320 /* TODO */
321
322 return SR_OK;
323}
324
325SR_PRIV struct sr_dev_driver nexus_osciprime_driver_info = {
326 .name = "nexus-osciprime",
327 .longname = "Nexus OsciPrime",
328 .api_version = 1,
329 .init = hw_init,
330 .cleanup = hw_cleanup,
331 .scan = hw_scan,
332 .dev_list = hw_dev_list,
333 .dev_clear = clear_instances,
334 .config_set = config_set,
335 .config_list = config_list,
336 .dev_open = hw_dev_open,
337 .dev_close = hw_dev_close,
338 .dev_acquisition_start = hw_dev_acquisition_start,
339 .dev_acquisition_stop = hw_dev_acquisition_stop,
340 .priv = NULL,
341};