blob: 86e9868554469aaa4aab59680ab202c07467807a [file] [log] [blame]
Hristo Kovachev9dc0e622006-08-11 08:35:27 +00001/***************************************************************************
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 Gordonceb1e7a2007-03-22 12:55:51 +000022#include <stdio.h>
23#include <stdlib.h>
Barry Wardell84b509d2007-01-28 18:42:11 +000024#include "common.h"
Hristo Kovachev9dc0e622006-08-11 08:35:27 +000025#include "cpu.h"
Hristo Kovachev9dc0e622006-08-11 08:35:27 +000026#include "file.h"
Barry Wardell84b509d2007-01-28 18:42:11 +000027#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 Wardell14ed3ca2007-03-16 14:28:00 +000034#include <string.h>
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000035#ifdef SANSA_E200
36#include "usb.h"
37#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +000038
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000039
40/* Button definitions */
41#if CONFIG_KEYPAD == IRIVER_H10_PAD
42#define BOOTLOADER_BOOT_OF BUTTON_LEFT
43
44#elif CONFIG_KEYPAD == SANSA_E200_PAD
45#define BOOTLOADER_BOOT_OF BUTTON_LEFT
46
47#endif
48
49/* Maximum allowed firmware image size. 10MB is more than enough */
50#define MAX_LOADSIZE (10*1024*1024)
51
52/* A buffer to load the original firmware or Rockbox into */
53unsigned char *loadbuffer = (unsigned char *)DRAM_START;
54
55/* Bootloader version */
56char version[] = APPSVERSION;
57
Barry Wardell3de41f52007-03-20 20:45:25 +000058/* Locations and sizes in hidden partition on Sansa */
Barry Wardell7cd559d2007-03-20 22:18:35 +000059#ifdef SANSA_E200
Barry Wardell3de41f52007-03-20 20:45:25 +000060#define PPMI_SECTOR_OFFSET 1024
61#define PPMI_SECTORS 1
62#define MI4_HEADER_SECTORS 1
Barry Wardell7cd559d2007-03-20 22:18:35 +000063#define NUM_PARTITIONS 2
64
65#else
Barry Wardell7cd559d2007-03-20 22:18:35 +000066#define NUM_PARTITIONS 1
67
68#endif
Barry Wardell3de41f52007-03-20 20:45:25 +000069
Barry Wardell7e03b0a2007-03-20 22:56:51 +000070#define MI4_HEADER_SIZE 0x200
71
Barry Wardell3de41f52007-03-20 20:45:25 +000072/* mi4 header structure */
73struct mi4header_t {
74 unsigned char magic[4];
75 uint32_t version;
76 uint32_t length;
77 uint32_t crc32;
78 uint32_t enctype;
79 uint32_t mi4size;
80 uint32_t plaintext;
81 uint32_t dsa_key[10];
82 uint32_t pad[109];
83 unsigned char type[4];
84 unsigned char model[4];
85};
86
87/* PPMI header structure */
88struct ppmi_header_t {
89 unsigned char magic[4];
90 uint32_t length;
91 uint32_t pad[126];
92};
93
94inline unsigned int le2int(unsigned char* buf)
95{
96 int32_t res = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
97
98 return res;
99}
100
101inline void int2le(unsigned int val, unsigned char* addr)
102{
103 addr[0] = val & 0xFF;
104 addr[1] = (val >> 8) & 0xff;
105 addr[2] = (val >> 16) & 0xff;
106 addr[3] = (val >> 24) & 0xff;
107}
108
109struct tea_key {
110 const char * name;
111 uint32_t key[4];
112};
113
114#define NUM_KEYS 11
115struct 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 } },
127};
128
129/*
130
131tea_decrypt() from http://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm
132
133"Following is an adaptation of the reference encryption and decryption
134routines in C, released into the public domain by David Wheeler and
135Roger Needham:"
136
137*/
138
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
141 32.
142*/
143
144static 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 */
152 }
153}
154
155/* mi4 files are encrypted in 64-bit blocks (two little-endian 32-bit
156 integers) and the key is incremented after each block
157 */
158
159static void tea_decrypt_buf(unsigned char* src, unsigned char* dest, size_t n, uint32_t * key)
160{
161 uint32_t v0, v1;
162 unsigned int i;
163
164 for (i = 0; i < (n / 8); i++) {
165 v0 = le2int(src);
166 v1 = le2int(src+4);
167
168 tea_decrypt(&v0, &v1, key);
169
170 int2le(v0, dest);
171 int2le(v1, dest+4);
172
173 src += 8;
174 dest += 8;
175
176 /* Now increment the key */
177 key[0]++;
178 if (key[0]==0) {
179 key[1]++;
180 if (key[1]==0) {
181 key[2]++;
182 if (key[2]==0) {
183 key[3]++;
184 }
185 }
186 }
187 }
188}
189
190static inline bool tea_test_key(unsigned char magic_enc[8], uint32_t * key, int unaligned)
191{
192 unsigned char magic_dec[8];
193 tea_decrypt_buf(magic_enc, magic_dec, 8, key);
194
195 return (le2int(&magic_dec[4*unaligned]) == 0xaa55aa55);
196}
197
198static int tea_find_key(struct mi4header_t *mi4header, int fd)
199{
200 int i, rc;
201 unsigned int j;
202 uint32_t key[4];
203 unsigned char magic_enc[8];
204 int key_found = -1;
205 unsigned int magic_location = mi4header->length-4;
206 int unaligned = 0;
207
208 if ( (magic_location % 8) != 0 )
209 {
210 unaligned = 1;
211 magic_location -= 4;
212 }
213
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);
217 if(rc < 8 )
218 return EREAD_IMAGE_FAILED;
219
Barry Wardell7cd559d2007-03-20 22:18:35 +0000220 printf("Searching for key:");
Barry Wardell3de41f52007-03-20 20:45:25 +0000221
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];
227
228 /* Now increment the key */
229 for(j=0; j<((magic_location-mi4header->plaintext)/8); j++){
230 key[0]++;
231 if (key[0]==0) {
232 key[1]++;
233 if (key[1]==0) {
234 key[2]++;
235 if (key[2]==0) {
236 key[3]++;
237 }
238 }
239 }
240 }
241
242 if (tea_test_key(magic_enc,key,unaligned))
243 {
244 key_found = i;
245 printf("%s...found", tea_keytable[i].name);
246 } else {
Barry Wardell7cd559d2007-03-20 22:18:35 +0000247 /* printf("%s...failed", tea_keytable[i].name); */
Barry Wardell3de41f52007-03-20 20:45:25 +0000248 }
249 }
250
251 return key_found;
252}
253
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000254/*
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000255 * We can't use the CRC32 implementation in the firmware library as it uses a
256 * different polynomial. The polynomial needed is 0xEDB88320L
257 *
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000258 * CRC32 implementation taken from:
259 *
260 * efone - Distributed internet phone system.
261 *
262 * (c) 1999,2000 Krzysztof Dabrowski
263 * (c) 1999,2000 ElysiuM deeZine
264 *
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.
269 *
270 */
271
272/* based on implementation by Finn Yannick Jacobs */
273
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +0000274
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000275
276/* crc_tab[] -- this crcTable is being build by chksum_crc32GenTab().
277 * so make sure, you call it before using the other
278 * functions!
279 */
280static unsigned int crc_tab[256];
281
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
285 * the result.
286 */
287unsigned int chksum_crc32 (unsigned char *block, unsigned int length)
288{
289 register unsigned long crc;
290 unsigned long i;
291
292 crc = 0;
293 for (i = 0; i < length; i++)
294 {
295 crc = ((crc >> 8) & 0x00FFFFFF) ^ crc_tab[(crc ^ *block++) & 0xFF];
296 }
297 return (crc);
298}
299
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 [..]
303 */
304
305static void chksum_crc32gentab (void)
306{
307 unsigned long crc, poly;
308 int i, j;
309
310 poly = 0xEDB88320L;
311 for (i = 0; i < 256; i++)
312 {
313 crc = i;
314 for (j = 8; j > 0; j--)
315 {
316 if (crc & 1)
317 {
318 crc = (crc >> 1) ^ poly;
319 }
320 else
321 {
322 crc >>= 1;
323 }
324 }
325 crc_tab[i] = crc;
326 }
327}
Barry Wardell23709982007-03-12 22:12:20 +0000328
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000329
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000330/* Load mi4 format firmware image */
331int load_mi4(unsigned char* buf, char* firmware, unsigned int buffer_size)
332{
333 int fd;
334 struct mi4header_t mi4header;
335 int rc;
336 unsigned long sum;
337 char filename[MAX_PATH];
338
339 snprintf(filename,sizeof(filename),"/.rockbox/%s",firmware);
340 fd = open(filename, O_RDONLY);
341 if(fd < 0)
342 {
343 snprintf(filename,sizeof(filename),"/%s",firmware);
344 fd = open(filename, O_RDONLY);
345 if(fd < 0)
346 return EFILE_NOT_FOUND;
347 }
348
Barry Wardelle293bbb2007-03-17 19:07:20 +0000349 read(fd, &mi4header, MI4_HEADER_SIZE);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000350
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000351 /* MI4 file size */
Barry Wardellbada0b72007-03-20 12:35:45 +0000352 printf("mi4 size: %x", mi4header.mi4size);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000353
Barry Wardellbada0b72007-03-20 12:35:45 +0000354 if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000355 return EFILE_TOO_BIG;
356
357 /* CRC32 */
358 printf("CRC32: %x", mi4header.crc32);
359
360 /* Rockbox model id */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000361 printf("Model id: %.4s", mi4header.model);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000362
363 /* Read binary type (RBOS, RBBL) */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000364 printf("Binary type: %.4s", mi4header.type);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000365
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000366 /* 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;
371
372 /* Check CRC32 to see if we have a valid file */
373 sum = chksum_crc32 (buf, mi4header.mi4size - MI4_HEADER_SIZE);
374
375 printf("Calculated CRC32: %x", sum);
376
377 if(sum != mi4header.crc32)
378 return EBAD_CHKSUM;
379
380 if( (mi4header.plaintext + MI4_HEADER_SIZE) != mi4header.mi4size)
Barry Wardell3de41f52007-03-20 20:45:25 +0000381 {
382 /* Load encrypted firmware */
383 int key_index = tea_find_key(&mi4header, fd);
Barry Wardell3de41f52007-03-20 20:45:25 +0000384
385 if (key_index < 0)
386 return EINVALID_FORMAT;
387
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000388 /* Plaintext part is already loaded */
Barry Wardell3de41f52007-03-20 20:45:25 +0000389 buf += mi4header.plaintext;
390
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000391 /* Decrypt in-place */
392 tea_decrypt_buf(buf, buf,
393 mi4header.mi4size-(mi4header.plaintext+MI4_HEADER_SIZE),
394 tea_keytable[key_index].key);
395
Barry Wardell3de41f52007-03-20 20:45:25 +0000396 printf("%s key used", tea_keytable[key_index].name);
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000397
398 /* Check decryption was successfull */
Barry Wardell7cd559d2007-03-20 22:18:35 +0000399 if(le2int(&buf[mi4header.length-mi4header.plaintext-4]) != 0xaa55aa55)
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000400 {
Barry Wardell3de41f52007-03-20 20:45:25 +0000401 return EREAD_IMAGE_FAILED;
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000402 }
Barry Wardell3de41f52007-03-20 20:45:25 +0000403 }
404
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000405 return EOK;
406}
407
Barry Wardella91a35b2007-03-16 14:36:14 +0000408#ifdef SANSA_E200
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000409/* Load mi4 firmware from a hidden disk partition */
Jonathan Gordona76947f2007-03-22 12:45:19 +0000410int load_mi4_part(unsigned char* buf, struct partinfo* pinfo,
411 unsigned int buffer_size, bool disable_rebuild)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000412{
413 struct mi4header_t mi4header;
414 struct ppmi_header_t ppmi_header;
415 unsigned long sum;
416
417 /* Read header to find out how long the mi4 file is. */
Barry Wardelle293bbb2007-03-17 19:07:20 +0000418 ata_read_sectors(pinfo->start + PPMI_SECTOR_OFFSET,
419 PPMI_SECTORS, &ppmi_header);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000420
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;
424
425 printf("BL mi4 size: %x", ppmi_header.length);
426
427 /* Read mi4 header of the OF */
Barry Wardelle293bbb2007-03-17 19:07:20 +0000428 ata_read_sectors(pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS
429 + (ppmi_header.length/512), MI4_HEADER_SECTORS, &mi4header);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000430
431 /* We don't support encrypted mi4 files yet */
Barry Wardellbada0b72007-03-20 12:35:45 +0000432 if( (mi4header.plaintext) != (mi4header.mi4size-MI4_HEADER_SIZE))
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000433 return EINVALID_FORMAT;
434
435 /* MI4 file size */
Barry Wardellbada0b72007-03-20 12:35:45 +0000436 printf("OF mi4 size: %x", mi4header.mi4size);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000437
Barry Wardellbada0b72007-03-20 12:35:45 +0000438 if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000439 return EFILE_TOO_BIG;
440
441 /* CRC32 */
442 printf("CRC32: %x", mi4header.crc32);
443
444 /* Rockbox model id */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000445 printf("Model id: %.4s", mi4header.model);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000446
447 /* Read binary type (RBOS, RBBL) */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000448 printf("Binary type: %.4s", mi4header.type);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000449
450 /* Load firmware */
Barry Wardelle293bbb2007-03-17 19:07:20 +0000451 ata_read_sectors(pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS
452 + (ppmi_header.length/512) + MI4_HEADER_SECTORS,
Barry Wardellbada0b72007-03-20 12:35:45 +0000453 (mi4header.mi4size-MI4_HEADER_SIZE)/512, buf);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000454
455 /* Check CRC32 to see if we have a valid file */
Barry Wardelle293bbb2007-03-17 19:07:20 +0000456 sum = chksum_crc32 (buf,mi4header.mi4size-MI4_HEADER_SIZE);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000457
458 printf("Calculated CRC32: %x", sum);
459
460 if(sum != mi4header.crc32)
461 return EBAD_CHKSUM;
462
Jonathan Gordona76947f2007-03-22 12:45:19 +0000463 if (disable_rebuild)
464 {
465 char block[512];
466 int sector = 0, offset = 0;
467
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;
475 offset = 0xe1;
476 }
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;
481 offset = 0x2;
482 }
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +0000483 else
484 return EOK;
Jonathan Gordona76947f2007-03-22 12:45:19 +0000485 ata_read_sectors(sector, 1, block);
486 block[offset] = 0;
487 ata_write_sectors(sector, 1, block);
488 }
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000489 return EOK;
490}
Barry Wardella91a35b2007-03-16 14:36:14 +0000491#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000492
Barry Wardell1920df32006-08-28 08:11:32 +0000493void* main(void)
494{
495 char buf[256];
496 int i;
Barry Wardell23709982007-03-12 22:12:20 +0000497 int btn;
Barry Wardell1920df32006-08-28 08:11:32 +0000498 int rc;
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000499 int num_partitions;
Barry Wardell1920df32006-08-28 08:11:32 +0000500 unsigned short* identify_info;
501 struct partinfo* pinfo;
Jonathan Gordona76947f2007-03-22 12:45:19 +0000502#ifdef SANSA_E200
503 int usb_retry = 0;
504 bool usb = false;
505#endif
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000506
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000507 chksum_crc32gentab ();
508
Barry Wardell1920df32006-08-28 08:11:32 +0000509 system_init();
510 kernel_init();
511 lcd_init();
512 font_init();
Barry Wardell2f16d4f2006-12-19 11:33:53 +0000513 button_init();
Barry Wardell1920df32006-08-28 08:11:32 +0000514
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000515 lcd_set_foreground(LCD_WHITE);
516 lcd_set_background(LCD_BLACK);
517 lcd_clear_display();
518
Barry Wardell23709982007-03-12 22:12:20 +0000519 btn = button_read_device();
Jonathan Gordona76947f2007-03-22 12:45:19 +0000520#ifdef SANSA_E200
521 usb_init();
522 while (usb_retry < 5 && !usb)
523 {
524 usb_retry++;
525 sleep(HZ/4);
526 usb = usb_detect();
527 }
528 if (usb)
529 btn |= BOOTLOADER_BOOT_OF;
530#endif
Barry Wardell0c1a3042007-03-20 10:36:26 +0000531 /* Enable bootloader messages if any button is pressed */
532 if (btn)
533 verbose = true;
Barry Wardell23709982007-03-12 22:12:20 +0000534
Barry Wardell1920df32006-08-28 08:11:32 +0000535 lcd_setfont(FONT_SYSFIXED);
536
Barry Wardellf4709d02007-01-17 12:20:38 +0000537 printf("Rockbox boot loader");
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000538 printf("Version: %s", version);
Barry Wardellf4709d02007-01-17 12:20:38 +0000539 printf(MODEL_NAME);
Barry Wardell1920df32006-08-28 08:11:32 +0000540
541 i=ata_init();
542 if (i==0) {
Barry Wardell84b509d2007-01-28 18:42:11 +0000543 identify_info=ata_get_identify();
544 /* Show model */
545 for (i=0; i < 20; i++) {
546 ((unsigned short*)buf)[i]=htobe16(identify_info[i+27]);
547 }
548 buf[40]=0;
549 for (i=39; i && buf[i]==' '; i--) {
550 buf[i]=0;
551 }
552 printf(buf);
Barry Wardell1920df32006-08-28 08:11:32 +0000553 } else {
Barry Wardell23709982007-03-12 22:12:20 +0000554 error(EATA, i);
Barry Wardell1920df32006-08-28 08:11:32 +0000555 }
556
557 disk_init();
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000558 num_partitions = disk_mount_all();
559 if (num_partitions<=0)
Barry Wardell1920df32006-08-28 08:11:32 +0000560 {
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000561 error(EDISK,num_partitions);
Barry Wardell1920df32006-08-28 08:11:32 +0000562 }
563
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000564 /* Just list the first 2 partitions since we don't have any devices yet
565 that have more than that */
Barry Wardell7cd559d2007-03-20 22:18:35 +0000566 for(i=0; i<NUM_PARTITIONS; i++)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000567 {
568 pinfo = disk_partinfo(i);
569 printf("Partition %d: 0x%02x %ld MB",
570 i, pinfo->type, pinfo->size / 2048);
571 }
Barry Wardell1920df32006-08-28 08:11:32 +0000572
Barry Wardella42070d2007-03-15 22:32:58 +0000573 if(btn & BOOTLOADER_BOOT_OF)
Barry Wardell1920df32006-08-28 08:11:32 +0000574 {
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000575 /* 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.
Barry Wardell84b509d2007-01-28 18:42:11 +0000581 */
Barry Wardellf4709d02007-01-17 12:20:38 +0000582 printf("Loading original firmware...");
Barry Wardella91a35b2007-03-16 14:36:14 +0000583
584#ifdef SANSA_E200
585 /* First try a (hidden) firmware partition */
586 printf("Trying firmware partition");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000587 pinfo = disk_partinfo(1);
Barry Wardellb8a5adf2007-03-16 14:41:55 +0000588 if(pinfo->type == PARTITION_TYPE_OS2_HIDDEN_C_DRIVE)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000589 {
Jonathan Gordona76947f2007-03-22 12:45:19 +0000590 rc = load_mi4_part(loadbuffer, pinfo, MAX_LOADSIZE, usb);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000591 if (rc < EOK) {
592 printf("Can't load from partition");
593 printf(strerror(rc));
594 } else {
595 return (void*)loadbuffer;
596 }
597 } else {
598 printf("No hidden partition found.");
599 }
Barry Wardella91a35b2007-03-16 14:36:14 +0000600#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000601
602 printf("Trying /System/OF.mi4");
603 rc=load_mi4(loadbuffer, "/System/OF.mi4", MAX_LOADSIZE);
604 if (rc < EOK) {
605 printf("Can't load /System/OF.mi4");
606 printf(strerror(rc));
607 } else {
608 return (void*)loadbuffer;
609 }
610
611 printf("Trying /System/OF.bin");
Barry Wardell84b509d2007-01-28 18:42:11 +0000612 rc=load_raw_firmware(loadbuffer, "/System/OF.bin", MAX_LOADSIZE);
613 if (rc < EOK) {
Barry Wardell23709982007-03-12 22:12:20 +0000614 printf("Can't load /System/OF.bin");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000615 printf(strerror(rc));
616 } else {
617 return (void*)loadbuffer;
Barry Wardell84b509d2007-01-28 18:42:11 +0000618 }
Barry Wardell0c1a3042007-03-20 10:36:26 +0000619
Barry Wardell3de41f52007-03-20 20:45:25 +0000620 error(0, 0);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000621
Barry Wardell1920df32006-08-28 08:11:32 +0000622 } else {
Jonathan Gordon875c7252007-05-17 11:35:57 +0000623#if 0 /* e200: enable to be able to dump the hidden partition */
624 if(btn & BUTTON_UP)
625 {
626 int fd;
627 pinfo = disk_partinfo(1);
628 fd = open("/part.bin", O_CREAT|O_RDWR);
629 char sector[512];
630 for(i=0; i<40960; i++){
631 printf("dumping sector %d", i);
632 lcd_update();
633 ata_read_sectors(pinfo->start + i,1 , sector);
634 write(fd,sector,512);
635 }
636 close(fd);
637 }
638#endif
Barry Wardellf4709d02007-01-17 12:20:38 +0000639 printf("Loading Rockbox...");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000640 rc=load_mi4(loadbuffer, BOOTFILE, MAX_LOADSIZE);
Barry Wardell84b509d2007-01-28 18:42:11 +0000641 if (rc < EOK) {
Barry Wardell84b509d2007-01-28 18:42:11 +0000642 printf("Can't load %s:", BOOTFILE);
Barry Wardelle293bbb2007-03-17 19:07:20 +0000643 printf(strerror(rc));
644
645 /* Try loading rockbox from old rockbox.e200/rockbox.h10 format */
646 rc=load_firmware(loadbuffer, OLD_BOOTFILE, MAX_LOADSIZE);
647 if (rc < EOK) {
648 printf("Can't load %s:", OLD_BOOTFILE);
Barry Wardell0c1a3042007-03-20 10:36:26 +0000649 error(EBOOTFILE, rc);
Barry Wardelle293bbb2007-03-17 19:07:20 +0000650 }
Barry Wardell84b509d2007-01-28 18:42:11 +0000651 }
Barry Wardell1920df32006-08-28 08:11:32 +0000652 }
Hristo Kovachev12041362006-08-11 09:51:04 +0000653
Barry Wardell84b509d2007-01-28 18:42:11 +0000654 return (void*)loadbuffer;
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000655}
656
Jonathan Gordona76947f2007-03-22 12:45:19 +0000657#ifndef SANSA_E200
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000658/* These functions are present in the firmware library, but we reimplement
659 them here because the originals do a lot more than we want */
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000660void usb_acknowledge(void)
661{
662}
663
664void usb_wait_for_disconnect(void)
665{
666}
Jonathan Gordona76947f2007-03-22 12:45:19 +0000667#endif
668