]> sigrok.org Git - libsigrok.git/blame - src/hardware/openbench-logic-sniffer/protocol.h
ols: simplify calculation of readcount
[libsigrok.git] / src / 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>
c1aae900 26#include <libsigrok/libsigrok.h>
0aba65da 27#include "libsigrok-internal.h"
4fe9a6da 28
8dacbcf6 29#define LOG_PREFIX "openbench-logic-sniffer"
a567547e 30
17dda6c5
UH
31#define NUM_CHANNELS 32
32#define NUM_TRIGGER_STAGES 4
17dda6c5
UH
33#define CLOCK_RATE SR_MHZ(100)
34#define MIN_NUM_SAMPLES 4
35#define DEFAULT_SAMPLERATE SR_KHZ(200)
4fe9a6da
BV
36
37/* Command opcodes */
38#define CMD_RESET 0x00
39#define CMD_RUN 0x01
967760a8 40#define CMD_TESTMODE 0x03
4fe9a6da
BV
41#define CMD_ID 0x02
42#define CMD_METADATA 0x04
43#define CMD_SET_FLAGS 0x82
44#define CMD_SET_DIVIDER 0x80
45#define CMD_CAPTURE_SIZE 0x81
016e72f3
BV
46#define CMD_SET_TRIGGER_MASK 0xc0
47#define CMD_SET_TRIGGER_VALUE 0xc1
48#define CMD_SET_TRIGGER_CONFIG 0xc2
49
50/* Trigger config */
51#define TRIGGER_START (1 << 3)
4fe9a6da
BV
52
53/* Bitmasks for CMD_FLAGS */
016e72f3
BV
54/* 12-13 unused, 14-15 RLE mode (we hardcode mode 0). */
55#define FLAG_INTERNAL_TEST_MODE (1 << 11)
56#define FLAG_EXTERNAL_TEST_MODE (1 << 10)
17dda6c5 57#define FLAG_SWAP_CHANNELS (1 << 9)
016e72f3
BV
58#define FLAG_RLE (1 << 8)
59#define FLAG_SLOPE_FALLING (1 << 7)
60#define FLAG_CLOCK_EXTERNAL (1 << 6)
61#define FLAG_CHANNELGROUP_4 (1 << 5)
62#define FLAG_CHANNELGROUP_3 (1 << 4)
63#define FLAG_CHANNELGROUP_2 (1 << 3)
64#define FLAG_CHANNELGROUP_1 (1 << 2)
65#define FLAG_FILTER (1 << 1)
66#define FLAG_DEMUX (1 << 0)
4fe9a6da 67
fefc4b85 68struct dev_context {
ba7dd8bb 69 int max_channels;
4fe9a6da 70 uint32_t max_samples;
bf256783 71 uint32_t max_samplerate;
4fe9a6da 72 uint32_t protocol_version;
4fe9a6da
BV
73
74 uint64_t cur_samplerate;
75 uint32_t cur_samplerate_divider;
76 uint64_t limit_samples;
efad7ccc 77 uint64_t capture_ratio;
4fe9a6da 78 int trigger_at;
ba7dd8bb 79 uint32_t channel_mask;
91fd0f72
BV
80 uint32_t trigger_mask[NUM_TRIGGER_STAGES];
81 uint32_t trigger_value[NUM_TRIGGER_STAGES];
4fe9a6da 82 int num_stages;
016e72f3 83 uint16_t flag_reg;
4fe9a6da
BV
84
85 unsigned int num_transfers;
22130421 86 unsigned int num_samples;
4fe9a6da 87 int num_bytes;
625763e2
BV
88 int cnt_bytes;
89 int cnt_samples;
90 int cnt_samples_rle;
bf256783 91
00d04d3b 92 unsigned int rle_count;
4fe9a6da
BV
93 unsigned char sample[4];
94 unsigned char tmp_sample[4];
95 unsigned char *raw_sample_buf;
96};
97
53cda65a 98SR_PRIV extern const char *ols_channel_names[];
0aba65da
UH
99
100SR_PRIV int send_shortcommand(struct sr_serial_dev_inst *serial,
101 uint8_t command);
102SR_PRIV int send_longcommand(struct sr_serial_dev_inst *serial,
016e72f3 103 uint8_t command, uint8_t *data);
244995a2 104SR_PRIV int ols_send_reset(struct sr_serial_dev_inst *serial);
91fd0f72
BV
105SR_PRIV void ols_channel_mask(const struct sr_dev_inst *sdi);
106SR_PRIV int ols_convert_trigger(const struct sr_dev_inst *sdi);
0aba65da
UH
107SR_PRIV struct dev_context *ols_dev_new(void);
108SR_PRIV struct sr_dev_inst *get_metadata(struct sr_serial_dev_inst *serial);
109SR_PRIV int ols_set_samplerate(const struct sr_dev_inst *sdi,
e46aa4f6 110 uint64_t samplerate);
0aba65da
UH
111SR_PRIV void abort_acquisition(const struct sr_dev_inst *sdi);
112SR_PRIV int ols_receive_data(int fd, int revents, void *cb_data);
113
0f8522bf 114#endif