blob: 0682e9c40fb580c866826626b3e43bf171757171 [file] [log] [blame]
Brian Swetland9c4c0752009-01-25 16:23:50 -08001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
4 *
Channagoud Kadabia8c623f2015-01-13 14:48:48 -08005 * Copyright (c) 2009-2015, The Linux Foundation. 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.
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070014 * * Neither the name of The Linux Foundation nor
Chandan Uddaraju5fa471a2009-12-02 17:31:34 -080015 * 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>
Brian Swetland9c4c0752009-01-25 16:23:50 -080036#include <string.h>
Channagoud Kadabi132ff552013-04-19 14:34:44 -070037#include <stdlib.h>
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -070038#include <limits.h>
Brian Swetland9c4c0752009-01-25 16:23:50 -080039#include <kernel/thread.h>
40#include <arch/ops.h>
41
Dima Zavin214cc642009-01-26 11:16:21 -080042#include <dev/flash.h>
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +020043#include <dev/flash-ubi.h>
Dima Zavin214cc642009-01-26 11:16:21 -080044#include <lib/ptable.h>
Dima Zavinb4283602009-01-26 16:36:57 -080045#include <dev/keys.h>
Shashank Mittal4f99a882010-02-01 13:58:50 -080046#include <dev/fbcon.h>
Ajay Dudanid04110c2011-01-17 23:55:07 -080047#include <baseband.h>
Greg Griscod6250552011-06-29 14:40:23 -070048#include <target.h>
49#include <mmc.h>
Kinson Chikf1a43512011-07-14 11:28:39 -070050#include <partition_parser.h>
Greg Griscod6250552011-06-29 14:40:23 -070051#include <platform.h>
Shashank Mittalcd98d472011-08-02 14:29:24 -070052#include <crypto_hash.h>
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070053#include <malloc.h>
Amol Jadi492d5a52013-03-15 16:12:34 -070054#include <boot_stats.h>
Amir Samuelov57a6fa22013-06-05 16:36:43 +030055#include <sha.h>
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -070056#include <platform/iomap.h>
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -070057#include <boot_device.h>
Shashank Mittald3e54dd2014-08-28 15:24:02 -070058#include <boot_verifier.h>
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +053059#include <image_verify.h>
Matthew Qinbb7923d2015-02-09 10:56:09 +080060#include <decompress.h>
Channagoud Kadabi036c6052015-02-09 15:19:59 -080061#if USE_RPMB_FOR_DEVINFO
62#include <rpmb.h>
63#endif
Dima Zavin214cc642009-01-26 11:16:21 -080064
Neeti Desai17379b82012-06-04 18:42:53 -070065#if DEVICE_TREE
66#include <libfdt.h>
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070067#include <dev_tree.h>
Neeti Desai17379b82012-06-04 18:42:53 -070068#endif
69
Shashank Mittalcd98d472011-08-02 14:29:24 -070070#include "image_verify.h"
Shashank Mittal024c0332010-02-03 11:44:00 -080071#include "recovery.h"
Brian Swetland9c4c0752009-01-25 16:23:50 -080072#include "bootimg.h"
73#include "fastboot.h"
Ajay Dudani5c761132011-04-07 20:19:04 -070074#include "sparse_format.h"
Ajay Dudanide984792015-03-02 09:57:41 -080075#include "meta_format.h"
Greg Grisco6e754772011-06-23 12:19:39 -070076#include "mmc.h"
Shashank Mittal162244e2011-08-08 19:01:25 -070077#include "devinfo.h"
Neeti Desai465491e2012-07-31 12:53:35 -070078#include "board.h"
Shashank Mittal162244e2011-08-08 19:01:25 -070079#include "scm.h"
Amit Blay6281ebc2015-01-11 14:44:08 +020080#include "mdtp.h"
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -070081
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070082extern bool target_use_signed_kernel(void);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070083extern void platform_uninit(void);
Channagoud Kadabi33defe22013-06-18 18:35:40 -070084extern void target_uninit(void);
Joonwoo Park61112782013-10-02 19:50:39 -070085extern int get_target_boot_params(const char *cmdline, const char *part,
86 char *buf, int buflen);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070087
88void write_device_info_mmc(device_info *dev);
89void write_device_info_flash(device_info *dev);
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -070090static int aboot_save_boot_hash_mmc(uint32_t image_addr, uint32_t image_size);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070091
Sridhar Parasurame94e8152014-10-24 14:06:03 -070092/* fastboot command function pointer */
93typedef void (*fastboot_cmd_fn) (const char *, void *, unsigned);
94
95struct fastboot_cmd_desc {
96 char * name;
97 fastboot_cmd_fn cb;
98};
99
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -0700100#define EXPAND(NAME) #NAME
101#define TARGET(NAME) EXPAND(NAME)
Brian Swetland2defe162009-08-18 14:35:59 -0700102
Ajay Dudanicd01f9b2010-02-23 21:13:04 -0800103#ifdef MEMBASE
104#define EMMC_BOOT_IMG_HEADER_ADDR (0xFF000+(MEMBASE))
105#else
David Ng183a7422009-12-07 14:55:21 -0800106#define EMMC_BOOT_IMG_HEADER_ADDR 0xFF000
Ajay Dudanicd01f9b2010-02-23 21:13:04 -0800107#endif
108
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700109#ifndef MEMSIZE
110#define MEMSIZE 1024*1024
111#endif
112
113#define MAX_TAGS_SIZE 1024
114
lijuang72875802015-02-10 10:35:12 +0800115#define RECOVERY_HARD_RESET_MODE 0x01
116#define FASTBOOT_HARD_RESET_MODE 0x02
117#define RTC_HARD_RESET_MODE 0x03
118
Chandan Uddarajude85d3f2010-01-05 16:32:33 -0800119#define RECOVERY_MODE 0x77665502
120#define FASTBOOT_MODE 0x77665500
Matthew Qind886f3c2014-01-17 16:52:01 +0800121#define ALARM_BOOT 0x77665503
Chandan Uddarajude85d3f2010-01-05 16:32:33 -0800122
Kun Liang2f1601a2013-08-12 16:29:54 +0800123/* make 4096 as default size to ensure EFS,EXT4's erasing */
124#define DEFAULT_ERASE_SIZE 4096
Kuogee Hsieh55e92c52013-12-20 08:34:10 -0800125#define MAX_PANEL_BUF_SIZE 128
Kun Liang2f1601a2013-08-12 16:29:54 +0800126
Dhaval Patelf83d73b2014-06-23 16:24:37 -0700127#define DISPLAY_DEFAULT_PREFIX "mdss_mdp"
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700128#define BOOT_DEV_MAX_LEN 64
Sundarajan Srinivasan595b71e2013-11-05 12:44:34 -0800129
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800130#define IS_ARM64(ptr) (ptr->magic_64 == KERNEL64_HDR_MAGIC) ? true : false
131
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -0700132#define ADD_OF(a, b) (UINT_MAX - b > a) ? (a + b) : UINT_MAX
133
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800134#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700135static const char *emmc_cmdline = " androidboot.bootdevice=";
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700136#else
David Ng183a7422009-12-07 14:55:21 -0800137static const char *emmc_cmdline = " androidboot.emmc=true";
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700138#endif
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800139static const char *usb_sn_cmdline = " androidboot.serialno=";
Pavel Nedev328ac822013-04-05 15:25:11 +0300140static const char *androidboot_mode = " androidboot.mode=";
Matthew Qind886f3c2014-01-17 16:52:01 +0800141static const char *alarmboot_cmdline = " androidboot.alarmboot=true";
Pavel Nedev898298c2013-02-27 12:36:09 -0800142static const char *loglevel = " quiet";
Ajay Dudanica3a33c2011-11-18 08:31:40 -0800143static const char *battchg_pause = " androidboot.mode=charger";
Shashank Mittalcd98d472011-08-02 14:29:24 -0700144static const char *auth_kernel = " androidboot.authorized_kernel=true";
Pavel Nedev5614d222013-06-17 18:01:02 +0300145static const char *secondary_gpt_enable = " gpt";
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200146static const char *mdtp_activated_flag = " mdtp";
David Ng183a7422009-12-07 14:55:21 -0800147
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800148static const char *baseband_apq = " androidboot.baseband=apq";
149static const char *baseband_msm = " androidboot.baseband=msm";
150static const char *baseband_csfb = " androidboot.baseband=csfb";
151static const char *baseband_svlte2a = " androidboot.baseband=svlte2a";
Ajay Dudani403bc492011-09-30 16:17:21 -0700152static const char *baseband_mdm = " androidboot.baseband=mdm";
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800153static const char *baseband_mdm2 = " androidboot.baseband=mdm2";
Amol Jadi5c61a952012-05-04 17:05:35 -0700154static const char *baseband_sglte = " androidboot.baseband=sglte";
Amol Jadi2a15a272013-01-22 12:03:36 -0800155static const char *baseband_dsda = " androidboot.baseband=dsda";
156static const char *baseband_dsda2 = " androidboot.baseband=dsda2";
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800157static const char *baseband_sglte2 = " androidboot.baseband=sglte2";
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800158static const char *warmboot_cmdline = " qpnp-power-on.warm_boot=1";
Ajay Dudanid04110c2011-01-17 23:55:07 -0800159
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700160static unsigned page_size = 0;
161static unsigned page_mask = 0;
162static char ffbm_mode_string[FFBM_MODE_BUF_SIZE];
163static bool boot_into_ffbm;
Joonwoo Park61112782013-10-02 19:50:39 -0700164static char target_boot_params[64];
Matthew Qind886f3c2014-01-17 16:52:01 +0800165static bool boot_reason_alarm;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -0700166static bool devinfo_present = true;
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700167
Shashank Mittalcd98d472011-08-02 14:29:24 -0700168/* Assuming unauthorized kernel image by default */
169static int auth_kernel_img = 0;
170
Channagoud Kadabiaafbbfc2015-03-04 17:52:56 -0800171static device_info device = {DEVICE_MAGIC, 0, 0, 0, 0, {0}, {0},{0}};
Shashank Mittal162244e2011-08-08 19:01:25 -0700172
Dima Zavin42168f22009-01-30 11:52:22 -0800173struct atag_ptbl_entry
174{
175 char name[16];
176 unsigned offset;
177 unsigned size;
178 unsigned flags;
179};
180
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -0700181/*
182 * Partition info, required to be published
183 * for fastboot
184 */
185struct getvar_partition_info {
186 const char part_name[MAX_GPT_NAME_SIZE]; /* Partition name */
187 char getvar_size[MAX_GET_VAR_NAME_SIZE]; /* fastboot get var name for size */
188 char getvar_type[MAX_GET_VAR_NAME_SIZE]; /* fastboot get var name for type */
189 char size_response[MAX_RSP_SIZE]; /* fastboot response for size */
190 char type_response[MAX_RSP_SIZE]; /* fastboot response for type */
191};
192
193/*
194 * Right now, we are publishing the info for only
195 * three partitions
196 */
197struct getvar_partition_info part_info[] =
198{
199 { "system" , "partition-size:", "partition-type:", "", "ext4" },
200 { "userdata", "partition-size:", "partition-type:", "", "ext4" },
201 { "cache" , "partition-size:", "partition-type:", "", "ext4" },
202};
203
204char max_download_size[MAX_RSP_SIZE];
Ameya Thakur11cf1a62013-08-05 12:44:48 -0700205char charger_screen_enabled[MAX_RSP_SIZE];
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800206char sn_buf[13];
Dhaval Patel223ec952013-07-18 14:49:44 -0700207char display_panel_buf[MAX_PANEL_BUF_SIZE];
Unnati Gandhi62c8ab82014-01-24 11:01:01 +0530208char panel_display_mode[MAX_RSP_SIZE];
Greg Griscod6250552011-06-29 14:40:23 -0700209
Greg Griscod2471ef2011-07-14 13:00:42 -0700210extern int emmc_recovery_init(void);
211
Kinson Chik0b1c8162011-08-31 16:31:57 -0700212#if NO_KEYPAD_DRIVER
213extern int fastboot_trigger(void);
214#endif
Greg Griscod2471ef2011-07-14 13:00:42 -0700215
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800216static void update_ker_tags_rdisk_addr(struct boot_img_hdr *hdr, bool is_arm64)
Channagoud Kadabia22144f2013-03-20 11:49:01 -0700217{
218 /* overwrite the destination of specified for the project */
Channagoud Kadabi7042fa32013-04-26 16:44:14 -0700219#ifdef ABOOT_IGNORE_BOOT_HEADER_ADDRS
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800220 if (is_arm64)
221 hdr->kernel_addr = ABOOT_FORCE_KERNEL64_ADDR;
222 else
223 hdr->kernel_addr = ABOOT_FORCE_KERNEL_ADDR;
Channagoud Kadabi7042fa32013-04-26 16:44:14 -0700224 hdr->ramdisk_addr = ABOOT_FORCE_RAMDISK_ADDR;
225 hdr->tags_addr = ABOOT_FORCE_TAGS_ADDR;
Channagoud Kadabia22144f2013-03-20 11:49:01 -0700226#endif
227}
228
Dima Zavin42168f22009-01-30 11:52:22 -0800229static void ptentry_to_tag(unsigned **ptr, struct ptentry *ptn)
230{
231 struct atag_ptbl_entry atag_ptn;
232
233 memcpy(atag_ptn.name, ptn->name, 16);
234 atag_ptn.name[15] = '\0';
235 atag_ptn.offset = ptn->start;
236 atag_ptn.size = ptn->length;
237 atag_ptn.flags = ptn->flags;
238 memcpy(*ptr, &atag_ptn, sizeof(struct atag_ptbl_entry));
239 *ptr += sizeof(struct atag_ptbl_entry) / sizeof(unsigned);
240}
Brian Swetland9c4c0752009-01-25 16:23:50 -0800241
Neeti Desaie245d492012-06-01 12:52:13 -0700242unsigned char *update_cmdline(const char * cmdline)
Brian Swetland9c4c0752009-01-25 16:23:50 -0800243{
David Ng183a7422009-12-07 14:55:21 -0800244 int cmdline_len = 0;
245 int have_cmdline = 0;
Amol Jadi168b7712012-03-06 16:15:00 -0800246 unsigned char *cmdline_final = NULL;
Neeti Desaie245d492012-06-01 12:52:13 -0700247 int pause_at_bootup = 0;
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800248 bool warm_boot = false;
Pavel Nedev5614d222013-06-17 18:01:02 +0300249 bool gpt_exists = partition_gpt_exists();
Joonwoo Park61112782013-10-02 19:50:39 -0700250 int have_target_boot_params = 0;
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700251 char *boot_dev_buf = NULL;
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200252 bool is_mdtp_activated = 0;
253#ifdef MDTP_SUPPORT
254 mdtp_activated(&is_mdtp_activated);
255#endif /* MDTP_SUPPORT */
Dima Zavin42168f22009-01-30 11:52:22 -0800256
Brian Swetland9c4c0752009-01-25 16:23:50 -0800257 if (cmdline && cmdline[0]) {
David Ng183a7422009-12-07 14:55:21 -0800258 cmdline_len = strlen(cmdline);
259 have_cmdline = 1;
260 }
261 if (target_is_emmc_boot()) {
262 cmdline_len += strlen(emmc_cmdline);
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800263#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700264 boot_dev_buf = (char *) malloc(sizeof(char) * BOOT_DEV_MAX_LEN);
265 ASSERT(boot_dev_buf);
266 platform_boot_dev_cmdline(boot_dev_buf);
267 cmdline_len += strlen(boot_dev_buf);
Sundarajan Srinivasan3827a102013-09-10 13:57:40 -0700268#endif
David Ng183a7422009-12-07 14:55:21 -0800269 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800270
271 cmdline_len += strlen(usb_sn_cmdline);
272 cmdline_len += strlen(sn_buf);
273
Pavel Nedev5614d222013-06-17 18:01:02 +0300274 if (boot_into_recovery && gpt_exists)
275 cmdline_len += strlen(secondary_gpt_enable);
276
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200277 if(is_mdtp_activated)
278 cmdline_len += strlen(mdtp_activated_flag);
279
Pavel Nedev328ac822013-04-05 15:25:11 +0300280 if (boot_into_ffbm) {
281 cmdline_len += strlen(androidboot_mode);
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700282 cmdline_len += strlen(ffbm_mode_string);
Pavel Nedev898298c2013-02-27 12:36:09 -0800283 /* reduce kernel console messages to speed-up boot */
284 cmdline_len += strlen(loglevel);
Matthew Qind886f3c2014-01-17 16:52:01 +0800285 } else if (boot_reason_alarm) {
286 cmdline_len += strlen(alarmboot_cmdline);
Ameya Thakur11cf1a62013-08-05 12:44:48 -0700287 } else if (device.charger_screen_enabled &&
288 target_pause_for_battery_charge()) {
David Ngf773dde2010-07-26 19:55:08 -0700289 pause_at_bootup = 1;
290 cmdline_len += strlen(battchg_pause);
291 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800292
Shashank Mittalcd98d472011-08-02 14:29:24 -0700293 if(target_use_signed_kernel() && auth_kernel_img) {
294 cmdline_len += strlen(auth_kernel);
295 }
296
Joonwoo Park61112782013-10-02 19:50:39 -0700297 if (get_target_boot_params(cmdline, boot_into_recovery ? "recoveryfs" :
298 "system",
299 target_boot_params,
300 sizeof(target_boot_params)) == 0) {
301 have_target_boot_params = 1;
302 cmdline_len += strlen(target_boot_params);
303 }
304
Ajay Dudanid04110c2011-01-17 23:55:07 -0800305 /* Determine correct androidboot.baseband to use */
306 switch(target_baseband())
307 {
308 case BASEBAND_APQ:
309 cmdline_len += strlen(baseband_apq);
310 break;
311
312 case BASEBAND_MSM:
313 cmdline_len += strlen(baseband_msm);
314 break;
315
316 case BASEBAND_CSFB:
317 cmdline_len += strlen(baseband_csfb);
318 break;
319
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800320 case BASEBAND_SVLTE2A:
321 cmdline_len += strlen(baseband_svlte2a);
Ajay Dudanid04110c2011-01-17 23:55:07 -0800322 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700323
324 case BASEBAND_MDM:
325 cmdline_len += strlen(baseband_mdm);
326 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700327
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800328 case BASEBAND_MDM2:
329 cmdline_len += strlen(baseband_mdm2);
330 break;
331
Amol Jadi5c61a952012-05-04 17:05:35 -0700332 case BASEBAND_SGLTE:
333 cmdline_len += strlen(baseband_sglte);
334 break;
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530335
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800336 case BASEBAND_SGLTE2:
337 cmdline_len += strlen(baseband_sglte2);
338 break;
339
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530340 case BASEBAND_DSDA:
341 cmdline_len += strlen(baseband_dsda);
342 break;
Amol Jadi2a15a272013-01-22 12:03:36 -0800343
344 case BASEBAND_DSDA2:
345 cmdline_len += strlen(baseband_dsda2);
346 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800347 }
348
Lijuan Gao4a5b8322014-07-24 10:38:42 +0800349 if (cmdline) {
350 if ((strstr(cmdline, DISPLAY_DEFAULT_PREFIX) == NULL) &&
351 target_display_panel_node(device.display_panel,
352 display_panel_buf, MAX_PANEL_BUF_SIZE) &&
353 strlen(display_panel_buf)) {
354 cmdline_len += strlen(display_panel_buf);
355 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700356 }
357
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800358 if (target_warm_boot()) {
359 warm_boot = true;
360 cmdline_len += strlen(warmboot_cmdline);
361 }
362
David Ng183a7422009-12-07 14:55:21 -0800363 if (cmdline_len > 0) {
364 const char *src;
Maria Yu52254c02014-07-04 16:14:54 +0800365 unsigned char *dst;
366
367 cmdline_final = (unsigned char*) malloc((cmdline_len + 4) & (~3));
368 ASSERT(cmdline_final != NULL);
369 dst = cmdline_final;
Neeti Desaie245d492012-06-01 12:52:13 -0700370
Amol Jadi168b7712012-03-06 16:15:00 -0800371 /* Save start ptr for debug print */
David Ng183a7422009-12-07 14:55:21 -0800372 if (have_cmdline) {
373 src = cmdline;
374 while ((*dst++ = *src++));
375 }
376 if (target_is_emmc_boot()) {
377 src = emmc_cmdline;
378 if (have_cmdline) --dst;
David Ngf773dde2010-07-26 19:55:08 -0700379 have_cmdline = 1;
380 while ((*dst++ = *src++));
Sridhar Parasuram7bd4aaf2015-02-12 11:14:38 -0800381#if USE_BOOTDEV_CMDLINE
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700382 src = boot_dev_buf;
383 if (have_cmdline) --dst;
384 while ((*dst++ = *src++));
385#endif
David Ngf773dde2010-07-26 19:55:08 -0700386 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800387
388 src = usb_sn_cmdline;
389 if (have_cmdline) --dst;
390 have_cmdline = 1;
391 while ((*dst++ = *src++));
392 src = sn_buf;
393 if (have_cmdline) --dst;
394 have_cmdline = 1;
395 while ((*dst++ = *src++));
Hanumant Singh8e1ac232014-01-29 13:41:51 -0800396 if (warm_boot) {
397 if (have_cmdline) --dst;
398 src = warmboot_cmdline;
399 while ((*dst++ = *src++));
400 }
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -0800401
Pavel Nedev5614d222013-06-17 18:01:02 +0300402 if (boot_into_recovery && gpt_exists) {
403 src = secondary_gpt_enable;
404 if (have_cmdline) --dst;
405 while ((*dst++ = *src++));
406 }
407
Shay Nachmanibc10dfe2015-02-10 14:45:55 +0200408 if (is_mdtp_activated) {
409 src = mdtp_activated_flag;
410 if (have_cmdline) --dst;
411 while ((*dst++ = *src++));
412 }
413
Pavel Nedev328ac822013-04-05 15:25:11 +0300414 if (boot_into_ffbm) {
415 src = androidboot_mode;
416 if (have_cmdline) --dst;
417 while ((*dst++ = *src++));
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700418 src = ffbm_mode_string;
Pavel Nedev328ac822013-04-05 15:25:11 +0300419 if (have_cmdline) --dst;
420 while ((*dst++ = *src++));
Pavel Nedev898298c2013-02-27 12:36:09 -0800421 src = loglevel;
422 if (have_cmdline) --dst;
423 while ((*dst++ = *src++));
Matthew Qind886f3c2014-01-17 16:52:01 +0800424 } else if (boot_reason_alarm) {
425 src = alarmboot_cmdline;
426 if (have_cmdline) --dst;
427 while ((*dst++ = *src++));
Pavel Nedev328ac822013-04-05 15:25:11 +0300428 } else if (pause_at_bootup) {
David Ngf773dde2010-07-26 19:55:08 -0700429 src = battchg_pause;
430 if (have_cmdline) --dst;
David Ng183a7422009-12-07 14:55:21 -0800431 while ((*dst++ = *src++));
432 }
Ajay Dudanid04110c2011-01-17 23:55:07 -0800433
Shashank Mittalcd98d472011-08-02 14:29:24 -0700434 if(target_use_signed_kernel() && auth_kernel_img) {
435 src = auth_kernel;
436 if (have_cmdline) --dst;
437 while ((*dst++ = *src++));
438 }
439
Ajay Dudanid04110c2011-01-17 23:55:07 -0800440 switch(target_baseband())
441 {
442 case BASEBAND_APQ:
443 src = baseband_apq;
444 if (have_cmdline) --dst;
445 while ((*dst++ = *src++));
446 break;
447
448 case BASEBAND_MSM:
449 src = baseband_msm;
450 if (have_cmdline) --dst;
451 while ((*dst++ = *src++));
452 break;
453
454 case BASEBAND_CSFB:
455 src = baseband_csfb;
456 if (have_cmdline) --dst;
457 while ((*dst++ = *src++));
458 break;
459
Ajay Dudani6cff85e2011-02-04 16:02:16 -0800460 case BASEBAND_SVLTE2A:
461 src = baseband_svlte2a;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800462 if (have_cmdline) --dst;
463 while ((*dst++ = *src++));
464 break;
Ajay Dudani403bc492011-09-30 16:17:21 -0700465
466 case BASEBAND_MDM:
467 src = baseband_mdm;
468 if (have_cmdline) --dst;
469 while ((*dst++ = *src++));
470 break;
Amol Jadi5c61a952012-05-04 17:05:35 -0700471
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -0800472 case BASEBAND_MDM2:
473 src = baseband_mdm2;
474 if (have_cmdline) --dst;
475 while ((*dst++ = *src++));
476 break;
477
Amol Jadi5c61a952012-05-04 17:05:35 -0700478 case BASEBAND_SGLTE:
479 src = baseband_sglte;
480 if (have_cmdline) --dst;
481 while ((*dst++ = *src++));
482 break;
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530483
sundarajan srinivasanf8e9f3f2013-03-04 15:56:58 -0800484 case BASEBAND_SGLTE2:
485 src = baseband_sglte2;
486 if (have_cmdline) --dst;
487 while ((*dst++ = *src++));
488 break;
489
Channagoud Kadabi141f2982012-10-31 11:23:02 +0530490 case BASEBAND_DSDA:
491 src = baseband_dsda;
492 if (have_cmdline) --dst;
493 while ((*dst++ = *src++));
494 break;
Amol Jadi2a15a272013-01-22 12:03:36 -0800495
496 case BASEBAND_DSDA2:
497 src = baseband_dsda2;
498 if (have_cmdline) --dst;
499 while ((*dst++ = *src++));
500 break;
Ajay Dudanid04110c2011-01-17 23:55:07 -0800501 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700502
503 if (strlen(display_panel_buf)) {
Dhaval Patel223ec952013-07-18 14:49:44 -0700504 src = display_panel_buf;
505 if (have_cmdline) --dst;
506 while ((*dst++ = *src++));
507 }
Joonwoo Park61112782013-10-02 19:50:39 -0700508
509 if (have_target_boot_params) {
510 if (have_cmdline) --dst;
511 src = target_boot_params;
512 while ((*dst++ = *src++));
513 }
Neeti Desaie245d492012-06-01 12:52:13 -0700514 }
Dhaval Patel223ec952013-07-18 14:49:44 -0700515
516
Sundarajan Srinivasane52065a2014-03-20 16:25:59 -0700517 if (boot_dev_buf)
518 free(boot_dev_buf);
519
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -0800520 if (cmdline_final)
521 dprintf(INFO, "cmdline: %s\n", cmdline_final);
522 else
523 dprintf(INFO, "cmdline is NULL\n");
Neeti Desaie245d492012-06-01 12:52:13 -0700524 return cmdline_final;
525}
526
527unsigned *atag_core(unsigned *ptr)
528{
529 /* CORE */
530 *ptr++ = 2;
531 *ptr++ = 0x54410001;
532
533 return ptr;
534
535}
536
537unsigned *atag_ramdisk(unsigned *ptr, void *ramdisk,
538 unsigned ramdisk_size)
539{
540 if (ramdisk_size) {
541 *ptr++ = 4;
542 *ptr++ = 0x54420005;
543 *ptr++ = (unsigned)ramdisk;
544 *ptr++ = ramdisk_size;
Brian Swetland9c4c0752009-01-25 16:23:50 -0800545 }
546
Neeti Desaie245d492012-06-01 12:52:13 -0700547 return ptr;
548}
549
550unsigned *atag_ptable(unsigned **ptr_addr)
551{
552 int i;
553 struct ptable *ptable;
554
555 if ((ptable = flash_get_ptable()) && (ptable->count != 0)) {
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700556 *(*ptr_addr)++ = 2 + (ptable->count * (sizeof(struct atag_ptbl_entry) /
557 sizeof(unsigned)));
Neeti Desaie245d492012-06-01 12:52:13 -0700558 *(*ptr_addr)++ = 0x4d534d70;
559 for (i = 0; i < ptable->count; ++i)
560 ptentry_to_tag(ptr_addr, ptable_get(ptable, i));
561 }
562
563 return (*ptr_addr);
564}
565
566unsigned *atag_cmdline(unsigned *ptr, const char *cmdline)
567{
568 int cmdline_length = 0;
569 int n;
Neeti Desaie245d492012-06-01 12:52:13 -0700570 char *dest;
571
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800572 cmdline_length = strlen((const char*)cmdline);
Neeti Desaie245d492012-06-01 12:52:13 -0700573 n = (cmdline_length + 4) & (~3);
574
575 *ptr++ = (n / 4) + 2;
576 *ptr++ = 0x54410009;
577 dest = (char *) ptr;
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800578 while ((*dest++ = *cmdline++));
Neeti Desaie245d492012-06-01 12:52:13 -0700579 ptr += (n / 4);
580
581 return ptr;
582}
583
584unsigned *atag_end(unsigned *ptr)
585{
Brian Swetland9c4c0752009-01-25 16:23:50 -0800586 /* END */
587 *ptr++ = 0;
588 *ptr++ = 0;
589
Neeti Desaie245d492012-06-01 12:52:13 -0700590 return ptr;
591}
592
593void generate_atags(unsigned *ptr, const char *cmdline,
594 void *ramdisk, unsigned ramdisk_size)
595{
596
597 ptr = atag_core(ptr);
598 ptr = atag_ramdisk(ptr, ramdisk, ramdisk_size);
599 ptr = target_atag_mem(ptr);
600
601 /* Skip NAND partition ATAGS for eMMC boot */
602 if (!target_is_emmc_boot()){
603 ptr = atag_ptable(&ptr);
604 }
605
606 ptr = atag_cmdline(ptr, cmdline);
607 ptr = atag_end(ptr);
608}
609
Deepa Dinamani0bf2f442012-10-19 11:41:06 -0700610typedef void entry_func_ptr(unsigned, unsigned, unsigned*);
Neeti Desaie245d492012-06-01 12:52:13 -0700611void boot_linux(void *kernel, unsigned *tags,
612 const char *cmdline, unsigned machtype,
613 void *ramdisk, unsigned ramdisk_size)
614{
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800615 unsigned char *final_cmdline;
Amol Jadib6be5c12012-11-14 13:39:51 -0800616#if DEVICE_TREE
Neeti Desai17379b82012-06-04 18:42:53 -0700617 int ret = 0;
Amol Jadib6be5c12012-11-14 13:39:51 -0800618#endif
619
Deepa Dinamani0bf2f442012-10-19 11:41:06 -0700620 void (*entry)(unsigned, unsigned, unsigned*) = (entry_func_ptr*)(PA((addr_t)kernel));
Deepa Dinamani25a9f762012-11-30 15:57:15 -0800621 uint32_t tags_phys = PA((addr_t)tags);
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800622 struct kernel64_hdr *kptr = (struct kernel64_hdr*)kernel;
Deepa Dinamani25a9f762012-11-30 15:57:15 -0800623
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530624 ramdisk = (void *)PA((addr_t)ramdisk);
Neeti Desaie245d492012-06-01 12:52:13 -0700625
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800626 final_cmdline = update_cmdline((const char*)cmdline);
627
Neeti Desai17379b82012-06-04 18:42:53 -0700628#if DEVICE_TREE
Amol Jadib6be5c12012-11-14 13:39:51 -0800629 dprintf(INFO, "Updating device tree: start\n");
630
Neeti Desai17379b82012-06-04 18:42:53 -0700631 /* Update the Device Tree */
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530632 ret = update_device_tree((void *)tags,(const char *)final_cmdline, ramdisk, ramdisk_size);
Neeti Desai17379b82012-06-04 18:42:53 -0700633 if(ret)
634 {
635 dprintf(CRITICAL, "ERROR: Updating Device Tree Failed \n");
636 ASSERT(0);
637 }
Amol Jadib6be5c12012-11-14 13:39:51 -0800638 dprintf(INFO, "Updating device tree: done\n");
Neeti Desai17379b82012-06-04 18:42:53 -0700639#else
Neeti Desaie245d492012-06-01 12:52:13 -0700640 /* Generating the Atags */
Amol Jadi10c7d1c2013-01-25 13:24:29 -0800641 generate_atags(tags, final_cmdline, ramdisk, ramdisk_size);
Neeti Desai17379b82012-06-04 18:42:53 -0700642#endif
Neeti Desaie245d492012-06-01 12:52:13 -0700643
Maria Yu52254c02014-07-04 16:14:54 +0800644 free(final_cmdline);
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -0700645
646#if VERIFIED_BOOT
647 /* Write protect the device info */
Channagoud Kadabi80a182b2015-03-11 17:04:23 -0700648 if (target_build_variant_user() && devinfo_present && mmc_write_protect("devinfo", 1))
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -0700649 {
650 dprintf(INFO, "Failed to write protect dev info\n");
651 ASSERT(0);
652 }
653#endif
654
Channagoud Kadabi33defe22013-06-18 18:35:40 -0700655 /* Perform target specific cleanup */
656 target_uninit();
657
Aravind Venkateswaran8f076242014-02-25 16:25:30 -0800658 /* Turn off splash screen if enabled */
659#if DISPLAY_SPLASH_SCREEN
660 target_display_shutdown();
661#endif
662
663
Deepa Dinamani33734bc2013-03-06 12:16:06 -0800664 dprintf(INFO, "booting linux @ %p, ramdisk @ %p (%d), tags/device tree @ %p\n",
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530665 entry, ramdisk, ramdisk_size, (void *)tags_phys);
Brian Swetland9c4c0752009-01-25 16:23:50 -0800666
667 enter_critical_section();
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700668
Amol Jadi4421e652011-06-16 15:00:48 -0700669 /* do any platform specific cleanup before kernel entry */
670 platform_uninit();
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700671
Brian Swetland9c4c0752009-01-25 16:23:50 -0800672 arch_disable_cache(UCACHE);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700673
Amol Jadi504f9fe2012-08-16 13:56:48 -0700674#if ARM_WITH_MMU
Brian Swetland9c4c0752009-01-25 16:23:50 -0800675 arch_disable_mmu();
Amol Jadi504f9fe2012-08-16 13:56:48 -0700676#endif
Amol Jadi492d5a52013-03-15 16:12:34 -0700677 bs_set_timestamp(BS_KERNEL_ENTRY);
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800678
679 if (IS_ARM64(kptr))
680 /* Jump to a 64bit kernel */
681 scm_elexec_call((paddr_t)kernel, tags_phys);
682 else
683 /* Jump to a 32bit kernel */
684 entry(0, machtype, (unsigned*)tags_phys);
Brian Swetland9c4c0752009-01-25 16:23:50 -0800685}
686
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700687/* Function to check if the memory address range falls within the aboot
688 * boundaries.
689 * start: Start of the memory region
690 * size: Size of the memory region
691 */
692int check_aboot_addr_range_overlap(uint32_t start, uint32_t size)
693{
694 /* Check for boundary conditions. */
Sundarajan Srinivasance2a0ea2013-12-16 17:02:56 -0800695 if ((UINT_MAX - start) < size)
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700696 return -1;
697
698 /* Check for memory overlap. */
699 if ((start < MEMBASE) && ((start + size) <= MEMBASE))
700 return 0;
Channagoud Kadabi94143912013-10-15 12:53:52 -0700701 else if (start >= (MEMBASE + MEMSIZE))
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700702 return 0;
703 else
704 return -1;
705}
706
Shashank Mittaldcc2e352009-11-19 19:11:16 -0800707#define ROUND_TO_PAGE(x,y) (((x) + (y)) & (~(y)))
Brian Swetland9c4c0752009-01-25 16:23:50 -0800708
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800709BUF_DMA_ALIGN(buf, BOOT_IMG_MAX_PAGE_SIZE); //Equal to max-supported pagesize
Amol Jadib6be5c12012-11-14 13:39:51 -0800710#if DEVICE_TREE
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800711BUF_DMA_ALIGN(dt_buf, BOOT_IMG_MAX_PAGE_SIZE);
Amol Jadib6be5c12012-11-14 13:39:51 -0800712#endif
Dima Zavin214cc642009-01-26 11:16:21 -0800713
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700714static void verify_signed_bootimg(uint32_t bootimg_addr, uint32_t bootimg_size)
715{
716 int ret;
Channagoud Kadabia8c623f2015-01-13 14:48:48 -0800717
718#if !VERIFIED_BOOT
Sundarajan Srinivasance54d6e2013-11-11 12:45:00 -0800719#if IMAGE_VERIF_ALGO_SHA1
720 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA1;
721#else
722 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA256;
723#endif
Channagoud Kadabia8c623f2015-01-13 14:48:48 -0800724#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700725
726 /* Assume device is rooted at this time. */
727 device.is_tampered = 1;
728
729 dprintf(INFO, "Authenticating boot image (%d): start\n", bootimg_size);
730
Shashank Mittald3e54dd2014-08-28 15:24:02 -0700731#if VERIFIED_BOOT
732 if(boot_into_recovery)
733 {
734 ret = boot_verify_image((unsigned char *)bootimg_addr,
735 bootimg_size, "recovery");
736 }
737 else
738 {
739 ret = boot_verify_image((unsigned char *)bootimg_addr,
740 bootimg_size, "boot");
741 }
742 boot_verify_print_state();
743#else
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700744 ret = image_verify((unsigned char *)bootimg_addr,
745 (unsigned char *)(bootimg_addr + bootimg_size),
746 bootimg_size,
Sundarajan Srinivasance54d6e2013-11-11 12:45:00 -0800747 auth_algo);
Shashank Mittald3e54dd2014-08-28 15:24:02 -0700748#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700749 dprintf(INFO, "Authenticating boot image: done return value = %d\n", ret);
750
751 if (ret)
752 {
753 /* Authorized kernel */
754 device.is_tampered = 0;
Sundarajan Srinivasan3fb21f12013-09-16 18:36:15 -0700755 auth_kernel_img = 1;
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700756 }
757
758#if USE_PCOM_SECBOOT
759 set_tamper_flag(device.is_tampered);
760#endif
761
762 if(device.is_tampered)
763 {
764 write_device_info_mmc(&device);
765 #ifdef TZ_TAMPER_FUSE
766 set_tamper_fuse_cmd();
767 #endif
768 #ifdef ASSERT_ON_TAMPER
769 dprintf(CRITICAL, "Device is tampered. Asserting..\n");
770 ASSERT(0);
771 #endif
772 }
Shashank Mittald3e54dd2014-08-28 15:24:02 -0700773
774#if VERIFIED_BOOT
775 if(boot_verify_get_state() == RED)
776 {
777 if(!boot_into_recovery)
778 {
779 dprintf(CRITICAL,
780 "Device verification failed. Rebooting into recovery.\n");
781 reboot_device(RECOVERY_MODE);
782 }
783 else
784 {
785 dprintf(CRITICAL,
786 "Recovery image verification failed. Asserting..\n");
787 ASSERT(0);
788 }
789 }
790#endif
Deepa Dinamani0e163a42013-05-24 17:08:15 -0700791}
792
Maunik Shah0f3c8ac2014-03-02 17:47:58 +0530793static bool check_format_bit()
794{
795 bool ret = false;
796 int index;
797 uint64_t offset;
798 struct boot_selection_info *in = NULL;
799 char *buf = NULL;
800
801 index = partition_get_index("bootselect");
802 if (index == INVALID_PTN)
803 {
804 dprintf(INFO, "Unable to locate /bootselect partition\n");
805 return ret;
806 }
807 offset = partition_get_offset(index);
808 if(!offset)
809 {
810 dprintf(INFO, "partition /bootselect doesn't exist\n");
811 return ret;
812 }
813 buf = (char *) memalign(CACHE_LINE, ROUNDUP(page_size, CACHE_LINE));
814 ASSERT(buf);
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530815 if (mmc_read(offset, (uint32_t *)buf, page_size))
Maunik Shah0f3c8ac2014-03-02 17:47:58 +0530816 {
817 dprintf(INFO, "mmc read failure /bootselect %d\n", page_size);
818 free(buf);
819 return ret;
820 }
821 in = (struct boot_selection_info *) buf;
822 if ((in->signature == BOOTSELECT_SIGNATURE) &&
823 (in->version == BOOTSELECT_VERSION)) {
824 if ((in->state_info & BOOTSELECT_FORMAT) &&
825 !(in->state_info & BOOTSELECT_FACTORY))
826 ret = true;
827 } else {
828 dprintf(CRITICAL, "Signature: 0x%08x or version: 0x%08x mismatched of /bootselect\n",
829 in->signature, in->version);
830 ASSERT(0);
831 }
832 free(buf);
833 return ret;
834}
835
Shashank Mittald3e54dd2014-08-28 15:24:02 -0700836void boot_verifier_init()
837{
838
839 uint32_t boot_state;
840 /* Check if device unlock */
841 if(device.is_unlocked)
842 {
843 boot_verify_send_event(DEV_UNLOCK);
844 boot_verify_print_state();
845 dprintf(CRITICAL, "Device is unlocked! Skipping verification...\n");
846 return;
847 }
848 else
849 {
850 boot_verify_send_event(BOOT_INIT);
851 }
852
853 /* Initialize keystore */
854 boot_state = boot_verify_keystore_init();
855 if(boot_state == YELLOW)
856 {
857 boot_verify_print_state();
858 dprintf(CRITICAL, "Keystore verification failed! Continuing anyways...\n");
859 }
860}
861
Shashank Mittal23b8f422010-04-16 19:27:21 -0700862int boot_linux_from_mmc(void)
863{
864 struct boot_img_hdr *hdr = (void*) buf;
865 struct boot_img_hdr *uhdr;
866 unsigned offset = 0;
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700867 int rcode;
Shashank Mittal23b8f422010-04-16 19:27:21 -0700868 unsigned long long ptn = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -0700869 int index = INVALID_PTN;
Shashank Mittal23b8f422010-04-16 19:27:21 -0700870
Shashank Mittalcd98d472011-08-02 14:29:24 -0700871 unsigned char *image_addr = 0;
872 unsigned kernel_actual;
873 unsigned ramdisk_actual;
874 unsigned imagesize_actual;
Neeti Desai465491e2012-07-31 12:53:35 -0700875 unsigned second_actual = 0;
Neeti Desai465491e2012-07-31 12:53:35 -0700876
Matthew Qinbb7923d2015-02-09 10:56:09 +0800877 unsigned int out_len = 0;
878 unsigned int out_avai_len = 0;
879 unsigned char *out_addr = NULL;
880 uint32_t dtb_offset = 0;
881 unsigned char *kernel_start_addr = NULL;
882 unsigned int kernel_size = 0;
883 int rc;
884
Neeti Desai465491e2012-07-31 12:53:35 -0700885#if DEVICE_TREE
886 struct dt_table *table;
Joel Kingaa335dc2013-06-03 16:11:08 -0700887 struct dt_entry dt_entry;
Neeti Desai465491e2012-07-31 12:53:35 -0700888 unsigned dt_table_offset;
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -0800889 uint32_t dt_actual;
Deepa Dinamani19648b42013-09-05 17:05:55 -0700890 uint32_t dt_hdr_size;
Neeti Desai465491e2012-07-31 12:53:35 -0700891#endif
Matthew Qin49e51fa2015-02-09 10:40:45 +0800892 struct kernel64_hdr *kptr = NULL;
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800893
Maunik Shah0f3c8ac2014-03-02 17:47:58 +0530894 if (check_format_bit())
895 boot_into_recovery = 1;
896
Deepa Dinamani41fa8d62013-05-23 13:25:36 -0700897 if (!boot_into_recovery) {
898 memset(ffbm_mode_string, '\0', sizeof(ffbm_mode_string));
899 rcode = get_ffbm(ffbm_mode_string, sizeof(ffbm_mode_string));
900 if (rcode <= 0) {
901 boot_into_ffbm = false;
902 if (rcode < 0)
903 dprintf(CRITICAL,"failed to get ffbm cookie");
904 } else
905 boot_into_ffbm = true;
906 } else
907 boot_into_ffbm = false;
Shashank Mittal23b8f422010-04-16 19:27:21 -0700908 uhdr = (struct boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
909 if (!memcmp(uhdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
910 dprintf(INFO, "Unified boot method!\n");
911 hdr = uhdr;
912 goto unified_boot;
913 }
Greg Griscod6250552011-06-29 14:40:23 -0700914 if (!boot_into_recovery) {
Kinson Chikf1a43512011-07-14 11:28:39 -0700915 index = partition_get_index("boot");
916 ptn = partition_get_offset(index);
917 if(ptn == 0) {
Shashank Mittal85b91f62010-10-30 10:12:38 -0700918 dprintf(CRITICAL, "ERROR: No boot partition found\n");
919 return -1;
920 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700921 }
922 else {
923 index = partition_get_index("recovery");
924 ptn = partition_get_offset(index);
925 if(ptn == 0) {
Shashank Mittal85b91f62010-10-30 10:12:38 -0700926 dprintf(CRITICAL, "ERROR: No recovery partition found\n");
927 return -1;
928 }
Shashank Mittal23b8f422010-04-16 19:27:21 -0700929 }
Channagoud Kadabief0547c2015-02-10 12:57:38 -0800930 /* Set Lun for boot & recovery partitions */
931 mmc_set_lun(partition_get_lun(index));
Shashank Mittal23b8f422010-04-16 19:27:21 -0700932
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +0530933 if (mmc_read(ptn + offset, (uint32_t *) buf, page_size)) {
Shashank Mittal23b8f422010-04-16 19:27:21 -0700934 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
935 return -1;
936 }
Shashank Mittal23b8f422010-04-16 19:27:21 -0700937
938 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -0700939 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Shashank Mittal23b8f422010-04-16 19:27:21 -0700940 return -1;
941 }
942
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -0700943 if (hdr->page_size && (hdr->page_size != page_size)) {
vijay kumar2e21b3a2014-06-26 17:40:15 +0530944
945 if (hdr->page_size > BOOT_IMG_MAX_PAGE_SIZE) {
946 dprintf(CRITICAL, "ERROR: Invalid page size\n");
947 return -1;
948 }
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -0700949 page_size = hdr->page_size;
950 page_mask = page_size - 1;
Shashank Mittal23b8f422010-04-16 19:27:21 -0700951 }
952
Matthew Qin49e51fa2015-02-09 10:40:45 +0800953 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
954 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -0800955
Matthew Qin49e51fa2015-02-09 10:40:45 +0800956 image_addr = (unsigned char *)target_get_scratch_address();
957
958#if DEVICE_TREE
959 dt_actual = ROUND_TO_PAGE(hdr->dt_size, page_mask);
960 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + dt_actual);
961#else
962 imagesize_actual = (page_size + kernel_actual + ramdisk_actual);
963#endif
964
965#if VERIFIED_BOOT
966 boot_verifier_init();
967#endif
968
969 if (check_aboot_addr_range_overlap((uint32_t) image_addr, imagesize_actual))
970 {
971 dprintf(CRITICAL, "Boot image buffer address overlaps with aboot addresses.\n");
972 return -1;
973 }
974
Matthew Qinbb7923d2015-02-09 10:56:09 +0800975 /*
976 * Update loading flow of bootimage to support compressed/uncompressed
977 * bootimage on both 64bit and 32bit platform.
978 * 1. Load bootimage from emmc partition onto DDR.
979 * 2. Check if bootimage is gzip format. If yes, decompress compressed kernel
980 * 3. Check kernel header and update kernel load addr for 64bit and 32bit
981 * platform accordingly.
982 * 4. Sanity Check on kernel_addr and ramdisk_addr and copy data.
983 */
984
Matthew Qin49e51fa2015-02-09 10:40:45 +0800985 dprintf(INFO, "Loading boot image (%d): start\n", imagesize_actual);
986 bs_set_timestamp(BS_KERNEL_LOAD_START);
987
Matthew Qinbb7923d2015-02-09 10:56:09 +0800988 /* Read image without signature */
Matthew Qin49e51fa2015-02-09 10:40:45 +0800989 if (mmc_read(ptn + offset, (void *)image_addr, imagesize_actual))
990 {
991 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
992 return -1;
993 }
994
995 dprintf(INFO, "Loading boot image (%d): done\n", imagesize_actual);
996 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
997
998 /* Authenticate Kernel */
999 dprintf(INFO, "use_signed_kernel=%d, is_unlocked=%d, is_tampered=%d.\n",
1000 (int) target_use_signed_kernel(),
1001 device.is_unlocked,
1002 device.is_tampered);
1003
1004 if(target_use_signed_kernel() && (!device.is_unlocked))
1005 {
1006 offset = imagesize_actual;
1007 if (check_aboot_addr_range_overlap((uint32_t)image_addr + offset, page_size))
1008 {
1009 dprintf(CRITICAL, "Signature read buffer address overlaps with aboot addresses.\n");
1010 return -1;
1011 }
1012
1013 /* Read signature */
1014 if(mmc_read(ptn + offset, (void *)(image_addr + offset), page_size))
1015 {
1016 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
1017 return -1;
1018 }
1019
1020 verify_signed_bootimg((uint32_t)image_addr, imagesize_actual);
1021 } else {
1022 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
1023 #ifdef TZ_SAVE_KERNEL_HASH
1024 aboot_save_boot_hash_mmc((uint32_t) image_addr, imagesize_actual);
1025 #endif /* TZ_SAVE_KERNEL_HASH */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001026 }
1027
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001028 /*
Matthew Qinbb7923d2015-02-09 10:56:09 +08001029 * Check if the kernel image is a gzip package. If yes, need to decompress it.
1030 * If not, continue booting.
1031 */
1032 if (is_gzip_package((unsigned char *)(image_addr + page_size), hdr->kernel_size))
1033 {
1034 out_addr = (unsigned char *)(image_addr + imagesize_actual + page_size);
1035 out_avai_len = target_get_max_flash_size() - imagesize_actual - page_size;
1036 dprintf(INFO, "decompress image start\n");
1037 rc = decompress((unsigned char *)(image_addr + page_size),
1038 hdr->kernel_size, out_addr, out_avai_len,
1039 &dtb_offset, &out_len);
1040 if (rc)
1041 {
1042 dprintf(INFO, "decompress image failed!!!\n");
1043 ASSERT(0);
1044 }
1045
1046 dprintf(INFO, "decompressed image finished.\n");
1047 kptr = (struct kernel64_hdr *)out_addr;
1048 kernel_start_addr = out_addr;
1049 kernel_size = out_len;
1050 } else {
1051 kptr = (struct kernel64_hdr *)(image_addr + page_size);
1052 kernel_start_addr = (unsigned char *)(image_addr + page_size);
1053 kernel_size = hdr->kernel_size;
1054 }
1055
1056 /*
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001057 * Update the kernel/ramdisk/tags address if the boot image header
1058 * has default values, these default values come from mkbootimg when
1059 * the boot image is flashed using fastboot flash:raw
1060 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001061 update_ker_tags_rdisk_addr(hdr, IS_ARM64(kptr));
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001062
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001063 /* Get virtual addresses since the hdr saves physical addresses. */
1064 hdr->kernel_addr = VA((addr_t)(hdr->kernel_addr));
1065 hdr->ramdisk_addr = VA((addr_t)(hdr->ramdisk_addr));
1066 hdr->tags_addr = VA((addr_t)(hdr->tags_addr));
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001067
Matthew Qinbb7923d2015-02-09 10:56:09 +08001068 kernel_size = ROUND_TO_PAGE(kernel_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001069 /* Check if the addresses in the header are valid. */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001070 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_size) ||
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001071 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual))
1072 {
1073 dprintf(CRITICAL, "kernel/ramdisk addresses overlap with aboot addresses.\n");
1074 return -1;
1075 }
1076
1077#ifndef DEVICE_TREE
1078 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE))
1079 {
1080 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
1081 return -1;
1082 }
1083#endif
1084
Matthew Qin49e51fa2015-02-09 10:40:45 +08001085 /* Move kernel, ramdisk and device tree to correct address */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001086 memmove((void*) hdr->kernel_addr, kernel_start_addr, kernel_size);
Matthew Qin49e51fa2015-02-09 10:40:45 +08001087 memmove((void*) hdr->ramdisk_addr, (char *)(image_addr + page_size + kernel_actual), hdr->ramdisk_size);
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001088
Matthew Qin49e51fa2015-02-09 10:40:45 +08001089 #if DEVICE_TREE
1090 if(hdr->dt_size) {
1091 dt_table_offset = ((uint32_t)image_addr + page_size + kernel_actual + ramdisk_actual + second_actual);
1092 table = (struct dt_table*) dt_table_offset;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001093
Matthew Qin49e51fa2015-02-09 10:40:45 +08001094 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
1095 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1096 return -1;
1097 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001098
Matthew Qin49e51fa2015-02-09 10:40:45 +08001099 /* Find index of device tree within device tree table */
1100 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
1101 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1102 return -1;
1103 }
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001104
Matthew Qin49e51fa2015-02-09 10:40:45 +08001105 /* Validate and Read device device tree in the tags_addr */
1106 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_entry.size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001107 {
1108 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1109 return -1;
1110 }
Shashank Mittal162244e2011-08-08 19:01:25 -07001111
Matthew Qin49e51fa2015-02-09 10:40:45 +08001112 memmove((void *)hdr->tags_addr, (char *)dt_table_offset + dt_entry.offset, dt_entry.size);
1113 } else {
1114 /* Validate the tags_addr */
1115 if (check_aboot_addr_range_overlap(hdr->tags_addr, kernel_actual))
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07001116 {
1117 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1118 return -1;
1119 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001120 /*
1121 * If appended dev tree is found, update the atags with
1122 * memory address to the DTB appended location on RAM.
1123 * Else update with the atags address in the kernel header
1124 */
1125 void *dtb;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001126 dtb = dev_tree_appended((void*)(image_addr + page_size),
1127 hdr->kernel_size, dtb_offset,
Matthew Qin49e51fa2015-02-09 10:40:45 +08001128 (void *)hdr->tags_addr);
1129 if (!dtb) {
1130 dprintf(CRITICAL, "ERROR: Appended Device Tree Blob not found\n");
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07001131 return -1;
1132 }
Shashank Mittalcd98d472011-08-02 14:29:24 -07001133 }
Matthew Qin49e51fa2015-02-09 10:40:45 +08001134 #endif
Shashank Mittal23b8f422010-04-16 19:27:21 -07001135
Stanimir Varbanov69ec5462013-07-18 18:17:42 +03001136 if (boot_into_recovery && !device.is_unlocked && !device.is_tampered)
1137 target_load_ssd_keystore();
1138
Shashank Mittal23b8f422010-04-16 19:27:21 -07001139unified_boot:
Shashank Mittal23b8f422010-04-16 19:27:21 -07001140
Dima Zavin77e41f32013-03-06 16:10:43 -08001141 boot_linux((void *)hdr->kernel_addr, (void *)hdr->tags_addr,
Dima Zavinbd3daa02013-03-26 11:06:44 -07001142 (const char *)hdr->cmdline, board_machtype(),
Shashank Mittal23b8f422010-04-16 19:27:21 -07001143 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
1144
1145 return 0;
1146}
1147
Dima Zavin214cc642009-01-26 11:16:21 -08001148int boot_linux_from_flash(void)
1149{
1150 struct boot_img_hdr *hdr = (void*) buf;
Dima Zavin214cc642009-01-26 11:16:21 -08001151 struct ptentry *ptn;
1152 struct ptable *ptable;
1153 unsigned offset = 0;
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08001154
Shashank Mittalcd98d472011-08-02 14:29:24 -07001155 unsigned char *image_addr = 0;
1156 unsigned kernel_actual;
1157 unsigned ramdisk_actual;
1158 unsigned imagesize_actual;
Amol Jadib6be5c12012-11-14 13:39:51 -08001159 unsigned second_actual;
Shashank Mittalcd98d472011-08-02 14:29:24 -07001160
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001161#if DEVICE_TREE
1162 struct dt_table *table;
Joel Kingaa335dc2013-06-03 16:11:08 -07001163 struct dt_entry dt_entry;
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001164 uint32_t dt_actual;
Deepa Dinamani19648b42013-09-05 17:05:55 -07001165 uint32_t dt_hdr_size;
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001166#endif
1167
David Ng183a7422009-12-07 14:55:21 -08001168 if (target_is_emmc_boot()) {
1169 hdr = (struct boot_img_hdr *)EMMC_BOOT_IMG_HEADER_ADDR;
1170 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1171 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
1172 return -1;
1173 }
1174 goto continue_boot;
1175 }
1176
Dima Zavin214cc642009-01-26 11:16:21 -08001177 ptable = flash_get_ptable();
1178 if (ptable == NULL) {
1179 dprintf(CRITICAL, "ERROR: Partition table not found\n");
1180 return -1;
1181 }
1182
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08001183 if(!boot_into_recovery)
1184 {
1185 ptn = ptable_find(ptable, "boot");
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001186
Chandan Uddarajude85d3f2010-01-05 16:32:33 -08001187 if (ptn == NULL) {
1188 dprintf(CRITICAL, "ERROR: No boot partition found\n");
1189 return -1;
1190 }
1191 }
1192 else
1193 {
1194 ptn = ptable_find(ptable, "recovery");
1195 if (ptn == NULL) {
1196 dprintf(CRITICAL, "ERROR: No recovery partition found\n");
1197 return -1;
1198 }
Dima Zavin214cc642009-01-26 11:16:21 -08001199 }
1200
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001201 if (flash_read(ptn, offset, buf, page_size)) {
Dima Zavin214cc642009-01-26 11:16:21 -08001202 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
1203 return -1;
1204 }
Dima Zavin214cc642009-01-26 11:16:21 -08001205
1206 if (memcmp(hdr->magic, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07001207 dprintf(CRITICAL, "ERROR: Invalid boot image header\n");
Dima Zavin214cc642009-01-26 11:16:21 -08001208 return -1;
1209 }
1210
Shashank Mittaldcc2e352009-11-19 19:11:16 -08001211 if (hdr->page_size != page_size) {
Kinson Chik kchik@codeaurora.org82e4ae62011-04-12 17:42:07 -07001212 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 -08001213 return -1;
1214 }
1215
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001216 /*
1217 * Update the kernel/ramdisk/tags address if the boot image header
1218 * has default values, these default values come from mkbootimg when
1219 * the boot image is flashed using fastboot flash:raw
1220 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001221 update_ker_tags_rdisk_addr(hdr, false);
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001222
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001223 /* Get virtual addresses since the hdr saves physical addresses. */
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001224 hdr->kernel_addr = VA((addr_t)(hdr->kernel_addr));
1225 hdr->ramdisk_addr = VA((addr_t)(hdr->ramdisk_addr));
1226 hdr->tags_addr = VA((addr_t)(hdr->tags_addr));
1227
1228 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
1229 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
1230
1231 /* Check if the addresses in the header are valid. */
1232 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_actual) ||
1233 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual))
1234 {
1235 dprintf(CRITICAL, "kernel/ramdisk addresses overlap with aboot addresses.\n");
1236 return -1;
1237 }
1238
1239#ifndef DEVICE_TREE
1240 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE))
1241 {
1242 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
1243 return -1;
1244 }
1245#endif
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001246
Shashank Mittalcd98d472011-08-02 14:29:24 -07001247 /* Authenticate Kernel */
Deepa Dinamani23b60d42013-06-24 18:10:52 -07001248 if(target_use_signed_kernel() && (!device.is_unlocked))
Shashank Mittalcd98d472011-08-02 14:29:24 -07001249 {
1250 image_addr = (unsigned char *)target_get_scratch_address();
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001251 offset = 0;
1252
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001253#if DEVICE_TREE
1254 dt_actual = ROUND_TO_PAGE(hdr->dt_size, page_mask);
1255 imagesize_actual = (page_size + kernel_actual + ramdisk_actual + dt_actual);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001256
1257 if (check_aboot_addr_range_overlap(hdr->tags_addr, hdr->dt_size))
1258 {
1259 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1260 return -1;
1261 }
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001262#else
Shashank Mittalcd98d472011-08-02 14:29:24 -07001263 imagesize_actual = (page_size + kernel_actual + ramdisk_actual);
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001264#endif
Shashank Mittal162244e2011-08-08 19:01:25 -07001265
Amol Jadib6be5c12012-11-14 13:39:51 -08001266 dprintf(INFO, "Loading boot image (%d): start\n", imagesize_actual);
Amol Jadi492d5a52013-03-15 16:12:34 -07001267 bs_set_timestamp(BS_KERNEL_LOAD_START);
Amol Jadib6be5c12012-11-14 13:39:51 -08001268
Shashank Mittalcd98d472011-08-02 14:29:24 -07001269 /* Read image without signature */
1270 if (flash_read(ptn, offset, (void *)image_addr, imagesize_actual))
1271 {
1272 dprintf(CRITICAL, "ERROR: Cannot read boot image\n");
1273 return -1;
1274 }
Dima Zavin214cc642009-01-26 11:16:21 -08001275
Amol Jadib6be5c12012-11-14 13:39:51 -08001276 dprintf(INFO, "Loading boot image (%d): done\n", imagesize_actual);
Amol Jadi492d5a52013-03-15 16:12:34 -07001277 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
Amol Jadib6be5c12012-11-14 13:39:51 -08001278
Shashank Mittalcd98d472011-08-02 14:29:24 -07001279 offset = imagesize_actual;
1280 /* Read signature */
1281 if (flash_read(ptn, offset, (void *)(image_addr + offset), page_size))
1282 {
1283 dprintf(CRITICAL, "ERROR: Cannot read boot image signature\n");
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001284 return -1;
Shashank Mittalcd98d472011-08-02 14:29:24 -07001285 }
Shashank Mittalcd98d472011-08-02 14:29:24 -07001286
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301287 verify_signed_bootimg((uint32_t)image_addr, imagesize_actual);
Shashank Mittalcd98d472011-08-02 14:29:24 -07001288
1289 /* Move kernel and ramdisk to correct address */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001290 memmove((void*) hdr->kernel_addr, (char*) (image_addr + page_size), hdr->kernel_size);
1291 memmove((void*) hdr->ramdisk_addr, (char*) (image_addr + page_size + kernel_actual), hdr->ramdisk_size);
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001292#if DEVICE_TREE
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001293 /* Validate and Read device device tree in the "tags_add */
Joel Kingaa335dc2013-06-03 16:11:08 -07001294 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_entry.size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001295 {
1296 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1297 return -1;
1298 }
1299
Deepa Dinamani7aaf83d2012-12-21 11:27:01 -08001300 memmove((void*) hdr->tags_addr, (char *)(image_addr + page_size + kernel_actual + ramdisk_actual), hdr->dt_size);
1301#endif
Shashank Mittal162244e2011-08-08 19:01:25 -07001302
1303 /* Make sure everything from scratch address is read before next step!*/
Shashank Mittala0032282011-08-26 14:50:11 -07001304 if(device.is_tampered)
Shashank Mittal162244e2011-08-08 19:01:25 -07001305 {
1306 write_device_info_flash(&device);
1307 }
Channagoud Kadabi5c86fe32012-02-16 10:58:48 +05301308#if USE_PCOM_SECBOOT
1309 set_tamper_flag(device.is_tampered);
1310#endif
Shashank Mittalcd98d472011-08-02 14:29:24 -07001311 }
1312 else
1313 {
Shashank Mittal162244e2011-08-08 19:01:25 -07001314 offset = page_size;
1315
Amol Jadib6be5c12012-11-14 13:39:51 -08001316 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
1317 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
1318 second_actual = ROUND_TO_PAGE(hdr->second_size, page_mask);
1319
1320 dprintf(INFO, "Loading boot image (%d): start\n",
1321 kernel_actual + ramdisk_actual);
Amol Jadi492d5a52013-03-15 16:12:34 -07001322 bs_set_timestamp(BS_KERNEL_LOAD_START);
Amol Jadib6be5c12012-11-14 13:39:51 -08001323
1324 if (flash_read(ptn, offset, (void *)hdr->kernel_addr, kernel_actual)) {
Shashank Mittalcd98d472011-08-02 14:29:24 -07001325 dprintf(CRITICAL, "ERROR: Cannot read kernel image\n");
1326 return -1;
1327 }
Amol Jadib6be5c12012-11-14 13:39:51 -08001328 offset += kernel_actual;
Shashank Mittalcd98d472011-08-02 14:29:24 -07001329
Amol Jadib6be5c12012-11-14 13:39:51 -08001330 if (flash_read(ptn, offset, (void *)hdr->ramdisk_addr, ramdisk_actual)) {
Shashank Mittalcd98d472011-08-02 14:29:24 -07001331 dprintf(CRITICAL, "ERROR: Cannot read ramdisk image\n");
1332 return -1;
1333 }
Amol Jadib6be5c12012-11-14 13:39:51 -08001334 offset += ramdisk_actual;
1335
1336 dprintf(INFO, "Loading boot image (%d): done\n",
1337 kernel_actual + ramdisk_actual);
Amol Jadi492d5a52013-03-15 16:12:34 -07001338 bs_set_timestamp(BS_KERNEL_LOAD_DONE);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001339
1340 if(hdr->second_size != 0) {
Amol Jadib6be5c12012-11-14 13:39:51 -08001341 offset += second_actual;
1342 /* Second image loading not implemented. */
1343 ASSERT(0);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001344 }
1345
1346#if DEVICE_TREE
1347 if(hdr->dt_size != 0) {
1348
1349 /* Read the device tree table into buffer */
1350 if(flash_read(ptn, offset, (void *) dt_buf, page_size)) {
1351 dprintf(CRITICAL, "ERROR: Cannot read the Device Tree Table\n");
1352 return -1;
1353 }
1354
1355 table = (struct dt_table*) dt_buf;
1356
Deepa Dinamani19648b42013-09-05 17:05:55 -07001357 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001358 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1359 return -1;
1360 }
1361
Deepa Dinamani19648b42013-09-05 17:05:55 -07001362 table = (struct dt_table*) memalign(CACHE_LINE, dt_hdr_size);
1363 if (!table)
1364 return -1;
1365
1366 /* Read the entire device tree table into buffer */
1367 if(flash_read(ptn, offset, (void *)table, dt_hdr_size)) {
1368 dprintf(CRITICAL, "ERROR: Cannot read the Device Tree Table\n");
1369 return -1;
1370 }
1371
1372
Joel Kingaa335dc2013-06-03 16:11:08 -07001373 /* Find index of device tree within device tree table */
1374 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001375 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1376 return -1;
1377 }
1378
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001379 /* Validate and Read device device tree in the "tags_add */
Joel Kingaa335dc2013-06-03 16:11:08 -07001380 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_entry.size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001381 {
1382 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1383 return -1;
1384 }
1385
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001386 /* Read device device tree in the "tags_add */
Joel Kingaa335dc2013-06-03 16:11:08 -07001387 if(flash_read(ptn, offset + dt_entry.offset,
1388 (void *)hdr->tags_addr, dt_entry.size)) {
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001389 dprintf(CRITICAL, "ERROR: Cannot read device tree\n");
1390 return -1;
1391 }
1392 }
1393#endif
1394
Shashank Mittalcd98d472011-08-02 14:29:24 -07001395 }
David Ng183a7422009-12-07 14:55:21 -08001396continue_boot:
Dima Zavin214cc642009-01-26 11:16:21 -08001397
Dima Zavin214cc642009-01-26 11:16:21 -08001398 /* TODO: create/pass atags to kernel */
1399
Ajay Dudanie28a6072011-07-01 13:59:46 -07001400 boot_linux((void *)hdr->kernel_addr, (void *)hdr->tags_addr,
Dima Zavinbd3daa02013-03-26 11:06:44 -07001401 (const char *)hdr->cmdline, board_machtype(),
Dima Zavin214cc642009-01-26 11:16:21 -08001402 (void *)hdr->ramdisk_addr, hdr->ramdisk_size);
1403
1404 return 0;
1405}
Brian Swetland9c4c0752009-01-25 16:23:50 -08001406
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001407BUF_DMA_ALIGN(info_buf, BOOT_IMG_MAX_PAGE_SIZE);
Shashank Mittal162244e2011-08-08 19:01:25 -07001408void write_device_info_mmc(device_info *dev)
1409{
Shashank Mittal162244e2011-08-08 19:01:25 -07001410 unsigned long long ptn = 0;
1411 unsigned long long size;
1412 int index = INVALID_PTN;
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07001413 uint32_t blocksize;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001414 uint8_t lun = 0;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001415 uint32_t ret = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07001416
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001417 if (devinfo_present)
1418 index = partition_get_index("devinfo");
1419 else
1420 index = partition_get_index("aboot");
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07001421
Shashank Mittal162244e2011-08-08 19:01:25 -07001422 ptn = partition_get_offset(index);
1423 if(ptn == 0)
1424 {
1425 return;
1426 }
1427
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001428 lun = partition_get_lun(index);
1429 mmc_set_lun(lun);
1430
Shashank Mittal162244e2011-08-08 19:01:25 -07001431 size = partition_get_size(index);
1432
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07001433 blocksize = mmc_get_device_blocksize();
1434
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001435 if (devinfo_present)
1436 ret = mmc_write(ptn, blocksize, (void *)info_buf);
1437 else
1438 ret = mmc_write((ptn + size - blocksize), blocksize, (void *)info_buf);
1439 if (ret)
Shashank Mittal162244e2011-08-08 19:01:25 -07001440 {
1441 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
1442 return;
1443 }
1444}
1445
Channagoud Kadabi036c6052015-02-09 15:19:59 -08001446void read_device_info_mmc(struct device_info *info)
Shashank Mittal162244e2011-08-08 19:01:25 -07001447{
Shashank Mittal162244e2011-08-08 19:01:25 -07001448 unsigned long long ptn = 0;
1449 unsigned long long size;
1450 int index = INVALID_PTN;
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07001451 uint32_t blocksize;
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001452 uint32_t ret = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07001453
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001454 if ((index = partition_get_index("devinfo")) < 0)
1455 {
1456 devinfo_present = false;
1457 index = partition_get_index("aboot");
1458 }
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07001459
Shashank Mittal162244e2011-08-08 19:01:25 -07001460 ptn = partition_get_offset(index);
1461 if(ptn == 0)
1462 {
1463 return;
1464 }
1465
Channagoud Kadabi5d0371c2014-10-21 22:27:07 -07001466 mmc_set_lun(partition_get_lun(index));
1467
Shashank Mittal162244e2011-08-08 19:01:25 -07001468 size = partition_get_size(index);
1469
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07001470 blocksize = mmc_get_device_blocksize();
1471
Channagoud Kadabi80a182b2015-03-11 17:04:23 -07001472 if (devinfo_present)
1473 ret = mmc_read(ptn, (void *)info_buf, blocksize);
1474 else
1475 ret = mmc_read((ptn + size - blocksize), (void *)info_buf, blocksize);
1476 if (ret)
Shashank Mittal162244e2011-08-08 19:01:25 -07001477 {
1478 dprintf(CRITICAL, "ERROR: Cannot read device info\n");
1479 return;
1480 }
1481
Shashank Mittal162244e2011-08-08 19:01:25 -07001482}
1483
1484void write_device_info_flash(device_info *dev)
1485{
1486 struct device_info *info = (void *) info_buf;
1487 struct ptentry *ptn;
1488 struct ptable *ptable;
1489
1490 ptable = flash_get_ptable();
1491 if (ptable == NULL)
1492 {
1493 dprintf(CRITICAL, "ERROR: Partition table not found\n");
1494 return;
1495 }
1496
1497 ptn = ptable_find(ptable, "devinfo");
1498 if (ptn == NULL)
1499 {
1500 dprintf(CRITICAL, "ERROR: No boot partition found\n");
1501 return;
1502 }
1503
1504 memcpy(info, dev, sizeof(device_info));
1505
1506 if (flash_write(ptn, 0, (void *)info_buf, page_size))
1507 {
1508 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
1509 return;
1510 }
1511}
1512
1513void read_device_info_flash(device_info *dev)
1514{
1515 struct device_info *info = (void*) info_buf;
1516 struct ptentry *ptn;
1517 struct ptable *ptable;
1518
1519 ptable = flash_get_ptable();
1520 if (ptable == NULL)
1521 {
1522 dprintf(CRITICAL, "ERROR: Partition table not found\n");
1523 return;
1524 }
1525
1526 ptn = ptable_find(ptable, "devinfo");
1527 if (ptn == NULL)
1528 {
1529 dprintf(CRITICAL, "ERROR: No boot partition found\n");
1530 return;
1531 }
1532
1533 if (flash_read(ptn, 0, (void *)info_buf, page_size))
1534 {
1535 dprintf(CRITICAL, "ERROR: Cannot write device info\n");
1536 return;
1537 }
1538
1539 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
1540 {
Shashank Mittal162244e2011-08-08 19:01:25 -07001541 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
1542 info->is_unlocked = 0;
Shashank Mittala0032282011-08-26 14:50:11 -07001543 info->is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07001544 write_device_info_flash(info);
1545 }
1546 memcpy(dev, info, sizeof(device_info));
1547}
1548
1549void write_device_info(device_info *dev)
1550{
1551 if(target_is_emmc_boot())
1552 {
Channagoud Kadabi036c6052015-02-09 15:19:59 -08001553 struct device_info *info = (void*) info_buf;
1554 memcpy(info, dev, sizeof(struct device_info));
1555
1556#if USE_RPMB_FOR_DEVINFO
1557 if (is_secure_boot_enable())
1558 write_device_info_rpmb((void*) info, mmc_get_device_blocksize());
1559#else
1560 write_device_info_mmc(info);
1561#endif
Shashank Mittal162244e2011-08-08 19:01:25 -07001562 }
1563 else
1564 {
1565 write_device_info_flash(dev);
1566 }
1567}
1568
1569void read_device_info(device_info *dev)
1570{
1571 if(target_is_emmc_boot())
1572 {
Channagoud Kadabi036c6052015-02-09 15:19:59 -08001573 struct device_info *info = (void*) info_buf;
1574
1575#if USE_RPMB_FOR_DEVINFO
1576 if (is_secure_boot_enable())
1577 read_device_info_rpmb((void*) info, mmc_get_device_blocksize());
1578#else
1579 read_device_info_mmc(info);
1580#endif
1581
1582 if (memcmp(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE))
1583 {
1584 memcpy(info->magic, DEVICE_MAGIC, DEVICE_MAGIC_SIZE);
1585 if (is_secure_boot_enable())
1586 info->is_unlocked = 0;
1587 else
1588 info->is_unlocked = 1;
1589 info->is_verified = 0;
1590 info->is_tampered = 0;
1591 info->charger_screen_enabled = 0;
1592
1593 write_device_info(info);
1594 }
1595 memcpy(dev, info, sizeof(device_info));
Shashank Mittal162244e2011-08-08 19:01:25 -07001596 }
1597 else
1598 {
1599 read_device_info_flash(dev);
1600 }
1601}
1602
1603void reset_device_info()
1604{
1605 dprintf(ALWAYS, "reset_device_info called.");
Shashank Mittala0032282011-08-26 14:50:11 -07001606 device.is_tampered = 0;
Shashank Mittal162244e2011-08-08 19:01:25 -07001607 write_device_info(&device);
1608}
1609
1610void set_device_root()
1611{
1612 dprintf(ALWAYS, "set_device_root called.");
Shashank Mittala0032282011-08-26 14:50:11 -07001613 device.is_tampered = 1;
Shashank Mittal162244e2011-08-08 19:01:25 -07001614 write_device_info(&device);
1615}
1616
Amol Jadicb524072012-08-09 16:40:18 -07001617#if DEVICE_TREE
1618int copy_dtb(uint8_t *boot_image_start)
1619{
1620 uint32 dt_image_offset = 0;
1621 uint32_t n;
1622 struct dt_table *table;
Joel Kingaa335dc2013-06-03 16:11:08 -07001623 struct dt_entry dt_entry;
Deepa Dinamani19648b42013-09-05 17:05:55 -07001624 uint32_t dt_hdr_size;
Amol Jadicb524072012-08-09 16:40:18 -07001625
1626 struct boot_img_hdr *hdr = (struct boot_img_hdr *) (boot_image_start);
1627
Amol Jadicb524072012-08-09 16:40:18 -07001628 if(hdr->dt_size != 0) {
Amol Jadicb524072012-08-09 16:40:18 -07001629 /* add kernel offset */
1630 dt_image_offset += page_size;
1631 n = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
1632 dt_image_offset += n;
1633
1634 /* add ramdisk offset */
1635 n = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
1636 dt_image_offset += n;
1637
1638 /* add second offset */
1639 if(hdr->second_size != 0) {
1640 n = ROUND_TO_PAGE(hdr->second_size, page_mask);
1641 dt_image_offset += n;
1642 }
1643
1644 /* offset now point to start of dt.img */
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001645 table = (struct dt_table*)(boot_image_start + dt_image_offset);
Amol Jadicb524072012-08-09 16:40:18 -07001646
Deepa Dinamani19648b42013-09-05 17:05:55 -07001647 if (dev_tree_validate(table, hdr->page_size, &dt_hdr_size) != 0) {
Amol Jadicb524072012-08-09 16:40:18 -07001648 dprintf(CRITICAL, "ERROR: Cannot validate Device Tree Table \n");
1649 return -1;
1650 }
Joel Kingaa335dc2013-06-03 16:11:08 -07001651 /* Find index of device tree within device tree table */
1652 if(dev_tree_get_entry_info(table, &dt_entry) != 0){
Amol Jadicb524072012-08-09 16:40:18 -07001653 dprintf(CRITICAL, "ERROR: Getting device tree address failed\n");
1654 return -1;
1655 }
1656
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001657 /* Validate and Read device device tree in the "tags_add */
Joel Kingaa335dc2013-06-03 16:11:08 -07001658 if (check_aboot_addr_range_overlap(hdr->tags_addr, dt_entry.size))
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001659 {
1660 dprintf(CRITICAL, "Device tree addresses overlap with aboot addresses.\n");
1661 return -1;
1662 }
1663
Amol Jadicb524072012-08-09 16:40:18 -07001664 /* Read device device tree in the "tags_add */
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001665 memmove((void*) hdr->tags_addr,
Joel Kingaa335dc2013-06-03 16:11:08 -07001666 boot_image_start + dt_image_offset + dt_entry.offset,
1667 dt_entry.size);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07001668 } else
1669 return -1;
Amol Jadicb524072012-08-09 16:40:18 -07001670
1671 /* Everything looks fine. Return success. */
1672 return 0;
1673}
1674#endif
1675
Brian Swetland9c4c0752009-01-25 16:23:50 -08001676void cmd_boot(const char *arg, void *data, unsigned sz)
1677{
1678 unsigned kernel_actual;
1679 unsigned ramdisk_actual;
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07001680 uint32_t image_actual;
1681 uint32_t dt_actual = 0;
Channagoud Kadabi3d839012014-06-26 14:26:39 -07001682 uint32_t sig_actual = SIGNATURE_SIZE;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001683 struct boot_img_hdr *hdr = NULL;
1684 struct kernel64_hdr *kptr = NULL;
Brian Swetland9c4c0752009-01-25 16:23:50 -08001685 char *ptr = ((char*) data);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07001686 int ret = 0;
1687 uint8_t dtb_copied = 0;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001688 unsigned int out_len = 0;
1689 unsigned int out_avai_len = 0;
1690 unsigned char *out_addr = NULL;
1691 uint32_t dtb_offset = 0;
1692 unsigned char *kernel_start_addr = NULL;
1693 unsigned int kernel_size = 0;
1694
Brian Swetland9c4c0752009-01-25 16:23:50 -08001695
Amit Blay6281ebc2015-01-11 14:44:08 +02001696#ifdef MDTP_SUPPORT
1697 /* Go through Firmware Lock verification before continue with boot process */
1698 mdtp_fwlock_verify_lock();
Reut Zysman18411272015-02-09 13:47:27 +02001699 display_image_on_screen();
Amit Blay6281ebc2015-01-11 14:44:08 +02001700#endif /* MDTP_SUPPORT */
1701
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001702#if VERIFIED_BOOT
1703 if(!device.is_unlocked)
1704 {
1705 fastboot_fail("unlock device to use this command");
1706 return;
1707 }
1708#endif
1709
Brian Swetland9c4c0752009-01-25 16:23:50 -08001710 if (sz < sizeof(hdr)) {
1711 fastboot_fail("invalid bootimage header");
1712 return;
1713 }
1714
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001715 hdr = (struct boot_img_hdr *)data;
Brian Swetland9c4c0752009-01-25 16:23:50 -08001716
1717 /* ensure commandline is terminated */
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001718 hdr->cmdline[BOOT_ARGS_SIZE-1] = 0;
Brian Swetland9c4c0752009-01-25 16:23:50 -08001719
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001720 if(target_is_emmc_boot() && hdr->page_size) {
1721 page_size = hdr->page_size;
Subbaraman Narayanamurthyfbe13a02010-09-10 11:51:12 -07001722 page_mask = page_size - 1;
1723 }
1724
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001725 kernel_actual = ROUND_TO_PAGE(hdr->kernel_size, page_mask);
1726 ramdisk_actual = ROUND_TO_PAGE(hdr->ramdisk_size, page_mask);
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07001727#if DEVICE_TREE
1728 dt_actual = ROUND_TO_PAGE(hdr->dt_size, page_mask);
1729#endif
1730
1731 image_actual = ADD_OF(page_size, kernel_actual);
1732 image_actual = ADD_OF(image_actual, ramdisk_actual);
1733 image_actual = ADD_OF(image_actual, dt_actual);
1734
Channagoud Kadabi3d839012014-06-26 14:26:39 -07001735 if (target_use_signed_kernel() && (!device.is_unlocked))
1736 image_actual = ADD_OF(image_actual, sig_actual);
1737
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07001738 /* sz should have atleast raw boot image */
1739 if (image_actual > sz) {
Channagoud Kadabi3d839012014-06-26 14:26:39 -07001740 fastboot_fail("bootimage: incomplete or not signed");
Channagoud Kadabifc3b31f2014-06-18 17:41:01 -07001741 return;
1742 }
1743
1744 /* Verify the boot image
1745 * device & page_size are initialized in aboot_init
1746 */
1747 if (target_use_signed_kernel() && (!device.is_unlocked))
Channagoud Kadabi3d839012014-06-26 14:26:39 -07001748 /* Pass size excluding signature size, otherwise we would try to
1749 * access signature beyond its length
1750 */
1751 verify_signed_bootimg((uint32_t)data, (image_actual - sig_actual));
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001752
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001753 /*
Matthew Qinbb7923d2015-02-09 10:56:09 +08001754 * Check if the kernel image is a gzip package. If yes, need to decompress it.
1755 * If not, continue booting.
1756 */
1757 if (is_gzip_package((unsigned char *)(data + page_size), hdr->kernel_size))
1758 {
1759 out_addr = (unsigned char *)target_get_scratch_address();
1760 out_addr = (unsigned char *)(out_addr + image_actual + page_size);
1761 out_avai_len = target_get_max_flash_size() - image_actual - page_size;
1762 dprintf(INFO, "decompress image start\n");
1763 ret = decompress((unsigned char *)(ptr + page_size),
1764 hdr->kernel_size, out_addr, out_avai_len,
1765 &dtb_offset, &out_len);
1766 if (ret)
1767 {
1768 dprintf(INFO, "decompress image failed!!!\n");
1769 ASSERT(0);
1770 }
1771
1772 dprintf(INFO, "decompressed image finished.\n");
1773 kptr = (struct kernel64_hdr *)out_addr;
1774 kernel_start_addr = out_addr;
1775 kernel_size = out_len;
1776 } else {
1777 kptr = (struct kernel64_hdr*)((char *)data + page_size);
1778 kernel_start_addr = (unsigned char *)((char *)data + page_size);
1779 kernel_size = hdr->kernel_size;
1780 }
1781
1782 /*
Channagoud Kadabia22144f2013-03-20 11:49:01 -07001783 * Update the kernel/ramdisk/tags address if the boot image header
1784 * has default values, these default values come from mkbootimg when
1785 * the boot image is flashed using fastboot flash:raw
1786 */
Abhimanyu Kapur0f79d572014-02-19 22:03:02 -08001787 update_ker_tags_rdisk_addr(hdr, IS_ARM64(kptr));
Dima Zavin3cadfff2013-03-21 14:30:48 -07001788
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001789 /* Get virtual addresses since the hdr saves physical addresses. */
1790 hdr->kernel_addr = VA(hdr->kernel_addr);
1791 hdr->ramdisk_addr = VA(hdr->ramdisk_addr);
1792 hdr->tags_addr = VA(hdr->tags_addr);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001793
Matthew Qinbb7923d2015-02-09 10:56:09 +08001794 kernel_size = ROUND_TO_PAGE(kernel_size, page_mask);
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001795 /* Check if the addresses in the header are valid. */
Matthew Qinbb7923d2015-02-09 10:56:09 +08001796 if (check_aboot_addr_range_overlap(hdr->kernel_addr, kernel_size) ||
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001797 check_aboot_addr_range_overlap(hdr->ramdisk_addr, ramdisk_actual))
1798 {
1799 dprintf(CRITICAL, "kernel/ramdisk addresses overlap with aboot addresses.\n");
Channagoud Kadabi881856c2013-12-03 11:19:20 -08001800 return;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001801 }
1802
Amol Jadicb524072012-08-09 16:40:18 -07001803#if DEVICE_TREE
1804 /* find correct dtb and copy it to right location */
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07001805 ret = copy_dtb(data);
1806
1807 dtb_copied = !ret ? 1 : 0;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001808#else
1809 if (check_aboot_addr_range_overlap(hdr->tags_addr, MAX_TAGS_SIZE))
1810 {
1811 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
Channagoud Kadabi881856c2013-12-03 11:19:20 -08001812 return;
Deepa Dinamani0e163a42013-05-24 17:08:15 -07001813 }
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07001814#endif
1815
1816 /* Load ramdisk & kernel */
1817 memmove((void*) hdr->ramdisk_addr, ptr + page_size + kernel_actual, hdr->ramdisk_size);
Matthew Qinbb7923d2015-02-09 10:56:09 +08001818 memmove((void*) hdr->kernel_addr, (char*) (kernel_start_addr), kernel_size);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07001819
1820#if DEVICE_TREE
Matthew Qinbb7923d2015-02-09 10:56:09 +08001821 if (check_aboot_addr_range_overlap(hdr->tags_addr, kernel_actual))
1822 {
1823 dprintf(CRITICAL, "Tags addresses overlap with aboot addresses.\n");
1824 return;
1825 }
1826
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07001827 /*
1828 * If dtb is not found look for appended DTB in the kernel.
1829 * If appended dev tree is found, update the atags with
1830 * memory address to the DTB appended location on RAM.
1831 * Else update with the atags address in the kernel header
1832 */
1833 if (!dtb_copied) {
1834 void *dtb;
Matthew Qinbb7923d2015-02-09 10:56:09 +08001835 dtb = dev_tree_appended((void*)(ptr + page_size),
1836 hdr->kernel_size, dtb_offset,
Dima Zavine63e5572013-05-03 12:23:06 -07001837 (void *)hdr->tags_addr);
Channagoud Kadabi8e9020f2013-04-16 11:24:32 -07001838 if (!dtb) {
1839 fastboot_fail("dtb not found");
1840 return;
1841 }
Amol Jadicb524072012-08-09 16:40:18 -07001842 }
1843#endif
Brian Swetland9c4c0752009-01-25 16:23:50 -08001844
1845 fastboot_okay("");
Amol Jadi7c4316c2013-10-07 14:19:26 -07001846 fastboot_stop();
Brian Swetland9c4c0752009-01-25 16:23:50 -08001847
Dima Zavin77e41f32013-03-06 16:10:43 -08001848 boot_linux((void*) hdr->kernel_addr, (void*) hdr->tags_addr,
Deepa Dinamani0bf2f442012-10-19 11:41:06 -07001849 (const char*) hdr->cmdline, board_machtype(),
1850 (void*) hdr->ramdisk_addr, hdr->ramdisk_size);
Brian Swetland9c4c0752009-01-25 16:23:50 -08001851}
1852
Sridhar Parasurame94e8152014-10-24 14:06:03 -07001853void cmd_erase_nand(const char *arg, void *data, unsigned sz)
Dima Zavin214cc642009-01-26 11:16:21 -08001854{
1855 struct ptentry *ptn;
1856 struct ptable *ptable;
1857
1858 ptable = flash_get_ptable();
1859 if (ptable == NULL) {
1860 fastboot_fail("partition table doesn't exist");
1861 return;
1862 }
1863
1864 ptn = ptable_find(ptable, arg);
1865 if (ptn == NULL) {
1866 fastboot_fail("unknown partition name");
1867 return;
1868 }
1869
1870 if (flash_erase(ptn)) {
1871 fastboot_fail("failed to erase partition");
1872 return;
1873 }
1874 fastboot_okay("");
1875}
1876
Bikas Gurungd48bd242010-09-04 19:54:32 -07001877
1878void cmd_erase_mmc(const char *arg, void *data, unsigned sz)
1879{
1880 unsigned long long ptn = 0;
Oliver Wangcee448d2013-10-22 18:40:13 +08001881 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001882 int index = INVALID_PTN;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001883 uint8_t lun = 0;
Bikas Gurungd48bd242010-09-04 19:54:32 -07001884
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001885#if VERIFIED_BOOT
1886 if(!strcmp(arg, KEYSTORE_PTN_NAME))
1887 {
1888 if(!device.is_unlocked)
1889 {
1890 fastboot_fail("unlock device to erase keystore");
1891 return;
1892 }
1893 }
1894#endif
1895
Kinson Chikf1a43512011-07-14 11:28:39 -07001896 index = partition_get_index(arg);
1897 ptn = partition_get_offset(index);
Oliver Wangcee448d2013-10-22 18:40:13 +08001898 size = partition_get_size(index);
Neeti Desaica8c9602011-10-06 11:40:00 -07001899
Kinson Chikf1a43512011-07-14 11:28:39 -07001900 if(ptn == 0) {
Neeti Desaica8c9602011-10-06 11:40:00 -07001901 fastboot_fail("Partition table doesn't exist\n");
Bikas Gurungd48bd242010-09-04 19:54:32 -07001902 return;
1903 }
Kun Liang2f1601a2013-08-12 16:29:54 +08001904
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001905 lun = partition_get_lun(index);
1906 mmc_set_lun(lun);
1907
Sridhar Parasuramd7957122015-02-27 11:33:40 -08001908 if (platform_boot_dev_isemmc())
1909 {
1910 if (mmc_erase_card(ptn, size)) {
1911 fastboot_fail("failed to erase partition\n");
1912 return;
1913 }
1914 } else {
1915 BUF_DMA_ALIGN(out, DEFAULT_ERASE_SIZE);
1916 size = partition_get_size(index);
1917 if (size > DEFAULT_ERASE_SIZE)
1918 size = DEFAULT_ERASE_SIZE;
Kun Liang2f1601a2013-08-12 16:29:54 +08001919
Sridhar Parasuramd7957122015-02-27 11:33:40 -08001920 /* Simple inefficient version of erase. Just writing
1921 0 in first several blocks */
1922 if (mmc_write(ptn , size, (unsigned int *)out)) {
1923 fastboot_fail("failed to erase partition");
1924 return;
1925 }
Bikas Gurungd48bd242010-09-04 19:54:32 -07001926 }
1927 fastboot_okay("");
1928}
1929
Sridhar Parasurame94e8152014-10-24 14:06:03 -07001930void cmd_erase(const char *arg, void *data, unsigned sz)
1931{
1932 if(target_is_emmc_boot())
1933 cmd_erase_mmc(arg, data, sz);
1934 else
1935 cmd_erase_nand(arg, data, sz);
1936}
Bikas Gurungd48bd242010-09-04 19:54:32 -07001937
Ajay Dudani5c761132011-04-07 20:19:04 -07001938void cmd_flash_mmc_img(const char *arg, void *data, unsigned sz)
Shashank Mittal23b8f422010-04-16 19:27:21 -07001939{
1940 unsigned long long ptn = 0;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001941 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07001942 int index = INVALID_PTN;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001943 char *token = NULL;
1944 char *pname = NULL;
1945 uint8_t lun = 0;
1946 bool lun_set = false;
Subbaraman Narayanamurthyc95b5b12010-08-31 13:19:48 -07001947
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05301948 token = strtok((char *)arg, ":");
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001949 pname = token;
1950 token = strtok(NULL, ":");
1951 if(token)
1952 {
1953 lun = atoi(token);
1954 mmc_set_lun(lun);
1955 lun_set = true;
1956 }
1957
Mao Jinlong226f33a2014-07-04 17:24:10 +08001958 if (pname)
Greg Grisco6e754772011-06-23 12:19:39 -07001959 {
Mao Jinlong226f33a2014-07-04 17:24:10 +08001960 if (!strcmp(pname, "partition"))
1961 {
1962 dprintf(INFO, "Attempt to write partition image.\n");
1963 if (write_partition(sz, (unsigned char *) data)) {
1964 fastboot_fail("failed to write partition");
Greg Grisco6e754772011-06-23 12:19:39 -07001965 return;
1966 }
1967 }
Mao Jinlong226f33a2014-07-04 17:24:10 +08001968 else
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001969 {
Shashank Mittald3e54dd2014-08-28 15:24:02 -07001970#if VERIFIED_BOOT
1971 if(!strcmp(pname, KEYSTORE_PTN_NAME))
1972 {
1973 if(!device.is_unlocked)
1974 {
1975 fastboot_fail("unlock device to flash keystore");
1976 return;
1977 }
1978 if(!boot_verify_validate_keystore((unsigned char *)data))
1979 {
1980 fastboot_fail("image is not a keystore file");
1981 return;
1982 }
1983 }
1984#endif
Mao Jinlong226f33a2014-07-04 17:24:10 +08001985 index = partition_get_index(pname);
1986 ptn = partition_get_offset(index);
1987 if(ptn == 0) {
1988 fastboot_fail("partition table doesn't exist");
1989 return;
1990 }
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08001991
Mao Jinlong226f33a2014-07-04 17:24:10 +08001992 if (!strcmp(pname, "boot") || !strcmp(pname, "recovery")) {
1993 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
1994 fastboot_fail("image is not a boot image");
1995 return;
1996 }
1997 }
1998
1999 if(!lun_set)
2000 {
2001 lun = partition_get_lun(index);
2002 mmc_set_lun(lun);
2003 }
2004
2005 size = partition_get_size(index);
2006 if (ROUND_TO_PAGE(sz,511) > size) {
2007 fastboot_fail("size too large");
2008 return;
2009 }
2010 else if (mmc_write(ptn , sz, (unsigned int *)data)) {
2011 fastboot_fail("flash write failure");
2012 return;
2013 }
Greg Grisco6e754772011-06-23 12:19:39 -07002014 }
Shashank Mittal23b8f422010-04-16 19:27:21 -07002015 }
2016 fastboot_okay("");
2017 return;
2018}
2019
Ajay Dudanide984792015-03-02 09:57:41 -08002020void cmd_flash_meta_img(const char *arg, void *data, unsigned sz)
2021{
2022 int i, images;
2023 meta_header_t *meta_header;
2024 img_header_entry_t *img_header_entry;
2025
2026 meta_header = (meta_header_t*) data;
2027 img_header_entry = (img_header_entry_t*) (data+sizeof(meta_header_t));
2028
2029 images = meta_header->img_hdr_sz / sizeof(img_header_entry_t);
2030
2031 for (i=0; i<images; i++) {
2032
2033 if((img_header_entry[i].ptn_name == NULL) ||
2034 (img_header_entry[i].start_offset == 0) ||
2035 (img_header_entry[i].size == 0))
2036 break;
2037
2038 cmd_flash_mmc_img(img_header_entry[i].ptn_name,
2039 (void *) data + img_header_entry[i].start_offset,
2040 img_header_entry[i].size);
2041 }
2042
Channagoud Kadabiaafbbfc2015-03-04 17:52:56 -08002043 if (!strncmp(arg, "bootloader", strlen("bootloader")))
2044 {
2045 strlcpy(device.bootloader_version, TARGET(BOARD), MAX_VERSION_LEN);
2046 strlcat(device.bootloader_version, "-", MAX_VERSION_LEN);
2047 strlcat(device.bootloader_version, meta_header->img_version, MAX_VERSION_LEN);
2048 }
2049 else
2050 {
2051 strlcpy(device.radio_version, TARGET(BOARD), MAX_VERSION_LEN);
2052 strlcat(device.radio_version, "-", MAX_VERSION_LEN);
2053 strlcat(device.radio_version, meta_header->img_version, MAX_VERSION_LEN);
2054 }
2055
2056 write_device_info(&device);
Ajay Dudanide984792015-03-02 09:57:41 -08002057 fastboot_okay("");
2058 return;
2059}
2060
Ajay Dudani5c761132011-04-07 20:19:04 -07002061void cmd_flash_mmc_sparse_img(const char *arg, void *data, unsigned sz)
2062{
2063 unsigned int chunk;
2064 unsigned int chunk_data_sz;
Channagoud Kadabif627cf82013-09-09 14:08:20 -07002065 uint32_t *fill_buf = NULL;
2066 uint32_t fill_val;
2067 uint32_t chunk_blk_cnt = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07002068 sparse_header_t *sparse_header;
2069 chunk_header_t *chunk_header;
Ajay Dudaniab18f022011-05-12 14:39:22 -07002070 uint32_t total_blocks = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07002071 unsigned long long ptn = 0;
Channagoud Kadabi65b91002011-10-11 17:34:33 +05302072 unsigned long long size = 0;
Kinson Chikf1a43512011-07-14 11:28:39 -07002073 int index = INVALID_PTN;
Unnati Gandhi0c8e7c52014-07-17 14:33:09 +05302074 uint32_t i;
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002075 uint8_t lun = 0;
Ajay Dudani5c761132011-04-07 20:19:04 -07002076
Kinson Chikf1a43512011-07-14 11:28:39 -07002077 index = partition_get_index(arg);
2078 ptn = partition_get_offset(index);
2079 if(ptn == 0) {
Ajay Dudani5c761132011-04-07 20:19:04 -07002080 fastboot_fail("partition table doesn't exist");
2081 return;
2082 }
2083
Channagoud Kadabi65b91002011-10-11 17:34:33 +05302084 size = partition_get_size(index);
2085 if (ROUND_TO_PAGE(sz,511) > size) {
2086 fastboot_fail("size too large");
2087 return;
2088 }
2089
Sundarajan Srinivasand3514bb2013-12-04 17:02:00 -08002090 lun = partition_get_lun(index);
2091 mmc_set_lun(lun);
2092
Ajay Dudani5c761132011-04-07 20:19:04 -07002093 /* Read and skip over sparse image header */
2094 sparse_header = (sparse_header_t *) data;
Ajay Dudani876b3282012-12-21 14:12:17 -08002095 if ((sparse_header->total_blks * sparse_header->blk_sz) > size) {
2096 fastboot_fail("size too large");
2097 return;
2098 }
2099
Ajay Dudani5c761132011-04-07 20:19:04 -07002100 data += sparse_header->file_hdr_sz;
2101 if(sparse_header->file_hdr_sz > sizeof(sparse_header_t))
2102 {
2103 /* Skip the remaining bytes in a header that is longer than
2104 * we expected.
2105 */
2106 data += (sparse_header->file_hdr_sz - sizeof(sparse_header_t));
2107 }
2108
Ajay Dudanib06c05f2011-05-12 14:46:10 -07002109 dprintf (SPEW, "=== Sparse Image Header ===\n");
2110 dprintf (SPEW, "magic: 0x%x\n", sparse_header->magic);
2111 dprintf (SPEW, "major_version: 0x%x\n", sparse_header->major_version);
2112 dprintf (SPEW, "minor_version: 0x%x\n", sparse_header->minor_version);
2113 dprintf (SPEW, "file_hdr_sz: %d\n", sparse_header->file_hdr_sz);
2114 dprintf (SPEW, "chunk_hdr_sz: %d\n", sparse_header->chunk_hdr_sz);
2115 dprintf (SPEW, "blk_sz: %d\n", sparse_header->blk_sz);
2116 dprintf (SPEW, "total_blks: %d\n", sparse_header->total_blks);
2117 dprintf (SPEW, "total_chunks: %d\n", sparse_header->total_chunks);
Ajay Dudani5c761132011-04-07 20:19:04 -07002118
2119 /* Start processing chunks */
2120 for (chunk=0; chunk<sparse_header->total_chunks; chunk++)
2121 {
2122 /* Read and skip over chunk header */
2123 chunk_header = (chunk_header_t *) data;
2124 data += sizeof(chunk_header_t);
2125
2126 dprintf (SPEW, "=== Chunk Header ===\n");
2127 dprintf (SPEW, "chunk_type: 0x%x\n", chunk_header->chunk_type);
2128 dprintf (SPEW, "chunk_data_sz: 0x%x\n", chunk_header->chunk_sz);
2129 dprintf (SPEW, "total_size: 0x%x\n", chunk_header->total_sz);
2130
2131 if(sparse_header->chunk_hdr_sz > sizeof(chunk_header_t))
2132 {
2133 /* Skip the remaining bytes in a header that is longer than
2134 * we expected.
2135 */
2136 data += (sparse_header->chunk_hdr_sz - sizeof(chunk_header_t));
2137 }
2138
2139 chunk_data_sz = sparse_header->blk_sz * chunk_header->chunk_sz;
2140 switch (chunk_header->chunk_type)
2141 {
2142 case CHUNK_TYPE_RAW:
2143 if(chunk_header->total_sz != (sparse_header->chunk_hdr_sz +
2144 chunk_data_sz))
2145 {
2146 fastboot_fail("Bogus chunk size for chunk type Raw");
2147 return;
2148 }
2149
Ajay Dudaniab18f022011-05-12 14:39:22 -07002150 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
2151 chunk_data_sz,
2152 (unsigned int*)data))
Ajay Dudani5c761132011-04-07 20:19:04 -07002153 {
2154 fastboot_fail("flash write failure");
2155 return;
2156 }
2157 total_blocks += chunk_header->chunk_sz;
2158 data += chunk_data_sz;
2159 break;
2160
Channagoud Kadabif627cf82013-09-09 14:08:20 -07002161 case CHUNK_TYPE_FILL:
2162 if(chunk_header->total_sz != (sparse_header->chunk_hdr_sz +
2163 sizeof(uint32_t)))
2164 {
2165 fastboot_fail("Bogus chunk size for chunk type FILL");
2166 return;
2167 }
2168
2169 fill_buf = (uint32_t *)memalign(CACHE_LINE, ROUNDUP(sparse_header->blk_sz, CACHE_LINE));
2170 if (!fill_buf)
2171 {
2172 fastboot_fail("Malloc failed for: CHUNK_TYPE_FILL");
2173 return;
2174 }
2175
2176 fill_val = *(uint32_t *)data;
2177 data = (char *) data + sizeof(uint32_t);
2178 chunk_blk_cnt = chunk_data_sz / sparse_header->blk_sz;
2179
2180 for (i = 0; i < (sparse_header->blk_sz / sizeof(fill_val)); i++)
2181 {
2182 fill_buf[i] = fill_val;
2183 }
2184
2185 for (i = 0; i < chunk_blk_cnt; i++)
2186 {
2187 if(mmc_write(ptn + ((uint64_t)total_blocks*sparse_header->blk_sz),
2188 sparse_header->blk_sz,
2189 fill_buf))
2190 {
2191 fastboot_fail("flash write failure");
2192 free(fill_buf);
2193 return;
2194 }
2195
2196 total_blocks++;
2197 }
2198
2199 free(fill_buf);
2200 break;
2201
Ajay Dudani5c761132011-04-07 20:19:04 -07002202 case CHUNK_TYPE_DONT_CARE:
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07002203 total_blocks += chunk_header->chunk_sz;
2204 break;
2205
Ajay Dudani5c761132011-04-07 20:19:04 -07002206 case CHUNK_TYPE_CRC:
2207 if(chunk_header->total_sz != sparse_header->chunk_hdr_sz)
2208 {
2209 fastboot_fail("Bogus chunk size for chunk type Dont Care");
2210 return;
2211 }
2212 total_blocks += chunk_header->chunk_sz;
2213 data += chunk_data_sz;
2214 break;
2215
Kinson Chik kchik@codeaurora.orgda29b1e2011-05-06 17:36:39 -07002216 default:
Channagoud Kadabif627cf82013-09-09 14:08:20 -07002217 dprintf(CRITICAL, "Unkown chunk type: %x\n",chunk_header->chunk_type);
Ajay Dudani5c761132011-04-07 20:19:04 -07002218 fastboot_fail("Unknown chunk type");
2219 return;
2220 }
2221 }
2222
Ajay Dudani0c6927b2011-05-18 11:12:16 -07002223 dprintf(INFO, "Wrote %d blocks, expected to write %d blocks\n",
2224 total_blocks, sparse_header->total_blks);
2225
2226 if(total_blocks != sparse_header->total_blks)
2227 {
2228 fastboot_fail("sparse image write failure");
2229 }
Ajay Dudani5c761132011-04-07 20:19:04 -07002230
2231 fastboot_okay("");
2232 return;
2233}
2234
2235void cmd_flash_mmc(const char *arg, void *data, unsigned sz)
2236{
2237 sparse_header_t *sparse_header;
Ajay Dudanide984792015-03-02 09:57:41 -08002238 meta_header_t *meta_header;
Ajay Dudani5c761132011-04-07 20:19:04 -07002239
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07002240#ifdef SSD_ENABLE
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -08002241 /* 8 Byte Magic + 2048 Byte xml + Encrypted Data */
2242 unsigned int *magic_number = (unsigned int *) data;
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08002243 int ret=0;
2244 uint32 major_version=0;
2245 uint32 minor_version=0;
2246
2247 ret = scm_svc_version(&major_version,&minor_version);
2248 if(!ret)
2249 {
2250 if(major_version >= 2)
2251 {
Amir Samuelovbb65ce02013-05-05 12:20:18 +03002252 if( !strcmp(arg, "ssd") || !strcmp(arg, "tqs") )
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08002253 {
2254 ret = encrypt_scm((uint32 **) &data, &sz);
2255 if (ret != 0) {
2256 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
2257 return;
2258 }
2259
Amir Samuelovbb65ce02013-05-05 12:20:18 +03002260 /* Protect only for SSD */
2261 if (!strcmp(arg, "ssd")) {
2262 ret = scm_protect_keystore((uint32 *) data, sz);
2263 if (ret != 0) {
2264 dprintf(CRITICAL, "ERROR: scm_protect_keystore Failed\n");
2265 return;
2266 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08002267 }
2268 }
2269 else
2270 {
2271 ret = decrypt_scm_v2((uint32 **) &data, &sz);
2272 if(ret != 0)
2273 {
2274 dprintf(CRITICAL,"ERROR: Decryption Failure\n");
2275 return;
2276 }
2277 }
2278 }
2279 else
2280 {
2281 if (magic_number[0] == DECRYPT_MAGIC_0 &&
2282 magic_number[1] == DECRYPT_MAGIC_1)
2283 {
2284 ret = decrypt_scm((uint32 **) &data, &sz);
2285 if (ret != 0) {
2286 dprintf(CRITICAL, "ERROR: Invalid secure image\n");
2287 return;
2288 }
2289 }
2290 else if (magic_number[0] == ENCRYPT_MAGIC_0 &&
2291 magic_number[1] == ENCRYPT_MAGIC_1)
2292 {
2293 ret = encrypt_scm((uint32 **) &data, &sz);
2294 if (ret != 0) {
2295 dprintf(CRITICAL, "ERROR: Encryption Failure\n");
2296 return;
2297 }
2298 }
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07002299 }
2300 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08002301 else
Neeti Desai127b9e02012-03-20 16:11:23 -07002302 {
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08002303 dprintf(CRITICAL,"INVALID SVC Version\n");
2304 return;
Neeti Desai127b9e02012-03-20 16:11:23 -07002305 }
sundarajan srinivasand4b1c482013-02-27 14:15:43 -08002306#endif /* SSD_ENABLE */
Neeti Desai127b9e02012-03-20 16:11:23 -07002307
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002308#if VERIFIED_BOOT
2309 if(!device.is_unlocked && !device.is_verified)
2310 {
2311 fastboot_fail("device is locked. Cannot flash images");
2312 return;
2313 }
2314 if(!device.is_unlocked && device.is_verified)
2315 {
2316 if(!boot_verify_flash_allowed(arg))
2317 {
2318 fastboot_fail("cannot flash this partition in verified state");
2319 return;
2320 }
2321 }
2322#endif
2323
kchik@codeaurora.orgbce18ea2011-04-18 20:22:28 -07002324 sparse_header = (sparse_header_t *) data;
Ajay Dudanide984792015-03-02 09:57:41 -08002325 meta_header = (meta_header_t *) data;
2326 if (sparse_header->magic == SPARSE_HEADER_MAGIC)
Ajay Dudani5c761132011-04-07 20:19:04 -07002327 cmd_flash_mmc_sparse_img(arg, data, sz);
Ajay Dudanide984792015-03-02 09:57:41 -08002328 else if (meta_header->magic == META_HEADER_MAGIC)
2329 cmd_flash_meta_img(arg, data, sz);
2330 else
2331 cmd_flash_mmc_img(arg, data, sz);
Ajay Dudani5c761132011-04-07 20:19:04 -07002332 return;
2333}
2334
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002335void cmd_flash_nand(const char *arg, void *data, unsigned sz)
Dima Zavin214cc642009-01-26 11:16:21 -08002336{
2337 struct ptentry *ptn;
2338 struct ptable *ptable;
2339 unsigned extra = 0;
2340
2341 ptable = flash_get_ptable();
2342 if (ptable == NULL) {
2343 fastboot_fail("partition table doesn't exist");
2344 return;
2345 }
2346
2347 ptn = ptable_find(ptable, arg);
2348 if (ptn == NULL) {
2349 fastboot_fail("unknown partition name");
2350 return;
2351 }
2352
2353 if (!strcmp(ptn->name, "boot") || !strcmp(ptn->name, "recovery")) {
2354 if (memcmp((void *)data, BOOT_MAGIC, BOOT_MAGIC_SIZE)) {
2355 fastboot_fail("image is not a boot image");
2356 return;
2357 }
2358 }
2359
Amol Jadi5c61a952012-05-04 17:05:35 -07002360 if (!strcmp(ptn->name, "system")
Deepa Dinamani13e32c42012-03-12 14:34:17 -07002361 || !strcmp(ptn->name, "userdata")
2362 || !strcmp(ptn->name, "persist")
Sundarajan Srinivasanb063a852013-11-19 14:02:27 -08002363 || !strcmp(ptn->name, "recoveryfs")
Sundarajan Srinivasan595b71e2013-11-05 12:44:34 -08002364 || !strcmp(ptn->name, "modem"))
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +02002365 extra = 1;
Sundarajan Srinivasan595b71e2013-11-05 12:44:34 -08002366 else
Shashank Mittaldcc2e352009-11-19 19:11:16 -08002367 sz = ROUND_TO_PAGE(sz, page_mask);
Dima Zavin214cc642009-01-26 11:16:21 -08002368
2369 dprintf(INFO, "writing %d bytes to '%s'\n", sz, ptn->name);
Tanya Brokhman1c94f1a2015-02-15 09:05:03 +02002370 if (!memcmp((void *)data, UBI_MAGIC, UBI_MAGIC_SIZE)) {
2371 if (flash_ubi_img(ptn, data, sz)) {
2372 fastboot_fail("flash write failure");
2373 return;
2374 }
2375 } else {
2376 if (flash_write(ptn, extra, data, sz)) {
2377 fastboot_fail("flash write failure");
2378 return;
2379 }
Dima Zavin214cc642009-01-26 11:16:21 -08002380 }
2381 dprintf(INFO, "partition '%s' updated\n", ptn->name);
2382 fastboot_okay("");
2383}
2384
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002385void cmd_flash(const char *arg, void *data, unsigned sz)
2386{
2387 if(target_is_emmc_boot())
2388 cmd_flash_mmc(arg, data, sz);
2389 else
2390 cmd_flash_nand(arg, data, sz);
2391}
2392
Dima Zavin214cc642009-01-26 11:16:21 -08002393void cmd_continue(const char *arg, void *data, unsigned sz)
2394{
2395 fastboot_okay("");
Amol Jadi7c4316c2013-10-07 14:19:26 -07002396 fastboot_stop();
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002397
Amit Blay6281ebc2015-01-11 14:44:08 +02002398#ifdef MDTP_SUPPORT
2399 /* Go through Firmware Lock verification before continue with boot process */
2400 mdtp_fwlock_verify_lock();
Reut Zysman18411272015-02-09 13:47:27 +02002401 display_image_on_screen();
Amit Blay6281ebc2015-01-11 14:44:08 +02002402#endif /* MDTP_SUPPORT */
2403
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002404 if (target_is_emmc_boot())
2405 {
2406 boot_linux_from_mmc();
2407 }
2408 else
2409 {
2410 boot_linux_from_flash();
2411 }
Dima Zavin214cc642009-01-26 11:16:21 -08002412}
2413
Chandan Uddaraju94183c02010-01-15 15:13:59 -08002414void cmd_reboot(const char *arg, void *data, unsigned sz)
2415{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002416 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08002417 fastboot_okay("");
2418 reboot_device(0);
2419}
2420
2421void cmd_reboot_bootloader(const char *arg, void *data, unsigned sz)
2422{
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002423 dprintf(INFO, "rebooting the device\n");
Chandan Uddaraju94183c02010-01-15 15:13:59 -08002424 fastboot_okay("");
2425 reboot_device(FASTBOOT_MODE);
2426}
2427
Ameya Thakur11cf1a62013-08-05 12:44:48 -07002428void cmd_oem_enable_charger_screen(const char *arg, void *data, unsigned size)
2429{
2430 dprintf(INFO, "Enabling charger screen check\n");
2431 device.charger_screen_enabled = 1;
2432 write_device_info(&device);
2433 fastboot_okay("");
2434}
2435
2436void cmd_oem_disable_charger_screen(const char *arg, void *data, unsigned size)
2437{
2438 dprintf(INFO, "Disabling charger screen check\n");
2439 device.charger_screen_enabled = 0;
2440 write_device_info(&device);
2441 fastboot_okay("");
2442}
2443
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05302444void cmd_oem_select_display_panel(const char *arg, void *data, unsigned size)
2445{
2446 dprintf(INFO, "Selecting display panel %s\n", arg);
2447 if (arg)
2448 strlcpy(device.display_panel, arg,
2449 sizeof(device.display_panel));
2450 write_device_info(&device);
2451 fastboot_okay("");
2452}
2453
Shashank Mittal162244e2011-08-08 19:01:25 -07002454void cmd_oem_unlock(const char *arg, void *data, unsigned sz)
2455{
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002456 /* TODO: Wipe user data */
2457 if(!device.is_unlocked || device.is_verified)
Shashank Mittal162244e2011-08-08 19:01:25 -07002458 {
2459 device.is_unlocked = 1;
Shashank Mittald3e54dd2014-08-28 15:24:02 -07002460 device.is_verified = 0;
2461 write_device_info(&device);
2462 }
2463 fastboot_okay("");
2464}
2465
2466void cmd_oem_lock(const char *arg, void *data, unsigned sz)
2467{
2468 /* TODO: Wipe user data */
2469 if(device.is_unlocked || device.is_verified)
2470 {
2471 device.is_unlocked = 0;
2472 device.is_verified = 0;
2473 write_device_info(&device);
2474 }
2475 fastboot_okay("");
2476}
2477
2478void cmd_oem_verified(const char *arg, void *data, unsigned sz)
2479{
2480 /* TODO: Wipe user data */
2481 if(device.is_unlocked || !device.is_verified)
2482 {
2483 device.is_unlocked = 0;
2484 device.is_verified = 1;
Shashank Mittal162244e2011-08-08 19:01:25 -07002485 write_device_info(&device);
2486 }
2487 fastboot_okay("");
2488}
2489
Shashank Mittala0032282011-08-26 14:50:11 -07002490void cmd_oem_devinfo(const char *arg, void *data, unsigned sz)
2491{
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05302492 char response[128];
Ameya Thakur11cf1a62013-08-05 12:44:48 -07002493 snprintf(response, sizeof(response), "\tDevice tampered: %s", (device.is_tampered ? "true" : "false"));
Shashank Mittala0032282011-08-26 14:50:11 -07002494 fastboot_info(response);
Ameya Thakur11cf1a62013-08-05 12:44:48 -07002495 snprintf(response, sizeof(response), "\tDevice unlocked: %s", (device.is_unlocked ? "true" : "false"));
2496 fastboot_info(response);
2497 snprintf(response, sizeof(response), "\tCharger screen enabled: %s", (device.charger_screen_enabled ? "true" : "false"));
Shashank Mittala0032282011-08-26 14:50:11 -07002498 fastboot_info(response);
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05302499 snprintf(response, sizeof(response), "\tDisplay panel: %s", (device.display_panel));
2500 fastboot_info(response);
Shashank Mittala0032282011-08-26 14:50:11 -07002501 fastboot_okay("");
2502}
2503
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07002504void cmd_preflash(const char *arg, void *data, unsigned sz)
2505{
2506 fastboot_okay("");
2507}
2508
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302509struct fbimage* splash_screen_flash();
2510
2511int splash_screen_check_header(struct fbimage *logo)
2512{
2513 if (memcmp(logo->header.magic, LOGO_IMG_MAGIC, 8))
2514 return -1;
2515 if (logo->header.width == 0 || logo->header.height == 0)
2516 return -1;
2517 return 0;
2518}
2519
2520struct fbimage* splash_screen_flash()
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07002521{
2522 struct ptentry *ptn;
2523 struct ptable *ptable;
2524 struct fbcon_config *fb_display = NULL;
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002525 struct fbimage *logo = NULL;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07002526
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302527
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002528 logo = (struct fbimage *) malloc(ROUNDUP(page_size, sizeof(struct fbimage)));
2529 ASSERT(logo);
2530
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302531 ptable = flash_get_ptable();
2532 if (ptable == NULL) {
2533 dprintf(CRITICAL, "ERROR: Partition table not found\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002534 goto err;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302535 }
2536 ptn = ptable_find(ptable, "splash");
2537 if (ptn == NULL) {
2538 dprintf(CRITICAL, "ERROR: splash Partition not found\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002539 goto err;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302540 }
2541
2542 if (flash_read(ptn, 0,(unsigned int *) logo, sizeof(logo->header))) {
2543 dprintf(CRITICAL, "ERROR: Cannot read boot image header\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002544 goto err;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302545 }
2546
2547 if (splash_screen_check_header(logo)) {
2548 dprintf(CRITICAL, "ERROR: Boot image header invalid\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002549 goto err;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302550 }
2551
2552 fb_display = fbcon_display();
2553 if (fb_display) {
Vineet Bajaj99291ed2014-09-09 12:29:46 +05302554 if ((logo->header.width != fb_display->width) || (logo->header.height != fb_display->height)) {
2555 dprintf(CRITICAL, "Logo config doesn't match with fb config. Fall back to default logo\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002556 goto err;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07002557 }
Vineet Bajaj99291ed2014-09-09 12:29:46 +05302558 uint8_t *base = (uint8_t *) fb_display->base;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302559 if (flash_read(ptn + sizeof(logo->header), 0,
2560 base,
2561 ((((logo->header.width * logo->header.height * fb_display->bpp/8) + 511) >> 9) << 9))) {
2562 fbcon_clear();
Vineet Bajaj99291ed2014-09-09 12:29:46 +05302563 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002564 goto err;
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07002565 }
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302566 logo->image = base;
2567 }
2568
2569 return logo;
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002570
2571err:
2572 free(logo);
2573 return NULL;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302574}
2575
2576struct fbimage* splash_screen_mmc()
2577{
2578 int index = INVALID_PTN;
2579 unsigned long long ptn = 0;
2580 struct fbcon_config *fb_display = NULL;
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002581 struct fbimage *logo = NULL;
Channagoud Kadabida117392014-11-24 11:01:12 -08002582 uint32_t blocksize;
2583 uint32_t readsize;
Channagoud Kadabicccd02c2015-02-19 17:51:40 -08002584 uint32_t logosize;
Channagoud Kadabida117392014-11-24 11:01:12 -08002585 uint32_t ptn_size;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302586
2587 index = partition_get_index("splash");
2588 if (index == 0) {
2589 dprintf(CRITICAL, "ERROR: splash Partition table not found\n");
2590 return NULL;
2591 }
2592
2593 ptn = partition_get_offset(index);
2594 if (ptn == 0) {
2595 dprintf(CRITICAL, "ERROR: splash Partition invalid\n");
2596 return NULL;
2597 }
2598
Channagoud Kadabida117392014-11-24 11:01:12 -08002599 ptn_size = partition_get_size(index);
2600 blocksize = mmc_get_device_blocksize();
Channagoud Kadabicccd02c2015-02-19 17:51:40 -08002601 logosize = ROUNDUP(sizeof(logo->header), blocksize);
Channagoud Kadabida117392014-11-24 11:01:12 -08002602
Channagoud Kadabicccd02c2015-02-19 17:51:40 -08002603 logo = (struct fbimage *)memalign(CACHE_LINE, ROUNDUP(logosize, CACHE_LINE));
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002604 ASSERT(logo);
2605
Channagoud Kadabicccd02c2015-02-19 17:51:40 -08002606 if (mmc_read(ptn, (uint32_t *) logo, logosize)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302607 dprintf(CRITICAL, "ERROR: Cannot read splash image header\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002608 goto err;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302609 }
2610
2611 if (splash_screen_check_header(logo)) {
2612 dprintf(CRITICAL, "ERROR: Splash image header invalid\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002613 goto err;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302614 }
2615
2616 fb_display = fbcon_display();
2617 if (fb_display) {
Vineet Bajaj99291ed2014-09-09 12:29:46 +05302618 if ((logo->header.width != fb_display->width) || (logo->header.height != fb_display->height)) {
2619 dprintf(CRITICAL, "Logo config doesn't match with fb config. Fall back default logo\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002620 goto err;
Vineet Bajaj99291ed2014-09-09 12:29:46 +05302621 }
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302622 uint8_t *base = (uint8_t *) fb_display->base;
Channagoud Kadabida117392014-11-24 11:01:12 -08002623 readsize = ROUNDUP((logo->header.width * logo->header.height * fb_display->bpp/8), blocksize);
2624
2625 if (readsize > ptn_size)
2626 {
2627 dprintf(CRITICAL, "@%d:Invalid logo header readsize:%u exceeds ptn_size:%u\n", __LINE__, readsize,ptn_size);
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002628 goto err;
Channagoud Kadabida117392014-11-24 11:01:12 -08002629 }
2630
Channagoud Kadabicccd02c2015-02-19 17:51:40 -08002631 if (mmc_read(ptn + logosize,(uint32_t *)base, readsize)) {
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302632 fbcon_clear();
Vineet Bajaj99291ed2014-09-09 12:29:46 +05302633 dprintf(CRITICAL, "ERROR: Cannot read splash image from partition\n");
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002634 goto err;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302635 }
2636
2637 logo->image = base;
2638 }
2639
2640 return logo;
Channagoud Kadabib3ccf5c2014-12-03 12:39:29 -08002641
2642err:
2643 free(logo);
2644 return NULL;
Aparna Mallavarapuad8c1ec2013-08-23 17:55:47 +05302645}
2646
2647
2648struct fbimage* fetch_image_from_partition()
2649{
2650 if (target_is_emmc_boot()) {
2651 return splash_screen_mmc();
2652 } else {
2653 return splash_screen_flash();
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07002654 }
2655}
2656
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07002657/* Get the size from partiton name */
2658static void get_partition_size(const char *arg, char *response)
2659{
2660 uint64_t ptn = 0;
2661 uint64_t size;
2662 int index = INVALID_PTN;
2663
2664 index = partition_get_index(arg);
2665
2666 if (index == INVALID_PTN)
2667 {
2668 dprintf(CRITICAL, "Invalid partition index\n");
2669 return;
2670 }
2671
2672 ptn = partition_get_offset(index);
2673
2674 if(!ptn)
2675 {
2676 dprintf(CRITICAL, "Invalid partition name %s\n", arg);
2677 return;
2678 }
2679
2680 size = partition_get_size(index);
2681
2682 snprintf(response, MAX_RSP_SIZE, "\t 0x%llx", size);
2683 return;
2684}
2685
2686/*
2687 * Publish the partition type & size info
2688 * fastboot getvar will publish the required information.
2689 * fastboot getvar partition_size:<partition_name>: partition size in hex
2690 * fastboot getvar partition_type:<partition_name>: partition type (ext/fat)
2691 */
2692static void publish_getvar_partition_info(struct getvar_partition_info *info, uint8_t num_parts)
2693{
2694 uint8_t i;
2695
2696 for (i = 0; i < num_parts; i++) {
2697 get_partition_size(info[i].part_name, info[i].size_response);
2698
2699 if (strlcat(info[i].getvar_size, info[i].part_name, MAX_GET_VAR_NAME_SIZE) >= MAX_GET_VAR_NAME_SIZE)
2700 {
2701 dprintf(CRITICAL, "partition size name truncated\n");
2702 return;
2703 }
2704 if (strlcat(info[i].getvar_type, info[i].part_name, MAX_GET_VAR_NAME_SIZE) >= MAX_GET_VAR_NAME_SIZE)
2705 {
2706 dprintf(CRITICAL, "partition type name truncated\n");
2707 return;
2708 }
2709
2710 /* publish partition size & type info */
2711 fastboot_publish((const char *) info[i].getvar_size, (const char *) info[i].size_response);
2712 fastboot_publish((const char *) info[i].getvar_type, (const char *) info[i].type_response);
2713 }
2714}
2715
Amol Jadi5edf3552013-07-23 14:15:34 -07002716/* register commands and variables for fastboot */
2717void aboot_fastboot_register_commands(void)
2718{
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002719 int i;
Amol Jadi5edf3552013-07-23 14:15:34 -07002720
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002721 struct fastboot_cmd_desc cmd_list[] = {
2722 /* By default the enabled list is empty. */
2723 {"", NULL},
2724 /* move commands enclosed within the below ifndef to here
2725 * if they need to be enabled in user build.
2726 */
2727#ifndef DISABLE_FASTBOOT_CMDS
2728 /* Register the following commands only for non-user builds */
2729 {"flash:", cmd_flash},
2730 {"erase:", cmd_erase},
2731 {"boot", cmd_boot},
2732 {"continue", cmd_continue},
2733 {"reboot", cmd_reboot},
2734 {"reboot-bootloader", cmd_reboot_bootloader},
2735 {"oem unlock", cmd_oem_unlock},
2736 {"oem lock", cmd_oem_lock},
2737 {"oem verified", cmd_oem_verified},
2738 {"oem device-info", cmd_oem_devinfo},
2739 {"preflash", cmd_preflash},
2740 {"oem enable-charger-screen", cmd_oem_enable_charger_screen},
2741 {"oem disable-charger-screen", cmd_oem_disable_charger_screen},
Aravind Venkateswaranbcca9b12014-11-04 17:04:01 -08002742 {"oem select-display-panel", cmd_oem_select_display_panel},
Sridhar Parasurame94e8152014-10-24 14:06:03 -07002743#endif
2744 };
2745
2746 int fastboot_cmds_count = sizeof(cmd_list)/sizeof(cmd_list[0]);
2747 for (i = 1; i < fastboot_cmds_count; i++)
2748 fastboot_register(cmd_list[i].name,cmd_list[i].cb);
2749
Amol Jadi5edf3552013-07-23 14:15:34 -07002750 /* publish variables and their values */
2751 fastboot_publish("product", TARGET(BOARD));
2752 fastboot_publish("kernel", "lk");
2753 fastboot_publish("serialno", sn_buf);
2754
2755 /*
2756 * partition info is supported only for emmc partitions
2757 * Calling this for NAND prints some error messages which
2758 * is harmless but misleading. Avoid calling this for NAND
2759 * devices.
2760 */
2761 if (target_is_emmc_boot())
2762 publish_getvar_partition_info(part_info, ARRAY_SIZE(part_info));
2763
2764 /* Max download size supported */
Ameya Thakur11cf1a62013-08-05 12:44:48 -07002765 snprintf(max_download_size, MAX_RSP_SIZE, "\t0x%x",
2766 target_get_max_flash_size());
Amol Jadi5edf3552013-07-23 14:15:34 -07002767 fastboot_publish("max-download-size", (const char *) max_download_size);
Ameya Thakur11cf1a62013-08-05 12:44:48 -07002768 /* Is the charger screen check enabled */
2769 snprintf(charger_screen_enabled, MAX_RSP_SIZE, "%d",
2770 device.charger_screen_enabled);
2771 fastboot_publish("charger-screen-enabled",
2772 (const char *) charger_screen_enabled);
Unnati Gandhi62c8ab82014-01-24 11:01:01 +05302773 snprintf(panel_display_mode, MAX_RSP_SIZE, "%s",
2774 device.display_panel);
2775 fastboot_publish("display-panel",
2776 (const char *) panel_display_mode);
Channagoud Kadabiaafbbfc2015-03-04 17:52:56 -08002777 fastboot_publish("version-bootloader", (const char *) device.bootloader_version);
2778 fastboot_publish("version-baseband", (const char *) device.radio_version);
Amol Jadi5edf3552013-07-23 14:15:34 -07002779}
2780
Brian Swetland9c4c0752009-01-25 16:23:50 -08002781void aboot_init(const struct app_descriptor *app)
2782{
Shashank Mittal4f99a882010-02-01 13:58:50 -08002783 unsigned reboot_mode = 0;
lijuang72875802015-02-10 10:35:12 +08002784 unsigned hard_reboot_mode = 0;
Pavel Nedev5d91d412013-04-29 11:34:24 +03002785 bool boot_into_fastboot = false;
Chandan Uddarajubedca152010-06-02 23:05:15 -07002786
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07002787 /* Setup page size information for nv storage */
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002788 if (target_is_emmc_boot())
2789 {
Channagoud Kadabi749b0f82013-09-10 22:36:02 -07002790 page_size = mmc_page_size();
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002791 page_mask = page_size - 1;
2792 }
2793 else
2794 {
2795 page_size = flash_page_size();
2796 page_mask = page_size - 1;
2797 }
2798
Deepa Dinamani0e163a42013-05-24 17:08:15 -07002799 ASSERT((MEMBASE + MEMSIZE) > MEMBASE);
2800
Ameya Thakur11cf1a62013-08-05 12:44:48 -07002801 read_device_info(&device);
Shashank Mittal162244e2011-08-08 19:01:25 -07002802
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08002803 /* Display splash screen if enabled */
2804#if DISPLAY_SPLASH_SCREEN
lijuang99c02d82015-02-13 19:04:34 +08002805#if NO_ALARM_DISPLAY
2806 if (!check_alarm_boot()) {
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08002807#endif
lijuang99c02d82015-02-13 19:04:34 +08002808 dprintf(SPEW, "Display Init: Start\n");
2809 target_display_init(device.display_panel);
2810 dprintf(SPEW, "Display Init: Done\n");
2811#if NO_ALARM_DISPLAY
2812 }
2813#endif
2814#endif
Aravind Venkateswaran8f076242014-02-25 16:25:30 -08002815
Greg Griscod6250552011-06-29 14:40:23 -07002816 target_serialno((unsigned char *) sn_buf);
Ajay Dudanib06c05f2011-05-12 14:46:10 -07002817 dprintf(SPEW,"serial number: %s\n",sn_buf);
Subbaraman Narayanamurthyf17b4ae2011-02-16 20:19:56 -08002818
Dhaval Patel223ec952013-07-18 14:49:44 -07002819 memset(display_panel_buf, '\0', MAX_PANEL_BUF_SIZE);
2820
Matthew Qindefd5562014-07-11 18:02:40 +08002821 /*
2822 * Check power off reason if user force reset,
2823 * if yes phone will do normal boot.
2824 */
2825 if (is_user_force_reset())
2826 goto normal_boot;
2827
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07002828 /* Check if we should do something other than booting up */
Ameya Thakur0b9c2442013-05-10 13:22:56 -07002829 if (keys_get_state(KEY_VOLUMEUP) && keys_get_state(KEY_VOLUMEDOWN))
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07002830 {
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +03002831 dprintf(ALWAYS,"dload mode key sequence detected\n");
2832 if (set_download_mode(EMERGENCY_DLOAD))
Ameya Thakur0b9c2442013-05-10 13:22:56 -07002833 {
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +03002834 dprintf(CRITICAL,"dload mode not supported by target\n");
Ameya Thakur0b9c2442013-05-10 13:22:56 -07002835 }
2836 else
2837 {
Aparna Mallavarapu0751f7f2014-04-01 22:40:39 +05302838 reboot_device(DLOAD);
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +03002839 dprintf(CRITICAL,"Failed to reboot into dload mode\n");
Ameya Thakur0b9c2442013-05-10 13:22:56 -07002840 }
2841 boot_into_fastboot = true;
2842 }
2843 if (!boot_into_fastboot)
2844 {
2845 if (keys_get_state(KEY_HOME) || keys_get_state(KEY_VOLUMEUP))
2846 boot_into_recovery = 1;
2847 if (!boot_into_recovery &&
2848 (keys_get_state(KEY_BACK) || keys_get_state(KEY_VOLUMEDOWN)))
Pavel Nedev5d91d412013-04-29 11:34:24 +03002849 boot_into_fastboot = true;
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -07002850 }
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002851 #if NO_KEYPAD_DRIVER
Kinson Chik0b1c8162011-08-31 16:31:57 -07002852 if (fastboot_trigger())
Pavel Nedev5d91d412013-04-29 11:34:24 +03002853 boot_into_fastboot = true;
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002854 #endif
Chandan Uddarajubedca152010-06-02 23:05:15 -07002855
Ajay Dudani77421292010-10-27 19:34:06 -07002856 reboot_mode = check_reboot_mode();
lijuang72875802015-02-10 10:35:12 +08002857 hard_reboot_mode = check_hard_reboot_mode();
2858 if (reboot_mode == RECOVERY_MODE ||
2859 hard_reboot_mode == RECOVERY_HARD_RESET_MODE) {
Ajay Dudani77421292010-10-27 19:34:06 -07002860 boot_into_recovery = 1;
lijuang72875802015-02-10 10:35:12 +08002861 } else if(reboot_mode == FASTBOOT_MODE ||
2862 hard_reboot_mode == FASTBOOT_HARD_RESET_MODE) {
Pavel Nedev5d91d412013-04-29 11:34:24 +03002863 boot_into_fastboot = true;
lijuang72875802015-02-10 10:35:12 +08002864 } else if(reboot_mode == ALARM_BOOT ||
2865 hard_reboot_mode == RTC_HARD_RESET_MODE) {
Matthew Qind886f3c2014-01-17 16:52:01 +08002866 boot_reason_alarm = true;
Ajay Dudani77421292010-10-27 19:34:06 -07002867 }
2868
Matthew Qindefd5562014-07-11 18:02:40 +08002869normal_boot:
Pavel Nedev5d91d412013-04-29 11:34:24 +03002870 if (!boot_into_fastboot)
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002871 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03002872 if (target_is_emmc_boot())
Shashank Mittala0032282011-08-26 14:50:11 -07002873 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03002874 if(emmc_recovery_init())
2875 dprintf(ALWAYS,"error in emmc_recovery_init\n");
2876 if(target_use_signed_kernel())
Shashank Mittala0032282011-08-26 14:50:11 -07002877 {
Pavel Nedev5d91d412013-04-29 11:34:24 +03002878 if((device.is_unlocked) || (device.is_tampered))
2879 {
2880 #ifdef TZ_TAMPER_FUSE
2881 set_tamper_fuse_cmd();
2882 #endif
2883 #if USE_PCOM_SECBOOT
2884 set_tamper_flag(device.is_tampered);
2885 #endif
2886 }
Shashank Mittala0032282011-08-26 14:50:11 -07002887 }
Amit Blay6281ebc2015-01-11 14:44:08 +02002888
2889#ifdef MDTP_SUPPORT
2890 /* Go through Firmware Lock verification before continue with boot process */
2891 mdtp_fwlock_verify_lock();
Reut Zysman18411272015-02-09 13:47:27 +02002892 display_image_on_screen();
Amit Blay6281ebc2015-01-11 14:44:08 +02002893#endif /* MDTP_SUPPORT */
2894
Pavel Nedev5d91d412013-04-29 11:34:24 +03002895 boot_linux_from_mmc();
Shashank Mittala0032282011-08-26 14:50:11 -07002896 }
Pavel Nedev5d91d412013-04-29 11:34:24 +03002897 else
2898 {
2899 recovery_init();
2900 #if USE_PCOM_SECBOOT
2901 if((device.is_unlocked) || (device.is_tampered))
2902 set_tamper_flag(device.is_tampered);
2903 #endif
2904 boot_linux_from_flash();
2905 }
2906 dprintf(CRITICAL, "ERROR: Could not do normal boot. Reverting "
2907 "to fastboot mode.\n");
Shashank Mittald8c42bf2010-06-09 15:44:28 -07002908 }
Chandan Uddaraju2943fd62010-06-21 10:56:39 -07002909
Amol Jadi5edf3552013-07-23 14:15:34 -07002910 /* We are here means regular boot did not happen. Start fastboot. */
Channagoud Kadabi4c4884e2013-04-09 17:12:13 -07002911
Amol Jadi5edf3552013-07-23 14:15:34 -07002912 /* register aboot specific fastboot commands */
2913 aboot_fastboot_register_commands();
Amol Jadi57abe4c2011-05-24 15:47:27 -07002914
Amol Jadi5edf3552013-07-23 14:15:34 -07002915 /* dump partition table for debug info */
Kinson Chikf1a43512011-07-14 11:28:39 -07002916 partition_dump();
Amol Jadi5edf3552013-07-23 14:15:34 -07002917
2918 /* initialize and start fastboot */
2919 fastboot_init(target_get_scratch_address(), target_get_max_flash_size());
Brian Swetland9c4c0752009-01-25 16:23:50 -08002920}
2921
Deepa Dinamani41fa8d62013-05-23 13:25:36 -07002922uint32_t get_page_size()
2923{
2924 return page_size;
2925}
2926
Amir Samuelov57a6fa22013-06-05 16:36:43 +03002927/*
2928 * Calculated and save hash (SHA256) for non-signed boot image.
2929 *
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002930 * @param image_addr - Boot image address
2931 * @param image_size - Size of the boot image
Amir Samuelov57a6fa22013-06-05 16:36:43 +03002932 *
2933 * @return int - 0 on success, negative value on failure.
2934 */
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002935static int aboot_save_boot_hash_mmc(uint32_t image_addr, uint32_t image_size)
Amir Samuelov57a6fa22013-06-05 16:36:43 +03002936{
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002937 unsigned int digest[8];
2938#if IMAGE_VERIF_ALGO_SHA1
2939 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA1;
2940#else
2941 uint32_t auth_algo = CRYPTO_AUTH_ALG_SHA256;
2942#endif
Amir Samuelov57a6fa22013-06-05 16:36:43 +03002943
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002944 target_crypto_init_params();
Veera Sundaram Sankaranf9915462014-12-09 11:54:59 -08002945 hash_find((unsigned char *) image_addr, image_size, (unsigned char *)&digest, auth_algo);
Amir Samuelov57a6fa22013-06-05 16:36:43 +03002946
2947 save_kernel_hash_cmd(digest);
Channagoud Kadabi82cf5c62014-08-24 22:17:34 -07002948 dprintf(INFO, "aboot_save_boot_hash_mmc: imagesize_actual size %d bytes.\n", (int) image_size);
Amir Samuelov57a6fa22013-06-05 16:36:43 +03002949
2950 return 0;
2951}
2952
Brian Swetland9c4c0752009-01-25 16:23:50 -08002953APP_START(aboot)
2954 .init = aboot_init,
2955APP_END