]> sigrok.org Git - libsigrok.git/blame - src/hardware/zeroplus-logic-cube/protocol.c
Build: Include <config.h> first in all source files
[libsigrok.git] / src / hardware / zeroplus-logic-cube / protocol.c
CommitLineData
58c5f2ed 1/*
50985c20 2 * This file is part of the libsigrok project.
58c5f2ed
UH
3 *
4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
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
6ec6c43b 20#include <config.h>
7142d6b9 21#include <math.h>
58c5f2ed
UH
22#include "protocol.h"
23
24SR_PRIV unsigned int get_memory_size(int type)
25{
26 if (type == MEMORY_SIZE_8K)
1a46cc62 27 return (8 * 1024);
3e43da1f
RD
28 else if (type <= MEMORY_SIZE_8M)
29 return (32 * 1024) << type;
58c5f2ed
UH
30 else
31 return 0;
32}
33
d87c1766 34static int clz(unsigned int x)
3e43da1f
RD
35{
36 int n = 0;
37 if (x == 0)
38 return 32;
39 if (!(x & 0xFFFF0000)) {
40 n = n + 16;
41 x = x << 16;
42 }
43 if (!(x & 0xFF000000)) {
44 n = n + 8;
45 x = x << 8;
46 }
47 if (!(x & 0xF0000000)) {
48 n = n + 4;
49 x = x << 4;
50 }
51 if (!(x & 0xC0000000)) {
52 n = n + 2;
53 x = x << 2;
54 }
55 if (!(x & 0x80000000))
56 n = n + 1;
57 return n;
58}
59
58c5f2ed
UH
60SR_PRIV int set_limit_samples(struct dev_context *devc, uint64_t samples)
61{
c38e64c7
RD
62 if (samples > devc->max_sample_depth)
63 samples = devc->max_sample_depth;
64
58c5f2ed
UH
65 devc->limit_samples = samples;
66
1a46cc62 67 if (samples <= (2 * 1024))
58c5f2ed 68 devc->memory_size = MEMORY_SIZE_8K;
1a46cc62 69 else if (samples <= (16 * 1024))
58c5f2ed 70 devc->memory_size = MEMORY_SIZE_64K;
58c5f2ed 71 else
3e43da1f 72 devc->memory_size = 19 - clz(samples - 1);
58c5f2ed
UH
73
74 sr_info("Setting memory size to %dK.",
75 get_memory_size(devc->memory_size) / 1024);
76
77 analyzer_set_memory_size(devc->memory_size);
78
79 return SR_OK;
80}
81
82SR_PRIV int set_capture_ratio(struct dev_context *devc, uint64_t ratio)
83{
84 if (ratio > 100) {
85 sr_err("Invalid capture ratio: %" PRIu64 ".", ratio);
86 return SR_ERR_ARG;
87 }
88
89 devc->capture_ratio = ratio;
90
91 sr_info("Setting capture ratio to %d%%.", devc->capture_ratio);
92
93 return SR_OK;
94}
95
7142d6b9
RD
96SR_PRIV int set_voltage_threshold(struct dev_context *devc, double thresh)
97{
98 if (thresh > 6.0)
99 thresh = 6.0;
100 if (thresh < -6.0)
101 thresh = -6.0;
102
103 devc->cur_threshold = thresh;
104
105 analyzer_set_voltage_threshold((int) round(-9.1*thresh + 62.6));
106
107 sr_info("Setting voltage threshold to %fV.", devc->cur_threshold);
108
109 return SR_OK;
110}
111
58c5f2ed
UH
112SR_PRIV void set_triggerbar(struct dev_context *devc)
113{
b9a5614d
RD
114 unsigned int trigger_depth, triggerbar, ramsize_trigger;
115
116 trigger_depth = get_memory_size(devc->memory_size) / 4;
117 if (devc->limit_samples < trigger_depth)
118 trigger_depth = devc->limit_samples;
4c1433d1
RD
119
120 if (devc->trigger)
121 triggerbar = trigger_depth * devc->capture_ratio / 100;
122 else
123 triggerbar = 0;
b9a5614d
RD
124
125 ramsize_trigger = trigger_depth - triggerbar;
126 /* Matches USB packet captures from official app/driver */
127 if (triggerbar > 2)
128 triggerbar -= 2;
129 else {
130 ramsize_trigger -= 1;
58c5f2ed
UH
131 triggerbar = 0;
132 }
b9a5614d 133
58c5f2ed 134 analyzer_set_triggerbar_address(triggerbar);
b9a5614d 135 analyzer_set_ramsize_trigger_address(ramsize_trigger);
58c5f2ed
UH
136
137 sr_dbg("triggerbar_address = %d(0x%x)", triggerbar, triggerbar);
138 sr_dbg("ramsize_triggerbar_address = %d(0x%x)",
b9a5614d 139 ramsize_trigger, ramsize_trigger);
58c5f2ed 140}