blob: 8b851394ac74a669db907c2470e132f2e088c667 [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 Wardell54c73a22007-06-04 13:48:21 +000034#include "crc32-mi4.h"
Barry Wardell14ed3ca2007-03-16 14:28:00 +000035#include <string.h>
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000036#ifdef SANSA_E200
37#include "usb.h"
38#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +000039
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000040
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 */
54unsigned char *loadbuffer = (unsigned char *)DRAM_START;
55
56/* Bootloader version */
57char version[] = APPSVERSION;
58
Barry Wardell3de41f52007-03-20 20:45:25 +000059/* Locations and sizes in hidden partition on Sansa */
Barry Wardell7cd559d2007-03-20 22:18:35 +000060#ifdef SANSA_E200
Barry Wardell3de41f52007-03-20 20:45:25 +000061#define PPMI_SECTOR_OFFSET 1024
62#define PPMI_SECTORS 1
63#define MI4_HEADER_SECTORS 1
Barry Wardell7cd559d2007-03-20 22:18:35 +000064#define NUM_PARTITIONS 2
65
66#else
Barry Wardell7cd559d2007-03-20 22:18:35 +000067#define NUM_PARTITIONS 1
68
69#endif
Barry Wardell3de41f52007-03-20 20:45:25 +000070
Barry Wardell7e03b0a2007-03-20 22:56:51 +000071#define MI4_HEADER_SIZE 0x200
72
Barry Wardell3de41f52007-03-20 20:45:25 +000073/* mi4 header structure */
74struct 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 */
89struct ppmi_header_t {
90 unsigned char magic[4];
91 uint32_t length;
92 uint32_t pad[126];
93};
94
95inline 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
102inline 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
110struct tea_key {
111 const char * name;
112 uint32_t key[4];
113};
114
Daniel Stenberg87014942007-09-03 21:23:57 +0000115#define NUM_KEYS (sizeof(tea_keytable)/sizeof(tea_keytable[0]))
Barry Wardell3de41f52007-03-20 20:45:25 +0000116struct tea_key tea_keytable[] = {
117 { "default" , { 0x20d36cc0, 0x10e8c07d, 0xc0e7dcaa, 0x107eb080 } },
118 { "sansa", { 0xe494e96e, 0x3ee32966, 0x6f48512b, 0xa93fbb42 } },
119 { "sansa_gh", { 0xd7b10538, 0xc662945b, 0x1b3fce68, 0xf389c0e6 } },
Daniel Stenberg87014942007-09-03 21:23:57 +0000120 { "sansa_103", { 0x1d29ddc0, 0x2579c2cd, 0xce339e1a, 0x75465dfe } },
Barry Wardell3de41f52007-03-20 20:45:25 +0000121 { "rhapsody", { 0x7aa9c8dc, 0xbed0a82a, 0x16204cc7, 0x5904ef38 } },
122 { "p610", { 0x950e83dc, 0xec4907f9, 0x023734b9, 0x10cfb7c7 } },
123 { "p640", { 0x220c5f23, 0xd04df68e, 0x431b5e25, 0x4dcc1fa1 } },
124 { "virgin", { 0xe83c29a1, 0x04862973, 0xa9b3f0d4, 0x38be2a9c } },
125 { "20gc_eng", { 0x0240772c, 0x6f3329b5, 0x3ec9a6c5, 0xb0c9e493 } },
126 { "20gc_fre", { 0xbede8817, 0xb23bfe4f, 0x80aa682d, 0xd13f598c } },
127 { "elio_p722", { 0x6af3b9f8, 0x777483f5, 0xae8181cc, 0xfa6d8a84 } },
128 { "c200", { 0xbf2d06fa, 0xf0e23d59, 0x29738132, 0xe2d04ca7 } },
Daniel Stenberg87014942007-09-03 21:23:57 +0000129 { "c200_106", { 0xa913d139, 0xf842f398, 0x3e03f1a6, 0x060ee012 } },
Barry Wardell3de41f52007-03-20 20:45:25 +0000130};
131
132/*
133
134tea_decrypt() from http://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm
135
136"Following is an adaptation of the reference encryption and decryption
137routines in C, released into the public domain by David Wheeler and
138Roger Needham:"
139
140*/
141
142/* NOTE: The mi4 version of TEA uses a different initial value to sum compared
143 to the reference implementation and the main loop is 8 iterations, not
144 32.
145*/
146
147static void tea_decrypt(uint32_t* v0, uint32_t* v1, uint32_t* k) {
148 uint32_t sum=0xF1BBCDC8, i; /* set up */
149 uint32_t delta=0x9E3779B9; /* a key schedule constant */
150 uint32_t k0=k[0], k1=k[1], k2=k[2], k3=k[3]; /* cache key */
151 for(i=0; i<8; i++) { /* basic cycle start */
152 *v1 -= ((*v0<<4) + k2) ^ (*v0 + sum) ^ ((*v0>>5) + k3);
153 *v0 -= ((*v1<<4) + k0) ^ (*v1 + sum) ^ ((*v1>>5) + k1);
154 sum -= delta; /* end cycle */
155 }
156}
157
158/* mi4 files are encrypted in 64-bit blocks (two little-endian 32-bit
159 integers) and the key is incremented after each block
160 */
161
162static void tea_decrypt_buf(unsigned char* src, unsigned char* dest, size_t n, uint32_t * key)
163{
164 uint32_t v0, v1;
165 unsigned int i;
166
167 for (i = 0; i < (n / 8); i++) {
168 v0 = le2int(src);
169 v1 = le2int(src+4);
170
171 tea_decrypt(&v0, &v1, key);
172
173 int2le(v0, dest);
174 int2le(v1, dest+4);
175
176 src += 8;
177 dest += 8;
178
179 /* Now increment the key */
180 key[0]++;
181 if (key[0]==0) {
182 key[1]++;
183 if (key[1]==0) {
184 key[2]++;
185 if (key[2]==0) {
186 key[3]++;
187 }
188 }
189 }
190 }
191}
192
193static inline bool tea_test_key(unsigned char magic_enc[8], uint32_t * key, int unaligned)
194{
195 unsigned char magic_dec[8];
196 tea_decrypt_buf(magic_enc, magic_dec, 8, key);
197
198 return (le2int(&magic_dec[4*unaligned]) == 0xaa55aa55);
199}
200
201static int tea_find_key(struct mi4header_t *mi4header, int fd)
202{
Daniel Stenberg9b3be372007-09-03 21:26:39 +0000203 unsigned int i;
204 int rc;
Barry Wardell3de41f52007-03-20 20:45:25 +0000205 unsigned int j;
206 uint32_t key[4];
207 unsigned char magic_enc[8];
208 int key_found = -1;
209 unsigned int magic_location = mi4header->length-4;
210 int unaligned = 0;
211
212 if ( (magic_location % 8) != 0 )
213 {
214 unaligned = 1;
215 magic_location -= 4;
216 }
217
218 /* Load encrypted magic 0xaa55aa55 to check key */
219 lseek(fd, MI4_HEADER_SIZE + magic_location, SEEK_SET);
220 rc = read(fd, magic_enc, 8);
221 if(rc < 8 )
222 return EREAD_IMAGE_FAILED;
223
Barry Wardell7cd559d2007-03-20 22:18:35 +0000224 printf("Searching for key:");
Barry Wardell3de41f52007-03-20 20:45:25 +0000225
226 for (i=0; i < NUM_KEYS && (key_found<0) ; i++) {
227 key[0] = tea_keytable[i].key[0];
228 key[1] = tea_keytable[i].key[1];
229 key[2] = tea_keytable[i].key[2];
230 key[3] = tea_keytable[i].key[3];
231
232 /* Now increment the key */
233 for(j=0; j<((magic_location-mi4header->plaintext)/8); j++){
234 key[0]++;
235 if (key[0]==0) {
236 key[1]++;
237 if (key[1]==0) {
238 key[2]++;
239 if (key[2]==0) {
240 key[3]++;
241 }
242 }
243 }
244 }
245
246 if (tea_test_key(magic_enc,key,unaligned))
247 {
248 key_found = i;
249 printf("%s...found", tea_keytable[i].name);
250 } else {
Barry Wardell7cd559d2007-03-20 22:18:35 +0000251 /* printf("%s...failed", tea_keytable[i].name); */
Barry Wardell3de41f52007-03-20 20:45:25 +0000252 }
253 }
254
255 return key_found;
256}
Barry Wardell23709982007-03-12 22:12:20 +0000257
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000258
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000259/* Load mi4 format firmware image */
260int load_mi4(unsigned char* buf, char* firmware, unsigned int buffer_size)
261{
262 int fd;
263 struct mi4header_t mi4header;
264 int rc;
265 unsigned long sum;
266 char filename[MAX_PATH];
267
268 snprintf(filename,sizeof(filename),"/.rockbox/%s",firmware);
269 fd = open(filename, O_RDONLY);
270 if(fd < 0)
271 {
272 snprintf(filename,sizeof(filename),"/%s",firmware);
273 fd = open(filename, O_RDONLY);
274 if(fd < 0)
275 return EFILE_NOT_FOUND;
276 }
277
Barry Wardelle293bbb2007-03-17 19:07:20 +0000278 read(fd, &mi4header, MI4_HEADER_SIZE);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000279
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000280 /* MI4 file size */
Barry Wardellbada0b72007-03-20 12:35:45 +0000281 printf("mi4 size: %x", mi4header.mi4size);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000282
Barry Wardellbada0b72007-03-20 12:35:45 +0000283 if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000284 return EFILE_TOO_BIG;
285
286 /* CRC32 */
287 printf("CRC32: %x", mi4header.crc32);
288
289 /* Rockbox model id */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000290 printf("Model id: %.4s", mi4header.model);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000291
292 /* Read binary type (RBOS, RBBL) */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000293 printf("Binary type: %.4s", mi4header.type);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000294
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000295 /* Load firmware file */
296 lseek(fd, MI4_HEADER_SIZE, SEEK_SET);
297 rc = read(fd, buf, mi4header.mi4size-MI4_HEADER_SIZE);
298 if(rc < (int)mi4header.mi4size-MI4_HEADER_SIZE)
299 return EREAD_IMAGE_FAILED;
300
301 /* Check CRC32 to see if we have a valid file */
302 sum = chksum_crc32 (buf, mi4header.mi4size - MI4_HEADER_SIZE);
303
304 printf("Calculated CRC32: %x", sum);
305
306 if(sum != mi4header.crc32)
307 return EBAD_CHKSUM;
308
309 if( (mi4header.plaintext + MI4_HEADER_SIZE) != mi4header.mi4size)
Barry Wardell3de41f52007-03-20 20:45:25 +0000310 {
311 /* Load encrypted firmware */
312 int key_index = tea_find_key(&mi4header, fd);
Barry Wardell3de41f52007-03-20 20:45:25 +0000313
314 if (key_index < 0)
315 return EINVALID_FORMAT;
316
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000317 /* Plaintext part is already loaded */
Barry Wardell3de41f52007-03-20 20:45:25 +0000318 buf += mi4header.plaintext;
319
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000320 /* Decrypt in-place */
321 tea_decrypt_buf(buf, buf,
322 mi4header.mi4size-(mi4header.plaintext+MI4_HEADER_SIZE),
323 tea_keytable[key_index].key);
324
Barry Wardell3de41f52007-03-20 20:45:25 +0000325 printf("%s key used", tea_keytable[key_index].name);
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000326
327 /* Check decryption was successfull */
Barry Wardell7cd559d2007-03-20 22:18:35 +0000328 if(le2int(&buf[mi4header.length-mi4header.plaintext-4]) != 0xaa55aa55)
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000329 {
Barry Wardell3de41f52007-03-20 20:45:25 +0000330 return EREAD_IMAGE_FAILED;
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000331 }
Barry Wardell3de41f52007-03-20 20:45:25 +0000332 }
333
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000334 return EOK;
335}
336
Barry Wardella91a35b2007-03-16 14:36:14 +0000337#ifdef SANSA_E200
Jonathan Gordon1062a172007-05-20 03:08:00 +0000338struct OFDB_info {
339 char *version;
340 int version_length;
341 int sector;
342 int offset;
343} OFDatabaseOffsets[] = {
344 { "PP5022AF-05.51-S301-01.11-S301.01.11A-D", 39, 0x3c08, 0xe1 },
345 { "PP5022AF-05.51-S301-00.12-S301.00.12E-D", 39, 0x3c5c, 0x2 },
346 { "PP5022AF-05.51-S301-00.12-S301.00.12A-D", 39, 0x3c08, 0xe1 },
347};
348
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000349/* Load mi4 firmware from a hidden disk partition */
Jonathan Gordona76947f2007-03-22 12:45:19 +0000350int load_mi4_part(unsigned char* buf, struct partinfo* pinfo,
351 unsigned int buffer_size, bool disable_rebuild)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000352{
353 struct mi4header_t mi4header;
354 struct ppmi_header_t ppmi_header;
355 unsigned long sum;
356
357 /* Read header to find out how long the mi4 file is. */
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000358 ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET,
Barry Wardelle293bbb2007-03-17 19:07:20 +0000359 PPMI_SECTORS, &ppmi_header);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000360
361 /* The first four characters at 0x80000 (sector 1024) should be PPMI*/
362 if( memcmp(ppmi_header.magic, "PPMI", 4) )
363 return EFILE_NOT_FOUND;
364
365 printf("BL mi4 size: %x", ppmi_header.length);
366
367 /* Read mi4 header of the OF */
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000368 ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS
Barry Wardelle293bbb2007-03-17 19:07:20 +0000369 + (ppmi_header.length/512), MI4_HEADER_SECTORS, &mi4header);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000370
371 /* We don't support encrypted mi4 files yet */
Barry Wardellbada0b72007-03-20 12:35:45 +0000372 if( (mi4header.plaintext) != (mi4header.mi4size-MI4_HEADER_SIZE))
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000373 return EINVALID_FORMAT;
374
375 /* MI4 file size */
Barry Wardellbada0b72007-03-20 12:35:45 +0000376 printf("OF mi4 size: %x", mi4header.mi4size);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000377
Barry Wardellbada0b72007-03-20 12:35:45 +0000378 if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000379 return EFILE_TOO_BIG;
380
381 /* CRC32 */
382 printf("CRC32: %x", mi4header.crc32);
383
384 /* Rockbox model id */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000385 printf("Model id: %.4s", mi4header.model);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000386
387 /* Read binary type (RBOS, RBBL) */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000388 printf("Binary type: %.4s", mi4header.type);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000389
390 /* Load firmware */
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000391 ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS
Barry Wardelle293bbb2007-03-17 19:07:20 +0000392 + (ppmi_header.length/512) + MI4_HEADER_SECTORS,
Barry Wardellbada0b72007-03-20 12:35:45 +0000393 (mi4header.mi4size-MI4_HEADER_SIZE)/512, buf);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000394
395 /* Check CRC32 to see if we have a valid file */
Barry Wardelle293bbb2007-03-17 19:07:20 +0000396 sum = chksum_crc32 (buf,mi4header.mi4size-MI4_HEADER_SIZE);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000397
398 printf("Calculated CRC32: %x", sum);
399
400 if(sum != mi4header.crc32)
401 return EBAD_CHKSUM;
402
Jonathan Gordona76947f2007-03-22 12:45:19 +0000403 if (disable_rebuild)
404 {
405 char block[512];
406 int sector = 0, offset = 0;
Jonathan Gordon1062a172007-05-20 03:08:00 +0000407 unsigned int i;
Jonathan Gordona76947f2007-03-22 12:45:19 +0000408 /* check which known version we have */
409 /* These are taken from the PPPS section, 0x00780240 */
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000410 ata_read_sectors(IF_MV2(0,) pinfo->start + 0x3C01, 1, block);
Jonathan Gordon1062a172007-05-20 03:08:00 +0000411 for (i=0; i<sizeof(OFDatabaseOffsets)/sizeof(*OFDatabaseOffsets); i++)
412 {
413 if (!memcmp(&block[0x40], OFDatabaseOffsets[i].version,
414 OFDatabaseOffsets[i].version_length))
415 {
416 sector = pinfo->start + OFDatabaseOffsets[i].sector;
417 offset = OFDatabaseOffsets[i].offset;
418 break;
419 }
Jonathan Gordona76947f2007-03-22 12:45:19 +0000420 }
Jonathan Gordon1062a172007-05-20 03:08:00 +0000421 if (sector && offset)
422 {
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000423 ata_read_sectors(IF_MV2(0,) sector, 1, block);
Jonathan Gordon1062a172007-05-20 03:08:00 +0000424 block[offset] = 0;
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000425 ata_write_sectors(IF_MV2(0,) sector, 1, block);
Jonathan Gordona76947f2007-03-22 12:45:19 +0000426 }
Jonathan Gordona76947f2007-03-22 12:45:19 +0000427 }
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000428 return EOK;
429}
Barry Wardella91a35b2007-03-16 14:36:14 +0000430#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000431
Barry Wardell1920df32006-08-28 08:11:32 +0000432void* main(void)
433{
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000434#ifndef SANSA_E200
Barry Wardell1920df32006-08-28 08:11:32 +0000435 char buf[256];
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000436 unsigned short* identify_info;
437#endif
Barry Wardell1920df32006-08-28 08:11:32 +0000438 int i;
Barry Wardell23709982007-03-12 22:12:20 +0000439 int btn;
Barry Wardell1920df32006-08-28 08:11:32 +0000440 int rc;
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000441 int num_partitions;
Barry Wardell1920df32006-08-28 08:11:32 +0000442 struct partinfo* pinfo;
Jonathan Gordona76947f2007-03-22 12:45:19 +0000443#ifdef SANSA_E200
444 int usb_retry = 0;
445 bool usb = false;
446#endif
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000447
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000448 chksum_crc32gentab ();
449
Barry Wardell1920df32006-08-28 08:11:32 +0000450 system_init();
451 kernel_init();
452 lcd_init();
453 font_init();
Barry Wardell2f16d4f2006-12-19 11:33:53 +0000454 button_init();
Barry Wardell1920df32006-08-28 08:11:32 +0000455
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000456 lcd_set_foreground(LCD_WHITE);
457 lcd_set_background(LCD_BLACK);
458 lcd_clear_display();
459
Barry Wardell23709982007-03-12 22:12:20 +0000460 btn = button_read_device();
Jonathan Gordona76947f2007-03-22 12:45:19 +0000461#ifdef SANSA_E200
462 usb_init();
463 while (usb_retry < 5 && !usb)
464 {
465 usb_retry++;
466 sleep(HZ/4);
Dave Chapman16723502007-09-04 08:03:07 +0000467 usb = (usb_detect() == USB_INSERTED);
Jonathan Gordona76947f2007-03-22 12:45:19 +0000468 }
469 if (usb)
470 btn |= BOOTLOADER_BOOT_OF;
471#endif
Barry Wardell0c1a3042007-03-20 10:36:26 +0000472 /* Enable bootloader messages if any button is pressed */
473 if (btn)
474 verbose = true;
Barry Wardell23709982007-03-12 22:12:20 +0000475
Barry Wardell1920df32006-08-28 08:11:32 +0000476 lcd_setfont(FONT_SYSFIXED);
477
Barry Wardellf4709d02007-01-17 12:20:38 +0000478 printf("Rockbox boot loader");
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000479 printf("Version: %s", version);
Barry Wardellf4709d02007-01-17 12:20:38 +0000480 printf(MODEL_NAME);
Barry Wardell1920df32006-08-28 08:11:32 +0000481
482 i=ata_init();
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000483#ifndef SANSA_E200
Barry Wardell1920df32006-08-28 08:11:32 +0000484 if (i==0) {
Barry Wardell84b509d2007-01-28 18:42:11 +0000485 identify_info=ata_get_identify();
486 /* Show model */
487 for (i=0; i < 20; i++) {
488 ((unsigned short*)buf)[i]=htobe16(identify_info[i+27]);
489 }
490 buf[40]=0;
491 for (i=39; i && buf[i]==' '; i--) {
492 buf[i]=0;
493 }
494 printf(buf);
Barry Wardell1920df32006-08-28 08:11:32 +0000495 } else {
Barry Wardell23709982007-03-12 22:12:20 +0000496 error(EATA, i);
Barry Wardell1920df32006-08-28 08:11:32 +0000497 }
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000498#endif
Barry Wardell1920df32006-08-28 08:11:32 +0000499
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000500 disk_init(IF_MV(0));
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000501 num_partitions = disk_mount_all();
502 if (num_partitions<=0)
Barry Wardell1920df32006-08-28 08:11:32 +0000503 {
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000504 error(EDISK,num_partitions);
Barry Wardell1920df32006-08-28 08:11:32 +0000505 }
506
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000507 /* Just list the first 2 partitions since we don't have any devices yet
508 that have more than that */
Barry Wardell7cd559d2007-03-20 22:18:35 +0000509 for(i=0; i<NUM_PARTITIONS; i++)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000510 {
511 pinfo = disk_partinfo(i);
512 printf("Partition %d: 0x%02x %ld MB",
513 i, pinfo->type, pinfo->size / 2048);
514 }
Barry Wardell1920df32006-08-28 08:11:32 +0000515
Barry Wardella42070d2007-03-15 22:32:58 +0000516 if(btn & BOOTLOADER_BOOT_OF)
Barry Wardell1920df32006-08-28 08:11:32 +0000517 {
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000518 /* Load original mi4 firmware in to a memory buffer called loadbuffer.
519 The rest of the loading is done in crt0.S.
520 1) First try reading from the hidden partition (on Sansa only).
521 2) Next try a decrypted mi4 file in /System/OF.mi4
522 3) Finally, try a raw firmware binary in /System/OF.mi4. It should be
523 a mi4 firmware decrypted and header stripped using mi4code.
Barry Wardell84b509d2007-01-28 18:42:11 +0000524 */
Barry Wardellf4709d02007-01-17 12:20:38 +0000525 printf("Loading original firmware...");
Barry Wardella91a35b2007-03-16 14:36:14 +0000526
527#ifdef SANSA_E200
528 /* First try a (hidden) firmware partition */
529 printf("Trying firmware partition");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000530 pinfo = disk_partinfo(1);
Barry Wardellb8a5adf2007-03-16 14:41:55 +0000531 if(pinfo->type == PARTITION_TYPE_OS2_HIDDEN_C_DRIVE)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000532 {
Jonathan Gordona76947f2007-03-22 12:45:19 +0000533 rc = load_mi4_part(loadbuffer, pinfo, MAX_LOADSIZE, usb);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000534 if (rc < EOK) {
535 printf("Can't load from partition");
536 printf(strerror(rc));
537 } else {
538 return (void*)loadbuffer;
539 }
540 } else {
541 printf("No hidden partition found.");
542 }
Barry Wardella91a35b2007-03-16 14:36:14 +0000543#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000544
545 printf("Trying /System/OF.mi4");
546 rc=load_mi4(loadbuffer, "/System/OF.mi4", MAX_LOADSIZE);
547 if (rc < EOK) {
548 printf("Can't load /System/OF.mi4");
549 printf(strerror(rc));
550 } else {
551 return (void*)loadbuffer;
552 }
553
554 printf("Trying /System/OF.bin");
Barry Wardell84b509d2007-01-28 18:42:11 +0000555 rc=load_raw_firmware(loadbuffer, "/System/OF.bin", MAX_LOADSIZE);
556 if (rc < EOK) {
Barry Wardell23709982007-03-12 22:12:20 +0000557 printf("Can't load /System/OF.bin");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000558 printf(strerror(rc));
559 } else {
560 return (void*)loadbuffer;
Barry Wardell84b509d2007-01-28 18:42:11 +0000561 }
Barry Wardell0c1a3042007-03-20 10:36:26 +0000562
Barry Wardell3de41f52007-03-20 20:45:25 +0000563 error(0, 0);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000564
Barry Wardell1920df32006-08-28 08:11:32 +0000565 } else {
Jonathan Gordon875c7252007-05-17 11:35:57 +0000566#if 0 /* e200: enable to be able to dump the hidden partition */
567 if(btn & BUTTON_UP)
568 {
569 int fd;
570 pinfo = disk_partinfo(1);
571 fd = open("/part.bin", O_CREAT|O_RDWR);
572 char sector[512];
573 for(i=0; i<40960; i++){
Jonathan Gordon1062a172007-05-20 03:08:00 +0000574 if (!(i%100))
575 {
576 printf("dumping sector %d", i);
577 }
Jonathan Gordon875c7252007-05-17 11:35:57 +0000578 ata_read_sectors(pinfo->start + i,1 , sector);
579 write(fd,sector,512);
580 }
581 close(fd);
582 }
583#endif
Barry Wardellf4709d02007-01-17 12:20:38 +0000584 printf("Loading Rockbox...");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000585 rc=load_mi4(loadbuffer, BOOTFILE, MAX_LOADSIZE);
Barry Wardell84b509d2007-01-28 18:42:11 +0000586 if (rc < EOK) {
Barry Wardell84b509d2007-01-28 18:42:11 +0000587 printf("Can't load %s:", BOOTFILE);
Barry Wardelle293bbb2007-03-17 19:07:20 +0000588 printf(strerror(rc));
589
590 /* Try loading rockbox from old rockbox.e200/rockbox.h10 format */
591 rc=load_firmware(loadbuffer, OLD_BOOTFILE, MAX_LOADSIZE);
592 if (rc < EOK) {
593 printf("Can't load %s:", OLD_BOOTFILE);
Barry Wardell0c1a3042007-03-20 10:36:26 +0000594 error(EBOOTFILE, rc);
Barry Wardelle293bbb2007-03-17 19:07:20 +0000595 }
Barry Wardell84b509d2007-01-28 18:42:11 +0000596 }
Barry Wardell1920df32006-08-28 08:11:32 +0000597 }
Hristo Kovachev12041362006-08-11 09:51:04 +0000598
Barry Wardell84b509d2007-01-28 18:42:11 +0000599 return (void*)loadbuffer;
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000600}
601
Jonathan Gordona76947f2007-03-22 12:45:19 +0000602#ifndef SANSA_E200
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000603/* These functions are present in the firmware library, but we reimplement
604 them here because the originals do a lot more than we want */
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000605void usb_acknowledge(void)
606{
607}
608
609void usb_wait_for_disconnect(void)
610{
611}
Jonathan Gordona76947f2007-03-22 12:45:19 +0000612#endif
613