blob: 75b5309446c312bfc3f93b861eca2d36babe2fcc [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 Gordonfc8e09d2007-11-19 02:07:40 +000036#include "power.h"
Barry Wardellf1fead02007-10-14 18:20:23 +000037#if defined(SANSA_E200)
38#include "i2c.h"
39#include "backlight-target.h"
40#endif
Mark Arigodbc6b4e2007-09-06 03:28:58 +000041#if defined(SANSA_E200) || defined(SANSA_C200)
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000042#include "usb.h"
Björn Stenberg7af22e12007-11-22 22:17:45 +000043#include "usb_drv.h"
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000044#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +000045
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000046
47/* Button definitions */
48#if CONFIG_KEYPAD == IRIVER_H10_PAD
49#define BOOTLOADER_BOOT_OF BUTTON_LEFT
50
51#elif CONFIG_KEYPAD == SANSA_E200_PAD
52#define BOOTLOADER_BOOT_OF BUTTON_LEFT
53
Mark Arigodbc6b4e2007-09-06 03:28:58 +000054#elif CONFIG_KEYPAD == SANSA_C200_PAD
55#define BOOTLOADER_BOOT_OF BUTTON_LEFT
56
Mark Arigoe66ddd72008-01-09 07:24:43 +000057#elif CONFIG_KEYPAD == MROBE100_PAD
Robert Kukla6ef63a52008-03-05 00:17:21 +000058#define BOOTLOADER_BOOT_OF BUTTON_POWER
Mark Arigoe66ddd72008-01-09 07:24:43 +000059
Jonathan Gordonceb1e7a2007-03-22 12:55:51 +000060#endif
61
62/* Maximum allowed firmware image size. 10MB is more than enough */
63#define MAX_LOADSIZE (10*1024*1024)
64
65/* A buffer to load the original firmware or Rockbox into */
66unsigned char *loadbuffer = (unsigned char *)DRAM_START;
67
68/* Bootloader version */
69char version[] = APPSVERSION;
70
Barry Wardell3de41f52007-03-20 20:45:25 +000071/* Locations and sizes in hidden partition on Sansa */
Mark Arigodbc6b4e2007-09-06 03:28:58 +000072#if defined(SANSA_E200) || defined(SANSA_C200)
Barry Wardell3de41f52007-03-20 20:45:25 +000073#define PPMI_SECTOR_OFFSET 1024
74#define PPMI_SECTORS 1
75#define MI4_HEADER_SECTORS 1
Barry Wardell7cd559d2007-03-20 22:18:35 +000076#define NUM_PARTITIONS 2
77
78#else
Barry Wardell7cd559d2007-03-20 22:18:35 +000079#define NUM_PARTITIONS 1
80
81#endif
Barry Wardell3de41f52007-03-20 20:45:25 +000082
Barry Wardell7e03b0a2007-03-20 22:56:51 +000083#define MI4_HEADER_SIZE 0x200
84
Barry Wardell3de41f52007-03-20 20:45:25 +000085/* mi4 header structure */
86struct mi4header_t {
87 unsigned char magic[4];
88 uint32_t version;
89 uint32_t length;
90 uint32_t crc32;
91 uint32_t enctype;
92 uint32_t mi4size;
93 uint32_t plaintext;
94 uint32_t dsa_key[10];
95 uint32_t pad[109];
96 unsigned char type[4];
97 unsigned char model[4];
98};
99
100/* PPMI header structure */
101struct ppmi_header_t {
102 unsigned char magic[4];
103 uint32_t length;
104 uint32_t pad[126];
105};
106
107inline unsigned int le2int(unsigned char* buf)
108{
109 int32_t res = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
110
111 return res;
112}
113
114inline void int2le(unsigned int val, unsigned char* addr)
115{
116 addr[0] = val & 0xFF;
117 addr[1] = (val >> 8) & 0xff;
118 addr[2] = (val >> 16) & 0xff;
119 addr[3] = (val >> 24) & 0xff;
120}
121
122struct tea_key {
123 const char * name;
124 uint32_t key[4];
125};
126
Daniel Stenberg87014942007-09-03 21:23:57 +0000127#define NUM_KEYS (sizeof(tea_keytable)/sizeof(tea_keytable[0]))
Barry Wardell3de41f52007-03-20 20:45:25 +0000128struct tea_key tea_keytable[] = {
129 { "default" , { 0x20d36cc0, 0x10e8c07d, 0xc0e7dcaa, 0x107eb080 } },
130 { "sansa", { 0xe494e96e, 0x3ee32966, 0x6f48512b, 0xa93fbb42 } },
131 { "sansa_gh", { 0xd7b10538, 0xc662945b, 0x1b3fce68, 0xf389c0e6 } },
Daniel Stenberg87014942007-09-03 21:23:57 +0000132 { "sansa_103", { 0x1d29ddc0, 0x2579c2cd, 0xce339e1a, 0x75465dfe } },
Barry Wardell3de41f52007-03-20 20:45:25 +0000133 { "rhapsody", { 0x7aa9c8dc, 0xbed0a82a, 0x16204cc7, 0x5904ef38 } },
134 { "p610", { 0x950e83dc, 0xec4907f9, 0x023734b9, 0x10cfb7c7 } },
135 { "p640", { 0x220c5f23, 0xd04df68e, 0x431b5e25, 0x4dcc1fa1 } },
136 { "virgin", { 0xe83c29a1, 0x04862973, 0xa9b3f0d4, 0x38be2a9c } },
137 { "20gc_eng", { 0x0240772c, 0x6f3329b5, 0x3ec9a6c5, 0xb0c9e493 } },
138 { "20gc_fre", { 0xbede8817, 0xb23bfe4f, 0x80aa682d, 0xd13f598c } },
139 { "elio_p722", { 0x6af3b9f8, 0x777483f5, 0xae8181cc, 0xfa6d8a84 } },
140 { "c200", { 0xbf2d06fa, 0xf0e23d59, 0x29738132, 0xe2d04ca7 } },
Daniel Stenberg98a39fb2007-09-18 13:58:12 +0000141 { "c200_103", { 0x2a7968de, 0x15127979, 0x142e60a7, 0xe49c1893 } },
Daniel Stenberg87014942007-09-03 21:23:57 +0000142 { "c200_106", { 0xa913d139, 0xf842f398, 0x3e03f1a6, 0x060ee012 } },
Mark Arigof46a7532008-04-11 03:57:16 +0000143 { "sa9200", { 0x33ea0236, 0x9247bdc5, 0xdfaedf9f, 0xd67c9d30 } },
Barry Wardell3de41f52007-03-20 20:45:25 +0000144};
145
146/*
147
148tea_decrypt() from http://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm
149
150"Following is an adaptation of the reference encryption and decryption
151routines in C, released into the public domain by David Wheeler and
152Roger Needham:"
153
154*/
155
156/* NOTE: The mi4 version of TEA uses a different initial value to sum compared
157 to the reference implementation and the main loop is 8 iterations, not
158 32.
159*/
160
161static void tea_decrypt(uint32_t* v0, uint32_t* v1, uint32_t* k) {
162 uint32_t sum=0xF1BBCDC8, i; /* set up */
163 uint32_t delta=0x9E3779B9; /* a key schedule constant */
164 uint32_t k0=k[0], k1=k[1], k2=k[2], k3=k[3]; /* cache key */
165 for(i=0; i<8; i++) { /* basic cycle start */
166 *v1 -= ((*v0<<4) + k2) ^ (*v0 + sum) ^ ((*v0>>5) + k3);
167 *v0 -= ((*v1<<4) + k0) ^ (*v1 + sum) ^ ((*v1>>5) + k1);
168 sum -= delta; /* end cycle */
169 }
170}
171
172/* mi4 files are encrypted in 64-bit blocks (two little-endian 32-bit
173 integers) and the key is incremented after each block
174 */
175
176static void tea_decrypt_buf(unsigned char* src, unsigned char* dest, size_t n, uint32_t * key)
177{
178 uint32_t v0, v1;
179 unsigned int i;
180
181 for (i = 0; i < (n / 8); i++) {
182 v0 = le2int(src);
183 v1 = le2int(src+4);
184
185 tea_decrypt(&v0, &v1, key);
186
187 int2le(v0, dest);
188 int2le(v1, dest+4);
189
190 src += 8;
191 dest += 8;
192
193 /* Now increment the key */
194 key[0]++;
195 if (key[0]==0) {
196 key[1]++;
197 if (key[1]==0) {
198 key[2]++;
199 if (key[2]==0) {
200 key[3]++;
201 }
202 }
203 }
204 }
205}
206
207static inline bool tea_test_key(unsigned char magic_enc[8], uint32_t * key, int unaligned)
208{
209 unsigned char magic_dec[8];
210 tea_decrypt_buf(magic_enc, magic_dec, 8, key);
211
212 return (le2int(&magic_dec[4*unaligned]) == 0xaa55aa55);
213}
214
215static int tea_find_key(struct mi4header_t *mi4header, int fd)
216{
Daniel Stenberg9b3be372007-09-03 21:26:39 +0000217 unsigned int i;
218 int rc;
Barry Wardell3de41f52007-03-20 20:45:25 +0000219 unsigned int j;
220 uint32_t key[4];
221 unsigned char magic_enc[8];
222 int key_found = -1;
223 unsigned int magic_location = mi4header->length-4;
224 int unaligned = 0;
225
226 if ( (magic_location % 8) != 0 )
227 {
228 unaligned = 1;
229 magic_location -= 4;
230 }
231
232 /* Load encrypted magic 0xaa55aa55 to check key */
233 lseek(fd, MI4_HEADER_SIZE + magic_location, SEEK_SET);
234 rc = read(fd, magic_enc, 8);
235 if(rc < 8 )
236 return EREAD_IMAGE_FAILED;
237
Barry Wardell7cd559d2007-03-20 22:18:35 +0000238 printf("Searching for key:");
Barry Wardell3de41f52007-03-20 20:45:25 +0000239
240 for (i=0; i < NUM_KEYS && (key_found<0) ; i++) {
241 key[0] = tea_keytable[i].key[0];
242 key[1] = tea_keytable[i].key[1];
243 key[2] = tea_keytable[i].key[2];
244 key[3] = tea_keytable[i].key[3];
245
246 /* Now increment the key */
247 for(j=0; j<((magic_location-mi4header->plaintext)/8); j++){
248 key[0]++;
249 if (key[0]==0) {
250 key[1]++;
251 if (key[1]==0) {
252 key[2]++;
253 if (key[2]==0) {
254 key[3]++;
255 }
256 }
257 }
258 }
259
260 if (tea_test_key(magic_enc,key,unaligned))
261 {
262 key_found = i;
263 printf("%s...found", tea_keytable[i].name);
264 } else {
Barry Wardell7cd559d2007-03-20 22:18:35 +0000265 /* printf("%s...failed", tea_keytable[i].name); */
Barry Wardell3de41f52007-03-20 20:45:25 +0000266 }
267 }
268
269 return key_found;
270}
Barry Wardell23709982007-03-12 22:12:20 +0000271
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000272
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000273/* Load mi4 format firmware image */
274int load_mi4(unsigned char* buf, char* firmware, unsigned int buffer_size)
275{
276 int fd;
277 struct mi4header_t mi4header;
278 int rc;
279 unsigned long sum;
280 char filename[MAX_PATH];
281
282 snprintf(filename,sizeof(filename),"/.rockbox/%s",firmware);
283 fd = open(filename, O_RDONLY);
284 if(fd < 0)
285 {
286 snprintf(filename,sizeof(filename),"/%s",firmware);
287 fd = open(filename, O_RDONLY);
288 if(fd < 0)
289 return EFILE_NOT_FOUND;
290 }
291
Barry Wardelle293bbb2007-03-17 19:07:20 +0000292 read(fd, &mi4header, MI4_HEADER_SIZE);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000293
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000294 /* MI4 file size */
Barry Wardellbada0b72007-03-20 12:35:45 +0000295 printf("mi4 size: %x", mi4header.mi4size);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000296
Barry Wardellbada0b72007-03-20 12:35:45 +0000297 if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000298 return EFILE_TOO_BIG;
299
300 /* CRC32 */
301 printf("CRC32: %x", mi4header.crc32);
302
303 /* Rockbox model id */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000304 printf("Model id: %.4s", mi4header.model);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000305
306 /* Read binary type (RBOS, RBBL) */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000307 printf("Binary type: %.4s", mi4header.type);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000308
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000309 /* Load firmware file */
310 lseek(fd, MI4_HEADER_SIZE, SEEK_SET);
311 rc = read(fd, buf, mi4header.mi4size-MI4_HEADER_SIZE);
312 if(rc < (int)mi4header.mi4size-MI4_HEADER_SIZE)
313 return EREAD_IMAGE_FAILED;
314
315 /* Check CRC32 to see if we have a valid file */
316 sum = chksum_crc32 (buf, mi4header.mi4size - MI4_HEADER_SIZE);
317
318 printf("Calculated CRC32: %x", sum);
319
320 if(sum != mi4header.crc32)
321 return EBAD_CHKSUM;
322
323 if( (mi4header.plaintext + MI4_HEADER_SIZE) != mi4header.mi4size)
Barry Wardell3de41f52007-03-20 20:45:25 +0000324 {
325 /* Load encrypted firmware */
326 int key_index = tea_find_key(&mi4header, fd);
Barry Wardell3de41f52007-03-20 20:45:25 +0000327
328 if (key_index < 0)
329 return EINVALID_FORMAT;
330
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000331 /* Plaintext part is already loaded */
Barry Wardell3de41f52007-03-20 20:45:25 +0000332 buf += mi4header.plaintext;
333
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000334 /* Decrypt in-place */
335 tea_decrypt_buf(buf, buf,
336 mi4header.mi4size-(mi4header.plaintext+MI4_HEADER_SIZE),
337 tea_keytable[key_index].key);
338
Barry Wardell3de41f52007-03-20 20:45:25 +0000339 printf("%s key used", tea_keytable[key_index].name);
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000340
341 /* Check decryption was successfull */
Barry Wardell7cd559d2007-03-20 22:18:35 +0000342 if(le2int(&buf[mi4header.length-mi4header.plaintext-4]) != 0xaa55aa55)
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000343 {
Barry Wardell3de41f52007-03-20 20:45:25 +0000344 return EREAD_IMAGE_FAILED;
Barry Wardell9a9aebb2007-03-20 22:02:26 +0000345 }
Barry Wardell3de41f52007-03-20 20:45:25 +0000346 }
347
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000348 return EOK;
349}
350
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000351#if defined(SANSA_E200) || defined(SANSA_C200)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000352/* Load mi4 firmware from a hidden disk partition */
Jonathan Gordona76947f2007-03-22 12:45:19 +0000353int load_mi4_part(unsigned char* buf, struct partinfo* pinfo,
354 unsigned int buffer_size, bool disable_rebuild)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000355{
356 struct mi4header_t mi4header;
357 struct ppmi_header_t ppmi_header;
358 unsigned long sum;
359
360 /* Read header to find out how long the mi4 file is. */
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000361 ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET,
Barry Wardelle293bbb2007-03-17 19:07:20 +0000362 PPMI_SECTORS, &ppmi_header);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000363
364 /* The first four characters at 0x80000 (sector 1024) should be PPMI*/
365 if( memcmp(ppmi_header.magic, "PPMI", 4) )
366 return EFILE_NOT_FOUND;
367
368 printf("BL mi4 size: %x", ppmi_header.length);
369
370 /* Read mi4 header of the OF */
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000371 ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS
Barry Wardelle293bbb2007-03-17 19:07:20 +0000372 + (ppmi_header.length/512), MI4_HEADER_SECTORS, &mi4header);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000373
374 /* We don't support encrypted mi4 files yet */
Barry Wardellbada0b72007-03-20 12:35:45 +0000375 if( (mi4header.plaintext) != (mi4header.mi4size-MI4_HEADER_SIZE))
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000376 return EINVALID_FORMAT;
377
378 /* MI4 file size */
Barry Wardellbada0b72007-03-20 12:35:45 +0000379 printf("OF mi4 size: %x", mi4header.mi4size);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000380
Barry Wardellbada0b72007-03-20 12:35:45 +0000381 if ((mi4header.mi4size-MI4_HEADER_SIZE) > buffer_size)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000382 return EFILE_TOO_BIG;
383
384 /* CRC32 */
385 printf("CRC32: %x", mi4header.crc32);
386
387 /* Rockbox model id */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000388 printf("Model id: %.4s", mi4header.model);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000389
390 /* Read binary type (RBOS, RBBL) */
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000391 printf("Binary type: %.4s", mi4header.type);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000392
393 /* Load firmware */
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000394 ata_read_sectors(IF_MV2(0,) pinfo->start + PPMI_SECTOR_OFFSET + PPMI_SECTORS
Barry Wardelle293bbb2007-03-17 19:07:20 +0000395 + (ppmi_header.length/512) + MI4_HEADER_SECTORS,
Barry Wardellbada0b72007-03-20 12:35:45 +0000396 (mi4header.mi4size-MI4_HEADER_SIZE)/512, buf);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000397
398 /* Check CRC32 to see if we have a valid file */
Barry Wardelle293bbb2007-03-17 19:07:20 +0000399 sum = chksum_crc32 (buf,mi4header.mi4size-MI4_HEADER_SIZE);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000400
401 printf("Calculated CRC32: %x", sum);
402
403 if(sum != mi4header.crc32)
404 return EBAD_CHKSUM;
405
Barry Wardelld46cf972007-10-20 17:08:41 +0000406#ifdef SANSA_E200
Jonathan Gordona76947f2007-03-22 12:45:19 +0000407 if (disable_rebuild)
408 {
409 char block[512];
Barry Wardelld46cf972007-10-20 17:08:41 +0000410
411 printf("Disabling database rebuild");
412
413 ata_read_sectors(IF_MV2(0,) pinfo->start + 0x3c08, 1, block);
414 block[0xe1] = 0;
415 ata_write_sectors(IF_MV2(0,) pinfo->start + 0x3c08, 1, block);
Jonathan Gordona76947f2007-03-22 12:45:19 +0000416 }
Barry Wardell8b6bf8f2007-10-20 18:30:41 +0000417#else
418 (void) disable_rebuild;
Barry Wardelld46cf972007-10-20 17:08:41 +0000419#endif
420
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000421 return EOK;
422}
Barry Wardella91a35b2007-03-16 14:36:14 +0000423#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000424
Barry Wardell1920df32006-08-28 08:11:32 +0000425void* main(void)
426{
Barry Wardell1920df32006-08-28 08:11:32 +0000427 int i;
Barry Wardell23709982007-03-12 22:12:20 +0000428 int btn;
Barry Wardell1920df32006-08-28 08:11:32 +0000429 int rc;
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000430 int num_partitions;
Barry Wardell1920df32006-08-28 08:11:32 +0000431 struct partinfo* pinfo;
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000432#if defined(SANSA_E200) || defined(SANSA_C200)
Jonathan Gordona76947f2007-03-22 12:45:19 +0000433 int usb_retry = 0;
434 bool usb = false;
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000435#else
436 char buf[256];
437 unsigned short* identify_info;
Jonathan Gordona76947f2007-03-22 12:45:19 +0000438#endif
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000439
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000440 chksum_crc32gentab ();
441
Barry Wardell1920df32006-08-28 08:11:32 +0000442 system_init();
443 kernel_init();
444 lcd_init();
445 font_init();
Barry Wardell2f16d4f2006-12-19 11:33:53 +0000446 button_init();
Barry Wardellf1fead02007-10-14 18:20:23 +0000447#if defined(SANSA_E200)
448 i2c_init();
Jens Arnoldef12b3b2007-11-12 18:49:53 +0000449 _backlight_on();
Barry Wardellf1fead02007-10-14 18:20:23 +0000450#endif
Mark Arigoe66ddd72008-01-09 07:24:43 +0000451
452#if LCD_DEPTH > 1
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000453 lcd_set_foreground(LCD_WHITE);
454 lcd_set_background(LCD_BLACK);
Mark Arigoe66ddd72008-01-09 07:24:43 +0000455#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000456 lcd_clear_display();
457
Jonathan Gordonfc8e09d2007-11-19 02:07:40 +0000458 if (button_hold())
459 {
460 verbose = true;
461 printf("Hold switch on");
462 printf("Shutting down...");
463 sleep(HZ);
464 power_off();
465 }
466
Barry Wardell23709982007-03-12 22:12:20 +0000467 btn = button_read_device();
Dave Chapmanf0cde2d2008-03-27 00:31:51 +0000468
469 /* Enable bootloader messages if any button is pressed */
470 if (btn)
471 verbose = true;
472
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000473#if defined(SANSA_E200) || defined(SANSA_C200)
Björn Stenberg2f7cffa2008-02-11 14:26:25 +0000474#if !defined(USE_ROCKBOX_USB)
Jonathan Gordona76947f2007-03-22 12:45:19 +0000475 usb_init();
Björn Stenberg7af22e12007-11-22 22:17:45 +0000476 while (usb_drv_powered() && usb_retry < 5 && !usb)
Jonathan Gordona76947f2007-03-22 12:45:19 +0000477 {
478 usb_retry++;
479 sleep(HZ/4);
Dave Chapman16723502007-09-04 08:03:07 +0000480 usb = (usb_detect() == USB_INSERTED);
Jonathan Gordona76947f2007-03-22 12:45:19 +0000481 }
482 if (usb)
483 btn |= BOOTLOADER_BOOT_OF;
Björn Stenberg2f7cffa2008-02-11 14:26:25 +0000484#endif /* USE_ROCKBOX_USB */
Jonathan Gordona76947f2007-03-22 12:45:19 +0000485#endif
Barry Wardell23709982007-03-12 22:12:20 +0000486
Barry Wardell1920df32006-08-28 08:11:32 +0000487 lcd_setfont(FONT_SYSFIXED);
488
Barry Wardellf4709d02007-01-17 12:20:38 +0000489 printf("Rockbox boot loader");
Barry Wardellca8f7bf2007-03-19 11:20:22 +0000490 printf("Version: %s", version);
Barry Wardellf4709d02007-01-17 12:20:38 +0000491 printf(MODEL_NAME);
Barry Wardell1920df32006-08-28 08:11:32 +0000492
493 i=ata_init();
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000494#if !defined(SANSA_E200) && !defined(SANSA_C200)
Barry Wardell1920df32006-08-28 08:11:32 +0000495 if (i==0) {
Barry Wardell84b509d2007-01-28 18:42:11 +0000496 identify_info=ata_get_identify();
497 /* Show model */
498 for (i=0; i < 20; i++) {
499 ((unsigned short*)buf)[i]=htobe16(identify_info[i+27]);
500 }
501 buf[40]=0;
502 for (i=39; i && buf[i]==' '; i--) {
503 buf[i]=0;
504 }
505 printf(buf);
Barry Wardell1920df32006-08-28 08:11:32 +0000506 } else {
Barry Wardell23709982007-03-12 22:12:20 +0000507 error(EATA, i);
Barry Wardell1920df32006-08-28 08:11:32 +0000508 }
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000509#endif
Barry Wardell1920df32006-08-28 08:11:32 +0000510
Michael Sevakis1167e3c2007-06-30 02:08:27 +0000511 disk_init(IF_MV(0));
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000512 num_partitions = disk_mount_all();
513 if (num_partitions<=0)
Barry Wardell1920df32006-08-28 08:11:32 +0000514 {
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000515 error(EDISK,num_partitions);
Barry Wardell1920df32006-08-28 08:11:32 +0000516 }
517
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000518 /* Just list the first 2 partitions since we don't have any devices yet
519 that have more than that */
Barry Wardell7cd559d2007-03-20 22:18:35 +0000520 for(i=0; i<NUM_PARTITIONS; i++)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000521 {
522 pinfo = disk_partinfo(i);
523 printf("Partition %d: 0x%02x %ld MB",
524 i, pinfo->type, pinfo->size / 2048);
525 }
Barry Wardell1920df32006-08-28 08:11:32 +0000526
Barry Wardella42070d2007-03-15 22:32:58 +0000527 if(btn & BOOTLOADER_BOOT_OF)
Barry Wardell1920df32006-08-28 08:11:32 +0000528 {
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000529 /* Load original mi4 firmware in to a memory buffer called loadbuffer.
530 The rest of the loading is done in crt0.S.
531 1) First try reading from the hidden partition (on Sansa only).
532 2) Next try a decrypted mi4 file in /System/OF.mi4
533 3) Finally, try a raw firmware binary in /System/OF.mi4. It should be
534 a mi4 firmware decrypted and header stripped using mi4code.
Barry Wardell84b509d2007-01-28 18:42:11 +0000535 */
Barry Wardellf4709d02007-01-17 12:20:38 +0000536 printf("Loading original firmware...");
Barry Wardella91a35b2007-03-16 14:36:14 +0000537
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000538#if defined(SANSA_E200) || defined(SANSA_C200)
Barry Wardella91a35b2007-03-16 14:36:14 +0000539 /* First try a (hidden) firmware partition */
540 printf("Trying firmware partition");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000541 pinfo = disk_partinfo(1);
Barry Wardellb8a5adf2007-03-16 14:41:55 +0000542 if(pinfo->type == PARTITION_TYPE_OS2_HIDDEN_C_DRIVE)
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000543 {
Jonathan Gordona76947f2007-03-22 12:45:19 +0000544 rc = load_mi4_part(loadbuffer, pinfo, MAX_LOADSIZE, usb);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000545 if (rc < EOK) {
546 printf("Can't load from partition");
547 printf(strerror(rc));
548 } else {
549 return (void*)loadbuffer;
550 }
551 } else {
552 printf("No hidden partition found.");
553 }
Barry Wardella91a35b2007-03-16 14:36:14 +0000554#endif
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000555
556 printf("Trying /System/OF.mi4");
557 rc=load_mi4(loadbuffer, "/System/OF.mi4", MAX_LOADSIZE);
558 if (rc < EOK) {
559 printf("Can't load /System/OF.mi4");
560 printf(strerror(rc));
561 } else {
562 return (void*)loadbuffer;
563 }
564
565 printf("Trying /System/OF.bin");
Barry Wardell84b509d2007-01-28 18:42:11 +0000566 rc=load_raw_firmware(loadbuffer, "/System/OF.bin", MAX_LOADSIZE);
567 if (rc < EOK) {
Barry Wardell23709982007-03-12 22:12:20 +0000568 printf("Can't load /System/OF.bin");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000569 printf(strerror(rc));
570 } else {
571 return (void*)loadbuffer;
Barry Wardell84b509d2007-01-28 18:42:11 +0000572 }
Barry Wardell0c1a3042007-03-20 10:36:26 +0000573
Barry Wardell3de41f52007-03-20 20:45:25 +0000574 error(0, 0);
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000575
Barry Wardell1920df32006-08-28 08:11:32 +0000576 } else {
Jonathan Gordon875c7252007-05-17 11:35:57 +0000577#if 0 /* e200: enable to be able to dump the hidden partition */
578 if(btn & BUTTON_UP)
579 {
580 int fd;
581 pinfo = disk_partinfo(1);
582 fd = open("/part.bin", O_CREAT|O_RDWR);
583 char sector[512];
584 for(i=0; i<40960; i++){
Jonathan Gordon1062a172007-05-20 03:08:00 +0000585 if (!(i%100))
586 {
587 printf("dumping sector %d", i);
588 }
Barry Wardell003fc492007-10-20 15:41:44 +0000589 ata_read_sectors(IF_MV2(0,) pinfo->start + i, 1, sector);
Jonathan Gordon875c7252007-05-17 11:35:57 +0000590 write(fd,sector,512);
591 }
592 close(fd);
593 }
594#endif
Barry Wardellf4709d02007-01-17 12:20:38 +0000595 printf("Loading Rockbox...");
Barry Wardell14ed3ca2007-03-16 14:28:00 +0000596 rc=load_mi4(loadbuffer, BOOTFILE, MAX_LOADSIZE);
Barry Wardell84b509d2007-01-28 18:42:11 +0000597 if (rc < EOK) {
Barry Wardell84b509d2007-01-28 18:42:11 +0000598 printf("Can't load %s:", BOOTFILE);
Barry Wardelle293bbb2007-03-17 19:07:20 +0000599 printf(strerror(rc));
600
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000601#ifdef OLD_BOOTFILE
Barry Wardelle293bbb2007-03-17 19:07:20 +0000602 /* Try loading rockbox from old rockbox.e200/rockbox.h10 format */
603 rc=load_firmware(loadbuffer, OLD_BOOTFILE, MAX_LOADSIZE);
604 if (rc < EOK) {
605 printf("Can't load %s:", OLD_BOOTFILE);
Barry Wardell0c1a3042007-03-20 10:36:26 +0000606 error(EBOOTFILE, rc);
Barry Wardelle293bbb2007-03-17 19:07:20 +0000607 }
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000608#endif
Barry Wardell84b509d2007-01-28 18:42:11 +0000609 }
Barry Wardell1920df32006-08-28 08:11:32 +0000610 }
Hristo Kovachev12041362006-08-11 09:51:04 +0000611
Barry Wardell84b509d2007-01-28 18:42:11 +0000612 return (void*)loadbuffer;
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000613}
614
Mark Arigodbc6b4e2007-09-06 03:28:58 +0000615#if !defined(SANSA_E200) && !defined(SANSA_C200)
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000616/* These functions are present in the firmware library, but we reimplement
617 them here because the originals do a lot more than we want */
Hristo Kovachev9dc0e622006-08-11 08:35:27 +0000618void usb_acknowledge(void)
619{
620}
621
622void usb_wait_for_disconnect(void)
623{
624}
Jonathan Gordona76947f2007-03-22 12:45:19 +0000625#endif
626