]> sigrok.org Git - libsigrok.git/blame_incremental - hwplugin.c
skeleton.c: Update to latest prototypes.
[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
28source_callback_add source_cb_add = NULL;
29source_callback_remove source_cb_remove = NULL;
30
31/* The list of loaded plugins lives here. */
32GSList *plugins;
33
34/*
35 * This enumerates which plugin capabilities correspond to user-settable
36 * options.
37 */
38struct hwcap_option hwcap_options[] = {
39 {HWCAP_SAMPLERATE, T_UINT64, "Sample rate", "samplerate"},
40 {0, 0, NULL, NULL}
41};
42
43extern struct device_plugin saleae_logic_plugin_info;
44extern struct device_plugin ols_plugin_info;
45extern struct device_plugin zeroplus_logic_cube_plugin_info;
46extern struct device_plugin asix_sigma_plugin_info;
47
48int load_hwplugins(void)
49{
50 plugins =
51 g_slist_append(plugins, (gpointer *) &saleae_logic_plugin_info);
52 plugins = g_slist_append(plugins, (gpointer *) &ols_plugin_info);
53 plugins = g_slist_append(plugins,
54 (gpointer *) &zeroplus_logic_cube_plugin_info);
55 plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
56
57 return SIGROK_OK;
58}
59
60GSList *list_hwplugins(void)
61{
62 return plugins;
63}
64
65struct sigrok_device_instance *sigrok_device_instance_new(int index, int status,
66 char *vendor, char *model, char *version)
67{
68 struct sigrok_device_instance *sdi;
69
70 sdi = malloc(sizeof(struct sigrok_device_instance));
71 if (!sdi)
72 return NULL;
73
74 sdi->index = index;
75 sdi->status = status;
76 sdi->instance_type = -1;
77 sdi->vendor = strdup(vendor);
78 sdi->model = strdup(model);
79 sdi->version = strdup(version);
80 sdi->usb = NULL;
81
82 return sdi;
83}
84
85struct sigrok_device_instance *get_sigrok_device_instance(
86 GSList *device_instances, int device_index)
87{
88 struct sigrok_device_instance *sdi;
89 GSList *l;
90
91 sdi = NULL;
92 for (l = device_instances; l; l = l->next) {
93 sdi = (struct sigrok_device_instance *)(l->data);
94 if (sdi->index == device_index)
95 return sdi;
96 }
97 g_warning("could not find device index %d instance", device_index);
98
99 return NULL;
100}
101
102void sigrok_device_instance_free(struct sigrok_device_instance *sdi)
103{
104 switch (sdi->instance_type) {
105 case USB_INSTANCE:
106 usb_device_instance_free(sdi->usb);
107 break;
108 case SERIAL_INSTANCE:
109 serial_device_instance_free(sdi->serial);
110 break;
111 /* No specific type, nothing extra to free. */
112 }
113
114 free(sdi->vendor);
115 free(sdi->model);
116 free(sdi->version);
117 free(sdi);
118}
119
120struct usb_device_instance *usb_device_instance_new(uint8_t bus,
121 uint8_t address, struct libusb_device_handle *hdl)
122{
123 struct usb_device_instance *udi;
124
125 udi = malloc(sizeof(struct usb_device_instance));
126 if (!udi)
127 return NULL;
128
129 udi->bus = bus;
130 udi->address = address;
131 udi->devhdl = hdl;
132
133 return udi;
134}
135
136void usb_device_instance_free(struct usb_device_instance *usb)
137{
138 /* QUICK HACK */
139 usb = usb;
140
141 /* Nothing to do for this device instance type. */
142}
143
144struct serial_device_instance *serial_device_instance_new(char *port, int fd)
145{
146 struct serial_device_instance *serial;
147
148 serial = malloc(sizeof(struct serial_device_instance));
149 if (!serial)
150 return NULL;
151
152 serial->port = strdup(port);
153 serial->fd = fd;
154
155 return serial;
156}
157
158void serial_device_instance_free(struct serial_device_instance *serial)
159{
160 free(serial->port);
161}
162
163int find_hwcap(int *capabilities, int hwcap)
164{
165 int i;
166
167 for (i = 0; capabilities[i]; i++)
168 if (capabilities[i] == hwcap)
169 return TRUE;
170
171 return FALSE;
172}
173
174struct hwcap_option *find_hwcap_option(int hwcap)
175{
176 struct hwcap_option *hwo;
177 int i;
178
179 hwo = NULL;
180 for (i = 0; hwcap_options[i].capability; i++) {
181 if (hwcap_options[i].capability == hwcap) {
182 hwo = &hwcap_options[i];
183 break;
184 }
185 }
186
187 return hwo;
188}
189
190void source_remove(int fd)
191{
192 if (source_cb_remove)
193 source_cb_remove(fd);
194}
195
196void source_add(int fd, int events, int timeout, receive_data_callback rcv_cb,
197 void *user_data)
198{
199 if (source_cb_add)
200 source_cb_add(fd, events, timeout, rcv_cb, user_data);
201}