1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
/*
* Copyright 2011 Drew Fisher <drew.m.fisher@gmail.com>. All rights reserved.
* Copyright (C) 2016 Antonio Ospite <ao2@ao2.it>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL DREW FISHER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of Drew Fisher.
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <libusb.h>
#include "endian.h"
#define KINECT_AUDIO_VID 0x045e
#define KINECT_AUDIO_PID 0x02ad
#define KINECT_AUDIO_CONFIGURATION 1
#define KINECT_AUDIO_INTERFACE 0
#define KINECT_AUDIO_IN_EP 0x81
#define KINECT_AUDIO_OUT_EP 0x01
static libusb_device_handle *dev;
static unsigned int seq;
typedef struct {
uint32_t magic;
uint32_t seq;
uint32_t bytes;
uint32_t cmd;
uint32_t write_addr;
uint32_t unk;
} bootloader_command;
typedef struct {
uint32_t magic;
uint32_t seq;
uint32_t status;
} status_code;
#define LOG(...) printf(__VA_ARGS__)
#if __BYTE_ORDER == __BIG_ENDIAN
static inline uint32_t fn_le32(uint32_t d)
{
return (d<<24) | ((d<<8)&0xFF0000) | ((d>>8)&0xFF00) | (d>>24);
}
#else
#define fn_le32(x) (x)
#endif
static void dump_bl_cmd(bootloader_command cmd) {
int i;
for (i = 0; i < 24; i++)
LOG("%02X ", ((unsigned char*)(&cmd))[i]);
LOG("\n");
}
static int get_first_reply(void) {
unsigned char buffer[512];
int res;
int transferred = 0;
res = libusb_bulk_transfer(dev, KINECT_AUDIO_IN_EP, buffer, 512, &transferred, 0);
if (res != 0 ) {
LOG("Error reading first reply: %d\ttransferred: %d (expected %d)\n", res, transferred, 0x60);
return res;
}
LOG("Reading first reply: ");
int i;
for (i = 0; i < transferred; ++i) {
LOG("%02X ", buffer[i]);
}
LOG("\n");
return res;
}
static int get_reply(void) {
union {
status_code buffer;
/* The following is needed because libusb_bulk_transfer might
* fail when working on a buffer smaller than 512 bytes.
*/
unsigned char dump[512];
} reply;
int res;
int transferred = 0;
res = libusb_bulk_transfer(dev, KINECT_AUDIO_IN_EP, reply.dump, 512, &transferred, 0);
if (res != 0 || transferred != sizeof(status_code)) {
LOG("Error reading reply: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(status_code));
return res;
}
if (fn_le32(reply.buffer.magic) != 0x0a6fe000) {
LOG("Error reading reply: invalid magic %08X\n", reply.buffer.magic);
return -1;
}
if (fn_le32(reply.buffer.seq) != seq) {
LOG("Error reading reply: non-matching sequence number %08X (expected %08X)\n", reply.buffer.seq, seq);
return -1;
}
if (fn_le32(reply.buffer.status) != 0) {
LOG("Notice reading reply: last uint32_t was nonzero: %d\n", reply.buffer.status);
}
LOG("Reading reply: ");
int i;
for (i = 0; i < transferred; ++i) {
LOG("%02X ", reply.dump[i]);
}
LOG("\n");
return res;
}
static int upload_firmware(FILE *fw) {
int res;
seq = 1;
bootloader_command cmd;
cmd.magic = fn_le32(0x06022009);
cmd.seq = fn_le32(seq);
cmd.bytes = fn_le32(0x60);
cmd.cmd = fn_le32(0);
cmd.write_addr = fn_le32(0x15);
cmd.unk = fn_le32(0);
LOG("About to send: ");
dump_bl_cmd(cmd);
int transferred = 0;
res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, (unsigned char *)&cmd, sizeof(cmd), &transferred, 0);
if (res != 0 || transferred != sizeof(cmd)) {
LOG("Error: res: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(cmd));
goto out;
}
// This first one doesn't have the usual magic bytes at the beginning,
// and is 96 bytes long - much longer than the usual 12-byte replies.
res = get_first_reply();
if (res < 0) {
LOG("get_first_reply() failed");
goto out;
}
// I'm not sure why we do this twice here, but maybe it'll make sense
// later.
res = get_reply();
if (res < 0) {
LOG("First get_reply() failed");
goto out;
}
seq++;
// Split addr declaration and assignment in order to compile as C++,
// otherwise this would give "jump to label '...' crosses initialization"
// errors.
uint32_t addr;
addr = 0x00080000;
unsigned char page[0x4000];
int read;
do {
read = (int)fread(page, 1, 0x4000, fw);
if (read <= 0) {
break;
}
//LOG("");
cmd.seq = fn_le32(seq);
cmd.bytes = fn_le32((unsigned int)read);
cmd.cmd = fn_le32(0x03);
cmd.write_addr = fn_le32(addr);
LOG("About to send: ");
dump_bl_cmd(cmd);
// Send it off!
transferred = 0;
res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, (unsigned char *)&cmd, sizeof(cmd), &transferred, 0);
if (res != 0 || transferred != sizeof(cmd)) {
LOG("Error: res: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(cmd));
goto out;
}
int bytes_sent = 0;
while (bytes_sent < read) {
int to_send = (read - bytes_sent > 512 ? 512 : read - bytes_sent);
transferred = 0;
res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, &page[bytes_sent], to_send, &transferred, 0);
if (res != 0 || transferred != to_send) {
LOG("Error: res: %d\ttransferred: %d (expected %d)\n", res, transferred, to_send);
goto out;
}
bytes_sent += to_send;
}
res = get_reply();
if (res < 0) {
LOG("get_reply failed");
goto out;
}
addr += (uint32_t)read;
seq++;
} while (read > 0);
cmd.seq = fn_le32(seq);
cmd.bytes = fn_le32(0);
cmd.cmd = fn_le32(0x04);
cmd.write_addr = fn_le32(0x00080030);
dump_bl_cmd(cmd);
transferred = 0;
res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, (unsigned char *)&cmd, sizeof(cmd), &transferred, 0);
if (res != 0 || transferred != sizeof(cmd)) {
LOG("Error: res: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(cmd));
goto out;
}
res = get_reply();
seq++;
out:
return res;
}
int main(int argc, char *argv[]) {
char default_filename[] = "firmware.bin";
char *filename = default_filename;
int ret = 0;
if (argc == 2) {
filename = argv[1];
}
FILE *fw = fopen(filename, "rb");
if (fw == NULL) {
fprintf(stderr, "Failed to open %s: %s\n", filename, strerror(errno));
return -errno;
}
ret = libusb_init(NULL);
if (ret < 0) {
fprintf(stderr, "libusb_init failed: %s\n",
libusb_error_name(ret));
goto out;
}
libusb_set_debug(NULL, 3);
dev = libusb_open_device_with_vid_pid(NULL, KINECT_AUDIO_VID, KINECT_AUDIO_PID);
if (dev == NULL) {
fprintf(stderr, "libusb_open failed: %s\n", strerror(errno));
ret = -errno;
goto out_libusb_exit;
}
int current_configuration = -1;
ret = libusb_get_configuration(dev, ¤t_configuration);
if (ret < 0) {
fprintf(stderr, "libusb_get_configuration failed: %s\n",
libusb_error_name(ret));
goto out_libusb_close;
}
if (current_configuration != KINECT_AUDIO_CONFIGURATION) {
ret = libusb_set_configuration(dev, KINECT_AUDIO_CONFIGURATION);
if (ret < 0) {
fprintf(stderr, "libusb_set_configuration failed: %s\n",
libusb_error_name(ret));
fprintf(stderr, "Cannot set configuration %d\n",
KINECT_AUDIO_CONFIGURATION);
goto out_libusb_close;
}
}
libusb_set_auto_detach_kernel_driver(dev, 1);
ret = libusb_claim_interface(dev, KINECT_AUDIO_INTERFACE);
if (ret < 0) {
fprintf(stderr, "libusb_claim_interface failed: %s\n",
libusb_error_name(ret));
fprintf(stderr, "Cannot claim interface %d\n",
KINECT_AUDIO_INTERFACE);
goto out_libusb_close;
}
/*
* Checking that the configuration has not changed, as suggested in
* http://libusb.sourceforge.net/api-1.0/caveats.html
*/
current_configuration = -1;
ret = libusb_get_configuration(dev, ¤t_configuration);
if (ret < 0) {
fprintf(stderr, "libusb_get_configuration after claim failed: %s\n",
libusb_error_name(ret));
goto out_libusb_release_interface;
}
if (current_configuration != KINECT_AUDIO_CONFIGURATION) {
fprintf(stderr, "libusb configuration changed (expected: %d, current: %d)\n",
KINECT_AUDIO_CONFIGURATION, current_configuration);
ret = -EINVAL;
goto out_libusb_release_interface;
}
ret = upload_firmware(fw);
// Now the device reenumerates.
out_libusb_release_interface:
libusb_release_interface(dev, KINECT_AUDIO_INTERFACE);
out_libusb_close:
libusb_close(dev);
out_libusb_exit:
libusb_exit(NULL);
out:
fclose(fw);
return ret;
}
|