]> sigrok.org Git - libsigrok.git/blame_incremental - hwplugin.c
Add HZ_TO_NS macro
[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 {0, 0, NULL, NULL},
43};
44
45extern struct device_plugin demo_plugin_info;
46#ifdef HAVE_LA_SALEAE_LOGIC
47extern struct device_plugin saleae_logic_plugin_info;
48#endif
49#ifdef HAVE_LA_OLS
50extern struct device_plugin ols_plugin_info;
51#endif
52#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
53extern struct device_plugin zeroplus_logic_cube_plugin_info;
54#endif
55#ifdef HAVE_LA_ASIX_SIGMA
56extern struct device_plugin asix_sigma_plugin_info;
57#endif
58
59/* TODO: No linked list needed, this can be a simple array. */
60int load_hwplugins(void)
61{
62 plugins = g_slist_append(plugins, (gpointer *)&demo_plugin_info);
63#ifdef HAVE_LA_SALEAE_LOGIC
64 plugins =
65 g_slist_append(plugins, (gpointer *)&saleae_logic_plugin_info);
66#endif
67#ifdef HAVE_LA_OLS
68 plugins = g_slist_append(plugins, (gpointer *)&ols_plugin_info);
69#endif
70#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
71 plugins = g_slist_append(plugins,
72 (gpointer *)&zeroplus_logic_cube_plugin_info);
73#endif
74#ifdef HAVE_LA_ASIX_SIGMA
75 plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
76#endif
77
78 return SIGROK_OK;
79}
80
81GSList *list_hwplugins(void)
82{
83 return plugins;
84}
85
86struct sigrok_device_instance *sigrok_device_instance_new(int index, int status,
87 const char *vendor, const char *model, const char *version)
88{
89 struct sigrok_device_instance *sdi;
90
91 if (!(sdi = malloc(sizeof(struct sigrok_device_instance))))
92 return NULL;
93
94 sdi->index = index;
95 sdi->status = status;
96 sdi->instance_type = -1;
97 sdi->vendor = strdup(vendor);
98 sdi->model = strdup(model);
99 sdi->version = strdup(version);
100 sdi->usb = NULL;
101
102 return sdi;
103}
104
105struct sigrok_device_instance *get_sigrok_device_instance(
106 GSList *device_instances, int device_index)
107{
108 struct sigrok_device_instance *sdi;
109 GSList *l;
110
111 for (l = device_instances; l; l = l->next) {
112 sdi = (struct sigrok_device_instance *)(l->data);
113 if (sdi->index == device_index)
114 return sdi;
115 }
116 g_warning("could not find device index %d instance", device_index);
117
118 return NULL;
119}
120
121void sigrok_device_instance_free(struct sigrok_device_instance *sdi)
122{
123 switch (sdi->instance_type) {
124 case USB_INSTANCE:
125 usb_device_instance_free(sdi->usb);
126 break;
127 case SERIAL_INSTANCE:
128 serial_device_instance_free(sdi->serial);
129 break;
130 default:
131 /* No specific type, nothing extra to free. */
132 break;
133 }
134
135 free(sdi->vendor);
136 free(sdi->model);
137 free(sdi->version);
138 free(sdi);
139}
140
141struct usb_device_instance *usb_device_instance_new(uint8_t bus,
142 uint8_t address, struct libusb_device_handle *hdl)
143{
144 struct usb_device_instance *udi;
145
146 if (!(udi = malloc(sizeof(struct usb_device_instance))))
147 return NULL;
148
149 udi->bus = bus;
150 udi->address = address;
151 udi->devhdl = hdl; /* TODO: Check if this is NULL? */
152
153 return udi;
154}
155
156void usb_device_instance_free(struct usb_device_instance *usb)
157{
158 /* QUICK HACK */
159 usb = usb;
160
161 /* Nothing to do for this device instance type. */
162}
163
164struct serial_device_instance *serial_device_instance_new(
165 const char *port, int fd)
166{
167 struct serial_device_instance *serial;
168
169 if (!(serial = malloc(sizeof(struct serial_device_instance))))
170 return NULL;
171
172 serial->port = strdup(port);
173 serial->fd = fd;
174
175 return serial;
176}
177
178void serial_device_instance_free(struct serial_device_instance *serial)
179{
180 free(serial->port);
181}
182
183int find_hwcap(int *capabilities, int hwcap)
184{
185 int i;
186
187 for (i = 0; capabilities[i]; i++) {
188 if (capabilities[i] == hwcap)
189 return TRUE;
190 }
191
192 return FALSE;
193}
194
195struct hwcap_option *find_hwcap_option(int hwcap)
196{
197 int i;
198
199 for (i = 0; hwcap_options[i].capability; i++) {
200 if (hwcap_options[i].capability == hwcap)
201 return &hwcap_options[i];
202 }
203
204 return NULL;
205}
206
207void source_remove(int fd)
208{
209 if (source_cb_remove)
210 source_cb_remove(fd);
211}
212
213void source_add(int fd, int events, int timeout, receive_data_callback rcv_cb,
214 void *user_data)
215{
216 if (source_cb_add)
217 source_cb_add(fd, events, timeout, rcv_cb, user_data);
218}