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