]> sigrok.org Git - libsigrok.git/blame - hardware/fx2lafw/protocol.h
teleinfo: Minor cleanups.
[libsigrok.git] / hardware / fx2lafw / protocol.h
CommitLineData
f302a082 1/*
50985c20 2 * This file is part of the libsigrok project.
f302a082 3 *
13d8e03c 4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
f302a082
JH
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
2f937611
UH
21#ifndef LIBSIGROK_HARDWARE_FX2LAFW_PROTOCOL_H
22#define LIBSIGROK_HARDWARE_FX2LAFW_PROTOCOL_H
f302a082 23
b99457f0 24#include <glib.h>
2f937611
UH
25#include <stdint.h>
26#include <stdlib.h>
27#include <string.h>
28#include <libusb.h>
29#include "libsigrok.h"
30#include "libsigrok-internal.h"
b99457f0 31
29a27196
UH
32/* Message logging helpers with subsystem-specific prefix string. */
33#define LOG_PREFIX "fx2lafw: "
34#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
35#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
36#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
37#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
38#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
39#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
b99457f0 40
b1eeb67e
JH
41#define USB_INTERFACE 0
42#define USB_CONFIGURATION 1
6c6781b6 43#define NUM_TRIGGER_STAGES 4
c50277a6 44#define TRIGGER_TYPE "01"
8b35f474 45
f60fdf6e 46#define MAX_RENUM_DELAY_MS 3000
ecc16ed0 47#define NUM_SIMUL_TRANSFERS 32
610dbb70 48#define MAX_EMPTY_TRANSFERS (NUM_SIMUL_TRANSFERS * 2)
43125c69 49
0a8c0c32 50#define FX2LAFW_REQUIRED_VERSION_MAJOR 1
13bf7ecc 51
f4575b65
JH
52#define MAX_8BIT_SAMPLE_RATE SR_MHZ(24)
53#define MAX_16BIT_SAMPLE_RATE SR_MHZ(12)
54
37dc0b16
UH
55/* 6 delay states of up to 256 clock ticks */
56#define MAX_SAMPLE_DELAY (6 * 256)
13bf7ecc 57
6c6781b6
JH
58/* Software trigger implementation: positive values indicate trigger stage. */
59#define TRIGGER_FIRED -1
60
d1ddc7a9
JH
61#define DEV_CAPS_16BIT_POS 0
62
63#define DEV_CAPS_16BIT (1 << DEV_CAPS_16BIT_POS)
64
187b3582
JH
65struct fx2lafw_profile {
66 uint16_t vid;
67 uint16_t pid;
68
6ccfadaf
JH
69 const char *vendor;
70 const char *model;
71 const char *model_version;
187b3582 72
f8b07fc6
JH
73 const char *firmware;
74
d1ddc7a9 75 uint32_t dev_caps;
187b3582
JH
76};
77
dc9dbe94 78struct dev_context {
4679d14d 79 const struct fx2lafw_profile *profile;
b1eeb67e
JH
80 /*
81 * Since we can't keep track of an fx2lafw device after upgrading
b99457f0 82 * the firmware (it renumerates into a different device address
b1eeb67e
JH
83 * after the upgrade) this is like a global lock. No device will open
84 * until a proper delay after the last device was upgraded.
85 */
e8bd58ff 86 int64_t fw_updated;
b1eeb67e 87
921634ec 88 /* Device/capture settings */
e3186647 89 uint64_t cur_samplerate;
7cb621d4
JH
90 uint64_t limit_samples;
91
0a7da5f8 92 /* Operational settings */
0a88ec3d 93 gboolean sample_wide;
d1ddc7a9
JH
94 uint16_t trigger_mask[NUM_TRIGGER_STAGES];
95 uint16_t trigger_value[NUM_TRIGGER_STAGES];
6c6781b6 96 int trigger_stage;
d1ddc7a9 97 uint16_t trigger_buffer[NUM_TRIGGER_STAGES];
6c6781b6 98
2e526f4a 99 int num_samples;
cb61e9f7 100 int submitted_transfers;
2769eed9 101 int empty_transfer_count;
2e526f4a 102
3e9b7f9c 103 void *cb_data;
0caa1ef0
LPC
104 unsigned int num_transfers;
105 struct libusb_transfer **transfers;
6c60facc 106 struct sr_context *ctx;
187b3582
JH
107};
108
2f937611
UH
109SR_PRIV int fx2lafw_command_start_acquisition(libusb_device_handle *devhdl,
110 uint64_t samplerate, gboolean samplewide);
111SR_PRIV gboolean fx2lafw_check_conf_profile(libusb_device *dev);
112SR_PRIV int fx2lafw_dev_open(struct sr_dev_inst *sdi, struct sr_dev_driver *di);
113SR_PRIV int fx2lafw_configure_probes(const struct sr_dev_inst *sdi);
114SR_PRIV struct dev_context *fx2lafw_dev_new(void);
115SR_PRIV void fx2lafw_abort_acquisition(struct dev_context *devc);
116SR_PRIV void fx2lafw_receive_transfer(struct libusb_transfer *transfer);
117SR_PRIV size_t fx2lafw_get_buffer_size(struct dev_context *devc);
118SR_PRIV unsigned int fx2lafw_get_number_of_transfers(struct dev_context *devc);
119SR_PRIV unsigned int fx2lafw_get_timeout(struct dev_context *devc);
120
f302a082 121#endif