]> sigrok.org Git - libsigrok.git/blame - hardware/openbench-logic-sniffer/protocol.h
ols: add swap channels feature
[libsigrok.git] / hardware / openbench-logic-sniffer / protocol.h
CommitLineData
4fe9a6da 1/*
50985c20 2 * This file is part of the libsigrok project.
4fe9a6da 3 *
13d8e03c 4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
4fe9a6da
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
0aba65da
UH
20#ifndef LIBSIGROK_HARDWARE_OPENBENCH_LOGIC_SNIFFER_PROTOCOL_H
21#define LIBSIGROK_HARDWARE_OPENBENCH_LOGIC_SNIFFER_PROTOCOL_H
22
23#include <stdint.h>
24#include <string.h>
25#include <glib.h>
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
4fe9a6da 28
29a27196
UH
29/* Message logging helpers with subsystem-specific prefix string. */
30#define LOG_PREFIX "ols: "
31#define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
32#define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
33#define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
34#define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
35#define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
36#define sr_err(s, args...) sr_err(LOG_PREFIX s, ## args)
a567547e 37
4fe9a6da
BV
38#define NUM_PROBES 32
39#define NUM_TRIGGER_STAGES 4
c50277a6 40#define TRIGGER_TYPE "01"
4fe9a6da
BV
41#define SERIAL_SPEED B115200
42#define CLOCK_RATE SR_MHZ(100)
43#define MIN_NUM_SAMPLES 4
bf256783 44#define DEFAULT_SAMPLERATE SR_KHZ(200)
4fe9a6da
BV
45
46/* Command opcodes */
47#define CMD_RESET 0x00
48#define CMD_RUN 0x01
967760a8 49#define CMD_TESTMODE 0x03
4fe9a6da
BV
50#define CMD_ID 0x02
51#define CMD_METADATA 0x04
52#define CMD_SET_FLAGS 0x82
53#define CMD_SET_DIVIDER 0x80
54#define CMD_CAPTURE_SIZE 0x81
55#define CMD_SET_TRIGGER_MASK_0 0xc0
56#define CMD_SET_TRIGGER_MASK_1 0xc4
57#define CMD_SET_TRIGGER_MASK_2 0xc8
58#define CMD_SET_TRIGGER_MASK_3 0xcc
59#define CMD_SET_TRIGGER_VALUE_0 0xc1
60#define CMD_SET_TRIGGER_VALUE_1 0xc5
61#define CMD_SET_TRIGGER_VALUE_2 0xc9
62#define CMD_SET_TRIGGER_VALUE_3 0xcd
63#define CMD_SET_TRIGGER_CONFIG_0 0xc2
64#define CMD_SET_TRIGGER_CONFIG_1 0xc6
65#define CMD_SET_TRIGGER_CONFIG_2 0xca
66#define CMD_SET_TRIGGER_CONFIG_3 0xce
67
68/* Bitmasks for CMD_FLAGS */
69#define FLAG_DEMUX 0x01
70#define FLAG_FILTER 0x02
71#define FLAG_CHANNELGROUP_1 0x04
72#define FLAG_CHANNELGROUP_2 0x08
73#define FLAG_CHANNELGROUP_3 0x10
74#define FLAG_CHANNELGROUP_4 0x20
75#define FLAG_CLOCK_EXTERNAL 0x40
76#define FLAG_CLOCK_INVERTED 0x80
77#define FLAG_RLE 0x0100
7b0a57fd 78#define FLAG_SWAP_PROBES 0x0200
967760a8
MR
79#define FLAG_EXTERNAL_TEST_MODE 0x0400
80#define FLAG_INTERNAL_TEST_MODE 0x0800
4fe9a6da 81
ea9cfed7 82/* Private, per-device-instance driver context. */
fefc4b85 83struct dev_context {
bf256783 84 /* Fixed device settings */
4fe9a6da 85 uint32_t max_samples;
bf256783 86 uint32_t max_samplerate;
4fe9a6da 87 uint32_t protocol_version;
4fe9a6da 88
bf256783 89 /* Acquisition settings */
4fe9a6da
BV
90 uint64_t cur_samplerate;
91 uint32_t cur_samplerate_divider;
92 uint64_t limit_samples;
4fe9a6da
BV
93 int capture_ratio;
94 int trigger_at;
95 uint32_t probe_mask;
96 uint32_t trigger_mask[4];
97 uint32_t trigger_value[4];
98 int num_stages;
bf256783 99 uint32_t flag_reg;
4fe9a6da 100
bf256783 101 /* Operational states */
4fe9a6da 102 unsigned int num_transfers;
22130421 103 unsigned int num_samples;
4fe9a6da 104 int num_bytes;
bf256783
BV
105
106 /* Temporary variables */
00d04d3b 107 unsigned int rle_count;
4fe9a6da
BV
108 unsigned char sample[4];
109 unsigned char tmp_sample[4];
110 unsigned char *raw_sample_buf;
111};
112
0aba65da
UH
113
114SR_PRIV extern const char *ols_probe_names[NUM_PROBES + 1];
115
116SR_PRIV int send_shortcommand(struct sr_serial_dev_inst *serial,
117 uint8_t command);
118SR_PRIV int send_longcommand(struct sr_serial_dev_inst *serial,
119 uint8_t command, uint32_t data);
120SR_PRIV int ols_configure_probes(const struct sr_dev_inst *sdi);
121SR_PRIV uint32_t reverse16(uint32_t in);
122SR_PRIV uint32_t reverse32(uint32_t in);
123SR_PRIV struct dev_context *ols_dev_new(void);
124SR_PRIV struct sr_dev_inst *get_metadata(struct sr_serial_dev_inst *serial);
125SR_PRIV int ols_set_samplerate(const struct sr_dev_inst *sdi,
e46aa4f6 126 uint64_t samplerate);
0aba65da
UH
127SR_PRIV void abort_acquisition(const struct sr_dev_inst *sdi);
128SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data);
129
0f8522bf 130#endif