]> sigrok.org Git - libsigrok.git/blob - hardware/fx2lafw/fx2lafw.h
fx2lafw: Added a check to limit the sample rate during 16-bit sampling
[libsigrok.git] / hardware / fx2lafw / fx2lafw.h
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include <glib.h>
22 #include <stdbool.h>
23
24 #ifndef LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
25 #define LIBSIGROK_HARDWARE_FX2LAFW_FX2LAFW_H
26
27 #define USB_INTERFACE           0
28 #define USB_CONFIGURATION       1
29 #define NUM_TRIGGER_STAGES      4
30 #define TRIGGER_TYPES           "01"
31
32 #define MAX_RENUM_DELAY_MS      3000
33 #define NUM_SIMUL_TRANSFERS     32
34 #define MAX_EMPTY_TRANSFERS     (NUM_SIMUL_TRANSFERS * 2)
35
36 #define FX2LAFW_REQUIRED_VERSION_MAJOR  1
37
38 #define MAX_8BIT_SAMPLE_RATE    SR_MHZ(24)
39 #define MAX_16BIT_SAMPLE_RATE   SR_MHZ(12)
40
41 /* 6 delay states of up to 256 clock ticks */
42 #define MAX_SAMPLE_DELAY        (6 * 256)
43
44 /* Software trigger implementation: positive values indicate trigger stage. */
45 #define TRIGGER_FIRED          -1
46
47 #define DEV_CAPS_16BIT_POS      0
48
49 #define DEV_CAPS_16BIT          (1 << DEV_CAPS_16BIT_POS)
50
51 struct fx2lafw_profile {
52         uint16_t vid;
53         uint16_t pid;
54
55         const char *vendor;
56         const char *model;
57         const char *model_version;
58
59         const char *firmware;
60
61         uint32_t dev_caps;
62 };
63
64 struct context {
65         const struct fx2lafw_profile *profile;
66
67         /*
68          * Since we can't keep track of an fx2lafw device after upgrading
69          * the firmware (it re-enumerates into a different device address
70          * after the upgrade) this is like a global lock. No device will open
71          * until a proper delay after the last device was upgraded.
72          */
73         int64_t fw_updated;
74
75         /* Device/capture settings */
76         uint64_t cur_samplerate;
77         uint64_t limit_samples;
78
79         bool sample_wide;
80
81         uint16_t trigger_mask[NUM_TRIGGER_STAGES];
82         uint16_t trigger_value[NUM_TRIGGER_STAGES];
83         int trigger_stage;
84         uint16_t trigger_buffer[NUM_TRIGGER_STAGES];
85
86         int num_samples;
87         int submitted_transfers;
88
89         void *session_dev_id;
90
91         struct sr_usb_dev_inst *usb;
92 };
93
94 #endif