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