blob: 44e212ba900df078f4a1621fb53746becac746e7 [file] [log] [blame]
Brian Swetland9c4c0752009-01-25 16:23:50 -08001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
4 *
Neeti Desaie245d492012-06-01 12:52:13 -07005 * Copyright (c) 2009-2012, Code Aurora Forum. All rights reserved.
Brian Swetland9c4c0752009-01-25 16:23:50 -08006 *
Chandan Uddaraju5fa471a2009-12-02 17:31:34 -08007 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * * Neither the name of Code Aurora nor
15 * the names of its contributors may be used to endorse or promote
16 * products derived from this software without specific prior written
17 * permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
Brian Swetland9c4c0752009-01-25 16:23:50 -080031 */
32
33#include <app.h>
34#include <debug.h>
35#include <arch/arm.h>
36#include <dev/udc.h>
37#include <string.h>
38#include <kernel/thread.h>
39#include <arch/ops.h>
40
Dima Zavin214cc642009-01-26 11:16:21 -080041#include <dev/flash.h>
42#include <lib/ptable.h>
Dima Zavinb4283602009-01-26 16:36:57 -080043#include <dev/keys.h>
Shashank Mittal4f99a882010-02-01 13:58:50 -080044#include <dev/fbcon.h>
Ajay Dudanid04110c2011-01-17 23:55:07 -080045#include <baseband.h>
Greg Griscod6250552011-06-29 14:40:23 -070046#include <target.h>
47#include <mmc.h>
Kinson Chikf1a43512011-07-14 11:28:39 -070048#include <partition_parser.h>
Greg Griscod6250552011-06-29 14:40:23 -070049#include <platform.h>
Shashank Mittalcd98d472011-08-02 14:29:24 -070050#include <crypto_hash.h>
Dima Zavin214cc642009-01-26 11:16:21 -080051
Neeti Desai17379b82012-06-04 18:42:53 -070052#if DEVICE_TREE
53#include <libfdt.h>
54#endif
55
Shashank Mittalcd98d472011-08-02 14:29:24 -070056#include "image_verify.h"
Shashank Mittal024c0332010-02-03 11:44:00 -080057#include "recovery.h"
Brian Swetland9c4c0752009-01-25 16:23:50 -080058#include "bootimg.h"
59#include "fastboot.h"
Ajay Dudani5c761132011-04-07 20:19:04 -070060#include "sparse_format.h"
Greg Grisco6e754772011-06-23 12:19:39 -070061#include "mmc.h"
Shashank Mittal162244e2011-08-08 19:01:25 -070062#include "devinfo.h"
Neeti Desai465491e2012-07-31 12:53:35 -070063#include "board.h"
Brian Swetland9c4c0752009-01-25 16:23:50 -080064
Shashank Mittal162244e2011-08-08 19:01:25 -070065#include "scm.h"
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -070066
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -070067#define EXPAND(NAME) #NAME
68#define TARGET(NAME) EXPAND(NAME)
Chandan Uddarajuda919832009-11-17 01:06:11 -080069#define DEFAULT_CMDLINE "mem=100M console=null";
Brian Swetland2defe162009-08-18 14:35:59 -070070
Ajay Dudanicd01f9b2010-02-23 21:13:04 -080071#ifdef MEMBASE
72#define EMMC_BOOT_IMG_HEADER_ADDR (0xFF000+(MEMBASE))
73#else
David Ng183a7422009-12-07 14:55:21 -080074#define EMMC_BOOT_IMG_HEADER_ADDR 0xFF000
Ajay Dudanicd01f9b2010-02-23 21:13:04 -080075#endif
76
Chandan Uddarajude85d3f2010-01-05 16:32:33 -080077#define RECOVERY_MODE 0x77665502
78#define FASTBOOT_MODE 0x77665500
79
Neeti Desai17379b82012-06-04 18:42:53 -070080#if DEVICE_TREE
Neeti Desai465491e2012-07-31 12:53:35 -070081#define DEV_TREE_SUCCESS 0
82#define DEV_TREE_MAGIC "QCDT"
83#define DEV_TREE_VERSION 1
84#define DEV_TREE_HEADER_SIZE 12
85
86
87struct dt_entry{
88 uint32_t platform_id;
89 uint32_t variant_id;
90 uint32_t soc_rev;
91 uint32_t offset;
92 uint32_t size;
93};
94
95struct dt_table{
96 uint32_t magic;
97 uint32_t version;
98 unsigned num_entries;
99};
100
101struct dt_entry * get_device_tree_ptr(struct dt_table *);
Neeti Desai17379b82012-06-04 18:42:53 -0700102int update_device_tree(const void *, char *, void *, unsigned);
103#endif
104
David Ng183a7422009-12-07 14:55:21 -0800105static const char *emmc_cmdline = " androidboot.emmc=true";
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800106static const char *usb_sn_cmdline = " androidboot.serialno=";
Ajay Dudanica3a33c2011-11-18 08:31:40 -0800107static const char *battchg_pause = " androidboot.mode=charger";
Shashank Mittalcd98d472011-08-02 14:29:24 -0700108static const char *auth_kernel = " androidboot.authorized_kernel=true";
David Ng183a7422009-12-07 14:55:21 -0800109
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800110static const char *baseband_apq = " androidboot.baseband=apq";
111static const char *baseband_msm = " androidboot.baseband=msm";
112static const char *baseband_csfb = " androidboot.baseband=csfb";
113static const char *baseband_svlte2a = " androidboot.baseband=svlte2a";
Ajay Dudani403bc492011-09-30 16:17:21 -0700114static const char *baseband_mdm = " androidboot.baseband=mdm";
Amol Jadi5c61a952012-05-04 17:05:35 -0700115static const char *baseband_sglte = " androidboot.baseband=sglte";
Ajay Dudanid04110c2011-01-17 23:55:07 -0800116
Shashank Mittalcd98d472011-08-02 14:29:24 -0700117/* Assuming unauthorized kernel image by default */
118static int auth_kernel_img = 0;
119
Shashank Mittal162244e2011-08-08 19:01:25 -0700120static device_info device = {DEVICE_MAGIC, 0, 0};
121
Brian Swetland9c4c0752009-01-25 16:23:50 -0800122static struct udc_device surf_udc_device = {
123 .vendor_id = 0x18d1,
Chandan Uddarajuc53a1a12009-11-18 14:53:40 -0800124 .product_id = 0xD00D,
Brian Swetland9c4c0752009-01-25 16:23:50 -0800125 .version_id = 0x0100,
126 .manufacturer = "Google",
127 .product = "Android",
128};
129
Dima Zavin42168f22009-01-30 11:52:22 -0800130struct atag_ptbl_entry
131{
132 char name[16];
133 unsigned offset;
134 unsigned size;
135 unsigned flags;
136};
137
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800138char sn_buf[13];
Greg Griscod6250552011-06-29 14:40:23 -0700139
Greg Griscod2471ef2011-07-14 13:00:42 -0700140extern int emmc_recovery_init(void);
141
Kinson Chik0b1c8162011-08-31 16:31:57 -0700142#if NO_KEYPAD_DRIVER
143extern int fastboot_trigger(void);
144#endif
Greg Griscod2471ef2011-07-14 13:00:42 -0700145
Dima Zavin42168f22009-01-30 11:52:22 -0800146static void ptentry_to_tag(unsigned **ptr, struct ptentry *ptn)
147{
148 struct atag_ptbl_entry atag_ptn;
149
150 memcpy(atag_ptn.name, ptn->name, 16);
151 atag_ptn.name[15] = '\0';
152 atag_ptn.offset = ptn->start;
153 atag_ptn.size = ptn->length;
154 atag_ptn.flags = ptn->flags;
155 memcpy(*ptr, &atag_ptn, sizeof(struct atag_ptbl_entry));
156 *ptr += sizeof(struct atag_ptbl_entry) / sizeof(unsigned);
157}
Brian Swetland9c4c0752009-01-25 16:23:50 -0800158
Neeti Desaie245d492012-06-01 12:52:13 -0700159unsigned char *update_cmdline(const char * cmdline)
Brian Swetland9c4c0752009-01-25 16:23:50 -0800160{
David Ng183a7422009-12-07 14:55:21 -0800161 int cmdline_len = 0;
162 int have_cmdline = 0;
Amol Jadi168b7712012-03-06 16:15:00 -0800163 unsigned char *cmdline_final = NULL;
Neeti Desaie245d492012-06-01 12:52:13 -0700164 int pause_at_bootup = 0;
Dima Zavin42168f22009-01-30 11:52:22 -0800165
Brian Swetland9c4c0752009-01-25 16:23:50 -0800166 if (cmdline && cmdline[0]) {
David Ng183a7422009-12-07 14:55:21 -0800167 cmdline_len = strlen(cmdline);
168 have_cmdline = 1;
169 }
170 if (target_is_emmc_boot()) {
171 cmdline_len += strlen(emmc_cmdline);
172 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800173
174 cmdline_len += strlen(usb_sn_cmdline);
175 cmdline_len += strlen(sn_buf);
176
David Ngf773dde2010-07-26 19:55:08 -0700177 if (target_pause_for_battery_charge()) {
178 pause_at_bootup = 1;
179 cmdline_len += strlen(battchg_pause);
180 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800181
Shashank Mittalcd98d472011-08-02 14:29:24 -0700182 if(target_use_signed_kernel() && auth_kernel_img) {
183 cmdline_len += strlen(auth_kernel);
184 }
185
Ajay Dudanid04110c2011-01-17 23:55:07 -0800186 /* Determine correct androidboot.baseband to use */
187 switch(target_baseband())
188 {
189 case BASEBAND_APQ:
190 cmdline_len += strlen(baseband_apq);
191 break;
192
193 case BASEBAND_MSM:
194 cmdline_len += strlen(baseband_msm);
195 break;
196
197 case BASEBAND_CSFB:
198 cmdline_len += strlen(baseband_csfb);
199 break;
200
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800201 case BASEBAND_SVLTE2A:
202 cmdline_len += strlen(baseband_svlte2a);
Ajay Dudanid04110c2011-01-17 23:55:07 -0800203 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700204
205 case BASEBAND_MDM:
206 cmdline_len += strlen(baseband_mdm);
207 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700208
209 case BASEBAND_SGLTE:
210 cmdline_len += strlen(baseband_sglte);
211 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800212 }
213
David Ng183a7422009-12-07 14:55:21 -0800214 if (cmdline_len > 0) {
215 const char *src;
Neeti Desaie245d492012-06-01 12:52:13 -0700216 char *dst = malloc((cmdline_len + 4) & (~3));
217 assert(dst != NULL);
218
Amol Jadi168b7712012-03-06 16:15:00 -0800219 /* Save start ptr for debug print */
Neeti Desaie245d492012-06-01 12:52:13 -0700220 cmdline_final = dst;
David Ng183a7422009-12-07 14:55:21 -0800221 if (have_cmdline) {
222 src = cmdline;
223 while ((*dst++ = *src++));
224 }
225 if (target_is_emmc_boot()) {
226 src = emmc_cmdline;
227 if (have_cmdline) --dst;
David Ngf773dde2010-07-26 19:55:08 -0700228 have_cmdline = 1;
229 while ((*dst++ = *src++));
230 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800231
232 src = usb_sn_cmdline;
233 if (have_cmdline) --dst;
234 have_cmdline = 1;
235 while ((*dst++ = *src++));
236 src = sn_buf;
237 if (have_cmdline) --dst;
238 have_cmdline = 1;
239 while ((*dst++ = *src++));
240
David Ngf773dde2010-07-26 19:55:08 -0700241 if (pause_at_bootup) {
242 src = battchg_pause;
243 if (have_cmdline) --dst;
David Ng183a7422009-12-07 14:55:21 -0800244 while ((*dst++ = *src++));
245 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800246
Shashank Mittalcd98d472011-08-02 14:29:24 -0700247 if(target_use_signed_kernel() && auth_kernel_img) {
248 src = auth_kernel;
249 if (have_cmdline) --dst;
250 while ((*dst++ = *src++));
251 }
252
Ajay Dudanid04110c2011-01-17 23:55:07 -0800253 switch(target_baseband())
254 {
255 case BASEBAND_APQ:
256 src = baseband_apq;
257 if (have_cmdline) --dst;
258 while ((*dst++ = *src++));
259 break;
260
261 case BASEBAND_MSM:
262 src = baseband_msm;
263 if (have_cmdline) --dst;
264 while ((*dst++ = *src++));
265 break;
266
267 case BASEBAND_CSFB:
268 src = baseband_csfb;
269 if (have_cmdline) --dst;
270 while ((*dst++ = *src++));
271 break;
272
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800273 case BASEBAND_SVLTE2A:
274 src = baseband_svlte2a;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800275 if (have_cmdline) --dst;
276 while ((*dst++ = *src++));
277 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700278
279 case BASEBAND_MDM:
280 src = baseband_mdm;
281 if (have_cmdline) --dst;
282 while ((*dst++ = *src++));
283 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700284
285 case BASEBAND_SGLTE:
286 src = baseband_sglte;
287 if (have_cmdline) --dst;
288 while ((*dst++ = *src++));
289 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800290 }
Neeti Desaie245d492012-06-01 12:52:13 -0700291 }
292 return cmdline_final;
293}
294
295unsigned *atag_core(unsigned *ptr)
296{
297 /* CORE */
298 *ptr++ = 2;
299 *ptr++ = 0x54410001;
300
301 return ptr;
302
303}
304
305unsigned *atag_ramdisk(unsigned *ptr, void *ramdisk,
306 unsigned ramdisk_size)
307{
308 if (ramdisk_size) {
309 *ptr++ = 4;
310 *ptr++ = 0x54420005;
311 *ptr++ = (unsigned)ramdisk;
312 *ptr++ = ramdisk_size;
Brian Swetland9c4c0752009-01-25 16:23:50 -0800313 }
314
Neeti Desaie245d492012-06-01 12:52:13 -0700315 return ptr;
316}
317
318unsigned *atag_ptable(unsigned **ptr_addr)
319{
320 int i;
321 struct ptable *ptable;
322
323 if ((ptable = flash_get_ptable()) && (ptable->count != 0)) {
324 *(*ptr_addr)++ = 2 + (ptable->count * (sizeof(struct atag_ptbl_entry) /
325 sizeof(unsigned)));
326 *(*ptr_addr)++ = 0x4d534d70;
327 for (i = 0; i < ptable->count; ++i)
328 ptentry_to_tag(ptr_addr, ptable_get(ptable, i));
329 }
330
331 return (*ptr_addr);
332}
333
334unsigned *atag_cmdline(unsigned *ptr, const char *cmdline)
335{
336 int cmdline_length = 0;
337 int n;
338 unsigned char *cmdline_final = NULL;
339 char *dest;
340
341 cmdline_final = update_cmdline(cmdline);
342 if (cmdline_final){
343 dprintf(INFO, "cmdline: %s\n", cmdline_final);
344 }
345
346 cmdline_length =strlen(cmdline_final);
347 n = (cmdline_length + 4) & (~3);
348
349 *ptr++ = (n / 4) + 2;
350 *ptr++ = 0x54410009;
351 dest = (char *) ptr;
352 while (*dest++ = *cmdline_final++);
353 ptr += (n / 4);
354
355 return ptr;
356}
357
358unsigned *atag_end(unsigned *ptr)
359{
Brian Swetland9c4c0752009-01-25 16:23:50 -0800360 /* END */
361 *ptr++ = 0;
362 *ptr++ = 0;
363
Neeti Desaie245d492012-06-01 12:52:13 -0700364 return ptr;
365}
366
367void generate_atags(unsigned *ptr, const char *cmdline,
368 void *ramdisk, unsigned ramdisk_size)
369{
370
371 ptr = atag_core(ptr);
372 ptr = atag_ramdisk(ptr, ramdisk, ramdisk_size);
373 ptr = target_atag_mem(ptr);
374
375 /* Skip NAND partition ATAGS for eMMC boot */
376 if (!target_is_emmc_boot()){
377 ptr = atag_ptable(&ptr);
378 }
379
380 ptr = atag_cmdline(ptr, cmdline);
381 ptr = atag_end(ptr);
382}
383
384void boot_linux(void *kernel, unsigned *tags,
385 const char *cmdline, unsigned machtype,
386 void *ramdisk, unsigned ramdisk_size)
387{
Neeti Desai17379b82012-06-04 18:42:53 -0700388 int ret = 0;
Neeti Desaie245d492012-06-01 12:52:13 -0700389 void (*entry)(unsigned, unsigned, unsigned*) = kernel;
390
Neeti Desai17379b82012-06-04 18:42:53 -0700391#if DEVICE_TREE
392 /* Update the Device Tree */
393 ret = update_device_tree(tags, cmdline, ramdisk, ramdisk_size);
394 if(ret)
395 {
396 dprintf(CRITICAL, "ERROR: Updating Device Tree Failed \n");
397 ASSERT(0);
398 }
399#else
Neeti Desaie245d492012-06-01 12:52:13 -0700400 /* Generating the Atags */
401 generate_atags(tags, cmdline, ramdisk, ramdisk_size);
Neeti Desai17379b82012-06-04 18:42:53 -0700402#endif
Neeti Desaie245d492012-06-01 12:52:13 -0700403
Brian Swetland9c4c0752009-01-25 16:23:50 -0800404 dprintf(INFO, "booting linux @ %p, ramdisk @ %p (%d)\n",
405 kernel, ramdisk, ramdisk_size);
Brian Swetland9c4c0752009-01-25 16:23:50 -0800406
407 enter_critical_section();
Amol Jadi4421e652011-06-16 15:00:48 -0700408 /* do any platform specific cleanup before kernel entry */
409 platform_uninit();
Brian Swetland9c4c0752009-01-25 16:23:50 -0800410 arch_disable_cache(UCACHE);
Amol Jadi01c2c702012-07-19 23:03:45 -0700411 /* NOTE:
412 * The value of "entry" is getting corrupted at this point.
413 * The value is in R4 and gets pushed to stack on entry into
414 * disable_cache(), however, on return it is not the same.
415 * Not entirely sure why this dsb() seems to take of this.
416 * The stack pop operation on return from disable_cache()
417 * should restore R4 properly, but that is not happening.
418 * Will need to revisit to find the root cause.
419 */
420 dsb();
Brian Swetland9c4c0752009-01-25 16:23:50 -0800421 arch_disable_mmu();
Brian Swetland9c4c0752009-01-25 16:23:50 -0800422 entry(0, machtype, tags);
Brian Swetland9c4c0752009-01-25 16:23:50 -0800423}
424
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800425unsigned page_size = 0;
426unsigned page_mask = 0;
Brian Swetland9c4c0752009-01-25 16:23:50 -0800427
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800428#define ROUND_TO_PAGE(x,y) (((x) + (y)) & (~(y)))
Brian Swetland9c4c0752009-01-25 16:23:50 -0800429
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800430static unsigned char buf[4096]; //Equal to max-supported pagesize
Neeti Desai465491e2012-07-31 12:53:35 -0700431static unsigned char dt_buf[4096];
Dima Zavin214cc642009-01-26 11:16:21 -0800432
Shashank Mittal23b8f422010-04-16 19:27:21 -0700433int boot_linux_from_mmc(void)
434{
435 struct boot_img_hdr *hdr = (void*) buf;
436 struct boot_img_hdr *uhdr;
437 unsigned offset = 0;
438 unsigned long long ptn = 0;
439 unsigned n = 0;
440 const char *cmdline;
Kinson Chikf1a43512011-07-14 11:28:39 -0700441 int index = INVALID_PTN;
Shashank Mittal23b8f422010-04-16 19:27:21 -0700442
Shashank Mittalcd98d472011-08-02 14:29:24 -0700443 unsigned char *image_addr = 0;
444 unsigned kernel_actual;
445 unsigned ramdisk_actual;
446 unsigned imagesize_actual;
Neeti Desai465491e2012-07-31 12:53:35 -0700447 unsigned second_actual = 0;
448 unsigned dt_actual = 0;
449
450#if DEVICE_TREE
451 struct dt_table *table;
452 struct dt_entry *dt_entry_ptr;
453 unsigned dt_table_offset;
454#endif
Shashank Mittalcd98d472011-08-02 14:29:24 -0700455
Shashank Mittal23b8f422010-04-16 19:27:21 -0700456 uhdr = (struct boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
457 if (!memcmp(uhdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
458 dprintf(INFO, "Unified boot method!\n");
459 hdr = uhdr;
460 goto unified_boot;
461 }
Greg Griscod6250552011-06-29 14:40:23 -0700462 if (!boot_into_recovery) {
Kinson Chikf1a43512011-07-14 11:28:39 -0700463 index = partition_get_index("boot");
464 ptn = partition_get_offset(index);
465 if(ptn == 0) {
Shashank Mittal85b91f62010-10-30 10:12:38 -0700466 dprintf(CRITICAL, "ERROR: No boot partition found\n");
467 return -1;
468 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700469 }
470 else {
471 index = partition_get_index("recovery");
472 ptn = partition_get_offset(index);
473 if(ptn == 0) {
Shashank Mittal85b91f62010-10-30 10:12:38 -0700474 dprintf(CRITICAL, "ERROR: No recovery partition found\n");
475 return -1;
476 }
Shashank Mittal23b8f422010-04-16 19:27:21 -0700477 }
478
Greg Griscod6250552011-06-29 14:40:23 -0700479 if (mmc_read(ptn + offset, (unsigned int *) buf, page_size)) {
Shashank Mittal23b8f422010-04-16 19:27:21 -0700480 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
481 return -1;
482 }
Shashank Mittal23b8f422010-04-16 19:27:21 -0700483
484 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -0700485 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Shashank Mittal23b8f422010-04-16 19:27:21 -0700486 return -1;
487 }
488
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -0700489 if (hdr->page_size && (hdr->page_size != page_size)) {
490 page_size = hdr->page_size;
491 page_mask = page_size - 1;
Shashank Mittal23b8f422010-04-16 19:27:21 -0700492 }
493
Shashank Mittalcd98d472011-08-02 14:29:24 -0700494 /* Authenticate Kernel */
Shashank Mittala0032282011-08-26 14:50:11 -0700495 if(target_use_signed_kernel() && (!device.is_unlocked) && (!device.is_tampered))
Subbaraman Narayanamurthy958fa242011-01-27 17:42:38 -0800496 {
Shashank Mittalcd98d472011-08-02 14:29:24 -0700497 image_addr = (unsigned char *)target_get_scratch_address();
498 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
499 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Neeti Desai465491e2012-07-31 12:53:35 -0700500 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
501 dt_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
502 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + second_actual +
503 dt_actual);
Shashank Mittalcd98d472011-08-02 14:29:24 -0700504
505 offset = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700506
507 /* Assuming device rooted at this time */
Shashank Mittala0032282011-08-26 14:50:11 -0700508 device.is_tampered = 1;
Shashank Mittal162244e2011-08-08 19:01:25 -0700509
Shashank Mittalcd98d472011-08-02 14:29:24 -0700510 /* Read image without signature */
511 if (mmc_read(ptn + offset, (void *)image_addr, imagesize_actual))
512 {
513 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
514 return -1;
Subbaraman Narayanamurthy958fa242011-01-27 17:42:38 -0800515 }
Shashank Mittalcd98d472011-08-02 14:29:24 -0700516
517 offset = imagesize_actual;
518 /* Read signature */
519 if(mmc_read(ptn + offset, (void *)(image_addr + offset), page_size))
520 {
521 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
522 }
523 else
524 {
525 auth_kernel_img = image_verify((unsigned char *)image_addr,
526 (unsigned char *)(image_addr + imagesize_actual),
527 imagesize_actual,
528 CRYPTO_AUTH_ALG_SHA256);
Shashank Mittal162244e2011-08-08 19:01:25 -0700529
530 if(auth_kernel_img)
531 {
532 /* Authorized kernel */
Shashank Mittala0032282011-08-26 14:50:11 -0700533 device.is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700534 }
Shashank Mittalcd98d472011-08-02 14:29:24 -0700535 }
536
Neeti Desai465491e2012-07-31 12:53:35 -0700537 /* Move kernel, ramdisk and device tree to correct address */
Shashank Mittalcd98d472011-08-02 14:29:24 -0700538 memmove((void*) hdr->kernel_addr, (char *)(image_addr + page_size), hdr->kernel_size);
539 memmove((void*) hdr->ramdisk_addr, (char *)(image_addr + page_size + kernel_actual), hdr->ramdisk_size);
Shashank Mittal162244e2011-08-08 19:01:25 -0700540
Neeti Desai465491e2012-07-31 12:53:35 -0700541 #if DEVICE_TREE
542 if(hdr->dt_size) {
543 table = (struct dt_table*) dt_buf;
544 dt_table_offset = (image_addr + page_size + kernel_actual + ramdisk_actual + second_actual);
545
546 memmove((void *) dt_buf, (char *)dt_table_offset, page_size);
547
548 /* Restriction that the device tree entry table should be less than a page*/
549 ASSERT(((table->num_entries * sizeof(struct dt_entry))+ DEV_TREE_HEADER_SIZE) < hdr->page_size);
550
551 /* Validate the device tree table header */
552 if((table->magic != DEV_TREE_MAGIC) && (table->version != DEV_TREE_VERSION)) {
553 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
554 return -1;
555 }
556
557 /* Find index of device tree within device tree table */
558 if((dt_entry_ptr = get_device_tree_ptr(table)) == NULL){
559 dprintf(CRITICAL, "ERROR: Device Tree Blob cannot be found\n");
560 return -1;
561 }
562
563 /* Read device device tree in the "tags_add */
564 memmove((void *)hdr->tags_addr, (char *)dt_table_offset + dt_entry_ptr->offset, dt_entry_ptr->size);
565 }
566 #endif
Shashank Mittal162244e2011-08-08 19:01:25 -0700567 /* Make sure everything from scratch address is read before next step!*/
Shashank Mittala0032282011-08-26 14:50:11 -0700568 if(device.is_tampered)
Shashank Mittal162244e2011-08-08 19:01:25 -0700569 {
570 write_device_info_mmc(&device);
571 #ifdef TZ_TAMPER_FUSE
572 set_tamper_fuse_cmd();
573 #endif
574 }
Channagoud Kadabibf695c62012-04-10 13:31:56 +0530575 #if USE_PCOM_SECBOOT
576 set_tamper_flag(device.is_tampered);
577 #endif
Shashank Mittal23b8f422010-04-16 19:27:21 -0700578 }
Shashank Mittalcd98d472011-08-02 14:29:24 -0700579 else
580 {
581 offset += page_size;
582
583 n = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
584 if (mmc_read(ptn + offset, (void *)hdr->kernel_addr, n)) {
585 dprintf(CRITICAL, "ERROR: Cannot read kernel image\n");
586 return -1;
587 }
588 offset += n;
589
590 n = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
591 if(n != 0)
592 {
593 if (mmc_read(ptn + offset, (void *)hdr->ramdisk_addr, n)) {
594 dprintf(CRITICAL, "ERROR: Cannot read ramdisk image\n");
595 return -1;
596 }
597 }
598 offset += n;
Neeti Desai465491e2012-07-31 12:53:35 -0700599
600 if(hdr->second_size != 0) {
601 n = ROUND_TO_PAGE(hdr->second_size, page_mask);
602 offset += n;
603 }
604
605 #if DEVICE_TREE
606 if(hdr->dt_size != 0) {
607
608 /* Read the device tree table into buffer */
609 if(mmc_read(ptn + offset,(unsigned int *) dt_buf, page_size)) {
610 dprintf(CRITICAL, "ERROR: Cannot read the Device Tree Table\n");
611 return -1;
612 }
613 table = (struct dt_table*) dt_buf;
614
615 /* Restriction that the device tree entry table should be less than a page*/
616 ASSERT(((table->num_entries * sizeof(struct dt_entry))+ DEV_TREE_HEADER_SIZE) < hdr->page_size);
617
618 /* Validate the device tree table header */
619 if((table->magic != DEV_TREE_MAGIC) && (table->version != DEV_TREE_VERSION)) {
620 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
621 return -1;
622 }
623
624 /* Calculate the offset of device tree within device tree table */
625 if((dt_entry_ptr = get_device_tree_ptr(table)) == NULL){
626 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
627 return -1;
628 }
629
630 /* Read device device tree in the "tags_add */
631 hdr->tags_addr = 0x8400000;
632 if(mmc_read(ptn + offset + dt_entry_ptr->offset,
633 (void *)hdr->tags_addr, dt_entry_ptr->size)) {
634 dprintf(CRITICAL, "ERROR: Cannot read device tree\n");
635 return -1;
636 }
637 }
638 #endif
Shashank Mittalcd98d472011-08-02 14:29:24 -0700639 }
Shashank Mittal23b8f422010-04-16 19:27:21 -0700640
641unified_boot:
642 dprintf(INFO, "\nkernel @ %x (%d bytes)\n", hdr->kernel_addr,
643 hdr->kernel_size);
644 dprintf(INFO, "ramdisk @ %x (%d bytes)\n", hdr->ramdisk_addr,
645 hdr->ramdisk_size);
646
647 if(hdr->cmdline[0]) {
648 cmdline = (char*) hdr->cmdline;
649 } else {
650 cmdline = DEFAULT_CMDLINE;
651 }
652 dprintf(INFO, "cmdline = '%s'\n", cmdline);
653
654 dprintf(INFO, "\nBooting Linux\n");
Greg Griscod2471ef2011-07-14 13:00:42 -0700655 boot_linux((void *)hdr->kernel_addr, (unsigned *) hdr->tags_addr,
Shashank Mittal23b8f422010-04-16 19:27:21 -0700656 (const char *)cmdline, board_machtype(),
657 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
658
659 return 0;
660}
661
Dima Zavin214cc642009-01-26 11:16:21 -0800662int boot_linux_from_flash(void)
663{
664 struct boot_img_hdr *hdr = (void*) buf;
665 unsigned n;
666 struct ptentry *ptn;
667 struct ptable *ptable;
668 unsigned offset = 0;
669 const char *cmdline;
Chandan Uddarajude85d3f2010-01-05 16:32:33 -0800670
Shashank Mittalcd98d472011-08-02 14:29:24 -0700671 unsigned char *image_addr = 0;
672 unsigned kernel_actual;
673 unsigned ramdisk_actual;
674 unsigned imagesize_actual;
675
David Ng183a7422009-12-07 14:55:21 -0800676 if (target_is_emmc_boot()) {
677 hdr = (struct boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
678 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
679 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
680 return -1;
681 }
682 goto continue_boot;
683 }
684
Dima Zavin214cc642009-01-26 11:16:21 -0800685 ptable = flash_get_ptable();
686 if (ptable == NULL) {
687 dprintf(CRITICAL, "ERROR: Partition table not found\n");
688 return -1;
689 }
690
Chandan Uddarajude85d3f2010-01-05 16:32:33 -0800691 if(!boot_into_recovery)
692 {
693 ptn = ptable_find(ptable, "boot");
694 if (ptn == NULL) {
695 dprintf(CRITICAL, "ERROR: No boot partition found\n");
696 return -1;
697 }
698 }
699 else
700 {
701 ptn = ptable_find(ptable, "recovery");
702 if (ptn == NULL) {
703 dprintf(CRITICAL, "ERROR: No recovery partition found\n");
704 return -1;
705 }
Dima Zavin214cc642009-01-26 11:16:21 -0800706 }
707
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800708 if (flash_read(ptn, offset, buf, page_size)) {
Dima Zavin214cc642009-01-26 11:16:21 -0800709 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
710 return -1;
711 }
Dima Zavin214cc642009-01-26 11:16:21 -0800712
713 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -0700714 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Dima Zavin214cc642009-01-26 11:16:21 -0800715 return -1;
716 }
717
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800718 if (hdr->page_size != page_size) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -0700719 dprintf(CRITICAL, "ERROR: Invalid boot image pagesize. Device pagesize: %d, Image pagesize: %d\n",page_size,hdr->page_size);
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800720 return -1;
721 }
722
Shashank Mittalcd98d472011-08-02 14:29:24 -0700723 /* Authenticate Kernel */
Shashank Mittala0032282011-08-26 14:50:11 -0700724 if(target_use_signed_kernel() && (!device.is_unlocked) && (!device.is_tampered))
Shashank Mittalcd98d472011-08-02 14:29:24 -0700725 {
726 image_addr = (unsigned char *)target_get_scratch_address();
727 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
728 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
729 imagesize_actual = (page_size + kernel_actual + ramdisk_actual);
Dima Zavin214cc642009-01-26 11:16:21 -0800730
Shashank Mittalcd98d472011-08-02 14:29:24 -0700731 offset = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700732
733 /* Assuming device rooted at this time */
Shashank Mittala0032282011-08-26 14:50:11 -0700734 device.is_tampered = 1;
Shashank Mittal162244e2011-08-08 19:01:25 -0700735
Shashank Mittalcd98d472011-08-02 14:29:24 -0700736 /* Read image without signature */
737 if (flash_read(ptn, offset, (void *)image_addr, imagesize_actual))
738 {
739 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
740 return -1;
741 }
Dima Zavin214cc642009-01-26 11:16:21 -0800742
Shashank Mittalcd98d472011-08-02 14:29:24 -0700743 offset = imagesize_actual;
744 /* Read signature */
745 if (flash_read(ptn, offset, (void *)(image_addr + offset), page_size))
746 {
747 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
748 }
749 else
750 {
751
752 /* Verify signature */
753 auth_kernel_img = image_verify((unsigned char *)image_addr,
754 (unsigned char *)(image_addr + imagesize_actual),
755 imagesize_actual,
756 CRYPTO_AUTH_ALG_SHA256);
Shashank Mittal162244e2011-08-08 19:01:25 -0700757
758 if(auth_kernel_img)
759 {
760 /* Authorized kernel */
Shashank Mittala0032282011-08-26 14:50:11 -0700761 device.is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700762 }
Shashank Mittalcd98d472011-08-02 14:29:24 -0700763 }
764
765 /* Move kernel and ramdisk to correct address */
766 memmove((void*) hdr->kernel_addr, (char *)(image_addr + page_size), hdr->kernel_size);
767 memmove((void*) hdr->ramdisk_addr, (char *)(image_addr + page_size + kernel_actual), hdr->ramdisk_size);
Shashank Mittal162244e2011-08-08 19:01:25 -0700768
769 /* Make sure everything from scratch address is read before next step!*/
Shashank Mittala0032282011-08-26 14:50:11 -0700770 if(device.is_tampered)
Shashank Mittal162244e2011-08-08 19:01:25 -0700771 {
772 write_device_info_flash(&device);
773 }
Channagoud Kadabi5c86fe32012-02-16 10:58:48 +0530774#if USE_PCOM_SECBOOT
775 set_tamper_flag(device.is_tampered);
776#endif
Shashank Mittalcd98d472011-08-02 14:29:24 -0700777 }
778 else
779 {
Shashank Mittal162244e2011-08-08 19:01:25 -0700780 offset = page_size;
781
Shashank Mittalcd98d472011-08-02 14:29:24 -0700782 n = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
783 if (flash_read(ptn, offset, (void *)hdr->kernel_addr, n)) {
784 dprintf(CRITICAL, "ERROR: Cannot read kernel image\n");
785 return -1;
786 }
787 offset += n;
788
789 n = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
790 if (flash_read(ptn, offset, (void *)hdr->ramdisk_addr, n)) {
791 dprintf(CRITICAL, "ERROR: Cannot read ramdisk image\n");
792 return -1;
793 }
794 offset += n;
795 }
David Ng183a7422009-12-07 14:55:21 -0800796continue_boot:
Dima Zavin214cc642009-01-26 11:16:21 -0800797 dprintf(INFO, "\nkernel @ %x (%d bytes)\n", hdr->kernel_addr,
798 hdr->kernel_size);
799 dprintf(INFO, "ramdisk @ %x (%d bytes)\n", hdr->ramdisk_addr,
800 hdr->ramdisk_size);
801
802 if(hdr->cmdline[0]) {
803 cmdline = (char*) hdr->cmdline;
804 } else {
805 cmdline = DEFAULT_CMDLINE;
806 }
807 dprintf(INFO, "cmdline = '%s'\n", cmdline);
808
809 /* TODO: create/pass atags to kernel */
810
811 dprintf(INFO, "\nBooting Linux\n");
Ajay Dudanie28a6072011-07-01 13:59:46 -0700812 boot_linux((void *)hdr->kernel_addr, (void *)hdr->tags_addr,
Chandan Uddaraju885e4db2009-12-03 22:45:26 -0800813 (const char *)cmdline, board_machtype(),
Dima Zavin214cc642009-01-26 11:16:21 -0800814 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
815
816 return 0;
817}
Brian Swetland9c4c0752009-01-25 16:23:50 -0800818
Shashank Mittal162244e2011-08-08 19:01:25 -0700819unsigned char info_buf[4096];
820void write_device_info_mmc(device_info *dev)
821{
822 struct device_info *info = (void*) info_buf;
823 unsigned long long ptn = 0;
824 unsigned long long size;
825 int index = INVALID_PTN;
826
827 index = partition_get_index("aboot");
828 ptn = partition_get_offset(index);
829 if(ptn == 0)
830 {
831 return;
832 }
833
834 size = partition_get_size(index);
835
836 memcpy(info, dev, sizeof(device_info));
837
838 if(mmc_write((ptn + size - 512), 512, (void *)info_buf))
839 {
840 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
841 return;
842 }
843}
844
845void read_device_info_mmc(device_info *dev)
846{
847 struct device_info *info = (void*) info_buf;
848 unsigned long long ptn = 0;
849 unsigned long long size;
850 int index = INVALID_PTN;
851
852 index = partition_get_index("aboot");
853 ptn = partition_get_offset(index);
854 if(ptn == 0)
855 {
856 return;
857 }
858
859 size = partition_get_size(index);
860
861 if(mmc_read((ptn + size - 512), (void *)info_buf, 512))
862 {
863 dprintf(CRITICAL, "ERROR: Cannot read device info\n");
864 return;
865 }
866
867 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
868 {
869 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
870 info->is_unlocked = 0;
Shashank Mittala0032282011-08-26 14:50:11 -0700871 info->is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700872
873 write_device_info_mmc(info);
874 }
875 memcpy(dev, info, sizeof(device_info));
876}
877
878void write_device_info_flash(device_info *dev)
879{
880 struct device_info *info = (void *) info_buf;
881 struct ptentry *ptn;
882 struct ptable *ptable;
883
884 ptable = flash_get_ptable();
885 if (ptable == NULL)
886 {
887 dprintf(CRITICAL, "ERROR: Partition table not found\n");
888 return;
889 }
890
891 ptn = ptable_find(ptable, "devinfo");
892 if (ptn == NULL)
893 {
894 dprintf(CRITICAL, "ERROR: No boot partition found\n");
895 return;
896 }
897
898 memcpy(info, dev, sizeof(device_info));
899
900 if (flash_write(ptn, 0, (void *)info_buf, page_size))
901 {
902 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
903 return;
904 }
905}
906
907void read_device_info_flash(device_info *dev)
908{
909 struct device_info *info = (void*) info_buf;
910 struct ptentry *ptn;
911 struct ptable *ptable;
912
913 ptable = flash_get_ptable();
914 if (ptable == NULL)
915 {
916 dprintf(CRITICAL, "ERROR: Partition table not found\n");
917 return;
918 }
919
920 ptn = ptable_find(ptable, "devinfo");
921 if (ptn == NULL)
922 {
923 dprintf(CRITICAL, "ERROR: No boot partition found\n");
924 return;
925 }
926
927 if (flash_read(ptn, 0, (void *)info_buf, page_size))
928 {
929 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
930 return;
931 }
932
933 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
934 {
Shashank Mittal162244e2011-08-08 19:01:25 -0700935 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
936 info->is_unlocked = 0;
Shashank Mittala0032282011-08-26 14:50:11 -0700937 info->is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700938 write_device_info_flash(info);
939 }
940 memcpy(dev, info, sizeof(device_info));
941}
942
943void write_device_info(device_info *dev)
944{
945 if(target_is_emmc_boot())
946 {
947 write_device_info_mmc(dev);
948 }
949 else
950 {
951 write_device_info_flash(dev);
952 }
953}
954
955void read_device_info(device_info *dev)
956{
957 if(target_is_emmc_boot())
958 {
959 read_device_info_mmc(dev);
960 }
961 else
962 {
963 read_device_info_flash(dev);
964 }
965}
966
967void reset_device_info()
968{
969 dprintf(ALWAYS, "reset_device_info called.");
Shashank Mittala0032282011-08-26 14:50:11 -0700970 device.is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -0700971 write_device_info(&device);
972}
973
974void set_device_root()
975{
976 dprintf(ALWAYS, "set_device_root called.");
Shashank Mittala0032282011-08-26 14:50:11 -0700977 device.is_tampered = 1;
Shashank Mittal162244e2011-08-08 19:01:25 -0700978 write_device_info(&device);
979}
980
Brian Swetland9c4c0752009-01-25 16:23:50 -0800981void cmd_boot(const char *arg, void *data, unsigned sz)
982{
983 unsigned kernel_actual;
984 unsigned ramdisk_actual;
985 static struct boot_img_hdr hdr;
986 char *ptr = ((char*) data);
987
988 if (sz < sizeof(hdr)) {
989 fastboot_fail("invalid bootimage header");
990 return;
991 }
992
993 memcpy(&hdr, data, sizeof(hdr));
994
995 /* ensure commandline is terminated */
996 hdr.cmdline[BOOT_ARGS_SIZE-1] = 0;
997
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -0700998 if(target_is_emmc_boot() && hdr.page_size) {
999 page_size = hdr.page_size;
1000 page_mask = page_size - 1;
1001 }
1002
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001003 kernel_actual = ROUND_TO_PAGE(hdr.kernel_size, page_mask);
1004 ramdisk_actual = ROUND_TO_PAGE(hdr.ramdisk_size, page_mask);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001005
Shashank Mittal1f0e2662011-09-01 15:06:00 -07001006 /* sz should have atleast raw boot image */
1007 if (page_size + kernel_actual + ramdisk_actual > sz) {
Brian Swetland9c4c0752009-01-25 16:23:50 -08001008 fastboot_fail("incomplete bootimage");
1009 return;
1010 }
1011
Ajay Dudanie28a6072011-07-01 13:59:46 -07001012 memmove((void*) hdr.kernel_addr, ptr + page_size, hdr.kernel_size);
1013 memmove((void*) hdr.ramdisk_addr, ptr + page_size + kernel_actual, hdr.ramdisk_size);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001014
1015 fastboot_okay("");
1016 udc_stop();
1017
Amol Jadie67872e2011-06-27 14:14:11 -07001018 boot_linux((void*) hdr.kernel_addr, (void*) hdr.tags_addr,
Chandan Uddaraju885e4db2009-12-03 22:45:26 -08001019 (const char*) hdr.cmdline, board_machtype(),
Ajay Dudanie28a6072011-07-01 13:59:46 -07001020 (void*) hdr.ramdisk_addr, hdr.ramdisk_size);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001021}
1022
Dima Zavin214cc642009-01-26 11:16:21 -08001023void cmd_erase(const char *arg, void *data, unsigned sz)
1024{
1025 struct ptentry *ptn;
1026 struct ptable *ptable;
1027
1028 ptable = flash_get_ptable();
1029 if (ptable == NULL) {
1030 fastboot_fail("partition table doesn't exist");
1031 return;
1032 }
1033
1034 ptn = ptable_find(ptable, arg);
1035 if (ptn == NULL) {
1036 fastboot_fail("unknown partition name");
1037 return;
1038 }
1039
1040 if (flash_erase(ptn)) {
1041 fastboot_fail("failed to erase partition");
1042 return;
1043 }
1044 fastboot_okay("");
1045}
1046
Bikas Gurungd48bd242010-09-04 19:54:32 -07001047
1048void cmd_erase_mmc(const char *arg, void *data, unsigned sz)
1049{
1050 unsigned long long ptn = 0;
neetidb4b24d62012-01-20 12:13:09 -08001051 unsigned int out[512] = {0};
Kinson Chikf1a43512011-07-14 11:28:39 -07001052 int index = INVALID_PTN;
Bikas Gurungd48bd242010-09-04 19:54:32 -07001053
Kinson Chikf1a43512011-07-14 11:28:39 -07001054 index = partition_get_index(arg);
1055 ptn = partition_get_offset(index);
Neeti Desaica8c9602011-10-06 11:40:00 -07001056
Kinson Chikf1a43512011-07-14 11:28:39 -07001057 if(ptn == 0) {
Neeti Desaica8c9602011-10-06 11:40:00 -07001058 fastboot_fail("Partition table doesn't exist\n");
Bikas Gurungd48bd242010-09-04 19:54:32 -07001059 return;
1060 }
neetidb4b24d62012-01-20 12:13:09 -08001061 /* Simple inefficient version of erase. Just writing
1062 0 in first block */
1063 if (mmc_write(ptn , 512, (unsigned int *)out)) {
1064 fastboot_fail("failed to erase partition");
Bikas Gurungd48bd242010-09-04 19:54:32 -07001065 return;
1066 }
1067 fastboot_okay("");
1068}
1069
1070
Ajay Dudani5c761132011-04-07 20:19:04 -07001071void cmd_flash_mmc_img(const char *arg, void *data, unsigned sz)
Shashank Mittal23b8f422010-04-16 19:27:21 -07001072{
1073 unsigned long long ptn = 0;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001074 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001075 int index = INVALID_PTN;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001076
Greg Grisco6e754772011-06-23 12:19:39 -07001077 if (!strcmp(arg, "partition"))
1078 {
1079 dprintf(INFO, "Attempt to write partition image.\n");
Neeti Desai5f26aff2011-09-30 10:27:40 -07001080 if (write_partition(sz, (unsigned char *) data)) {
Greg Grisco6e754772011-06-23 12:19:39 -07001081 fastboot_fail("failed to write partition");
Shashank Mittal23b8f422010-04-16 19:27:21 -07001082 return;
1083 }
1084 }
Greg Grisco6e754772011-06-23 12:19:39 -07001085 else
1086 {
Kinson Chikf1a43512011-07-14 11:28:39 -07001087 index = partition_get_index(arg);
1088 ptn = partition_get_offset(index);
Greg Grisco6e754772011-06-23 12:19:39 -07001089 if(ptn == 0) {
1090 fastboot_fail("partition table doesn't exist");
1091 return;
1092 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07001093
Greg Grisco6e754772011-06-23 12:19:39 -07001094 if (!strcmp(arg, "boot") || !strcmp(arg, "recovery")) {
1095 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1096 fastboot_fail("image is not a boot image");
1097 return;
1098 }
1099 }
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001100
Kinson Chikf1a43512011-07-14 11:28:39 -07001101 size = partition_get_size(index);
Greg Grisco6e754772011-06-23 12:19:39 -07001102 if (ROUND_TO_PAGE(sz,511) > size) {
1103 fastboot_fail("size too large");
1104 return;
1105 }
1106 else if (mmc_write(ptn , sz, (unsigned int *)data)) {
1107 fastboot_fail("flash write failure");
1108 return;
1109 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07001110 }
1111 fastboot_okay("");
1112 return;
1113}
1114
Ajay Dudani5c761132011-04-07 20:19:04 -07001115void cmd_flash_mmc_sparse_img(const char *arg, void *data, unsigned sz)
1116{
1117 unsigned int chunk;
1118 unsigned int chunk_data_sz;
1119 sparse_header_t *sparse_header;
1120 chunk_header_t *chunk_header;
Ajay Dudaniab18f022011-05-12 14:39:22 -07001121 uint32_t total_blocks = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07001122 unsigned long long ptn = 0;
Channagoud Kadabi65b91002011-10-11 17:34:33 +05301123 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001124 int index = INVALID_PTN;
Ajay Dudani5c761132011-04-07 20:19:04 -07001125
Kinson Chikf1a43512011-07-14 11:28:39 -07001126 index = partition_get_index(arg);
1127 ptn = partition_get_offset(index);
1128 if(ptn == 0) {
Ajay Dudani5c761132011-04-07 20:19:04 -07001129 fastboot_fail("partition table doesn't exist");
1130 return;
1131 }
1132
Channagoud Kadabi65b91002011-10-11 17:34:33 +05301133 size = partition_get_size(index);
1134 if (ROUND_TO_PAGE(sz,511) > size) {
1135 fastboot_fail("size too large");
1136 return;
1137 }
1138
Ajay Dudani5c761132011-04-07 20:19:04 -07001139 /* Read and skip over sparse image header */
1140 sparse_header = (sparse_header_t *) data;
1141 data += sparse_header->file_hdr_sz;
1142 if(sparse_header->file_hdr_sz > sizeof(sparse_header_t))
1143 {
1144 /* Skip the remaining bytes in a header that is longer than
1145 * we expected.
1146 */
1147 data += (sparse_header->file_hdr_sz - sizeof(sparse_header_t));
1148 }
1149
Ajay Dudanib06c05f2011-05-12 14:46:10 -07001150 dprintf (SPEW, "=== Sparse Image Header ===\n");
1151 dprintf (SPEW, "magic: 0x%x\n", sparse_header->magic);
1152 dprintf (SPEW, "major_version: 0x%x\n", sparse_header->major_version);
1153 dprintf (SPEW, "minor_version: 0x%x\n", sparse_header->minor_version);
1154 dprintf (SPEW, "file_hdr_sz: %d\n", sparse_header->file_hdr_sz);
1155 dprintf (SPEW, "chunk_hdr_sz: %d\n", sparse_header->chunk_hdr_sz);
1156 dprintf (SPEW, "blk_sz: %d\n", sparse_header->blk_sz);
1157 dprintf (SPEW, "total_blks: %d\n", sparse_header->total_blks);
1158 dprintf (SPEW, "total_chunks: %d\n", sparse_header->total_chunks);
Ajay Dudani5c761132011-04-07 20:19:04 -07001159
1160 /* Start processing chunks */
1161 for (chunk=0; chunk<sparse_header->total_chunks; chunk++)
1162 {
1163 /* Read and skip over chunk header */
1164 chunk_header = (chunk_header_t *) data;
1165 data += sizeof(chunk_header_t);
1166
1167 dprintf (SPEW, "=== Chunk Header ===\n");
1168 dprintf (SPEW, "chunk_type: 0x%x\n", chunk_header->chunk_type);
1169 dprintf (SPEW, "chunk_data_sz: 0x%x\n", chunk_header->chunk_sz);
1170 dprintf (SPEW, "total_size: 0x%x\n", chunk_header->total_sz);
1171
1172 if(sparse_header->chunk_hdr_sz > sizeof(chunk_header_t))
1173 {
1174 /* Skip the remaining bytes in a header that is longer than
1175 * we expected.
1176 */
1177 data += (sparse_header->chunk_hdr_sz - sizeof(chunk_header_t));
1178 }
1179
1180 chunk_data_sz = sparse_header->blk_sz * chunk_header->chunk_sz;
1181 switch (chunk_header->chunk_type)
1182 {
1183 case CHUNK_TYPE_RAW:
1184 if(chunk_header->total_sz != (sparse_header->chunk_hdr_sz +
1185 chunk_data_sz))
1186 {
1187 fastboot_fail("Bogus chunk size for chunk type Raw");
1188 return;
1189 }
1190
Ajay Dudaniab18f022011-05-12 14:39:22 -07001191 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
1192 chunk_data_sz,
1193 (unsigned int*)data))
Ajay Dudani5c761132011-04-07 20:19:04 -07001194 {
1195 fastboot_fail("flash write failure");
1196 return;
1197 }
1198 total_blocks += chunk_header->chunk_sz;
1199 data += chunk_data_sz;
1200 break;
1201
1202 case CHUNK_TYPE_DONT_CARE:
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07001203 total_blocks += chunk_header->chunk_sz;
1204 break;
1205
Ajay Dudani5c761132011-04-07 20:19:04 -07001206 case CHUNK_TYPE_CRC:
1207 if(chunk_header->total_sz != sparse_header->chunk_hdr_sz)
1208 {
1209 fastboot_fail("Bogus chunk size for chunk type Dont Care");
1210 return;
1211 }
1212 total_blocks += chunk_header->chunk_sz;
1213 data += chunk_data_sz;
1214 break;
1215
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07001216 default:
Ajay Dudani5c761132011-04-07 20:19:04 -07001217 fastboot_fail("Unknown chunk type");
1218 return;
1219 }
1220 }
1221
Ajay Dudani0c6927b2011-05-18 11:12:16 -07001222 dprintf(INFO, "Wrote %d blocks, expected to write %d blocks\n",
1223 total_blocks, sparse_header->total_blks);
1224
1225 if(total_blocks != sparse_header->total_blks)
1226 {
1227 fastboot_fail("sparse image write failure");
1228 }
Ajay Dudani5c761132011-04-07 20:19:04 -07001229
1230 fastboot_okay("");
1231 return;
1232}
1233
1234void cmd_flash_mmc(const char *arg, void *data, unsigned sz)
1235{
1236 sparse_header_t *sparse_header;
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001237 /* 8 Byte Magic + 2048 Byte xml + Encrypted Data */
1238 unsigned int *magic_number = (unsigned int *) data;
1239 int ret=0;
Ajay Dudani5c761132011-04-07 20:19:04 -07001240
Neeti Desai127b9e02012-03-20 16:11:23 -07001241 if (magic_number[0] == DECRYPT_MAGIC_0 &&
1242 magic_number[1] == DECRYPT_MAGIC_1)
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001243 {
1244#ifdef SSD_ENABLE
Neeti Desai127b9e02012-03-20 16:11:23 -07001245 ret = decrypt_scm((uint32 **) &data, &sz);
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001246#endif
Greg Griscod6250552011-06-29 14:40:23 -07001247 if (ret != 0) {
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001248 dprintf(CRITICAL, "ERROR: Invalid secure image\n");
1249 return;
1250 }
1251 }
Neeti Desai127b9e02012-03-20 16:11:23 -07001252 else if (magic_number[0] == ENCRYPT_MAGIC_0 &&
1253 magic_number[1] == ENCRYPT_MAGIC_1)
1254 {
1255#ifdef SSD_ENABLE
1256 ret = encrypt_scm((uint32 **) &data, &sz);
1257#endif
1258 if (ret != 0) {
1259 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
1260 return;
1261 }
1262 }
1263
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001264 sparse_header = (sparse_header_t *) data;
Ajay Dudani5c761132011-04-07 20:19:04 -07001265 if (sparse_header->magic != SPARSE_HEADER_MAGIC)
1266 cmd_flash_mmc_img(arg, data, sz);
1267 else
1268 cmd_flash_mmc_sparse_img(arg, data, sz);
Ajay Dudani5c761132011-04-07 20:19:04 -07001269 return;
1270}
1271
Dima Zavin214cc642009-01-26 11:16:21 -08001272void cmd_flash(const char *arg, void *data, unsigned sz)
1273{
1274 struct ptentry *ptn;
1275 struct ptable *ptable;
1276 unsigned extra = 0;
1277
1278 ptable = flash_get_ptable();
1279 if (ptable == NULL) {
1280 fastboot_fail("partition table doesn't exist");
1281 return;
1282 }
1283
1284 ptn = ptable_find(ptable, arg);
1285 if (ptn == NULL) {
1286 fastboot_fail("unknown partition name");
1287 return;
1288 }
1289
1290 if (!strcmp(ptn->name, "boot") || !strcmp(ptn->name, "recovery")) {
1291 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1292 fastboot_fail("image is not a boot image");
1293 return;
1294 }
1295 }
1296
Amol Jadi5c61a952012-05-04 17:05:35 -07001297 if (!strcmp(ptn->name, "system")
Deepa Dinamani13e32c42012-03-12 14:34:17 -07001298 || !strcmp(ptn->name, "userdata")
1299 || !strcmp(ptn->name, "persist")
1300 || !strcmp(ptn->name, "recoveryfs")) {
Channagoud Kadabi404a7062011-03-21 19:27:50 +05301301 if (flash_ecc_bch_enabled())
1302 /* Spare data bytes for 8 bit ECC increased by 4 */
1303 extra = ((page_size >> 9) * 20);
1304 else
1305 extra = ((page_size >> 9) * 16);
1306 } else
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001307 sz = ROUND_TO_PAGE(sz, page_mask);
Dima Zavin214cc642009-01-26 11:16:21 -08001308
1309 dprintf(INFO, "writing %d bytes to '%s'\n", sz, ptn->name);
1310 if (flash_write(ptn, extra, data, sz)) {
1311 fastboot_fail("flash write failure");
1312 return;
1313 }
1314 dprintf(INFO, "partition '%s' updated\n", ptn->name);
1315 fastboot_okay("");
1316}
1317
1318void cmd_continue(const char *arg, void *data, unsigned sz)
1319{
1320 fastboot_okay("");
1321 udc_stop();
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001322 if (target_is_emmc_boot())
1323 {
1324 boot_linux_from_mmc();
1325 }
1326 else
1327 {
1328 boot_linux_from_flash();
1329 }
Dima Zavin214cc642009-01-26 11:16:21 -08001330}
1331
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001332void cmd_reboot(const char *arg, void *data, unsigned sz)
1333{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001334 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001335 fastboot_okay("");
1336 reboot_device(0);
1337}
1338
1339void cmd_reboot_bootloader(const char *arg, void *data, unsigned sz)
1340{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001341 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001342 fastboot_okay("");
1343 reboot_device(FASTBOOT_MODE);
1344}
1345
Shashank Mittal162244e2011-08-08 19:01:25 -07001346void cmd_oem_unlock(const char *arg, void *data, unsigned sz)
1347{
1348 if(!device.is_unlocked)
1349 {
1350 device.is_unlocked = 1;
1351 write_device_info(&device);
1352 }
1353 fastboot_okay("");
1354}
1355
Shashank Mittala0032282011-08-26 14:50:11 -07001356void cmd_oem_devinfo(const char *arg, void *data, unsigned sz)
1357{
1358 char response[64];
1359 snprintf(response, 64, "\tDevice tampered: %s", (device.is_tampered ? "true" : "false"));
1360 fastboot_info(response);
1361 snprintf(response, 64, "\tDevice unlocked: %s", (device.is_unlocked ? "true" : "false"));
1362 fastboot_info(response);
1363 fastboot_okay("");
1364}
1365
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001366void splash_screen ()
1367{
1368 struct ptentry *ptn;
1369 struct ptable *ptable;
1370 struct fbcon_config *fb_display = NULL;
1371
1372 if (!target_is_emmc_boot())
1373 {
1374 ptable = flash_get_ptable();
1375 if (ptable == NULL) {
1376 dprintf(CRITICAL, "ERROR: Partition table not found\n");
Greg Griscod6250552011-06-29 14:40:23 -07001377 return;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001378 }
1379
1380 ptn = ptable_find(ptable, "splash");
1381 if (ptn == NULL) {
1382 dprintf(CRITICAL, "ERROR: No splash partition found\n");
1383 } else {
1384 fb_display = fbcon_display();
1385 if (fb_display) {
1386 if (flash_read(ptn, 0, fb_display->base,
1387 (fb_display->width * fb_display->height * fb_display->bpp/8))) {
1388 fbcon_clear();
1389 dprintf(CRITICAL, "ERROR: Cannot read splash image\n");
1390 }
1391 }
1392 }
1393 }
1394}
1395
Brian Swetland9c4c0752009-01-25 16:23:50 -08001396void aboot_init(const struct app_descriptor *app)
1397{
Shashank Mittal4f99a882010-02-01 13:58:50 -08001398 unsigned reboot_mode = 0;
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001399 unsigned usb_init = 0;
Vivek Mehta5f1c9d42011-04-01 20:11:59 -07001400 unsigned sz = 0;
Chandan Uddarajubedca152010-06-02 23:05:15 -07001401
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001402 /* Setup page size information for nand/emmc reads */
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001403 if (target_is_emmc_boot())
1404 {
1405 page_size = 2048;
1406 page_mask = page_size - 1;
1407 }
1408 else
1409 {
1410 page_size = flash_page_size();
1411 page_mask = page_size - 1;
1412 }
1413
Shashank Mittal162244e2011-08-08 19:01:25 -07001414 if(target_use_signed_kernel())
1415 {
1416 read_device_info(&device);
1417
Shashank Mittal162244e2011-08-08 19:01:25 -07001418 }
1419
Greg Griscod6250552011-06-29 14:40:23 -07001420 target_serialno((unsigned char *) sn_buf);
Ajay Dudanib06c05f2011-05-12 14:46:10 -07001421 dprintf(SPEW,"serial number: %s\n",sn_buf);
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -08001422 surf_udc_device.serialno = sn_buf;
1423
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001424 /* Check if we should do something other than booting up */
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001425 if (keys_get_state(KEY_HOME) != 0)
1426 boot_into_recovery = 1;
Wentao Xu153902c2010-12-20 16:20:52 -05001427 if (keys_get_state(KEY_VOLUMEUP) != 0)
1428 boot_into_recovery = 1;
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07001429 if(!boot_into_recovery)
1430 {
1431 if (keys_get_state(KEY_BACK) != 0)
1432 goto fastboot;
1433 if (keys_get_state(KEY_VOLUMEDOWN) != 0)
1434 goto fastboot;
1435 }
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001436
1437 #if NO_KEYPAD_DRIVER
Kinson Chik0b1c8162011-08-31 16:31:57 -07001438 if (fastboot_trigger())
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001439 goto fastboot;
1440 #endif
Chandan Uddarajubedca152010-06-02 23:05:15 -07001441
Ajay Dudani77421292010-10-27 19:34:06 -07001442 reboot_mode = check_reboot_mode();
1443 if (reboot_mode == RECOVERY_MODE) {
1444 boot_into_recovery = 1;
1445 } else if(reboot_mode == FASTBOOT_MODE) {
1446 goto fastboot;
1447 }
1448
Shashank Mittal23b8f422010-04-16 19:27:21 -07001449 if (target_is_emmc_boot())
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001450 {
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07001451 if(emmc_recovery_init())
1452 dprintf(ALWAYS,"error in emmc_recovery_init\n");
Shashank Mittala0032282011-08-26 14:50:11 -07001453 if(target_use_signed_kernel())
1454 {
1455 if((device.is_unlocked) || (device.is_tampered))
1456 {
1457 #ifdef TZ_TAMPER_FUSE
1458 set_tamper_fuse_cmd();
1459 #endif
Channagoud Kadabibf695c62012-04-10 13:31:56 +05301460 #if USE_PCOM_SECBOOT
1461 set_tamper_flag(device.is_tampered);
1462 #endif
Shashank Mittala0032282011-08-26 14:50:11 -07001463 }
1464 }
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001465 boot_linux_from_mmc();
1466 }
1467 else
1468 {
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001469 recovery_init();
Channagoud Kadabie7b66702012-03-22 15:54:30 +05301470#if USE_PCOM_SECBOOT
1471 if((device.is_unlocked) || (device.is_tampered))
1472 set_tamper_flag(device.is_tampered);
1473#endif
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001474 boot_linux_from_flash();
1475 }
Dima Zavinb4283602009-01-26 16:36:57 -08001476 dprintf(CRITICAL, "ERROR: Could not do normal boot. Reverting "
1477 "to fastboot mode.\n");
1478
1479fastboot:
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001480
Shashank Mittal162244e2011-08-08 19:01:25 -07001481 target_fastboot_init();
Amol Jadi57abe4c2011-05-24 15:47:27 -07001482
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001483 if(!usb_init)
1484 udc_init(&surf_udc_device);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001485
1486 fastboot_register("boot", cmd_boot);
Bikas Gurungd48bd242010-09-04 19:54:32 -07001487
Shashank Mittal23b8f422010-04-16 19:27:21 -07001488 if (target_is_emmc_boot())
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001489 {
1490 fastboot_register("flash:", cmd_flash_mmc);
Bikas Gurungd48bd242010-09-04 19:54:32 -07001491 fastboot_register("erase:", cmd_erase_mmc);
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001492 }
1493 else
1494 {
1495 fastboot_register("flash:", cmd_flash);
Bikas Gurungd48bd242010-09-04 19:54:32 -07001496 fastboot_register("erase:", cmd_erase);
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001497 }
1498
1499 fastboot_register("continue", cmd_continue);
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001500 fastboot_register("reboot", cmd_reboot);
1501 fastboot_register("reboot-bootloader", cmd_reboot_bootloader);
Shashank Mittal162244e2011-08-08 19:01:25 -07001502 fastboot_register("oem unlock", cmd_oem_unlock);
Shashank Mittala0032282011-08-26 14:50:11 -07001503 fastboot_register("oem device-info", cmd_oem_devinfo);
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -07001504 fastboot_publish("product", TARGET(BOARD));
Brian Swetland9c4c0752009-01-25 16:23:50 -08001505 fastboot_publish("kernel", "lk");
Trevor Bourget59b25d52012-01-13 18:43:36 -08001506 fastboot_publish("serialno", sn_buf);
Kinson Chikf1a43512011-07-14 11:28:39 -07001507 partition_dump();
Vivek Mehta5f1c9d42011-04-01 20:11:59 -07001508 sz = target_get_max_flash_size();
1509 fastboot_init(target_get_scratch_address(), sz);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001510 udc_start();
Brian Swetland9c4c0752009-01-25 16:23:50 -08001511}
1512
1513APP_START(aboot)
1514 .init = aboot_init,
1515APP_END
1516
Neeti Desai17379b82012-06-04 18:42:53 -07001517#if DEVICE_TREE
Neeti Desai465491e2012-07-31 12:53:35 -07001518struct dt_entry * get_device_tree_ptr(struct dt_table *table)
1519{
1520 unsigned i;
1521 struct dt_entry *dt_entry_ptr;
1522
1523 dt_entry_ptr = (char *)table + DEV_TREE_HEADER_SIZE ;
1524
1525 for(i = 0; i < table->num_entries; i++)
1526 {
1527 if((dt_entry_ptr->platform_id == board_platform_id()) &&
1528 (dt_entry_ptr->variant_id == board_hardware_id()) &&
1529 (dt_entry_ptr->soc_rev == 0)){
1530 return dt_entry_ptr;
1531 }
1532 dt_entry_ptr++;
1533 }
1534 return NULL;
1535}
1536
Neeti Desai17379b82012-06-04 18:42:53 -07001537int update_device_tree(const void * fdt, char *cmdline,
1538 void *ramdisk, unsigned ramdisk_size)
1539{
1540 int ret = 0;
1541 int offset;
1542 uint32_t *memory_reg;
1543 unsigned char *final_cmdline;
1544 uint32_t len;
1545
1546 /* Check the device tree header */
1547 ret = fdt_check_header(fdt);
1548 if(ret)
1549 {
1550 dprintf(CRITICAL, "Invalid device tree header \n");
1551 return ret;
1552 }
1553
1554 /* Get offset of the memory node */
1555 offset = fdt_path_offset(fdt,"/memory");
1556
1557 memory_reg = target_dev_tree_mem(&len);
1558
1559 /* Adding the memory values to the reg property */
1560 ret = fdt_setprop(fdt, offset, "reg", memory_reg, sizeof(uint32_t) * len * 2);
1561 if(ret)
1562 {
1563 dprintf(CRITICAL, "ERROR: Cannot update memory node\n");
1564 return ret;
1565 }
1566
1567 /* Get offset of the chosen node */
1568 offset = fdt_path_offset(fdt, "/chosen");
1569
1570 /* Adding the cmdline to the chosen node */
1571 final_cmdline = update_cmdline(cmdline);
1572 ret = fdt_setprop_string(fdt, offset, "bootargs", final_cmdline);
1573 if(ret)
1574 {
1575 dprintf(CRITICAL, "ERROR: Cannot update chosen node [bootargs]\n");
1576 return ret;
1577 }
1578
1579 /* Adding the initrd-start to the chosen node */
1580 ret = fdt_setprop_cell(fdt, offset, "linux,initrd-start", ramdisk);
1581 if(ret)
1582 {
1583 dprintf(CRITICAL, "ERROR: Cannot update chosen node [linux,initrd-start]\n");
1584 return ret;
1585 }
1586
1587 /* Adding the initrd-end to the chosen node */
1588 ret = fdt_setprop_cell(fdt, offset, "linux,initrd-end", (ramdisk + ramdisk_size));
1589 if(ret)
1590 {
1591 dprintf(CRITICAL, "ERROR: Cannot update chosen node [linux,initrd-end]\n");
1592 return ret;
1593 }
1594
1595 fdt_pack(fdt);
1596
1597 return ret;
1598}
1599#endif