]> sigrok.org Git - libsigrok.git/blame - hardware/saleae-logic/saleae-logic.h
salae: Only terminate session after all transfers have been aborted
[libsigrok.git] / hardware / saleae-logic / saleae-logic.h
CommitLineData
6d754b6d
BV
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
6d754b6d
BV
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
0f8522bf
UH
20#ifndef LIBSIGROK_HARDWARE_SALEAE_LOGIC_SALEAE_LOGIC_H
21#define LIBSIGROK_HARDWARE_SALEAE_LOGIC_SALEAE_LOGIC_H
6d754b6d
BV
22
23#define USB_INTERFACE 0
24#define USB_CONFIGURATION 1
25#define NUM_TRIGGER_STAGES 4
26#define TRIGGER_TYPES "01"
27#define FIRMWARE FIRMWARE_DIR "/saleae-logic.fw"
6d754b6d
BV
28
29/* delay in ms */
30#define MAX_RENUM_DELAY 3000
31#define NUM_SIMUL_TRANSFERS 10
32#define MAX_EMPTY_TRANSFERS (NUM_SIMUL_TRANSFERS * 2)
33
34/* Software trigger implementation: positive values indicate trigger stage. */
35#define TRIGGER_FIRED -1
36
37struct fx2_profile {
38 /* VID/PID when first found */
39 uint16_t orig_vid;
40 uint16_t orig_pid;
41 /* VID/PID after firmware upload */
42 uint16_t fw_vid;
43 uint16_t fw_pid;
44 char *vendor;
45 char *model;
46 char *model_version;
47 int num_probes;
48};
49
ea9cfed7
UH
50/* Private, per-device-instance driver context. */
51struct context {
6d754b6d
BV
52 struct fx2_profile *profile;
53 /*
bb7ef793
UH
54 * Since we can't keep track of a Saleae Logic device after upgrading
55 * the firmware (it re-enumerates into a different device address
56 * after the upgrade) this is like a global lock. No device will open
57 * until a proper delay after the last device was upgraded.
6d754b6d
BV
58 */
59 GTimeVal fw_updated;
60 /* device/capture settings */
61 uint64_t cur_samplerate;
62 uint64_t limit_samples;
63 uint8_t probe_mask;
64 uint8_t trigger_mask[NUM_TRIGGER_STAGES];
65 uint8_t trigger_value[NUM_TRIGGER_STAGES];
66 int trigger_stage;
67 uint8_t trigger_buffer[NUM_TRIGGER_STAGES];
266784d5 68 int num_samples;
ec888f62
JH
69 int submitted_transfers;
70
6d754b6d
BV
71 /*
72 * opaque session data passed in by the frontend, will be passed back
73 * on the session bus along with samples.
74 */
3cd3a20b 75 void *session_dev_id;
69890f73 76
d68e2d1a 77 struct sr_usb_dev_inst *usb;
6d754b6d
BV
78};
79
0f8522bf 80#endif