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