]> sigrok.org Git - libsigrok.git/blob - hardware/fx2lafw/fx2lafw.h
227854c899742b89dac71f6904628e3feb283ccb
[libsigrok.git] / hardware / fx2lafw / fx2lafw.h
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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 <glib.h>
21
22 #ifndef LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
23 #define LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
24
25 #define USB_INTERFACE           0
26 #define USB_CONFIGURATION       1
27 #define NUM_TRIGGER_STAGES      4
28 #define TRIGGER_TYPES           "01"
29
30 #define MAX_RENUM_DELAY_MS      3000
31 #define NUM_SIMUL_TRANSFERS     32
32 #define MAX_EMPTY_TRANSFERS     (NUM_SIMUL_TRANSFERS * 2)
33
34 #define FX2LAFW_REQUIRED_VERSION_MAJOR  1
35
36 /* 6 delay states of up to 256 clock ticks */
37 #define MAX_SAMPLE_DELAY        (6 * 256)
38
39 /* Software trigger implementation: positive values indicate trigger stage. */
40 #define TRIGGER_FIRED          -1
41
42 struct fx2lafw_profile {
43         uint16_t vid;
44         uint16_t pid;
45
46         const char *vendor;
47         const char *model;
48         const char *model_version;
49
50         const char *firmware;
51
52         int num_probes;
53 };
54
55 struct context {
56         const struct fx2lafw_profile *profile;
57
58         /*
59          * Since we can't keep track of an fx2lafw device after upgrading
60          * the firmware (it re-enumerates into a different device address
61          * after the upgrade) this is like a global lock. No device will open
62          * until a proper delay after the last device was upgraded.
63          */
64         int64_t fw_updated;
65
66         /* Device/capture settings */
67         uint64_t cur_samplerate;
68         uint64_t limit_samples;
69
70         uint8_t trigger_mask[NUM_TRIGGER_STAGES];
71         uint8_t trigger_value[NUM_TRIGGER_STAGES];
72         int trigger_stage;
73         uint8_t trigger_buffer[NUM_TRIGGER_STAGES];
74
75         int num_samples;
76         int submitted_transfers;
77
78         void *session_dev_id;
79
80         struct sr_usb_dev_inst *usb;
81 };
82
83 #endif