Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
| 10 | * Copyright (C) 2006 by Barry Wardell |
| 11 | * |
| 12 | * Based on Rockbox iriver bootloader by Linus Nielsen Feltzing |
| 13 | * and the ipodlinux bootloader by Daniel Palffy and Bernard Leach |
| 14 | * |
| 15 | * All files in this archive are subject to the GNU General Public License. |
| 16 | * See the file COPYING in the source tree root for full license agreement. |
| 17 | * |
| 18 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 19 | * KIND, either express or implied. |
| 20 | * |
| 21 | ****************************************************************************/ |
Jonathan Gordon | ceb1e7a | 2007-03-22 12:55:51 +0000 | [diff] [blame] | 22 | #include <stdio.h> |
| 23 | #include <stdlib.h> |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 24 | #include "common.h" |
Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 25 | #include "cpu.h" |
Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 26 | #include "file.h" |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 27 | #include "system.h" |
| 28 | #include "kernel.h" |
| 29 | #include "lcd.h" |
| 30 | #include "font.h" |
| 31 | #include "ata.h" |
| 32 | #include "button.h" |
| 33 | #include "disk.h" |
Barry Wardell | 54c73a2 | 2007-06-04 13:48:21 +0000 | [diff] [blame] | 34 | #include "crc32-mi4.h" |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 35 | #include <string.h> |
Jonathan Gordon | fc8e09d | 2007-11-19 02:07:40 +0000 | [diff] [blame] | 36 | #include "power.h" |
Barry Wardell | f1fead0 | 2007-10-14 18:20:23 +0000 | [diff] [blame] | 37 | #if defined(SANSA_E200) |
| 38 | #include "i2c.h" |
| 39 | #include "backlight-target.h" |
| 40 | #endif |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 41 | #if defined(SANSA_E200) || defined(SANSA_C200) |
Jonathan Gordon | ceb1e7a | 2007-03-22 12:55:51 +0000 | [diff] [blame] | 42 | #include "usb.h" |
Björn Stenberg | 7af22e1 | 2007-11-22 22:17:45 +0000 | [diff] [blame] | 43 | #include "usb_drv.h" |
Jonathan Gordon | ceb1e7a | 2007-03-22 12:55:51 +0000 | [diff] [blame] | 44 | #endif |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 45 | |
Jonathan Gordon | ceb1e7a | 2007-03-22 12:55:51 +0000 | [diff] [blame] | 46 | |
| 47 | /* Button definitions */ |
| 48 | #if CONFIG_KEYPAD == IRIVER_H10_PAD |
| 49 | #define BOOTLOADER_BOOT_OF BUTTON_LEFT |
| 50 | |
| 51 | #elif CONFIG_KEYPAD == SANSA_E200_PAD |
| 52 | #define BOOTLOADER_BOOT_OF BUTTON_LEFT |
| 53 | |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 54 | #elif CONFIG_KEYPAD == SANSA_C200_PAD |
| 55 | #define BOOTLOADER_BOOT_OF BUTTON_LEFT |
| 56 | |
Mark Arigo | e66ddd7 | 2008-01-09 07:24:43 +0000 | [diff] [blame] | 57 | #elif CONFIG_KEYPAD == MROBE100_PAD |
Robert Kukla | 6ef63a5 | 2008-03-05 00:17:21 +0000 | [diff] [blame] | 58 | #define BOOTLOADER_BOOT_OF BUTTON_POWER |
Mark Arigo | e66ddd7 | 2008-01-09 07:24:43 +0000 | [diff] [blame] | 59 | |
Jonathan Gordon | ceb1e7a | 2007-03-22 12:55:51 +0000 | [diff] [blame] | 60 | #endif |
| 61 | |
| 62 | /* Maximum allowed firmware image size. 10MB is more than enough */ |
| 63 | #define MAX_LOADSIZE (10*1024*1024) |
| 64 | |
| 65 | /* A buffer to load the original firmware or Rockbox into */ |
| 66 | unsigned char *loadbuffer = (unsigned char *)DRAM_START; |
| 67 | |
| 68 | /* Bootloader version */ |
| 69 | char version[] = APPSVERSION; |
| 70 | |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 71 | /* Locations and sizes in hidden partition on Sansa */ |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 72 | #if defined(SANSA_E200) || defined(SANSA_C200) |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 73 | #define PPMI_SECTOR_OFFSET 1024 |
| 74 | #define PPMI_SECTORS 1 |
| 75 | #define MI4_HEADER_SECTORS 1 |
Barry Wardell | 7cd559d | 2007-03-20 22:18:35 +0000 | [diff] [blame] | 76 | #define NUM_PARTITIONS 2 |
| 77 | |
| 78 | #else |
Barry Wardell | 7cd559d | 2007-03-20 22:18:35 +0000 | [diff] [blame] | 79 | #define NUM_PARTITIONS 1 |
| 80 | |
| 81 | #endif |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 82 | |
Barry Wardell | 7e03b0a | 2007-03-20 22:56:51 +0000 | [diff] [blame] | 83 | #define MI4_HEADER_SIZE 0x200 |
| 84 | |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 85 | /* mi4 header structure */ |
| 86 | struct mi4header_t { |
| 87 | unsigned char magic[4]; |
| 88 | uint32_t version; |
| 89 | uint32_t length; |
| 90 | uint32_t crc32; |
| 91 | uint32_t enctype; |
| 92 | uint32_t mi4size; |
| 93 | uint32_t plaintext; |
| 94 | uint32_t dsa_key[10]; |
| 95 | uint32_t pad[109]; |
| 96 | unsigned char type[4]; |
| 97 | unsigned char model[4]; |
| 98 | }; |
| 99 | |
| 100 | /* PPMI header structure */ |
| 101 | struct ppmi_header_t { |
| 102 | unsigned char magic[4]; |
| 103 | uint32_t length; |
| 104 | uint32_t pad[126]; |
| 105 | }; |
| 106 | |
| 107 | inline unsigned int le2int(unsigned char* buf) |
| 108 | { |
| 109 | int32_t res = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0]; |
| 110 | |
| 111 | return res; |
| 112 | } |
| 113 | |
| 114 | inline void int2le(unsigned int val, unsigned char* addr) |
| 115 | { |
| 116 | addr[0] = val & 0xFF; |
| 117 | addr[1] = (val >> 8) & 0xff; |
| 118 | addr[2] = (val >> 16) & 0xff; |
| 119 | addr[3] = (val >> 24) & 0xff; |
| 120 | } |
| 121 | |
| 122 | struct tea_key { |
| 123 | const char * name; |
| 124 | uint32_t key[4]; |
| 125 | }; |
| 126 | |
Daniel Stenberg | 8701494 | 2007-09-03 21:23:57 +0000 | [diff] [blame] | 127 | #define NUM_KEYS (sizeof(tea_keytable)/sizeof(tea_keytable[0])) |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 128 | struct tea_key tea_keytable[] = { |
| 129 | { "default" , { 0x20d36cc0, 0x10e8c07d, 0xc0e7dcaa, 0x107eb080 } }, |
| 130 | { "sansa", { 0xe494e96e, 0x3ee32966, 0x6f48512b, 0xa93fbb42 } }, |
| 131 | { "sansa_gh", { 0xd7b10538, 0xc662945b, 0x1b3fce68, 0xf389c0e6 } }, |
Daniel Stenberg | 8701494 | 2007-09-03 21:23:57 +0000 | [diff] [blame] | 132 | { "sansa_103", { 0x1d29ddc0, 0x2579c2cd, 0xce339e1a, 0x75465dfe } }, |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 133 | { "rhapsody", { 0x7aa9c8dc, 0xbed0a82a, 0x16204cc7, 0x5904ef38 } }, |
| 134 | { "p610", { 0x950e83dc, 0xec4907f9, 0x023734b9, 0x10cfb7c7 } }, |
| 135 | { "p640", { 0x220c5f23, 0xd04df68e, 0x431b5e25, 0x4dcc1fa1 } }, |
| 136 | { "virgin", { 0xe83c29a1, 0x04862973, 0xa9b3f0d4, 0x38be2a9c } }, |
| 137 | { "20gc_eng", { 0x0240772c, 0x6f3329b5, 0x3ec9a6c5, 0xb0c9e493 } }, |
| 138 | { "20gc_fre", { 0xbede8817, 0xb23bfe4f, 0x80aa682d, 0xd13f598c } }, |
| 139 | { "elio_p722", { 0x6af3b9f8, 0x777483f5, 0xae8181cc, 0xfa6d8a84 } }, |
| 140 | { "c200", { 0xbf2d06fa, 0xf0e23d59, 0x29738132, 0xe2d04ca7 } }, |
Daniel Stenberg | 98a39fb | 2007-09-18 13:58:12 +0000 | [diff] [blame] | 141 | { "c200_103", { 0x2a7968de, 0x15127979, 0x142e60a7, 0xe49c1893 } }, |
Daniel Stenberg | 8701494 | 2007-09-03 21:23:57 +0000 | [diff] [blame] | 142 | { "c200_106", { 0xa913d139, 0xf842f398, 0x3e03f1a6, 0x060ee012 } }, |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 143 | }; |
| 144 | |
| 145 | /* |
| 146 | |
| 147 | tea_decrypt() from http://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm |
| 148 | |
| 149 | "Following is an adaptation of the reference encryption and decryption |
| 150 | routines in C, released into the public domain by David Wheeler and |
| 151 | Roger Needham:" |
| 152 | |
| 153 | */ |
| 154 | |
| 155 | /* NOTE: The mi4 version of TEA uses a different initial value to sum compared |
| 156 | to the reference implementation and the main loop is 8 iterations, not |
| 157 | 32. |
| 158 | */ |
| 159 | |
| 160 | static void tea_decrypt(uint32_t* v0, uint32_t* v1, uint32_t* k) { |
| 161 | uint32_t sum=0xF1BBCDC8, i; /* set up */ |
| 162 | uint32_t delta=0x9E3779B9; /* a key schedule constant */ |
| 163 | uint32_t k0=k[0], k1=k[1], k2=k[2], k3=k[3]; /* cache key */ |
| 164 | for(i=0; i<8; i++) { /* basic cycle start */ |
| 165 | *v1 -= ((*v0<<4) + k2) ^ (*v0 + sum) ^ ((*v0>>5) + k3); |
| 166 | *v0 -= ((*v1<<4) + k0) ^ (*v1 + sum) ^ ((*v1>>5) + k1); |
| 167 | sum -= delta; /* end cycle */ |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | /* mi4 files are encrypted in 64-bit blocks (two little-endian 32-bit |
| 172 | integers) and the key is incremented after each block |
| 173 | */ |
| 174 | |
| 175 | static void tea_decrypt_buf(unsigned char* src, unsigned char* dest, size_t n, uint32_t * key) |
| 176 | { |
| 177 | uint32_t v0, v1; |
| 178 | unsigned int i; |
| 179 | |
| 180 | for (i = 0; i < (n / 8); i++) { |
| 181 | v0 = le2int(src); |
| 182 | v1 = le2int(src+4); |
| 183 | |
| 184 | tea_decrypt(&v0, &v1, key); |
| 185 | |
| 186 | int2le(v0, dest); |
| 187 | int2le(v1, dest+4); |
| 188 | |
| 189 | src += 8; |
| 190 | dest += 8; |
| 191 | |
| 192 | /* Now increment the key */ |
| 193 | key[0]++; |
| 194 | if (key[0]==0) { |
| 195 | key[1]++; |
| 196 | if (key[1]==0) { |
| 197 | key[2]++; |
| 198 | if (key[2]==0) { |
| 199 | key[3]++; |
| 200 | } |
| 201 | } |
| 202 | } |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | static inline bool tea_test_key(unsigned char magic_enc[8], uint32_t * key, int unaligned) |
| 207 | { |
| 208 | unsigned char magic_dec[8]; |
| 209 | tea_decrypt_buf(magic_enc, magic_dec, 8, key); |
| 210 | |
| 211 | return (le2int(&magic_dec[4*unaligned]) == 0xaa55aa55); |
| 212 | } |
| 213 | |
| 214 | static int tea_find_key(struct mi4header_t *mi4header, int fd) |
| 215 | { |
Daniel Stenberg | 9b3be37 | 2007-09-03 21:26:39 +0000 | [diff] [blame] | 216 | unsigned int i; |
| 217 | int rc; |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 218 | unsigned int j; |
| 219 | uint32_t key[4]; |
| 220 | unsigned char magic_enc[8]; |
| 221 | int key_found = -1; |
| 222 | unsigned int magic_location = mi4header->length-4; |
| 223 | int unaligned = 0; |
| 224 | |
| 225 | if ( (magic_location % 8) != 0 ) |
| 226 | { |
| 227 | unaligned = 1; |
| 228 | magic_location -= 4; |
| 229 | } |
| 230 | |
| 231 | /* Load encrypted magic 0xaa55aa55 to check key */ |
| 232 | lseek(fd, MI4_HEADER_SIZE + magic_location, SEEK_SET); |
| 233 | rc = read(fd, magic_enc, 8); |
| 234 | if(rc < 8 ) |
| 235 | return EREAD_IMAGE_FAILED; |
| 236 | |
Barry Wardell | 7cd559d | 2007-03-20 22:18:35 +0000 | [diff] [blame] | 237 | printf("Searching for key:"); |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 238 | |
| 239 | for (i=0; i < NUM_KEYS && (key_found<0) ; i++) { |
| 240 | key[0] = tea_keytable[i].key[0]; |
| 241 | key[1] = tea_keytable[i].key[1]; |
| 242 | key[2] = tea_keytable[i].key[2]; |
| 243 | key[3] = tea_keytable[i].key[3]; |
| 244 | |
| 245 | /* Now increment the key */ |
| 246 | for(j=0; j<((magic_location-mi4header->plaintext)/8); j++){ |
| 247 | key[0]++; |
| 248 | if (key[0]==0) { |
| 249 | key[1]++; |
| 250 | if (key[1]==0) { |
| 251 | key[2]++; |
| 252 | if (key[2]==0) { |
| 253 | key[3]++; |
| 254 | } |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | if (tea_test_key(magic_enc,key,unaligned)) |
| 260 | { |
| 261 | key_found = i; |
| 262 | printf("%s...found", tea_keytable[i].name); |
| 263 | } else { |
Barry Wardell | 7cd559d | 2007-03-20 22:18:35 +0000 | [diff] [blame] | 264 | /* printf("%s...failed", tea_keytable[i].name); */ |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 265 | } |
| 266 | } |
| 267 | |
| 268 | return key_found; |
| 269 | } |
Barry Wardell | 2370998 | 2007-03-12 22:12:20 +0000 | [diff] [blame] | 270 | |
Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 271 | |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 272 | /* Load mi4 format firmware image */ |
| 273 | int load_mi4(unsigned char* buf, char* firmware, unsigned int buffer_size) |
| 274 | { |
| 275 | int fd; |
| 276 | struct mi4header_t mi4header; |
| 277 | int rc; |
| 278 | unsigned long sum; |
| 279 | char filename[MAX_PATH]; |
| 280 | |
| 281 | snprintf(filename,sizeof(filename),"/.rockbox/%s",firmware); |
| 282 | fd = open(filename, O_RDONLY); |
| 283 | if(fd < 0) |
| 284 | { |
| 285 | snprintf(filename,sizeof(filename),"/%s",firmware); |
| 286 | fd = open(filename, O_RDONLY); |
| 287 | if(fd < 0) |
| 288 | return EFILE_NOT_FOUND; |
| 289 | } |
| 290 | |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 291 | read(fd, &mi4header, MI4_HEADER_SIZE); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 292 | |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 293 | /* MI4 file size */ |
Barry Wardell | bada0b7 | 2007-03-20 12:35:45 +0000 | [diff] [blame] | 294 | printf("mi4 size: %x", mi4header.mi4size); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 295 | |
Barry Wardell | bada0b7 | 2007-03-20 12:35:45 +0000 | [diff] [blame] | 296 | if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size) |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 297 | return EFILE_TOO_BIG; |
| 298 | |
| 299 | /* CRC32 */ |
| 300 | printf("CRC32: %x", mi4header.crc32); |
| 301 | |
| 302 | /* Rockbox model id */ |
Barry Wardell | ca8f7bf | 2007-03-19 11:20:22 +0000 | [diff] [blame] | 303 | printf("Model id: %.4s", mi4header.model); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 304 | |
| 305 | /* Read binary type (RBOS, RBBL) */ |
Barry Wardell | ca8f7bf | 2007-03-19 11:20:22 +0000 | [diff] [blame] | 306 | printf("Binary type: %.4s", mi4header.type); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 307 | |
Barry Wardell | 9a9aebb | 2007-03-20 22:02:26 +0000 | [diff] [blame] | 308 | /* Load firmware file */ |
| 309 | lseek(fd, MI4_HEADER_SIZE, SEEK_SET); |
| 310 | rc = read(fd, buf, mi4header.mi4size-MI4_HEADER_SIZE); |
| 311 | if(rc < (int)mi4header.mi4size-MI4_HEADER_SIZE) |
| 312 | return EREAD_IMAGE_FAILED; |
| 313 | |
| 314 | /* Check CRC32 to see if we have a valid file */ |
| 315 | sum = chksum_crc32 (buf, mi4header.mi4size - MI4_HEADER_SIZE); |
| 316 | |
| 317 | printf("Calculated CRC32: %x", sum); |
| 318 | |
| 319 | if(sum != mi4header.crc32) |
| 320 | return EBAD_CHKSUM; |
| 321 | |
| 322 | if( (mi4header.plaintext + MI4_HEADER_SIZE) != mi4header.mi4size) |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 323 | { |
| 324 | /* Load encrypted firmware */ |
| 325 | int key_index = tea_find_key(&mi4header, fd); |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 326 | |
| 327 | if (key_index < 0) |
| 328 | return EINVALID_FORMAT; |
| 329 | |
Barry Wardell | 9a9aebb | 2007-03-20 22:02:26 +0000 | [diff] [blame] | 330 | /* Plaintext part is already loaded */ |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 331 | buf += mi4header.plaintext; |
| 332 | |
Barry Wardell | 9a9aebb | 2007-03-20 22:02:26 +0000 | [diff] [blame] | 333 | /* Decrypt in-place */ |
| 334 | tea_decrypt_buf(buf, buf, |
| 335 | mi4header.mi4size-(mi4header.plaintext+MI4_HEADER_SIZE), |
| 336 | tea_keytable[key_index].key); |
| 337 | |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 338 | printf("%s key used", tea_keytable[key_index].name); |
Barry Wardell | 9a9aebb | 2007-03-20 22:02:26 +0000 | [diff] [blame] | 339 | |
| 340 | /* Check decryption was successfull */ |
Barry Wardell | 7cd559d | 2007-03-20 22:18:35 +0000 | [diff] [blame] | 341 | if(le2int(&buf[mi4header.length-mi4header.plaintext-4]) != 0xaa55aa55) |
Barry Wardell | 9a9aebb | 2007-03-20 22:02:26 +0000 | [diff] [blame] | 342 | { |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 343 | return EREAD_IMAGE_FAILED; |
Barry Wardell | 9a9aebb | 2007-03-20 22:02:26 +0000 | [diff] [blame] | 344 | } |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 347 | return EOK; |
| 348 | } |
| 349 | |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 350 | #if defined(SANSA_E200) || defined(SANSA_C200) |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 351 | /* Load mi4 firmware from a hidden disk partition */ |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 352 | int load_mi4_part(unsigned char* buf, struct partinfo* pinfo, |
| 353 | unsigned int buffer_size, bool disable_rebuild) |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 354 | { |
| 355 | struct mi4header_t mi4header; |
| 356 | struct ppmi_header_t ppmi_header; |
| 357 | unsigned long sum; |
| 358 | |
| 359 | /* Read header to find out how long the mi4 file is. */ |
Michael Sevakis | 1167e3c | 2007-06-30 02:08:27 +0000 | [diff] [blame] | 360 | ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET, |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 361 | PPMI_SECTORS, &ppmi_header); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 362 | |
| 363 | /* The first four characters at 0x80000 (sector 1024) should be PPMI*/ |
| 364 | if( memcmp(ppmi_header.magic, "PPMI", 4) ) |
| 365 | return EFILE_NOT_FOUND; |
| 366 | |
| 367 | printf("BL mi4 size: %x", ppmi_header.length); |
| 368 | |
| 369 | /* Read mi4 header of the OF */ |
Michael Sevakis | 1167e3c | 2007-06-30 02:08:27 +0000 | [diff] [blame] | 370 | ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 371 | + (ppmi_header.length/512), MI4_HEADER_SECTORS, &mi4header); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 372 | |
| 373 | /* We don't support encrypted mi4 files yet */ |
Barry Wardell | bada0b7 | 2007-03-20 12:35:45 +0000 | [diff] [blame] | 374 | if( (mi4header.plaintext) != (mi4header.mi4size-MI4_HEADER_SIZE)) |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 375 | return EINVALID_FORMAT; |
| 376 | |
| 377 | /* MI4 file size */ |
Barry Wardell | bada0b7 | 2007-03-20 12:35:45 +0000 | [diff] [blame] | 378 | printf("OF mi4 size: %x", mi4header.mi4size); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 379 | |
Barry Wardell | bada0b7 | 2007-03-20 12:35:45 +0000 | [diff] [blame] | 380 | if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size) |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 381 | return EFILE_TOO_BIG; |
| 382 | |
| 383 | /* CRC32 */ |
| 384 | printf("CRC32: %x", mi4header.crc32); |
| 385 | |
| 386 | /* Rockbox model id */ |
Barry Wardell | ca8f7bf | 2007-03-19 11:20:22 +0000 | [diff] [blame] | 387 | printf("Model id: %.4s", mi4header.model); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 388 | |
| 389 | /* Read binary type (RBOS, RBBL) */ |
Barry Wardell | ca8f7bf | 2007-03-19 11:20:22 +0000 | [diff] [blame] | 390 | printf("Binary type: %.4s", mi4header.type); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 391 | |
| 392 | /* Load firmware */ |
Michael Sevakis | 1167e3c | 2007-06-30 02:08:27 +0000 | [diff] [blame] | 393 | ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 394 | + (ppmi_header.length/512) + MI4_HEADER_SECTORS, |
Barry Wardell | bada0b7 | 2007-03-20 12:35:45 +0000 | [diff] [blame] | 395 | (mi4header.mi4size-MI4_HEADER_SIZE)/512, buf); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 396 | |
| 397 | /* Check CRC32 to see if we have a valid file */ |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 398 | sum = chksum_crc32 (buf,mi4header.mi4size-MI4_HEADER_SIZE); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 399 | |
| 400 | printf("Calculated CRC32: %x", sum); |
| 401 | |
| 402 | if(sum != mi4header.crc32) |
| 403 | return EBAD_CHKSUM; |
| 404 | |
Barry Wardell | d46cf97 | 2007-10-20 17:08:41 +0000 | [diff] [blame] | 405 | #ifdef SANSA_E200 |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 406 | if (disable_rebuild) |
| 407 | { |
| 408 | char block[512]; |
Barry Wardell | d46cf97 | 2007-10-20 17:08:41 +0000 | [diff] [blame] | 409 | |
| 410 | printf("Disabling database rebuild"); |
| 411 | |
| 412 | ata_read_sectors(IF_MV2(0,) pinfo->start + 0x3c08, 1, block); |
| 413 | block[0xe1] = 0; |
| 414 | ata_write_sectors(IF_MV2(0,) pinfo->start + 0x3c08, 1, block); |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 415 | } |
Barry Wardell | 8b6bf8f | 2007-10-20 18:30:41 +0000 | [diff] [blame] | 416 | #else |
| 417 | (void) disable_rebuild; |
Barry Wardell | d46cf97 | 2007-10-20 17:08:41 +0000 | [diff] [blame] | 418 | #endif |
| 419 | |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 420 | return EOK; |
| 421 | } |
Barry Wardell | a91a35b | 2007-03-16 14:36:14 +0000 | [diff] [blame] | 422 | #endif |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 423 | |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 424 | void* main(void) |
| 425 | { |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 426 | int i; |
Barry Wardell | 2370998 | 2007-03-12 22:12:20 +0000 | [diff] [blame] | 427 | int btn; |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 428 | int rc; |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 429 | int num_partitions; |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 430 | struct partinfo* pinfo; |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 431 | #if defined(SANSA_E200) || defined(SANSA_C200) |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 432 | int usb_retry = 0; |
| 433 | bool usb = false; |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 434 | #else |
| 435 | char buf[256]; |
| 436 | unsigned short* identify_info; |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 437 | #endif |
Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 438 | |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 439 | chksum_crc32gentab (); |
| 440 | |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 441 | system_init(); |
| 442 | kernel_init(); |
| 443 | lcd_init(); |
| 444 | font_init(); |
Barry Wardell | 2f16d4f | 2006-12-19 11:33:53 +0000 | [diff] [blame] | 445 | button_init(); |
Barry Wardell | f1fead0 | 2007-10-14 18:20:23 +0000 | [diff] [blame] | 446 | #if defined(SANSA_E200) |
| 447 | i2c_init(); |
Jens Arnold | ef12b3b | 2007-11-12 18:49:53 +0000 | [diff] [blame] | 448 | _backlight_on(); |
Barry Wardell | f1fead0 | 2007-10-14 18:20:23 +0000 | [diff] [blame] | 449 | #endif |
Mark Arigo | e66ddd7 | 2008-01-09 07:24:43 +0000 | [diff] [blame] | 450 | |
| 451 | #if LCD_DEPTH > 1 |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 452 | lcd_set_foreground(LCD_WHITE); |
| 453 | lcd_set_background(LCD_BLACK); |
Mark Arigo | e66ddd7 | 2008-01-09 07:24:43 +0000 | [diff] [blame] | 454 | #endif |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 455 | lcd_clear_display(); |
| 456 | |
Jonathan Gordon | fc8e09d | 2007-11-19 02:07:40 +0000 | [diff] [blame] | 457 | if (button_hold()) |
| 458 | { |
| 459 | verbose = true; |
| 460 | printf("Hold switch on"); |
| 461 | printf("Shutting down..."); |
| 462 | sleep(HZ); |
| 463 | power_off(); |
| 464 | } |
| 465 | |
Barry Wardell | 2370998 | 2007-03-12 22:12:20 +0000 | [diff] [blame] | 466 | btn = button_read_device(); |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 467 | #if defined(SANSA_E200) || defined(SANSA_C200) |
Björn Stenberg | 2f7cffa | 2008-02-11 14:26:25 +0000 | [diff] [blame] | 468 | #if !defined(USE_ROCKBOX_USB) |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 469 | usb_init(); |
Björn Stenberg | 7af22e1 | 2007-11-22 22:17:45 +0000 | [diff] [blame] | 470 | while (usb_drv_powered() && usb_retry < 5 && !usb) |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 471 | { |
| 472 | usb_retry++; |
| 473 | sleep(HZ/4); |
Dave Chapman | 1672350 | 2007-09-04 08:03:07 +0000 | [diff] [blame] | 474 | usb = (usb_detect() == USB_INSERTED); |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 475 | } |
| 476 | if (usb) |
| 477 | btn |= BOOTLOADER_BOOT_OF; |
Björn Stenberg | 2f7cffa | 2008-02-11 14:26:25 +0000 | [diff] [blame] | 478 | #endif /* USE_ROCKBOX_USB */ |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 479 | #endif |
Barry Wardell | 0c1a304 | 2007-03-20 10:36:26 +0000 | [diff] [blame] | 480 | /* Enable bootloader messages if any button is pressed */ |
| 481 | if (btn) |
| 482 | verbose = true; |
Barry Wardell | 2370998 | 2007-03-12 22:12:20 +0000 | [diff] [blame] | 483 | |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 484 | lcd_setfont(FONT_SYSFIXED); |
| 485 | |
Barry Wardell | f4709d0 | 2007-01-17 12:20:38 +0000 | [diff] [blame] | 486 | printf("Rockbox boot loader"); |
Barry Wardell | ca8f7bf | 2007-03-19 11:20:22 +0000 | [diff] [blame] | 487 | printf("Version: %s", version); |
Barry Wardell | f4709d0 | 2007-01-17 12:20:38 +0000 | [diff] [blame] | 488 | printf(MODEL_NAME); |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 489 | |
| 490 | i=ata_init(); |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 491 | #if !defined(SANSA_E200) && !defined(SANSA_C200) |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 492 | if (i==0) { |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 493 | identify_info=ata_get_identify(); |
| 494 | /* Show model */ |
| 495 | for (i=0; i < 20; i++) { |
| 496 | ((unsigned short*)buf)[i]=htobe16(identify_info[i+27]); |
| 497 | } |
| 498 | buf[40]=0; |
| 499 | for (i=39; i && buf[i]==' '; i--) { |
| 500 | buf[i]=0; |
| 501 | } |
| 502 | printf(buf); |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 503 | } else { |
Barry Wardell | 2370998 | 2007-03-12 22:12:20 +0000 | [diff] [blame] | 504 | error(EATA, i); |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 505 | } |
Michael Sevakis | 1167e3c | 2007-06-30 02:08:27 +0000 | [diff] [blame] | 506 | #endif |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 507 | |
Michael Sevakis | 1167e3c | 2007-06-30 02:08:27 +0000 | [diff] [blame] | 508 | disk_init(IF_MV(0)); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 509 | num_partitions = disk_mount_all(); |
| 510 | if (num_partitions<=0) |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 511 | { |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 512 | error(EDISK,num_partitions); |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 513 | } |
| 514 | |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 515 | /* Just list the first 2 partitions since we don't have any devices yet |
| 516 | that have more than that */ |
Barry Wardell | 7cd559d | 2007-03-20 22:18:35 +0000 | [diff] [blame] | 517 | for(i=0; i<NUM_PARTITIONS; i++) |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 518 | { |
| 519 | pinfo = disk_partinfo(i); |
| 520 | printf("Partition %d: 0x%02x %ld MB", |
| 521 | i, pinfo->type, pinfo->size / 2048); |
| 522 | } |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 523 | |
Barry Wardell | a42070d | 2007-03-15 22:32:58 +0000 | [diff] [blame] | 524 | if(btn & BOOTLOADER_BOOT_OF) |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 525 | { |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 526 | /* Load original mi4 firmware in to a memory buffer called loadbuffer. |
| 527 | The rest of the loading is done in crt0.S. |
| 528 | 1) First try reading from the hidden partition (on Sansa only). |
| 529 | 2) Next try a decrypted mi4 file in /System/OF.mi4 |
| 530 | 3) Finally, try a raw firmware binary in /System/OF.mi4. It should be |
| 531 | a mi4 firmware decrypted and header stripped using mi4code. |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 532 | */ |
Barry Wardell | f4709d0 | 2007-01-17 12:20:38 +0000 | [diff] [blame] | 533 | printf("Loading original firmware..."); |
Barry Wardell | a91a35b | 2007-03-16 14:36:14 +0000 | [diff] [blame] | 534 | |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 535 | #if defined(SANSA_E200) || defined(SANSA_C200) |
Barry Wardell | a91a35b | 2007-03-16 14:36:14 +0000 | [diff] [blame] | 536 | /* First try a (hidden) firmware partition */ |
| 537 | printf("Trying firmware partition"); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 538 | pinfo = disk_partinfo(1); |
Barry Wardell | b8a5adf | 2007-03-16 14:41:55 +0000 | [diff] [blame] | 539 | if(pinfo->type == PARTITION_TYPE_OS2_HIDDEN_C_DRIVE) |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 540 | { |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 541 | rc = load_mi4_part(loadbuffer, pinfo, MAX_LOADSIZE, usb); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 542 | if (rc < EOK) { |
| 543 | printf("Can't load from partition"); |
| 544 | printf(strerror(rc)); |
| 545 | } else { |
| 546 | return (void*)loadbuffer; |
| 547 | } |
| 548 | } else { |
| 549 | printf("No hidden partition found."); |
| 550 | } |
Barry Wardell | a91a35b | 2007-03-16 14:36:14 +0000 | [diff] [blame] | 551 | #endif |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 552 | |
| 553 | printf("Trying /System/OF.mi4"); |
| 554 | rc=load_mi4(loadbuffer, "/System/OF.mi4", MAX_LOADSIZE); |
| 555 | if (rc < EOK) { |
| 556 | printf("Can't load /System/OF.mi4"); |
| 557 | printf(strerror(rc)); |
| 558 | } else { |
| 559 | return (void*)loadbuffer; |
| 560 | } |
| 561 | |
| 562 | printf("Trying /System/OF.bin"); |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 563 | rc=load_raw_firmware(loadbuffer, "/System/OF.bin", MAX_LOADSIZE); |
| 564 | if (rc < EOK) { |
Barry Wardell | 2370998 | 2007-03-12 22:12:20 +0000 | [diff] [blame] | 565 | printf("Can't load /System/OF.bin"); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 566 | printf(strerror(rc)); |
| 567 | } else { |
| 568 | return (void*)loadbuffer; |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 569 | } |
Barry Wardell | 0c1a304 | 2007-03-20 10:36:26 +0000 | [diff] [blame] | 570 | |
Barry Wardell | 3de41f5 | 2007-03-20 20:45:25 +0000 | [diff] [blame] | 571 | error(0, 0); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 572 | |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 573 | } else { |
Jonathan Gordon | 875c725 | 2007-05-17 11:35:57 +0000 | [diff] [blame] | 574 | #if 0 /* e200: enable to be able to dump the hidden partition */ |
| 575 | if(btn & BUTTON_UP) |
| 576 | { |
| 577 | int fd; |
| 578 | pinfo = disk_partinfo(1); |
| 579 | fd = open("/part.bin", O_CREAT|O_RDWR); |
| 580 | char sector[512]; |
| 581 | for(i=0; i<40960; i++){ |
Jonathan Gordon | 1062a17 | 2007-05-20 03:08:00 +0000 | [diff] [blame] | 582 | if (!(i%100)) |
| 583 | { |
| 584 | printf("dumping sector %d", i); |
| 585 | } |
Barry Wardell | 003fc49 | 2007-10-20 15:41:44 +0000 | [diff] [blame] | 586 | ata_read_sectors(IF_MV2(0,) pinfo->start + i, 1, sector); |
Jonathan Gordon | 875c725 | 2007-05-17 11:35:57 +0000 | [diff] [blame] | 587 | write(fd,sector,512); |
| 588 | } |
| 589 | close(fd); |
| 590 | } |
| 591 | #endif |
Barry Wardell | f4709d0 | 2007-01-17 12:20:38 +0000 | [diff] [blame] | 592 | printf("Loading Rockbox..."); |
Barry Wardell | 14ed3ca | 2007-03-16 14:28:00 +0000 | [diff] [blame] | 593 | rc=load_mi4(loadbuffer, BOOTFILE, MAX_LOADSIZE); |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 594 | if (rc < EOK) { |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 595 | printf("Can't load %s:", BOOTFILE); |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 596 | printf(strerror(rc)); |
| 597 | |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 598 | #ifdef OLD_BOOTFILE |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 599 | /* Try loading rockbox from old rockbox.e200/rockbox.h10 format */ |
| 600 | rc=load_firmware(loadbuffer, OLD_BOOTFILE, MAX_LOADSIZE); |
| 601 | if (rc < EOK) { |
| 602 | printf("Can't load %s:", OLD_BOOTFILE); |
Barry Wardell | 0c1a304 | 2007-03-20 10:36:26 +0000 | [diff] [blame] | 603 | error(EBOOTFILE, rc); |
Barry Wardell | e293bbb | 2007-03-17 19:07:20 +0000 | [diff] [blame] | 604 | } |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 605 | #endif |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 606 | } |
Barry Wardell | 1920df3 | 2006-08-28 08:11:32 +0000 | [diff] [blame] | 607 | } |
Hristo Kovachev | 1204136 | 2006-08-11 09:51:04 +0000 | [diff] [blame] | 608 | |
Barry Wardell | 84b509d | 2007-01-28 18:42:11 +0000 | [diff] [blame] | 609 | return (void*)loadbuffer; |
Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 610 | } |
| 611 | |
Mark Arigo | dbc6b4e | 2007-09-06 03:28:58 +0000 | [diff] [blame] | 612 | #if !defined(SANSA_E200) && !defined(SANSA_C200) |
Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 613 | /* These functions are present in the firmware library, but we reimplement |
| 614 | them here because the originals do a lot more than we want */ |
Hristo Kovachev | 9dc0e62 | 2006-08-11 08:35:27 +0000 | [diff] [blame] | 615 | void usb_acknowledge(void) |
| 616 | { |
| 617 | } |
| 618 | |
| 619 | void usb_wait_for_disconnect(void) |
| 620 | { |
| 621 | } |
Jonathan Gordon | a76947f | 2007-03-22 12:45:19 +0000 | [diff] [blame] | 622 | #endif |
| 623 | |