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