]> sigrok.org Git - libsigrok.git/blame - hardware/saleae-logic16/protocol.h
saleae-logic16: Cleanup the prime_fpga function
[libsigrok.git] / hardware / saleae-logic16 / protocol.h
CommitLineData
c463dcf0
MC
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Marcus Comstedt <marcus@mc.pp.se>
fec7aa6a
MC
5 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
6 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
c463dcf0
MC
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#ifndef LIBSIGROK_HARDWARE_SALEAE_LOGIC16_PROTOCOL_H
23#define LIBSIGROK_HARDWARE_SALEAE_LOGIC16_PROTOCOL_H
24
25#include <stdint.h>
26#include <glib.h>
27#include "libsigrok.h"
28#include "libsigrok-internal.h"
29
30/* Message logging helpers with subsystem-specific prefix string. */
31#define LOG_PREFIX "saleae-logic16: "
32#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
33#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
34#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
35#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
36#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
37#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
38
15abcf0f
MC
39enum voltage_range {
40 VOLTAGE_RANGE_UNKNOWN,
41 VOLTAGE_RANGE_18_33_V, /* 1.8V and 3.3V logic */
42 VOLTAGE_RANGE_5_V, /* 5V logic */
43};
44
c463dcf0
MC
45/** Private, per-device-instance driver context. */
46struct dev_context {
5eea4305
MC
47 /*
48 * Since we can't keep track of a Logic16 device after upgrading
49 * the firmware (it renumerates into a different device address
50 * after the upgrade) this is like a global lock. No device will open
51 * until a proper delay after the last device was upgraded.
52 */
53 int64_t fw_updated;
54
f6a21fa5
MC
55 /** The currently configured samplerate of the device. */
56 uint64_t cur_samplerate;
15abcf0f 57
7b5daad4
MC
58 /** Maximum number of samples to capture, if nonzero */
59 uint64_t limit_samples;
60
15abcf0f
MC
61 /** The currently configured input voltage of the device */
62 enum voltage_range cur_voltage_range;
63
db11d7d2
MC
64 /** The input voltage selected by the user */
65 enum voltage_range selected_voltage_range;
66
7b5daad4
MC
67 /** Channels to use */
68 uint16_t cur_channels;
69
15abcf0f
MC
70 /*
71 * EEPROM data from address 8
72 */
73 uint8_t eeprom_data[8];
7b5daad4
MC
74
75 int64_t num_samples;
76 int submitted_transfers;
77 int empty_transfer_count;
78 int num_channels, cur_channel;
79 uint16_t channel_masks[16];
80 uint16_t channel_data[16];
81 uint8_t *convbuffer;
82 size_t convbuffer_size;
83
84 void *cb_data;
85 unsigned int num_transfers;
86 struct libusb_transfer **transfers;
87 int *usbfd;
c463dcf0
MC
88};
89
7b5daad4
MC
90SR_PRIV int saleae_logic16_setup_acquisition(const struct sr_dev_inst *sdi,
91 uint64_t samplerate,
92 uint16_t channels);
93SR_PRIV int saleae_logic16_start_acquisition(const struct sr_dev_inst *sdi);
15abcf0f
MC
94SR_PRIV int saleae_logic16_abort_acquisition(const struct sr_dev_inst *sdi);
95SR_PRIV int saleae_logic16_init_device(const struct sr_dev_inst *sdi);
7b5daad4 96SR_PRIV void saleae_logic16_receive_transfer(struct libusb_transfer *transfer);
c463dcf0
MC
97
98#endif