1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 by Barry Wardell
12 * Based on Rockbox iriver bootloader by Linus Nielsen Feltzing
13 * and the ipodlinux bootloader by Daniel Palffy and Bernard Leach
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.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
40 /* Button definitions */
41 #if CONFIG_KEYPAD == IRIVER_H10_PAD
42 #define BOOTLOADER_BOOT_OF BUTTON_LEFT
44 #elif CONFIG_KEYPAD == SANSA_E200_PAD
45 #define BOOTLOADER_BOOT_OF BUTTON_LEFT
49 /* Maximum allowed firmware image size. 10MB is more than enough */
50 #define MAX_LOADSIZE (10*1024*1024)
52 /* A buffer to load the original firmware or Rockbox into */
53 unsigned char *loadbuffer
= (unsigned char *)DRAM_START
;
55 /* Bootloader version */
56 char version
[] = APPSVERSION
;
58 /* Locations and sizes in hidden partition on Sansa */
60 #define PPMI_SECTOR_OFFSET 1024
61 #define PPMI_SECTORS 1
62 #define MI4_HEADER_SECTORS 1
63 #define NUM_PARTITIONS 2
66 #define NUM_PARTITIONS 1
70 #define MI4_HEADER_SIZE 0x200
72 /* mi4 header structure */
74 unsigned char magic
[4];
83 unsigned char type
[4];
84 unsigned char model
[4];
87 /* PPMI header structure */
88 struct ppmi_header_t
{
89 unsigned char magic
[4];
94 inline unsigned int le2int(unsigned char* buf
)
96 int32_t res
= (buf
[3] << 24) | (buf
[2] << 16) | (buf
[1] << 8) | buf
[0];
101 inline void int2le(unsigned int val
, unsigned char* addr
)
103 addr
[0] = val
& 0xFF;
104 addr
[1] = (val
>> 8) & 0xff;
105 addr
[2] = (val
>> 16) & 0xff;
106 addr
[3] = (val
>> 24) & 0xff;
115 struct tea_key tea_keytable
[] = {
116 { "default" , { 0x20d36cc0, 0x10e8c07d, 0xc0e7dcaa, 0x107eb080 } },
117 { "sansa", { 0xe494e96e, 0x3ee32966, 0x6f48512b, 0xa93fbb42 } },
118 { "sansa_gh", { 0xd7b10538, 0xc662945b, 0x1b3fce68, 0xf389c0e6 } },
119 { "rhapsody", { 0x7aa9c8dc, 0xbed0a82a, 0x16204cc7, 0x5904ef38 } },
120 { "p610", { 0x950e83dc, 0xec4907f9, 0x023734b9, 0x10cfb7c7 } },
121 { "p640", { 0x220c5f23, 0xd04df68e, 0x431b5e25, 0x4dcc1fa1 } },
122 { "virgin", { 0xe83c29a1, 0x04862973, 0xa9b3f0d4, 0x38be2a9c } },
123 { "20gc_eng", { 0x0240772c, 0x6f3329b5, 0x3ec9a6c5, 0xb0c9e493 } },
124 { "20gc_fre", { 0xbede8817, 0xb23bfe4f, 0x80aa682d, 0xd13f598c } },
125 { "elio_p722", { 0x6af3b9f8, 0x777483f5, 0xae8181cc, 0xfa6d8a84 } },
126 { "c200", { 0xbf2d06fa, 0xf0e23d59, 0x29738132, 0xe2d04ca7 } },
131 tea_decrypt() from http://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm
133 "Following is an adaptation of the reference encryption and decryption
134 routines in C, released into the public domain by David Wheeler and
139 /* NOTE: The mi4 version of TEA uses a different initial value to sum compared
140 to the reference implementation and the main loop is 8 iterations, not
144 static void tea_decrypt(uint32_t* v0
, uint32_t* v1
, uint32_t* k
) {
145 uint32_t sum
=0xF1BBCDC8, i
; /* set up */
146 uint32_t delta
=0x9E3779B9; /* a key schedule constant */
147 uint32_t k0
=k
[0], k1
=k
[1], k2
=k
[2], k3
=k
[3]; /* cache key */
148 for(i
=0; i
<8; i
++) { /* basic cycle start */
149 *v1
-= ((*v0
<<4) + k2
) ^ (*v0
+ sum
) ^ ((*v0
>>5) + k3
);
150 *v0
-= ((*v1
<<4) + k0
) ^ (*v1
+ sum
) ^ ((*v1
>>5) + k1
);
151 sum
-= delta
; /* end cycle */
155 /* mi4 files are encrypted in 64-bit blocks (two little-endian 32-bit
156 integers) and the key is incremented after each block
159 static void tea_decrypt_buf(unsigned char* src
, unsigned char* dest
, size_t n
, uint32_t * key
)
164 for (i
= 0; i
< (n
/ 8); i
++) {
168 tea_decrypt(&v0
, &v1
, key
);
176 /* Now increment the key */
190 static inline bool tea_test_key(unsigned char magic_enc
[8], uint32_t * key
, int unaligned
)
192 unsigned char magic_dec
[8];
193 tea_decrypt_buf(magic_enc
, magic_dec
, 8, key
);
195 return (le2int(&magic_dec
[4*unaligned
]) == 0xaa55aa55);
198 static int tea_find_key(struct mi4header_t
*mi4header
, int fd
)
203 unsigned char magic_enc
[8];
205 unsigned int magic_location
= mi4header
->length
-4;
208 if ( (magic_location
% 8) != 0 )
214 /* Load encrypted magic 0xaa55aa55 to check key */
215 lseek(fd
, MI4_HEADER_SIZE
+ magic_location
, SEEK_SET
);
216 rc
= read(fd
, magic_enc
, 8);
218 return EREAD_IMAGE_FAILED
;
220 printf("Searching for key:");
222 for (i
=0; i
< NUM_KEYS
&& (key_found
<0) ; i
++) {
223 key
[0] = tea_keytable
[i
].key
[0];
224 key
[1] = tea_keytable
[i
].key
[1];
225 key
[2] = tea_keytable
[i
].key
[2];
226 key
[3] = tea_keytable
[i
].key
[3];
228 /* Now increment the key */
229 for(j
=0; j
<((magic_location
-mi4header
->plaintext
)/8); j
++){
242 if (tea_test_key(magic_enc
,key
,unaligned
))
245 printf("%s...found", tea_keytable
[i
].name
);
247 /* printf("%s...failed", tea_keytable[i].name); */
255 * We can't use the CRC32 implementation in the firmware library as it uses a
256 * different polynomial. The polynomial needed is 0xEDB88320L
258 * CRC32 implementation taken from:
260 * efone - Distributed internet phone system.
262 * (c) 1999,2000 Krzysztof Dabrowski
263 * (c) 1999,2000 ElysiuM deeZine
265 * This program is free software; you can redistribute it and/or
266 * modify it under the terms of the GNU General Public License
267 * as published by the Free Software Foundation; either version
268 * 2 of the License, or (at your option) any later version.
272 /* based on implementation by Finn Yannick Jacobs */
276 /* crc_tab[] -- this crcTable is being build by chksum_crc32GenTab().
277 * so make sure, you call it before using the other
280 static unsigned int crc_tab
[256];
282 /* chksum_crc() -- to a given block, this one calculates the
283 * crc32-checksum until the length is
284 * reached. the crc32-checksum will be
287 unsigned int chksum_crc32 (unsigned char *block
, unsigned int length
)
289 register unsigned long crc
;
293 for (i
= 0; i
< length
; i
++)
295 crc
= ((crc
>> 8) & 0x00FFFFFF) ^ crc_tab
[(crc
^ *block
++) & 0xFF];
300 /* chksum_crc32gentab() -- to a global crc_tab[256], this one will
301 * calculate the crcTable for crc32-checksums.
302 * it is generated to the polynom [..]
305 static void chksum_crc32gentab (void)
307 unsigned long crc
, poly
;
311 for (i
= 0; i
< 256; i
++)
314 for (j
= 8; j
> 0; j
--)
318 crc
= (crc
>> 1) ^ poly
;
330 /* Load mi4 format firmware image */
331 int load_mi4(unsigned char* buf
, char* firmware
, unsigned int buffer_size
)
334 struct mi4header_t mi4header
;
337 char filename
[MAX_PATH
];
339 snprintf(filename
,sizeof(filename
),"/.rockbox/%s",firmware
);
340 fd
= open(filename
, O_RDONLY
);
343 snprintf(filename
,sizeof(filename
),"/%s",firmware
);
344 fd
= open(filename
, O_RDONLY
);
346 return EFILE_NOT_FOUND
;
349 read(fd
, &mi4header
, MI4_HEADER_SIZE
);
352 printf("mi4 size: %x", mi4header
.mi4size
);
354 if ((mi4header
.mi4size
-MI4_HEADER_SIZE
) > buffer_size
)
355 return EFILE_TOO_BIG
;
358 printf("CRC32: %x", mi4header
.crc32
);
360 /* Rockbox model id */
361 printf("Model id: %.4s", mi4header
.model
);
363 /* Read binary type (RBOS, RBBL) */
364 printf("Binary type: %.4s", mi4header
.type
);
366 /* Load firmware file */
367 lseek(fd
, MI4_HEADER_SIZE
, SEEK_SET
);
368 rc
= read(fd
, buf
, mi4header
.mi4size
-MI4_HEADER_SIZE
);
369 if(rc
< (int)mi4header
.mi4size
-MI4_HEADER_SIZE
)
370 return EREAD_IMAGE_FAILED
;
372 /* Check CRC32 to see if we have a valid file */
373 sum
= chksum_crc32 (buf
, mi4header
.mi4size
- MI4_HEADER_SIZE
);
375 printf("Calculated CRC32: %x", sum
);
377 if(sum
!= mi4header
.crc32
)
380 if( (mi4header
.plaintext
+ MI4_HEADER_SIZE
) != mi4header
.mi4size
)
382 /* Load encrypted firmware */
383 int key_index
= tea_find_key(&mi4header
, fd
);
386 return EINVALID_FORMAT
;
388 /* Plaintext part is already loaded */
389 buf
+= mi4header
.plaintext
;
391 /* Decrypt in-place */
392 tea_decrypt_buf(buf
, buf
,
393 mi4header
.mi4size
-(mi4header
.plaintext
+MI4_HEADER_SIZE
),
394 tea_keytable
[key_index
].key
);
396 printf("%s key used", tea_keytable
[key_index
].name
);
398 /* Check decryption was successfull */
399 if(le2int(&buf
[mi4header
.length
-mi4header
.plaintext
-4]) != 0xaa55aa55)
401 return EREAD_IMAGE_FAILED
;
409 /* Load mi4 firmware from a hidden disk partition */
410 int load_mi4_part(unsigned char* buf
, struct partinfo
* pinfo
,
411 unsigned int buffer_size
, bool disable_rebuild
)
413 struct mi4header_t mi4header
;
414 struct ppmi_header_t ppmi_header
;
417 /* Read header to find out how long the mi4 file is. */
418 ata_read_sectors(pinfo
->start
+ PPMI_SECTOR_OFFSET
,
419 PPMI_SECTORS
, &ppmi_header
);
421 /* The first four characters at 0x80000 (sector 1024) should be PPMI*/
422 if( memcmp(ppmi_header
.magic
, "PPMI", 4) )
423 return EFILE_NOT_FOUND
;
425 printf("BL mi4 size: %x", ppmi_header
.length
);
427 /* Read mi4 header of the OF */
428 ata_read_sectors(pinfo
->start
+ PPMI_SECTOR_OFFSET
+ PPMI_SECTORS
429 + (ppmi_header
.length
/512), MI4_HEADER_SECTORS
, &mi4header
);
431 /* We don't support encrypted mi4 files yet */
432 if( (mi4header
.plaintext
) != (mi4header
.mi4size
-MI4_HEADER_SIZE
))
433 return EINVALID_FORMAT
;
436 printf("OF mi4 size: %x", mi4header
.mi4size
);
438 if ((mi4header
.mi4size
-MI4_HEADER_SIZE
) > buffer_size
)
439 return EFILE_TOO_BIG
;
442 printf("CRC32: %x", mi4header
.crc32
);
444 /* Rockbox model id */
445 printf("Model id: %.4s", mi4header
.model
);
447 /* Read binary type (RBOS, RBBL) */
448 printf("Binary type: %.4s", mi4header
.type
);
451 ata_read_sectors(pinfo
->start
+ PPMI_SECTOR_OFFSET
+ PPMI_SECTORS
452 + (ppmi_header
.length
/512) + MI4_HEADER_SECTORS
,
453 (mi4header
.mi4size
-MI4_HEADER_SIZE
)/512, buf
);
455 /* Check CRC32 to see if we have a valid file */
456 sum
= chksum_crc32 (buf
,mi4header
.mi4size
-MI4_HEADER_SIZE
);
458 printf("Calculated CRC32: %x", sum
);
460 if(sum
!= mi4header
.crc32
)
466 int sector
= 0, offset
= 0;
468 /* check which known version we have */
469 /* These are taken from the PPPS section, 0x00780240 */
470 ata_read_sectors(pinfo
->start
+ 0x3C01, 1, block
);
471 if (!memcmp(&block
[0x40],
472 "PP5022AF-05.51-S301-01.11-S301.01.11A-D", 39))
473 { /* American e200, OF version 1.01.11A */
474 sector
= pinfo
->start
+ 0x3c08;
477 else if (!memcmp(&block
[0x40],
478 "PP5022AF-05.51-S301-00.12-S301.00.12E-D", 39))
479 { /* European e200, OF version 1.00.12 */
480 sector
= pinfo
->start
+ 0x3c5c;
485 ata_read_sectors(sector
, 1, block
);
487 ata_write_sectors(sector
, 1, block
);
500 unsigned short* identify_info
;
501 struct partinfo
* pinfo
;
507 chksum_crc32gentab ();
515 lcd_set_foreground(LCD_WHITE
);
516 lcd_set_background(LCD_BLACK
);
519 btn
= button_read_device();
522 while (usb_retry
< 5 && !usb
)
529 btn
|= BOOTLOADER_BOOT_OF
;
531 /* Enable bootloader messages if any button is pressed */
535 lcd_setfont(FONT_SYSFIXED
);
537 printf("Rockbox boot loader");
538 printf("Version: %s", version
);
543 identify_info
=ata_get_identify();
545 for (i
=0; i
< 20; i
++) {
546 ((unsigned short*)buf
)[i
]=htobe16(identify_info
[i
+27]);
549 for (i
=39; i
&& buf
[i
]==' '; i
--) {
558 num_partitions
= disk_mount_all();
559 if (num_partitions
<=0)
561 error(EDISK
,num_partitions
);
564 /* Just list the first 2 partitions since we don't have any devices yet
565 that have more than that */
566 for(i
=0; i
<NUM_PARTITIONS
; i
++)
568 pinfo
= disk_partinfo(i
);
569 printf("Partition %d: 0x%02x %ld MB",
570 i
, pinfo
->type
, pinfo
->size
/ 2048);
573 if(btn
& BOOTLOADER_BOOT_OF
)
575 /* Load original mi4 firmware in to a memory buffer called loadbuffer.
576 The rest of the loading is done in crt0.S.
577 1) First try reading from the hidden partition (on Sansa only).
578 2) Next try a decrypted mi4 file in /System/OF.mi4
579 3) Finally, try a raw firmware binary in /System/OF.mi4. It should be
580 a mi4 firmware decrypted and header stripped using mi4code.
582 printf("Loading original firmware...");
585 /* First try a (hidden) firmware partition */
586 printf("Trying firmware partition");
587 pinfo
= disk_partinfo(1);
588 if(pinfo
->type
== PARTITION_TYPE_OS2_HIDDEN_C_DRIVE
)
590 rc
= load_mi4_part(loadbuffer
, pinfo
, MAX_LOADSIZE
, usb
);
592 printf("Can't load from partition");
593 printf(strerror(rc
));
595 return (void*)loadbuffer
;
598 printf("No hidden partition found.");
602 printf("Trying /System/OF.mi4");
603 rc
=load_mi4(loadbuffer
, "/System/OF.mi4", MAX_LOADSIZE
);
605 printf("Can't load /System/OF.mi4");
606 printf(strerror(rc
));
608 return (void*)loadbuffer
;
611 printf("Trying /System/OF.bin");
612 rc
=load_raw_firmware(loadbuffer
, "/System/OF.bin", MAX_LOADSIZE
);
614 printf("Can't load /System/OF.bin");
615 printf(strerror(rc
));
617 return (void*)loadbuffer
;
623 printf("Loading Rockbox...");
624 rc
=load_mi4(loadbuffer
, BOOTFILE
, MAX_LOADSIZE
);
626 printf("Can't load %s:", BOOTFILE
);
627 printf(strerror(rc
));
629 /* Try loading rockbox from old rockbox.e200/rockbox.h10 format */
630 rc
=load_firmware(loadbuffer
, OLD_BOOTFILE
, MAX_LOADSIZE
);
632 printf("Can't load %s:", OLD_BOOTFILE
);
633 error(EBOOTFILE
, rc
);
638 return (void*)loadbuffer
;
642 /* These functions are present in the firmware library, but we reimplement
643 them here because the originals do a lot more than we want */
644 void usb_acknowledge(void)
648 void usb_wait_for_disconnect(void)