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