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.
 
  38 static libusb_device_handle *dev;
 
  56 #define LOG(...) printf(__VA_ARGS__)
 
  57 #define fn_le32(x) (x)
 
  58 // TODO: support architectures that aren't little-endian
 
  60 void dump_bl_cmd(bootloader_command cmd) {
 
  62         for(i = 0; i < 24; i++)
 
  63                 LOG("%02X ", ((unsigned char*)(&cmd))[i]);
 
  67 int get_first_reply() {
 
  68         unsigned char buffer[512];
 
  71         res = libusb_bulk_transfer(dev, 0x81, buffer, 512, &transferred, 0);
 
  73                 LOG("Error reading first reply: %d\ttransferred: %d (expected %d)\n", res, transferred, 0x60);
 
  76         LOG("Reading first reply: ");
 
  78         for(i = 0; i < transferred; ++i) {
 
  79                 LOG("%02X ", buffer[i]);
 
  87         unsigned char dump[512];
 
  88         status_code buffer = ((status_code*)dump)[0];
 
  91         res = libusb_bulk_transfer(dev, 0x81, (unsigned char*)&buffer, 512, &transferred, 0);
 
  92         if(res != 0 || transferred != sizeof(status_code)) {
 
  93                 LOG("Error reading reply: %d\ttransferred: %d (expected %d)\n", res, transferred, sizeof(status_code));
 
  96         if(fn_le32(buffer.magic) != 0x0a6fe000) {
 
  97                 LOG("Error reading reply: invalid magic %08X\n",buffer.magic);
 
 100         if(fn_le32(buffer.seq) != seq) {
 
 101                 LOG("Error reading reply: non-matching sequence number %08X (expected %08X)\n", buffer.seq, seq);
 
 104         if(fn_le32(buffer.status) != 0) {
 
 105                 LOG("Notice reading reply: last uint32_t was nonzero: %d\n", buffer.status);
 
 108         LOG("Reading reply: ");
 
 110         for(i = 0; i < transferred; ++i) {
 
 111                 LOG("%02X ", ((unsigned char*)(&buffer))[i]);
 
 118 int main(int argc, char** argv) {
 
 119         char* filename = "firmware.bin";
 
 123         FILE* fw = fopen(filename, "r");
 
 125                 fprintf(stderr, "Failed to open %s: error %d", filename, errno);
 
 130         libusb_set_debug(0,3);
 
 131         dev = libusb_open_device_with_vid_pid(NULL, 0x045e, 0x02ad);
 
 134                 printf("Couldn't open device.\n");
 
 138         libusb_set_configuration(dev, 1);
 
 139         libusb_claim_interface(dev, 0);
 
 143         bootloader_command cmd;
 
 144         cmd.magic = fn_le32(0x06022009);
 
 145         cmd.seq = fn_le32(seq);
 
 146         cmd.bytes = fn_le32(0x60);
 
 147         cmd.cmd = fn_le32(0);
 
 148         cmd.write_addr = fn_le32(0x15);
 
 149         cmd.unk = fn_le32(0);
 
 151         LOG("About to send: ");
 
 156         res = libusb_bulk_transfer(dev, 1, (unsigned char*)&cmd, sizeof(cmd), &transferred, 0);
 
 157         if(res != 0 || transferred != sizeof(cmd)) {
 
 158                 LOG("Error: res: %d\ttransferred: %d (expected %d)\n",res, transferred, sizeof(cmd));
 
 161         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.
 
 162         res = get_reply(); // I'm not sure why we do this twice here, but maybe it'll make sense later.
 
 165         uint32_t addr = 0x00080000;
 
 169                 read = fread(page, 1, 0x4000, fw);
 
 174                 cmd.seq = fn_le32(seq);
 
 175                 cmd.bytes = fn_le32(read);
 
 176                 cmd.cmd = fn_le32(0x03);
 
 177                 cmd.write_addr = fn_le32(addr);
 
 178                 LOG("About to send: ");
 
 181                 res = libusb_bulk_transfer(dev, 1, (unsigned char*)&cmd, sizeof(cmd), &transferred, 0);
 
 182                 if(res != 0 || transferred != sizeof(cmd)) {
 
 183                         LOG("Error: res: %d\ttransferred: %d (expected %d)\n",res, transferred, sizeof(cmd));
 
 187                 while(bytes_sent < read) {
 
 188                         int to_send = (read - bytes_sent > 512 ? 512 : read - bytes_sent);
 
 189                         res = libusb_bulk_transfer(dev, 1, &page[bytes_sent], to_send, &transferred, 0);
 
 190                         if(res != 0 || transferred != to_send) {
 
 191                                 LOG("Error: res: %d\ttransferred: %d (expected %d)\n",res, transferred, to_send);
 
 194                         bytes_sent += to_send;
 
 198                 addr += (uint32_t)read;
 
 202         cmd.seq = fn_le32(seq);
 
 203         cmd.bytes = fn_le32(0);
 
 204         cmd.cmd = fn_le32(0x04);
 
 205         cmd.write_addr = fn_le32(0x00080030);
 
 207         res = libusb_bulk_transfer(dev, 1, (unsigned char*)&cmd, sizeof(cmd), &transferred, 0);
 
 208         if(res != 0 || transferred != sizeof(cmd)) {
 
 209                 LOG("Error: res: %d\ttransferred: %d (expected %d)\n", res, transferred, sizeof(cmd));
 
 214         // Now the device reenumerates.