]> sigrok.org Git - libsigrok.git/blame - hwplugin.c
Disable Link Instruments MSO-19 for 0.1.
[libsigrok.git] / hwplugin.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 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 <stdlib.h>
21#include <stdio.h>
22#include <sys/types.h>
23#include <dirent.h>
24#include <string.h>
25#include <glib.h>
62c82025 26#include <sigrok.h>
c4fffe1e 27#include "config.h"
a1bb33af
UH
28
29source_callback_add source_cb_add = NULL;
30source_callback_remove source_cb_remove = NULL;
31
62c82025 32/* The list of loaded plugins lives here. */
a1bb33af
UH
33GSList *plugins;
34
62c82025
UH
35/*
36 * This enumerates which plugin capabilities correspond to user-settable
37 * options.
38 */
a1bb33af 39struct hwcap_option hwcap_options[] = {
62c82025 40 {HWCAP_SAMPLERATE, T_UINT64, "Sample rate", "samplerate"},
3245dfcb 41 {HWCAP_CAPTURE_RATIO, T_UINT64, "Pre-trigger capture ratio", "captureratio"},
925dbf9f 42 {HWCAP_PATTERN_MODE, T_CHAR, "Pattern generator mode", "patternmode"},
49d0ce50 43 {0, 0, NULL, NULL},
a1bb33af
UH
44};
45
a61b0e6a 46#ifdef HAVE_LA_DEMO
6239c175 47extern struct device_plugin demo_plugin_info;
a61b0e6a 48#endif
960a75e4 49#ifdef HAVE_LA_SALEAE_LOGIC
a1bb33af 50extern struct device_plugin saleae_logic_plugin_info;
960a75e4
UH
51#endif
52#ifdef HAVE_LA_OLS
a1bb33af 53extern struct device_plugin ols_plugin_info;
960a75e4
UH
54#endif
55#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
a1bb33af 56extern struct device_plugin zeroplus_logic_cube_plugin_info;
960a75e4 57#endif
5b907f9b 58#ifdef HAVE_LA_ASIX_SIGMA
28a35d8a 59extern struct device_plugin asix_sigma_plugin_info;
5b907f9b 60#endif
07c81bfa
UH
61// #ifdef HAVE_LA_LINK_MSO19
62// extern struct device_plugin link_mso19_plugin_info;
63// #endif
01cf8814 64
49d0ce50 65/* TODO: No linked list needed, this can be a simple array. */
a1bb33af
UH
66int load_hwplugins(void)
67{
a61b0e6a 68#ifdef HAVE_LA_DEMO
6239c175 69 plugins = g_slist_append(plugins, (gpointer *)&demo_plugin_info);
a61b0e6a 70#endif
960a75e4 71#ifdef HAVE_LA_SALEAE_LOGIC
62c82025 72 plugins =
49d0ce50 73 g_slist_append(plugins, (gpointer *)&saleae_logic_plugin_info);
960a75e4
UH
74#endif
75#ifdef HAVE_LA_OLS
49d0ce50 76 plugins = g_slist_append(plugins, (gpointer *)&ols_plugin_info);
960a75e4
UH
77#endif
78#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
62c82025 79 plugins = g_slist_append(plugins,
49d0ce50 80 (gpointer *)&zeroplus_logic_cube_plugin_info);
960a75e4 81#endif
5b907f9b 82#ifdef HAVE_LA_ASIX_SIGMA
28a35d8a 83 plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
5b907f9b 84#endif
07c81bfa
UH
85// #ifdef HAVE_LA_LINK_MSO19
86// plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
87// #endif
a1bb33af
UH
88
89 return SIGROK_OK;
90}
91
a1bb33af
UH
92GSList *list_hwplugins(void)
93{
a1bb33af
UH
94 return plugins;
95}
96
a1bb33af 97struct sigrok_device_instance *sigrok_device_instance_new(int index, int status,
49d0ce50 98 const char *vendor, const char *model, const char *version)
a1bb33af
UH
99{
100 struct sigrok_device_instance *sdi;
101
49d0ce50 102 if (!(sdi = malloc(sizeof(struct sigrok_device_instance))))
a1bb33af
UH
103 return NULL;
104
105 sdi->index = index;
106 sdi->status = status;
107 sdi->instance_type = -1;
925dbf9f
BV
108 sdi->vendor = vendor ? strdup(vendor) : strdup("(unknown)");
109 sdi->model = model ? strdup(model) : NULL;
110 sdi->version = version ? strdup(version) : NULL;
01cf8814 111 sdi->priv = NULL;
a1bb33af
UH
112 sdi->usb = NULL;
113
114 return sdi;
115}
116
62c82025
UH
117struct sigrok_device_instance *get_sigrok_device_instance(
118 GSList *device_instances, int device_index)
a1bb33af
UH
119{
120 struct sigrok_device_instance *sdi;
121 GSList *l;
122
62c82025
UH
123 for (l = device_instances; l; l = l->next) {
124 sdi = (struct sigrok_device_instance *)(l->data);
125 if (sdi->index == device_index)
a1bb33af
UH
126 return sdi;
127 }
128 g_warning("could not find device index %d instance", device_index);
129
130 return NULL;
131}
132
a1bb33af
UH
133void sigrok_device_instance_free(struct sigrok_device_instance *sdi)
134{
62c82025 135 switch (sdi->instance_type) {
a1bb33af
UH
136 case USB_INSTANCE:
137 usb_device_instance_free(sdi->usb);
138 break;
139 case SERIAL_INSTANCE:
140 serial_device_instance_free(sdi->serial);
141 break;
49d0ce50 142 default:
62c82025 143 /* No specific type, nothing extra to free. */
49d0ce50 144 break;
a1bb33af
UH
145 }
146
147 free(sdi->vendor);
148 free(sdi->model);
149 free(sdi->version);
150 free(sdi);
a1bb33af
UH
151}
152
62c82025
UH
153struct usb_device_instance *usb_device_instance_new(uint8_t bus,
154 uint8_t address, struct libusb_device_handle *hdl)
a1bb33af
UH
155{
156 struct usb_device_instance *udi;
157
49d0ce50 158 if (!(udi = malloc(sizeof(struct usb_device_instance))))
a1bb33af
UH
159 return NULL;
160
161 udi->bus = bus;
162 udi->address = address;
49d0ce50 163 udi->devhdl = hdl; /* TODO: Check if this is NULL? */
a1bb33af
UH
164
165 return udi;
166}
167
a1bb33af
UH
168void usb_device_instance_free(struct usb_device_instance *usb)
169{
17e1afcb 170 /* Avoid compiler warnings. */
afc8e4de 171 usb = usb;
a1bb33af 172
62c82025 173 /* Nothing to do for this device instance type. */
a1bb33af
UH
174}
175
49d0ce50
UH
176struct serial_device_instance *serial_device_instance_new(
177 const char *port, int fd)
a1bb33af
UH
178{
179 struct serial_device_instance *serial;
180
49d0ce50 181 if (!(serial = malloc(sizeof(struct serial_device_instance))))
a1bb33af
UH
182 return NULL;
183
184 serial->port = strdup(port);
185 serial->fd = fd;
186
187 return serial;
188}
189
a1bb33af
UH
190void serial_device_instance_free(struct serial_device_instance *serial)
191{
a1bb33af 192 free(serial->port);
a1bb33af
UH
193}
194
a1bb33af
UH
195int find_hwcap(int *capabilities, int hwcap)
196{
197 int i;
198
49d0ce50 199 for (i = 0; capabilities[i]; i++) {
62c82025 200 if (capabilities[i] == hwcap)
a1bb33af 201 return TRUE;
49d0ce50 202 }
a1bb33af
UH
203
204 return FALSE;
205}
206
a1bb33af
UH
207struct hwcap_option *find_hwcap_option(int hwcap)
208{
a1bb33af
UH
209 int i;
210
62c82025 211 for (i = 0; hwcap_options[i].capability; i++) {
49d0ce50
UH
212 if (hwcap_options[i].capability == hwcap)
213 return &hwcap_options[i];
a1bb33af
UH
214 }
215
49d0ce50 216 return NULL;
a1bb33af
UH
217}
218
a1bb33af
UH
219void source_remove(int fd)
220{
62c82025 221 if (source_cb_remove)
a1bb33af 222 source_cb_remove(fd);
a1bb33af
UH
223}
224
62c82025
UH
225void source_add(int fd, int events, int timeout, receive_data_callback rcv_cb,
226 void *user_data)
a1bb33af 227{
62c82025 228 if (source_cb_add)
a1bb33af 229 source_cb_add(fd, events, timeout, rcv_cb, user_data);
a1bb33af 230}