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