]> sigrok.org Git - libsigrok.git/blame - src/hardware/sysclk-lwla/lwla.c
Prefer postfix-increment for consistency across the code-base.
[libsigrok.git] / src / hardware / sysclk-lwla / lwla.c
CommitLineData
5874e88d
DE
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Daniel Elstner <daniel.kitta@gmail.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>
c2066c21 21#include <glib/gstdio.h>
c1aae900 22#include <libsigrok/libsigrok.h>
407b6e2c 23#include <libsigrok-internal.h>
515ab088 24#include "lwla.h"
407b6e2c 25#include "protocol.h"
5874e88d 26
1a46cc62
UH
27#define BITSTREAM_MAX_SIZE (256 * 1024) /* bitstream size limit for safety */
28#define BITSTREAM_HEADER_SIZE 4 /* transfer header size in bytes */
c2066c21 29
8e2d6c9d 30/* Load a bitstream file into memory. Returns a newly allocated array
c2066c21
DE
31 * consisting of a 32-bit length field followed by the bitstream data.
32 */
8e2d6c9d
DE
33static unsigned char *load_bitstream(struct sr_context *ctx,
34 const char *name, int *length_p)
c2066c21 35{
8e2d6c9d 36 struct sr_resource rbf;
c2066c21 37 unsigned char *stream;
8e2d6c9d 38 ssize_t length, count;
c2066c21 39
8e2d6c9d 40 if (sr_resource_open(ctx, &rbf, SR_RESOURCE_FIRMWARE, name) != SR_OK)
c2066c21 41 return NULL;
8e2d6c9d
DE
42
43 if (rbf.size == 0 || rbf.size > BITSTREAM_MAX_SIZE) {
c2066c21 44 sr_err("Refusing to load bitstream of unreasonable size "
8e2d6c9d
DE
45 "(%" PRIu64 " bytes).", rbf.size);
46 sr_resource_close(ctx, &rbf);
c2066c21
DE
47 return NULL;
48 }
49
50 /* The message length includes the 4-byte header. */
8e2d6c9d 51 length = BITSTREAM_HEADER_SIZE + rbf.size;
c2066c21
DE
52 stream = g_try_malloc(length);
53 if (!stream) {
54 sr_err("Failed to allocate bitstream buffer.");
8e2d6c9d 55 sr_resource_close(ctx, &rbf);
c2066c21
DE
56 return NULL;
57 }
58
59 /* Write the message length header. */
60 *(uint32_t *)stream = GUINT32_TO_BE(length);
61
8e2d6c9d
DE
62 count = sr_resource_read(ctx, &rbf, stream + BITSTREAM_HEADER_SIZE,
63 length - BITSTREAM_HEADER_SIZE);
64 sr_resource_close(ctx, &rbf);
65
66 if (count != length - BITSTREAM_HEADER_SIZE) {
67 sr_err("Failed to read bitstream '%s'.", name);
c2066c21
DE
68 g_free(stream);
69 return NULL;
70 }
c2066c21
DE
71
72 *length_p = length;
73 return stream;
74}
75
76/* Load a Raw Binary File (.rbf) from the firmware directory and transfer
77 * it to the device.
78 */
8e2d6c9d
DE
79SR_PRIV int lwla_send_bitstream(struct sr_context *ctx,
80 const struct sr_usb_dev_inst *usb,
81 const char *name)
5874e88d 82{
c2066c21 83 unsigned char *stream;
5874e88d 84 int ret;
c2066c21 85 int length;
5874e88d
DE
86 int xfer_len;
87
8e2d6c9d 88 if (!ctx || !usb || !name)
c2066c21 89 return SR_ERR_BUG;
5874e88d 90
8e2d6c9d 91 stream = load_bitstream(ctx, name, &length);
c2066c21 92 if (!stream)
5874e88d 93 return SR_ERR;
5874e88d 94
8e2d6c9d
DE
95 sr_info("Downloading FPGA bitstream '%s'.", name);
96
5874e88d 97 /* Transfer the entire bitstream in one URB. */
be64f90b 98 ret = libusb_bulk_transfer(usb->devhdl, EP_CONFIG,
1a46cc62 99 stream, length, &xfer_len, USB_TIMEOUT_MS);
c2066c21 100 g_free(stream);
313c7a7d 101
5874e88d
DE
102 if (ret != 0) {
103 sr_err("Failed to transfer bitstream: %s.",
104 libusb_error_name(ret));
5874e88d
DE
105 return SR_ERR;
106 }
c2066c21 107 if (xfer_len != length) {
5874e88d 108 sr_err("Failed to transfer bitstream: incorrect length "
c2066c21 109 "%d != %d.", xfer_len, length);
5874e88d
DE
110 return SR_ERR;
111 }
5874e88d
DE
112 sr_info("FPGA bitstream download of %d bytes done.", xfer_len);
113
114 /* This delay appears to be necessary for reliable operation. */
1a46cc62 115 g_usleep(30 * 1000);
5874e88d
DE
116
117 return SR_OK;
118}
119
120SR_PRIV int lwla_send_command(const struct sr_usb_dev_inst *usb,
121 const uint16_t *command, int cmd_len)
122{
123 int ret;
313c7a7d 124 int xfer_len;
5874e88d 125
5413df19
DE
126 if (!usb || !command || cmd_len <= 0)
127 return SR_ERR_BUG;
5874e88d 128
313c7a7d 129 xfer_len = 0;
5874e88d
DE
130 ret = libusb_bulk_transfer(usb->devhdl, EP_COMMAND,
131 (unsigned char *)command, cmd_len * 2,
1a46cc62 132 &xfer_len, USB_TIMEOUT_MS);
5874e88d 133 if (ret != 0) {
e0df15d4
DE
134 sr_dbg("Failed to send command %d: %s.",
135 LWLA_TO_UINT16(command[0]), libusb_error_name(ret));
5874e88d
DE
136 return SR_ERR;
137 }
138 if (xfer_len != cmd_len * 2) {
e0df15d4
DE
139 sr_dbg("Failed to send command %d: incorrect length %d != %d.",
140 LWLA_TO_UINT16(command[0]), xfer_len, cmd_len * 2);
5874e88d
DE
141 return SR_ERR;
142 }
143 return SR_OK;
144}
145
146SR_PRIV int lwla_receive_reply(const struct sr_usb_dev_inst *usb,
78648577 147 void *reply, int buf_size, int *xfer_len)
5874e88d
DE
148{
149 int ret;
5874e88d 150
78648577 151 if (!usb || !reply || buf_size <= 0)
5413df19 152 return SR_ERR_BUG;
5874e88d 153
78648577
DE
154 ret = libusb_bulk_transfer(usb->devhdl, EP_REPLY, reply, buf_size,
155 xfer_len, USB_TIMEOUT_MS);
5874e88d
DE
156 if (ret != 0) {
157 sr_dbg("Failed to receive reply: %s.", libusb_error_name(ret));
158 return SR_ERR;
159 }
5874e88d
DE
160 return SR_OK;
161}
162
163SR_PRIV int lwla_read_reg(const struct sr_usb_dev_inst *usb,
164 uint16_t reg, uint32_t *value)
165{
78648577 166 int xfer_len;
5874e88d
DE
167 int ret;
168 uint16_t command[2];
e0df15d4 169 uint32_t reply[128]; /* full EP buffer to avoid overflows */
5874e88d
DE
170
171 command[0] = LWLA_WORD(CMD_READ_REG);
172 command[1] = LWLA_WORD(reg);
173
ce3ecb70 174 ret = lwla_send_command(usb, command, ARRAY_SIZE(command));
5874e88d
DE
175 if (ret != SR_OK)
176 return ret;
177
78648577
DE
178 ret = lwla_receive_reply(usb, reply, sizeof(reply), &xfer_len);
179 if (ret != SR_OK)
180 return ret;
5874e88d 181
78648577
DE
182 if (xfer_len != 4) {
183 sr_dbg("Invalid register read response of length %d.",
184 xfer_len);
185 return SR_ERR;
186 }
187 *value = LWLA_TO_UINT32(reply[0]);
5874e88d 188
78648577 189 return SR_OK;
5874e88d
DE
190}
191
192SR_PRIV int lwla_write_reg(const struct sr_usb_dev_inst *usb,
193 uint16_t reg, uint32_t value)
194{
195 uint16_t command[4];
196
197 command[0] = LWLA_WORD(CMD_WRITE_REG);
198 command[1] = LWLA_WORD(reg);
199 command[2] = LWLA_WORD_0(value);
200 command[3] = LWLA_WORD_1(value);
201
ce3ecb70 202 return lwla_send_command(usb, command, ARRAY_SIZE(command));
5874e88d
DE
203}
204
205SR_PRIV int lwla_write_regs(const struct sr_usb_dev_inst *usb,
be64f90b 206 const struct regval *regvals, int count)
5874e88d
DE
207{
208 int i;
209 int ret;
210
211 ret = SR_OK;
212
0a1f7b09 213 for (i = 0; i < count; i++) {
5874e88d
DE
214 ret = lwla_write_reg(usb, regvals[i].reg, regvals[i].val);
215
216 if (ret != SR_OK)
217 break;
218 }
219
220 return ret;
221}