2  * Copyright 2011 Drew Fisher <drew.m.fisher@gmail.com>. All rights reserved.
 
   4  * Redistribution and use in source and binary forms, with or without
 
   5  * modification, are permitted provided that the following conditions
 
   8  *   1. Redistributions of source code must retain the above copyright
 
   9  *      notice, this list of conditions and the following disclaimer.
 
  11  *   2. Redistributions in binary form must reproduce the above copyright
 
  12  *      notice, this list of conditions and the following disclaimer in the
 
  13  *      documentation and/or other materials provided with the distribution.
 
  15  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS  ''AS IS'' AND
 
  16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
  17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
  18  * ARE DISCLAIMED. IN NO EVENT SHALL DREW FISHER OR CONTRIBUTORS BE LIABLE
 
  19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
  20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
  21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
  22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
  23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
  24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
  27  * The views and conclusions contained in the software and documentation are
 
  28  * those of the authors and should not be interpreted as representing official
 
  29  * policies, either expressed or implied, of Drew Fisher.
 
  41 #define KINECT_AUDIO_VID           0x045e
 
  42 #define KINECT_AUDIO_PID           0x02ad
 
  43 #define KINECT_AUDIO_CONFIGURATION 1
 
  44 #define KINECT_AUDIO_INTERFACE     0
 
  45 #define KINECT_AUDIO_IN_EP         0x81
 
  46 #define KINECT_AUDIO_OUT_EP        0x01
 
  48 static libusb_device_handle *dev;
 
  49 static unsigned int seq;
 
  66 #define LOG(...) printf(__VA_ARGS__)
 
  68 #if __BYTE_ORDER == __BIG_ENDIAN
 
  69 static inline uint32_t fn_le32(uint32_t d)
 
  71         return (d<<24) | ((d<<8)&0xFF0000) | ((d>>8)&0xFF00) | (d>>24);
 
  74 #define fn_le32(x) (x)
 
  77 static void dump_bl_cmd(bootloader_command cmd) {
 
  79         for (i = 0; i < 24; i++)
 
  80                 LOG("%02X ", ((unsigned char*)(&cmd))[i]);
 
  84 static int get_first_reply(void) {
 
  85         unsigned char buffer[512];
 
  88         res = libusb_bulk_transfer(dev, KINECT_AUDIO_IN_EP, buffer, 512, &transferred, 0);
 
  90                 LOG("Error reading first reply: %d\ttransferred: %d (expected %d)\n", res, transferred, 0x60);
 
  93         LOG("Reading first reply: ");
 
  95         for (i = 0; i < transferred; ++i) {
 
  96                 LOG("%02X ", buffer[i]);
 
 102 static int get_reply(void) {
 
 105                 /* The following is needed because libusb_bulk_transfer might
 
 106                  * fail when working on a buffer smaller than 512 bytes.
 
 108                 unsigned char dump[512];
 
 113         res = libusb_bulk_transfer(dev, KINECT_AUDIO_IN_EP, reply.dump, 512, &transferred, 0);
 
 114         if (res != 0 || transferred != sizeof(status_code)) {
 
 115                 LOG("Error reading reply: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(status_code));
 
 118         if (fn_le32(reply.buffer.magic) != 0x0a6fe000) {
 
 119                 LOG("Error reading reply: invalid magic %08X\n", reply.buffer.magic);
 
 122         if (fn_le32(reply.buffer.seq) != seq) {
 
 123                 LOG("Error reading reply: non-matching sequence number %08X (expected %08X)\n", reply.buffer.seq, seq);
 
 126         if (fn_le32(reply.buffer.status) != 0) {
 
 127                 LOG("Notice reading reply: last uint32_t was nonzero: %d\n", reply.buffer.status);
 
 130         LOG("Reading reply: ");
 
 132         for (i = 0; i < transferred; ++i) {
 
 133                 LOG("%02X ", reply.dump[i]);
 
 140 static int upload_firmware(FILE *fw) {
 
 145         bootloader_command cmd;
 
 146         cmd.magic = fn_le32(0x06022009);
 
 147         cmd.seq = fn_le32(seq);
 
 148         cmd.bytes = fn_le32(0x60);
 
 149         cmd.cmd = fn_le32(0);
 
 150         cmd.write_addr = fn_le32(0x15);
 
 151         cmd.unk = fn_le32(0);
 
 153         LOG("About to send: ");
 
 158         res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, (unsigned char*)&cmd, sizeof(cmd), &transferred, 0);
 
 159         if (res != 0 || transferred != sizeof(cmd)) {
 
 160                 LOG("Error: res: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(cmd));
 
 163         res = get_first_reply(); // 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.
 
 165                 LOG("get_first_reply() failed");
 
 169         res = get_reply(); // I'm not sure why we do this twice here, but maybe it'll make sense later.
 
 171                 LOG("First get_reply() failed");
 
 176         // Split addr declaration and assignment in order to compile as C++,
 
 177         // otherwise this would give "jump to label '...' crosses initialization"
 
 181         unsigned char page[0x4000];
 
 184                 read = (int)fread(page, 1, 0x4000, fw);
 
 189                 cmd.seq = fn_le32(seq);
 
 190                 cmd.bytes = fn_le32((unsigned int)read);
 
 191                 cmd.cmd = fn_le32(0x03);
 
 192                 cmd.write_addr = fn_le32(addr);
 
 193                 LOG("About to send: ");
 
 197                 res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, (unsigned char*)&cmd, sizeof(cmd), &transferred, 0);
 
 198                 if (res != 0 || transferred != sizeof(cmd)) {
 
 199                         LOG("Error: res: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(cmd));
 
 203                 while (bytes_sent < read) {
 
 204                         int to_send = (read - bytes_sent > 512 ? 512 : read - bytes_sent);
 
 206                         res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, &page[bytes_sent], to_send, &transferred, 0);
 
 207                         if (res != 0 || transferred != to_send) {
 
 208                                 LOG("Error: res: %d\ttransferred: %d (expected %d)\n", res, transferred, to_send);
 
 211                         bytes_sent += to_send;
 
 215                         LOG("get_reply failed");
 
 219                 addr += (uint32_t)read;
 
 223         cmd.seq = fn_le32(seq);
 
 224         cmd.bytes = fn_le32(0);
 
 225         cmd.cmd = fn_le32(0x04);
 
 226         cmd.write_addr = fn_le32(0x00080030);
 
 229         res = libusb_bulk_transfer(dev, KINECT_AUDIO_OUT_EP, (unsigned char*)&cmd, sizeof(cmd), &transferred, 0);
 
 230         if (res != 0 || transferred != sizeof(cmd)) {
 
 231                 LOG("Error: res: %d\ttransferred: %d (expected %zu)\n", res, transferred, sizeof(cmd));
 
 241 int main(int argc, char** argv) {
 
 242         char default_filename[] = "firmware.bin";
 
 243         char* filename = default_filename;
 
 250         FILE* fw = fopen(filename, "rb");
 
 252                 fprintf(stderr, "Failed to open %s: %s\n", filename, strerror(errno));
 
 257         libusb_set_debug(NULL, 3);
 
 259         dev = libusb_open_device_with_vid_pid(NULL, KINECT_AUDIO_VID, KINECT_AUDIO_PID);
 
 261                 fprintf(stderr, "Couldn't open device.\n");
 
 263                 goto fail_libusb_open;
 
 266         int current_configuration = -1;
 
 267         libusb_get_configuration(dev, ¤t_configuration);
 
 268         if (current_configuration != KINECT_AUDIO_CONFIGURATION)
 
 269                 libusb_set_configuration(dev, KINECT_AUDIO_CONFIGURATION);
 
 271         libusb_claim_interface(dev, KINECT_AUDIO_INTERFACE);
 
 273         current_configuration = -1;
 
 274         libusb_get_configuration(dev, ¤t_configuration);
 
 275         if (current_configuration != KINECT_AUDIO_CONFIGURATION) {
 
 280         ret = upload_firmware(fw);
 
 281         // Now the device reenumerates.
 
 284         libusb_release_interface(dev, KINECT_AUDIO_INTERFACE);