blob: c8c7e17cfe98cca3d2be80830f60e9090e4147c4 [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
Amol Jadicb524072012-08-09 16:40:18 -0700981#if DEVICE_TREE
982int copy_dtb(uint8_t *boot_image_start)
983{
984 uint32 dt_image_offset = 0;
985 uint32_t n;
986 struct dt_table *table;
987 struct dt_entry *dt_entry_ptr;
988 unsigned dt_table_offset;
989
990 struct boot_img_hdr *hdr = (struct boot_img_hdr *) (boot_image_start);
991
992
993 if(hdr->dt_size != 0) {
994
995 /* add kernel offset */
996 dt_image_offset += page_size;
997 n = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
998 dt_image_offset += n;
999
1000 /* add ramdisk offset */
1001 n = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
1002 dt_image_offset += n;
1003
1004 /* add second offset */
1005 if(hdr->second_size != 0) {
1006 n = ROUND_TO_PAGE(hdr->second_size, page_mask);
1007 dt_image_offset += n;
1008 }
1009
1010 /* offset now point to start of dt.img */
1011 table = boot_image_start + dt_image_offset;
1012
1013 /* Restriction that the device tree entry table should be less than a page*/
1014 ASSERT(((table->num_entries * sizeof(struct dt_entry))+ DEV_TREE_HEADER_SIZE) < hdr->page_size);
1015
1016 /* Validate the device tree table header */
1017 if((table->magic != DEV_TREE_MAGIC) && (table->version != DEV_TREE_VERSION)) {
1018 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1019 return -1;
1020 }
1021
1022 /* Calculate the offset of device tree within device tree table */
1023 if((dt_entry_ptr = get_device_tree_ptr(table)) == NULL){
1024 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1025 return -1;
1026 }
1027
1028 /* Read device device tree in the "tags_add */
1029 memmove((void*) hdr->tags_addr, boot_image_start + dt_image_offset + dt_entry_ptr->offset, dt_entry_ptr->size);
1030 }
1031
1032 /* Everything looks fine. Return success. */
1033 return 0;
1034}
1035#endif
1036
Brian Swetland9c4c0752009-01-25 16:23:50 -08001037void cmd_boot(const char *arg, void *data, unsigned sz)
1038{
1039 unsigned kernel_actual;
1040 unsigned ramdisk_actual;
1041 static struct boot_img_hdr hdr;
1042 char *ptr = ((char*) data);
1043
1044 if (sz < sizeof(hdr)) {
1045 fastboot_fail("invalid bootimage header");
1046 return;
1047 }
1048
1049 memcpy(&hdr, data, sizeof(hdr));
1050
1051 /* ensure commandline is terminated */
1052 hdr.cmdline[BOOT_ARGS_SIZE-1] = 0;
1053
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07001054 if(target_is_emmc_boot() && hdr.page_size) {
1055 page_size = hdr.page_size;
1056 page_mask = page_size - 1;
1057 }
1058
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001059 kernel_actual = ROUND_TO_PAGE(hdr.kernel_size, page_mask);
1060 ramdisk_actual = ROUND_TO_PAGE(hdr.ramdisk_size, page_mask);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001061
Shashank Mittal1f0e2662011-09-01 15:06:00 -07001062 /* sz should have atleast raw boot image */
1063 if (page_size + kernel_actual + ramdisk_actual > sz) {
Brian Swetland9c4c0752009-01-25 16:23:50 -08001064 fastboot_fail("incomplete bootimage");
1065 return;
1066 }
1067
Amol Jadicb524072012-08-09 16:40:18 -07001068#if DEVICE_TREE
1069 /* find correct dtb and copy it to right location */
1070 if(copy_dtb(data))
1071 {
1072 fastboot_fail("dtb not found");
1073 return;
1074 }
1075#endif
Brian Swetland9c4c0752009-01-25 16:23:50 -08001076
1077 fastboot_okay("");
1078 udc_stop();
1079
Amol Jadicb524072012-08-09 16:40:18 -07001080 memmove((void*) hdr.kernel_addr, ptr + page_size, hdr.kernel_size);
1081 memmove((void*) hdr.ramdisk_addr, ptr + page_size + kernel_actual, hdr.ramdisk_size);
1082
Amol Jadie67872e2011-06-27 14:14:11 -07001083 boot_linux((void*) hdr.kernel_addr, (void*) hdr.tags_addr,
Chandan Uddaraju885e4db2009-12-03 22:45:26 -08001084 (const char*) hdr.cmdline, board_machtype(),
Ajay Dudanie28a6072011-07-01 13:59:46 -07001085 (void*) hdr.ramdisk_addr, hdr.ramdisk_size);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001086}
1087
Dima Zavin214cc642009-01-26 11:16:21 -08001088void cmd_erase(const char *arg, void *data, unsigned sz)
1089{
1090 struct ptentry *ptn;
1091 struct ptable *ptable;
1092
1093 ptable = flash_get_ptable();
1094 if (ptable == NULL) {
1095 fastboot_fail("partition table doesn't exist");
1096 return;
1097 }
1098
1099 ptn = ptable_find(ptable, arg);
1100 if (ptn == NULL) {
1101 fastboot_fail("unknown partition name");
1102 return;
1103 }
1104
1105 if (flash_erase(ptn)) {
1106 fastboot_fail("failed to erase partition");
1107 return;
1108 }
1109 fastboot_okay("");
1110}
1111
Bikas Gurungd48bd242010-09-04 19:54:32 -07001112
1113void cmd_erase_mmc(const char *arg, void *data, unsigned sz)
1114{
1115 unsigned long long ptn = 0;
neetidb4b24d62012-01-20 12:13:09 -08001116 unsigned int out[512] = {0};
Kinson Chikf1a43512011-07-14 11:28:39 -07001117 int index = INVALID_PTN;
Bikas Gurungd48bd242010-09-04 19:54:32 -07001118
Kinson Chikf1a43512011-07-14 11:28:39 -07001119 index = partition_get_index(arg);
1120 ptn = partition_get_offset(index);
Neeti Desaica8c9602011-10-06 11:40:00 -07001121
Kinson Chikf1a43512011-07-14 11:28:39 -07001122 if(ptn == 0) {
Neeti Desaica8c9602011-10-06 11:40:00 -07001123 fastboot_fail("Partition table doesn't exist\n");
Bikas Gurungd48bd242010-09-04 19:54:32 -07001124 return;
1125 }
neetidb4b24d62012-01-20 12:13:09 -08001126 /* Simple inefficient version of erase. Just writing
1127 0 in first block */
1128 if (mmc_write(ptn , 512, (unsigned int *)out)) {
1129 fastboot_fail("failed to erase partition");
Bikas Gurungd48bd242010-09-04 19:54:32 -07001130 return;
1131 }
1132 fastboot_okay("");
1133}
1134
1135
Ajay Dudani5c761132011-04-07 20:19:04 -07001136void cmd_flash_mmc_img(const char *arg, void *data, unsigned sz)
Shashank Mittal23b8f422010-04-16 19:27:21 -07001137{
1138 unsigned long long ptn = 0;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001139 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001140 int index = INVALID_PTN;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001141
Greg Grisco6e754772011-06-23 12:19:39 -07001142 if (!strcmp(arg, "partition"))
1143 {
1144 dprintf(INFO, "Attempt to write partition image.\n");
Neeti Desai5f26aff2011-09-30 10:27:40 -07001145 if (write_partition(sz, (unsigned char *) data)) {
Greg Grisco6e754772011-06-23 12:19:39 -07001146 fastboot_fail("failed to write partition");
Shashank Mittal23b8f422010-04-16 19:27:21 -07001147 return;
1148 }
1149 }
Greg Grisco6e754772011-06-23 12:19:39 -07001150 else
1151 {
Kinson Chikf1a43512011-07-14 11:28:39 -07001152 index = partition_get_index(arg);
1153 ptn = partition_get_offset(index);
Greg Grisco6e754772011-06-23 12:19:39 -07001154 if(ptn == 0) {
1155 fastboot_fail("partition table doesn't exist");
1156 return;
1157 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07001158
Greg Grisco6e754772011-06-23 12:19:39 -07001159 if (!strcmp(arg, "boot") || !strcmp(arg, "recovery")) {
1160 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1161 fastboot_fail("image is not a boot image");
1162 return;
1163 }
1164 }
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001165
Kinson Chikf1a43512011-07-14 11:28:39 -07001166 size = partition_get_size(index);
Greg Grisco6e754772011-06-23 12:19:39 -07001167 if (ROUND_TO_PAGE(sz,511) > size) {
1168 fastboot_fail("size too large");
1169 return;
1170 }
1171 else if (mmc_write(ptn , sz, (unsigned int *)data)) {
1172 fastboot_fail("flash write failure");
1173 return;
1174 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07001175 }
1176 fastboot_okay("");
1177 return;
1178}
1179
Ajay Dudani5c761132011-04-07 20:19:04 -07001180void cmd_flash_mmc_sparse_img(const char *arg, void *data, unsigned sz)
1181{
1182 unsigned int chunk;
1183 unsigned int chunk_data_sz;
1184 sparse_header_t *sparse_header;
1185 chunk_header_t *chunk_header;
Ajay Dudaniab18f022011-05-12 14:39:22 -07001186 uint32_t total_blocks = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07001187 unsigned long long ptn = 0;
Channagoud Kadabi65b91002011-10-11 17:34:33 +05301188 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001189 int index = INVALID_PTN;
Ajay Dudani5c761132011-04-07 20:19:04 -07001190
Kinson Chikf1a43512011-07-14 11:28:39 -07001191 index = partition_get_index(arg);
1192 ptn = partition_get_offset(index);
1193 if(ptn == 0) {
Ajay Dudani5c761132011-04-07 20:19:04 -07001194 fastboot_fail("partition table doesn't exist");
1195 return;
1196 }
1197
Channagoud Kadabi65b91002011-10-11 17:34:33 +05301198 size = partition_get_size(index);
1199 if (ROUND_TO_PAGE(sz,511) > size) {
1200 fastboot_fail("size too large");
1201 return;
1202 }
1203
Ajay Dudani5c761132011-04-07 20:19:04 -07001204 /* Read and skip over sparse image header */
1205 sparse_header = (sparse_header_t *) data;
1206 data += sparse_header->file_hdr_sz;
1207 if(sparse_header->file_hdr_sz > sizeof(sparse_header_t))
1208 {
1209 /* Skip the remaining bytes in a header that is longer than
1210 * we expected.
1211 */
1212 data += (sparse_header->file_hdr_sz - sizeof(sparse_header_t));
1213 }
1214
Ajay Dudanib06c05f2011-05-12 14:46:10 -07001215 dprintf (SPEW, "=== Sparse Image Header ===\n");
1216 dprintf (SPEW, "magic: 0x%x\n", sparse_header->magic);
1217 dprintf (SPEW, "major_version: 0x%x\n", sparse_header->major_version);
1218 dprintf (SPEW, "minor_version: 0x%x\n", sparse_header->minor_version);
1219 dprintf (SPEW, "file_hdr_sz: %d\n", sparse_header->file_hdr_sz);
1220 dprintf (SPEW, "chunk_hdr_sz: %d\n", sparse_header->chunk_hdr_sz);
1221 dprintf (SPEW, "blk_sz: %d\n", sparse_header->blk_sz);
1222 dprintf (SPEW, "total_blks: %d\n", sparse_header->total_blks);
1223 dprintf (SPEW, "total_chunks: %d\n", sparse_header->total_chunks);
Ajay Dudani5c761132011-04-07 20:19:04 -07001224
1225 /* Start processing chunks */
1226 for (chunk=0; chunk<sparse_header->total_chunks; chunk++)
1227 {
1228 /* Read and skip over chunk header */
1229 chunk_header = (chunk_header_t *) data;
1230 data += sizeof(chunk_header_t);
1231
1232 dprintf (SPEW, "=== Chunk Header ===\n");
1233 dprintf (SPEW, "chunk_type: 0x%x\n", chunk_header->chunk_type);
1234 dprintf (SPEW, "chunk_data_sz: 0x%x\n", chunk_header->chunk_sz);
1235 dprintf (SPEW, "total_size: 0x%x\n", chunk_header->total_sz);
1236
1237 if(sparse_header->chunk_hdr_sz > sizeof(chunk_header_t))
1238 {
1239 /* Skip the remaining bytes in a header that is longer than
1240 * we expected.
1241 */
1242 data += (sparse_header->chunk_hdr_sz - sizeof(chunk_header_t));
1243 }
1244
1245 chunk_data_sz = sparse_header->blk_sz * chunk_header->chunk_sz;
1246 switch (chunk_header->chunk_type)
1247 {
1248 case CHUNK_TYPE_RAW:
1249 if(chunk_header->total_sz != (sparse_header->chunk_hdr_sz +
1250 chunk_data_sz))
1251 {
1252 fastboot_fail("Bogus chunk size for chunk type Raw");
1253 return;
1254 }
1255
Ajay Dudaniab18f022011-05-12 14:39:22 -07001256 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
1257 chunk_data_sz,
1258 (unsigned int*)data))
Ajay Dudani5c761132011-04-07 20:19:04 -07001259 {
1260 fastboot_fail("flash write failure");
1261 return;
1262 }
1263 total_blocks += chunk_header->chunk_sz;
1264 data += chunk_data_sz;
1265 break;
1266
1267 case CHUNK_TYPE_DONT_CARE:
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07001268 total_blocks += chunk_header->chunk_sz;
1269 break;
1270
Ajay Dudani5c761132011-04-07 20:19:04 -07001271 case CHUNK_TYPE_CRC:
1272 if(chunk_header->total_sz != sparse_header->chunk_hdr_sz)
1273 {
1274 fastboot_fail("Bogus chunk size for chunk type Dont Care");
1275 return;
1276 }
1277 total_blocks += chunk_header->chunk_sz;
1278 data += chunk_data_sz;
1279 break;
1280
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07001281 default:
Ajay Dudani5c761132011-04-07 20:19:04 -07001282 fastboot_fail("Unknown chunk type");
1283 return;
1284 }
1285 }
1286
Ajay Dudani0c6927b2011-05-18 11:12:16 -07001287 dprintf(INFO, "Wrote %d blocks, expected to write %d blocks\n",
1288 total_blocks, sparse_header->total_blks);
1289
1290 if(total_blocks != sparse_header->total_blks)
1291 {
1292 fastboot_fail("sparse image write failure");
1293 }
Ajay Dudani5c761132011-04-07 20:19:04 -07001294
1295 fastboot_okay("");
1296 return;
1297}
1298
1299void cmd_flash_mmc(const char *arg, void *data, unsigned sz)
1300{
1301 sparse_header_t *sparse_header;
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001302 /* 8 Byte Magic + 2048 Byte xml + Encrypted Data */
1303 unsigned int *magic_number = (unsigned int *) data;
1304 int ret=0;
Ajay Dudani5c761132011-04-07 20:19:04 -07001305
Neeti Desai127b9e02012-03-20 16:11:23 -07001306 if (magic_number[0] == DECRYPT_MAGIC_0 &&
1307 magic_number[1] == DECRYPT_MAGIC_1)
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001308 {
1309#ifdef SSD_ENABLE
Neeti Desai127b9e02012-03-20 16:11:23 -07001310 ret = decrypt_scm((uint32 **) &data, &sz);
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001311#endif
Greg Griscod6250552011-06-29 14:40:23 -07001312 if (ret != 0) {
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001313 dprintf(CRITICAL, "ERROR: Invalid secure image\n");
1314 return;
1315 }
1316 }
Neeti Desai127b9e02012-03-20 16:11:23 -07001317 else if (magic_number[0] == ENCRYPT_MAGIC_0 &&
1318 magic_number[1] == ENCRYPT_MAGIC_1)
1319 {
1320#ifdef SSD_ENABLE
1321 ret = encrypt_scm((uint32 **) &data, &sz);
1322#endif
1323 if (ret != 0) {
1324 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
1325 return;
1326 }
1327 }
1328
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07001329 sparse_header = (sparse_header_t *) data;
Ajay Dudani5c761132011-04-07 20:19:04 -07001330 if (sparse_header->magic != SPARSE_HEADER_MAGIC)
1331 cmd_flash_mmc_img(arg, data, sz);
1332 else
1333 cmd_flash_mmc_sparse_img(arg, data, sz);
Ajay Dudani5c761132011-04-07 20:19:04 -07001334 return;
1335}
1336
Dima Zavin214cc642009-01-26 11:16:21 -08001337void cmd_flash(const char *arg, void *data, unsigned sz)
1338{
1339 struct ptentry *ptn;
1340 struct ptable *ptable;
1341 unsigned extra = 0;
1342
1343 ptable = flash_get_ptable();
1344 if (ptable == NULL) {
1345 fastboot_fail("partition table doesn't exist");
1346 return;
1347 }
1348
1349 ptn = ptable_find(ptable, arg);
1350 if (ptn == NULL) {
1351 fastboot_fail("unknown partition name");
1352 return;
1353 }
1354
1355 if (!strcmp(ptn->name, "boot") || !strcmp(ptn->name, "recovery")) {
1356 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1357 fastboot_fail("image is not a boot image");
1358 return;
1359 }
1360 }
1361
Amol Jadi5c61a952012-05-04 17:05:35 -07001362 if (!strcmp(ptn->name, "system")
Deepa Dinamani13e32c42012-03-12 14:34:17 -07001363 || !strcmp(ptn->name, "userdata")
1364 || !strcmp(ptn->name, "persist")
1365 || !strcmp(ptn->name, "recoveryfs")) {
Channagoud Kadabi404a7062011-03-21 19:27:50 +05301366 if (flash_ecc_bch_enabled())
1367 /* Spare data bytes for 8 bit ECC increased by 4 */
1368 extra = ((page_size >> 9) * 20);
1369 else
1370 extra = ((page_size >> 9) * 16);
1371 } else
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001372 sz = ROUND_TO_PAGE(sz, page_mask);
Dima Zavin214cc642009-01-26 11:16:21 -08001373
1374 dprintf(INFO, "writing %d bytes to '%s'\n", sz, ptn->name);
1375 if (flash_write(ptn, extra, data, sz)) {
1376 fastboot_fail("flash write failure");
1377 return;
1378 }
1379 dprintf(INFO, "partition '%s' updated\n", ptn->name);
1380 fastboot_okay("");
1381}
1382
1383void cmd_continue(const char *arg, void *data, unsigned sz)
1384{
1385 fastboot_okay("");
1386 udc_stop();
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001387 if (target_is_emmc_boot())
1388 {
1389 boot_linux_from_mmc();
1390 }
1391 else
1392 {
1393 boot_linux_from_flash();
1394 }
Dima Zavin214cc642009-01-26 11:16:21 -08001395}
1396
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001397void cmd_reboot(const char *arg, void *data, unsigned sz)
1398{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001399 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001400 fastboot_okay("");
1401 reboot_device(0);
1402}
1403
1404void cmd_reboot_bootloader(const char *arg, void *data, unsigned sz)
1405{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001406 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001407 fastboot_okay("");
1408 reboot_device(FASTBOOT_MODE);
1409}
1410
Shashank Mittal162244e2011-08-08 19:01:25 -07001411void cmd_oem_unlock(const char *arg, void *data, unsigned sz)
1412{
1413 if(!device.is_unlocked)
1414 {
1415 device.is_unlocked = 1;
1416 write_device_info(&device);
1417 }
1418 fastboot_okay("");
1419}
1420
Shashank Mittala0032282011-08-26 14:50:11 -07001421void cmd_oem_devinfo(const char *arg, void *data, unsigned sz)
1422{
1423 char response[64];
1424 snprintf(response, 64, "\tDevice tampered: %s", (device.is_tampered ? "true" : "false"));
1425 fastboot_info(response);
1426 snprintf(response, 64, "\tDevice unlocked: %s", (device.is_unlocked ? "true" : "false"));
1427 fastboot_info(response);
1428 fastboot_okay("");
1429}
1430
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001431void splash_screen ()
1432{
1433 struct ptentry *ptn;
1434 struct ptable *ptable;
1435 struct fbcon_config *fb_display = NULL;
1436
1437 if (!target_is_emmc_boot())
1438 {
1439 ptable = flash_get_ptable();
1440 if (ptable == NULL) {
1441 dprintf(CRITICAL, "ERROR: Partition table not found\n");
Greg Griscod6250552011-06-29 14:40:23 -07001442 return;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001443 }
1444
1445 ptn = ptable_find(ptable, "splash");
1446 if (ptn == NULL) {
1447 dprintf(CRITICAL, "ERROR: No splash partition found\n");
1448 } else {
1449 fb_display = fbcon_display();
1450 if (fb_display) {
1451 if (flash_read(ptn, 0, fb_display->base,
1452 (fb_display->width * fb_display->height * fb_display->bpp/8))) {
1453 fbcon_clear();
1454 dprintf(CRITICAL, "ERROR: Cannot read splash image\n");
1455 }
1456 }
1457 }
1458 }
1459}
1460
Brian Swetland9c4c0752009-01-25 16:23:50 -08001461void aboot_init(const struct app_descriptor *app)
1462{
Shashank Mittal4f99a882010-02-01 13:58:50 -08001463 unsigned reboot_mode = 0;
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001464 unsigned usb_init = 0;
Vivek Mehta5f1c9d42011-04-01 20:11:59 -07001465 unsigned sz = 0;
Chandan Uddarajubedca152010-06-02 23:05:15 -07001466
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001467 /* Setup page size information for nand/emmc reads */
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001468 if (target_is_emmc_boot())
1469 {
1470 page_size = 2048;
1471 page_mask = page_size - 1;
1472 }
1473 else
1474 {
1475 page_size = flash_page_size();
1476 page_mask = page_size - 1;
1477 }
1478
Shashank Mittal162244e2011-08-08 19:01:25 -07001479 if(target_use_signed_kernel())
1480 {
1481 read_device_info(&device);
1482
Shashank Mittal162244e2011-08-08 19:01:25 -07001483 }
1484
Greg Griscod6250552011-06-29 14:40:23 -07001485 target_serialno((unsigned char *) sn_buf);
Ajay Dudanib06c05f2011-05-12 14:46:10 -07001486 dprintf(SPEW,"serial number: %s\n",sn_buf);
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -08001487 surf_udc_device.serialno = sn_buf;
1488
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001489 /* Check if we should do something other than booting up */
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001490 if (keys_get_state(KEY_HOME) != 0)
1491 boot_into_recovery = 1;
Wentao Xu153902c2010-12-20 16:20:52 -05001492 if (keys_get_state(KEY_VOLUMEUP) != 0)
1493 boot_into_recovery = 1;
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07001494 if(!boot_into_recovery)
1495 {
1496 if (keys_get_state(KEY_BACK) != 0)
1497 goto fastboot;
1498 if (keys_get_state(KEY_VOLUMEDOWN) != 0)
1499 goto fastboot;
1500 }
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001501
1502 #if NO_KEYPAD_DRIVER
Kinson Chik0b1c8162011-08-31 16:31:57 -07001503 if (fastboot_trigger())
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001504 goto fastboot;
1505 #endif
Chandan Uddarajubedca152010-06-02 23:05:15 -07001506
Ajay Dudani77421292010-10-27 19:34:06 -07001507 reboot_mode = check_reboot_mode();
1508 if (reboot_mode == RECOVERY_MODE) {
1509 boot_into_recovery = 1;
1510 } else if(reboot_mode == FASTBOOT_MODE) {
1511 goto fastboot;
1512 }
1513
Shashank Mittal23b8f422010-04-16 19:27:21 -07001514 if (target_is_emmc_boot())
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001515 {
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07001516 if(emmc_recovery_init())
1517 dprintf(ALWAYS,"error in emmc_recovery_init\n");
Shashank Mittala0032282011-08-26 14:50:11 -07001518 if(target_use_signed_kernel())
1519 {
1520 if((device.is_unlocked) || (device.is_tampered))
1521 {
1522 #ifdef TZ_TAMPER_FUSE
1523 set_tamper_fuse_cmd();
1524 #endif
Channagoud Kadabibf695c62012-04-10 13:31:56 +05301525 #if USE_PCOM_SECBOOT
1526 set_tamper_flag(device.is_tampered);
1527 #endif
Shashank Mittala0032282011-08-26 14:50:11 -07001528 }
1529 }
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001530 boot_linux_from_mmc();
1531 }
1532 else
1533 {
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001534 recovery_init();
Channagoud Kadabie7b66702012-03-22 15:54:30 +05301535#if USE_PCOM_SECBOOT
1536 if((device.is_unlocked) || (device.is_tampered))
1537 set_tamper_flag(device.is_tampered);
1538#endif
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001539 boot_linux_from_flash();
1540 }
Dima Zavinb4283602009-01-26 16:36:57 -08001541 dprintf(CRITICAL, "ERROR: Could not do normal boot. Reverting "
1542 "to fastboot mode.\n");
1543
1544fastboot:
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07001545
Shashank Mittal162244e2011-08-08 19:01:25 -07001546 target_fastboot_init();
Amol Jadi57abe4c2011-05-24 15:47:27 -07001547
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001548 if(!usb_init)
1549 udc_init(&surf_udc_device);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001550
1551 fastboot_register("boot", cmd_boot);
Bikas Gurungd48bd242010-09-04 19:54:32 -07001552
Shashank Mittal23b8f422010-04-16 19:27:21 -07001553 if (target_is_emmc_boot())
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001554 {
1555 fastboot_register("flash:", cmd_flash_mmc);
Bikas Gurungd48bd242010-09-04 19:54:32 -07001556 fastboot_register("erase:", cmd_erase_mmc);
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001557 }
1558 else
1559 {
1560 fastboot_register("flash:", cmd_flash);
Bikas Gurungd48bd242010-09-04 19:54:32 -07001561 fastboot_register("erase:", cmd_erase);
Shashank Mittald8c42bf2010-06-09 15:44:28 -07001562 }
1563
1564 fastboot_register("continue", cmd_continue);
Chandan Uddaraju94183c02010-01-15 15:13:59 -08001565 fastboot_register("reboot", cmd_reboot);
1566 fastboot_register("reboot-bootloader", cmd_reboot_bootloader);
Shashank Mittal162244e2011-08-08 19:01:25 -07001567 fastboot_register("oem unlock", cmd_oem_unlock);
Shashank Mittala0032282011-08-26 14:50:11 -07001568 fastboot_register("oem device-info", cmd_oem_devinfo);
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -07001569 fastboot_publish("product", TARGET(BOARD));
Brian Swetland9c4c0752009-01-25 16:23:50 -08001570 fastboot_publish("kernel", "lk");
Trevor Bourget59b25d52012-01-13 18:43:36 -08001571 fastboot_publish("serialno", sn_buf);
Kinson Chikf1a43512011-07-14 11:28:39 -07001572 partition_dump();
Vivek Mehta5f1c9d42011-04-01 20:11:59 -07001573 sz = target_get_max_flash_size();
1574 fastboot_init(target_get_scratch_address(), sz);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001575 udc_start();
Brian Swetland9c4c0752009-01-25 16:23:50 -08001576}
1577
1578APP_START(aboot)
1579 .init = aboot_init,
1580APP_END
1581
Neeti Desai17379b82012-06-04 18:42:53 -07001582#if DEVICE_TREE
Neeti Desai465491e2012-07-31 12:53:35 -07001583struct dt_entry * get_device_tree_ptr(struct dt_table *table)
1584{
1585 unsigned i;
1586 struct dt_entry *dt_entry_ptr;
1587
1588 dt_entry_ptr = (char *)table + DEV_TREE_HEADER_SIZE ;
1589
1590 for(i = 0; i < table->num_entries; i++)
1591 {
1592 if((dt_entry_ptr->platform_id == board_platform_id()) &&
1593 (dt_entry_ptr->variant_id == board_hardware_id()) &&
1594 (dt_entry_ptr->soc_rev == 0)){
1595 return dt_entry_ptr;
1596 }
1597 dt_entry_ptr++;
1598 }
1599 return NULL;
1600}
1601
Neeti Desai17379b82012-06-04 18:42:53 -07001602int update_device_tree(const void * fdt, char *cmdline,
1603 void *ramdisk, unsigned ramdisk_size)
1604{
1605 int ret = 0;
1606 int offset;
1607 uint32_t *memory_reg;
1608 unsigned char *final_cmdline;
1609 uint32_t len;
1610
1611 /* Check the device tree header */
1612 ret = fdt_check_header(fdt);
1613 if(ret)
1614 {
1615 dprintf(CRITICAL, "Invalid device tree header \n");
1616 return ret;
1617 }
1618
1619 /* Get offset of the memory node */
1620 offset = fdt_path_offset(fdt,"/memory");
1621
1622 memory_reg = target_dev_tree_mem(&len);
1623
1624 /* Adding the memory values to the reg property */
1625 ret = fdt_setprop(fdt, offset, "reg", memory_reg, sizeof(uint32_t) * len * 2);
1626 if(ret)
1627 {
1628 dprintf(CRITICAL, "ERROR: Cannot update memory node\n");
1629 return ret;
1630 }
1631
1632 /* Get offset of the chosen node */
1633 offset = fdt_path_offset(fdt, "/chosen");
1634
1635 /* Adding the cmdline to the chosen node */
1636 final_cmdline = update_cmdline(cmdline);
1637 ret = fdt_setprop_string(fdt, offset, "bootargs", final_cmdline);
1638 if(ret)
1639 {
1640 dprintf(CRITICAL, "ERROR: Cannot update chosen node [bootargs]\n");
1641 return ret;
1642 }
1643
1644 /* Adding the initrd-start to the chosen node */
1645 ret = fdt_setprop_cell(fdt, offset, "linux,initrd-start", ramdisk);
1646 if(ret)
1647 {
1648 dprintf(CRITICAL, "ERROR: Cannot update chosen node [linux,initrd-start]\n");
1649 return ret;
1650 }
1651
1652 /* Adding the initrd-end to the chosen node */
1653 ret = fdt_setprop_cell(fdt, offset, "linux,initrd-end", (ramdisk + ramdisk_size));
1654 if(ret)
1655 {
1656 dprintf(CRITICAL, "ERROR: Cannot update chosen node [linux,initrd-end]\n");
1657 return ret;
1658 }
1659
1660 fdt_pack(fdt);
1661
1662 return ret;
1663}
1664#endif