]> sigrok.org Git - libsigrok.git/blame - src/hardware/ipdbg-la/api.c
ipdbg-la: Simplify config_get/_set/_list.
[libsigrok.git] / src / hardware / ipdbg-la / api.c
CommitLineData
a4210e18
EK
1/*
2 * This file is part of the libsigrok project.
3 *
932ef10f 4 * Copyright (C) 2016 Eva Kissling <eva.kissling@bluewin.ch>
a4210e18
EK
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 <config.h>
21#include "protocol.h"
22
1f15efc1 23static const uint32_t drvopts[] = {
9d2e5483 24 SR_CONF_LOGIC_ANALYZER,
a4210e18
EK
25};
26
1f15efc1 27static const uint32_t scanopts[] = {
9d2e5483 28 SR_CONF_CONN,
a4210e18
EK
29};
30
1f15efc1 31static const uint32_t devopts[] = {
1f9652a8 32 SR_CONF_TRIGGER_MATCH | SR_CONF_LIST,
9d2e5483 33 SR_CONF_CAPTURE_RATIO | SR_CONF_GET | SR_CONF_SET,
1f9652a8 34 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
a4210e18
EK
35};
36
1f15efc1 37static const int32_t trigger_matches[] = {
9d2e5483
SA
38 SR_TRIGGER_ZERO,
39 SR_TRIGGER_ONE,
40 SR_TRIGGER_RISING,
41 SR_TRIGGER_FALLING,
42 SR_TRIGGER_EDGE,
a4210e18
EK
43};
44
45SR_PRIV struct sr_dev_driver ipdbg_la_driver_info;
46
8a9788e2 47static void ipdbg_la_split_addr_port(const char *conn, char **addr,
9d2e5483 48 char **port)
a4210e18 49{
9d2e5483 50 char **strs = g_strsplit(conn, "/", 3);
a4210e18 51
9d2e5483
SA
52 *addr = g_strdup(strs[1]);
53 *port = g_strdup(strs[2]);
a4210e18 54
9d2e5483 55 g_strfreev(strs);
a4210e18
EK
56}
57
58static GSList *scan(struct sr_dev_driver *di, GSList *options)
59{
9d2e5483
SA
60 struct drv_context *drvc;
61 GSList *devices;
a4210e18 62
9d2e5483
SA
63 devices = NULL;
64 drvc = di->context;
65 drvc->instances = NULL;
66 const char *conn;
67 struct sr_config *src;
68 GSList *l;
a4210e18 69
9d2e5483
SA
70 conn = NULL;
71 for (l = options; l; l = l->next) {
72 src = l->data;
73 switch (src->key) {
74 case SR_CONF_CONN:
75 conn = g_variant_get_string(src->data, NULL);
76 break;
77 }
78 }
a4210e18 79
9d2e5483
SA
80 if (!conn)
81 return NULL;
a4210e18 82
8a9788e2 83 struct ipdbg_la_tcp *tcp = ipdbg_la_tcp_new();
a4210e18 84
8a9788e2 85 ipdbg_la_split_addr_port(conn, &tcp->address, &tcp->port);
a4210e18 86
9d2e5483
SA
87 if (!tcp->address)
88 return NULL;
a4210e18 89
8a9788e2 90 if (ipdbg_la_tcp_open(tcp) != SR_OK)
9d2e5483 91 return NULL;
a4210e18 92
8a9788e2
UH
93 ipdbg_la_send_reset(tcp);
94 ipdbg_la_send_reset(tcp);
ed186484 95
8a9788e2 96 if (ipdbg_la_request_id(tcp) != SR_OK)
ed186484 97 return NULL;
a4210e18 98
9d2e5483
SA
99 struct sr_dev_inst *sdi = g_malloc0(sizeof(struct sr_dev_inst));
100 if (!sdi) {
101 sr_err("no possible to allocate sr_dev_inst");
102 return NULL;
103 }
7f4c9a04 104
9d2e5483
SA
105 sdi->status = SR_ST_INACTIVE;
106 sdi->vendor = g_strdup("ipdbg.org");
8a9788e2 107 sdi->model = g_strdup("IPDBG LA");
9d2e5483
SA
108 sdi->version = g_strdup("v1.0");
109 sdi->driver = di;
a4210e18 110
1f15efc1 111 struct dev_context *devc = ipdbg_la_dev_new();
9d2e5483 112 sdi->priv = devc;
a4210e18 113
8a9788e2 114 ipdbg_la_get_addrwidth_and_datawidth(tcp, devc);
a4210e18 115
9d2e5483
SA
116 sr_dbg("addr_width = %d, data_width = %d\n", devc->ADDR_WIDTH,
117 devc->DATA_WIDTH);
118 sr_dbg("limit samples = %" PRIu64 "\n", devc->limit_samples_max);
7f4c9a04 119
9d2e5483
SA
120 for (uint32_t i = 0; i < devc->DATA_WIDTH; i++) {
121 const uint8_t buf_size = 16;
122 char buf[buf_size];
123 snprintf(buf, buf_size, "ch%d", i);
124 sr_channel_new(sdi, i, SR_CHANNEL_LOGIC, TRUE, buf);
125 }
a4210e18 126
9d2e5483
SA
127 sdi->inst_type = SR_INST_USER;
128 sdi->conn = tcp;
a4210e18 129
8a9788e2 130 ipdbg_la_tcp_close(tcp);
a4210e18 131
9d2e5483 132 devices = g_slist_append(devices, sdi);
750303aa 133
9d2e5483 134 return std_scan_complete(di, devices);
a4210e18
EK
135}
136
137static int dev_clear(const struct sr_dev_driver *di)
138{
9d2e5483
SA
139 struct drv_context *drvc = di->context;
140 struct sr_dev_inst *sdi;
141 GSList *l;
142
143 if (drvc) {
144 for (l = drvc->instances; l; l = l->next) {
145 sdi = l->data;
8a9788e2 146 struct ipdbg_la_tcp *tcp = sdi->conn;
9d2e5483 147 if (tcp) {
8a9788e2
UH
148 ipdbg_la_tcp_close(tcp);
149 ipdbg_la_tcp_free(tcp);
9d2e5483
SA
150 g_free(tcp);
151 }
152 sdi->conn = NULL;
153 }
154 }
155
156 return std_dev_clear(di);
a4210e18
EK
157}
158
159static int dev_open(struct sr_dev_inst *sdi)
160{
9d2e5483 161 sdi->status = SR_ST_INACTIVE;
a4210e18 162
8a9788e2 163 struct ipdbg_la_tcp *tcp = sdi->conn;
a4210e18 164
9d2e5483
SA
165 if (!tcp)
166 return SR_ERR;
a4210e18 167
8a9788e2 168 if (ipdbg_la_tcp_open(tcp) != SR_OK)
9d2e5483 169 return SR_ERR;
a4210e18 170
9d2e5483 171 sdi->status = SR_ST_ACTIVE;
a4210e18 172
9d2e5483 173 return SR_OK;
a4210e18
EK
174}
175
176static int dev_close(struct sr_dev_inst *sdi)
177{
9d2e5483 178 // Should be called before a new call to scan()
8a9788e2 179 struct ipdbg_la_tcp *tcp = sdi->conn;
38e7493d 180
9d2e5483 181 if (tcp)
8a9788e2 182 ipdbg_la_tcp_close(tcp);
a4210e18 183
9d2e5483
SA
184 sdi->conn = NULL;
185 sdi->status = SR_ST_INACTIVE;
a4210e18 186
9d2e5483 187 return SR_OK;
a4210e18
EK
188}
189
190static int config_get(uint32_t key, GVariant **data,
9d2e5483 191 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
a4210e18 192{
77b6b98d 193 struct dev_context *devc = sdi->priv;
a4210e18 194
9d2e5483 195 (void)cg;
a4210e18 196
9d2e5483
SA
197 switch (key) {
198 case SR_CONF_CAPTURE_RATIO:
199 *data = g_variant_new_uint64(devc->capture_ratio);
200 break;
201 case SR_CONF_LIMIT_SAMPLES:
202 *data = g_variant_new_uint64(devc->limit_samples);
203 break;
204 default:
77b6b98d 205 return SR_ERR_NA;
9d2e5483 206 }
a4210e18 207
77b6b98d 208 return SR_OK;
a4210e18
EK
209}
210
211static int config_set(uint32_t key, GVariant *data,
9d2e5483 212 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
a4210e18 213{
77b6b98d 214 struct dev_context *devc = sdi->priv;
9d2e5483
SA
215
216 (void)cg;
217
218 if (sdi->status != SR_ST_ACTIVE)
219 return SR_ERR_DEV_CLOSED;
220
9d2e5483
SA
221 switch (key) {
222 case SR_CONF_CAPTURE_RATIO:
77b6b98d 223 devc->capture_ratio = g_variant_get_uint64(data);
9d2e5483
SA
224 break;
225 case SR_CONF_LIMIT_SAMPLES:
77b6b98d 226 devc->limit_samples = g_variant_get_uint64(data);
9d2e5483
SA
227 break;
228 default:
77b6b98d 229 return SR_ERR_NA;
9d2e5483
SA
230 }
231
77b6b98d 232 return SR_OK;
a4210e18
EK
233}
234
235static int config_list(uint32_t key, GVariant **data,
9d2e5483 236 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
a4210e18 237{
9d2e5483
SA
238 switch (key) {
239 case SR_CONF_SCAN_OPTIONS:
9d2e5483 240 case SR_CONF_DEVICE_OPTIONS:
77b6b98d 241 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
9d2e5483 242 case SR_CONF_TRIGGER_MATCH:
77b6b98d 243 *data = std_gvar_array_i32(ARRAY_AND_SIZE(trigger_matches));
9d2e5483
SA
244 break;
245 default:
246 return SR_ERR_NA;
247 }
248
249 return SR_OK;
a4210e18
EK
250}
251
a4210e18
EK
252static int init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
253{
9d2e5483 254 return std_init(di, sr_ctx);
a4210e18
EK
255}
256
a4210e18
EK
257static GSList *dev_list(const struct sr_dev_driver *di)
258{
9d2e5483 259 return ((struct drv_context *)(di->context))->instances;
a4210e18
EK
260}
261
262static int dev_acquisition_start(const struct sr_dev_inst *sdi)
263{
9d2e5483
SA
264 if (sdi->status != SR_ST_ACTIVE)
265 return SR_ERR_DEV_CLOSED;
a4210e18 266
8a9788e2 267 struct ipdbg_la_tcp *tcp = sdi->conn;
1f15efc1 268 struct dev_context *devc = sdi->priv;
a4210e18 269
8a9788e2
UH
270 ipdbg_la_convert_trigger(sdi);
271 ipdbg_la_send_trigger(devc, tcp);
272 ipdbg_la_send_delay(devc, tcp);
a4210e18 273
9d2e5483
SA
274 /* If the device stops sending for longer than it takes to send a byte,
275 * that means it's finished. But wait at least 100 ms to be safe.
276 */
277 sr_session_source_add(sdi->session, tcp->socket, G_IO_IN, 100,
8a9788e2 278 ipdbg_la_receive_data, (struct sr_dev_inst *)sdi);
a4210e18 279
8a9788e2 280 ipdbg_la_send_start(tcp);
a4210e18 281
9d2e5483 282 return SR_OK;
a4210e18
EK
283}
284
285static int dev_acquisition_stop(struct sr_dev_inst *sdi)
286{
8a9788e2 287 struct ipdbg_la_tcp *tcp = sdi->conn;
1f15efc1 288 struct dev_context *devc = sdi->priv;
a4210e18 289
9d2e5483 290 uint8_t byte;
b51288e3 291
9d2e5483
SA
292 if (devc->num_transfers > 0) {
293 while (devc->num_transfers <
294 (devc->limit_samples_max * devc->DATA_WIDTH_BYTES)) {
8a9788e2 295 ipdbg_la_tcp_receive(tcp, &byte);
9d2e5483
SA
296 devc->num_transfers++;
297 }
298 }
a4210e18 299
8a9788e2
UH
300 ipdbg_la_send_reset(tcp);
301 ipdbg_la_abort_acquisition(sdi);
a4210e18 302
9d2e5483 303 return SR_OK;
a4210e18
EK
304}
305
306SR_PRIV struct sr_dev_driver ipdbg_la_driver_info = {
8a9788e2
UH
307 .name = "ipdbg-la",
308 .longname = "IPDBG LA",
9d2e5483
SA
309 .api_version = 1,
310 .init = init,
311 .cleanup = std_cleanup,
312 .scan = scan,
313 .dev_list = dev_list,
314 .dev_clear = dev_clear,
315 .config_get = config_get,
316 .config_set = config_set,
317 .config_list = config_list,
318 .dev_open = dev_open,
319 .dev_close = dev_close,
320 .dev_acquisition_start = dev_acquisition_start,
321 .dev_acquisition_stop = dev_acquisition_stop,
322 .context = NULL,
a4210e18
EK
323};
324
325SR_REGISTER_DEV_DRIVER(ipdbg_la_driver_info);