blob: de4326b5d8f01885126e395c382bafb1806d3d53 [file] [log] [blame]
Shashank Mittal246f8d02011-01-21 17:12:27 -08001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
Channagoud Kadabi3acfb742011-11-15 18:19:32 +05304 * Copyright (c) 2009-2012, Code Aurora Forum. All rights reserved.
Shashank Mittal246f8d02011-01-21 17:12:27 -08005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * 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
13 * the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google, Inc. nor the names of its contributors
16 * may be used to endorse or promote products derived from this
17 * software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
Amol Jadi2dfe3392011-07-19 16:03:37 -070033#include <reg.h>
Shashank Mittal246f8d02011-01-21 17:12:27 -080034#include <debug.h>
35#include <dev/keys.h>
Kinson Chikea646242011-09-01 13:53:16 -070036#include <dev/ssbi.h>
Shashank Mittal246f8d02011-01-21 17:12:27 -080037#include <lib/ptable.h>
38#include <dev/flash.h>
39#include <smem.h>
Greg Griscod6250552011-06-29 14:40:23 -070040#include <mmc.h>
Shashank Mittal246f8d02011-01-21 17:12:27 -080041#include <platform/iomap.h>
Channagoud Kadabi539ef722012-03-29 16:02:50 +053042#include <target/board.h>
Greg Griscod6250552011-06-29 14:40:23 -070043#include <platform.h>
Deepa Dinamani5e5c21a2012-02-16 18:59:57 -080044#include <crypto_hash.h>
Shashank Mittal246f8d02011-01-21 17:12:27 -080045
Shashank Mittal246f8d02011-01-21 17:12:27 -080046#define VARIABLE_LENGTH 0x10101010
47#define DIFF_START_ADDR 0xF0F0F0F0
48#define NUM_PAGES_PER_BLOCK 0x40
Channagoud Kadabi16da3a22011-10-24 20:25:07 +053049#define RECOVERY_MODE 0x77665502
50#define FOTA_COOKIE 0x64645343
51
52unsigned int fota_cookie[1];
Shashank Mittal246f8d02011-01-21 17:12:27 -080053
54static struct ptable flash_ptable;
Shashank Mittalcb25d252011-04-05 12:13:30 -070055unsigned hw_platform = 0;
56unsigned target_msm_id = 0;
Shashank Mittal246f8d02011-01-21 17:12:27 -080057
Deepa Dinamani5e5c21a2012-02-16 18:59:57 -080058/* Setting this variable to different values defines the
59 * behavior of CE engine:
60 * platform_ce_type = CRYPTO_ENGINE_TYPE_NONE : No CE engine
61 * platform_ce_type = CRYPTO_ENGINE_TYPE_SW : Software CE engine
62 * platform_ce_type = CRYPTO_ENGINE_TYPE_HW : Hardware CE engine
63 * Behavior is determined in the target code.
64 */
65static crypto_engine_type platform_ce_type = CRYPTO_ENGINE_TYPE_SW;
66
Channagoud Kadabi3acfb742011-11-15 18:19:32 +053067int machine_is_evb();
Channagoud Kadabid53664b2011-12-28 16:39:15 +053068
Shashank Mittal246f8d02011-01-21 17:12:27 -080069/* for these partitions, start will be offset by either what we get from
70 * smem, or from the above offset if smem is not useful. Also, we should
71 * probably have smem_ptable code populate our flash_ptable.
72 *
73 * When smem provides us with a full partition table, we can get rid of
74 * this altogether.
75 *
76 */
Channagoud Kadabie57173d2011-12-19 15:42:44 +053077static struct ptentry board_part_list[] = {
Shashank Mittal246f8d02011-01-21 17:12:27 -080078 {
Ajay Dudanib01e5062011-12-03 23:23:42 -080079 .start = 0,
80 .length = 10 /* In MB */ ,
81 .name = "boot",
82 },
Shashank Mittal246f8d02011-01-21 17:12:27 -080083 {
Ajay Dudanib01e5062011-12-03 23:23:42 -080084 .start = DIFF_START_ADDR,
Channagoud Kadabi71961882012-02-09 16:32:41 +053085 .length = 253 /* In MB */ ,
Ajay Dudanib01e5062011-12-03 23:23:42 -080086 .name = "system",
87 },
Shashank Mittal246f8d02011-01-21 17:12:27 -080088 {
Ajay Dudanib01e5062011-12-03 23:23:42 -080089 .start = DIFF_START_ADDR,
Channagoud Kadabi2ce67412012-09-11 18:26:27 +053090 .length = 80 /* In MB */ ,
Ajay Dudanib01e5062011-12-03 23:23:42 -080091 .name = "cache",
92 },
Shashank Mittal246f8d02011-01-21 17:12:27 -080093 {
Ajay Dudanib01e5062011-12-03 23:23:42 -080094 .start = DIFF_START_ADDR,
95 .length = 4 /* In MB */ ,
96 .name = "misc",
97 },
Shashank Mittal246f8d02011-01-21 17:12:27 -080098 {
Ajay Dudanib01e5062011-12-03 23:23:42 -080099 .start = DIFF_START_ADDR,
100 .length = VARIABLE_LENGTH,
101 .name = "userdata",
102 },
Shashank Mittal246f8d02011-01-21 17:12:27 -0800103 {
Ajay Dudanib01e5062011-12-03 23:23:42 -0800104 .start = DIFF_START_ADDR,
105 .length = 4 /* In MB */ ,
106 .name = "persist",
107 },
Shashank Mittal246f8d02011-01-21 17:12:27 -0800108 {
Ajay Dudanib01e5062011-12-03 23:23:42 -0800109 .start = DIFF_START_ADDR,
110 .length = 10 /* In MB */ ,
111 .name = "recovery",
112 },
Shashank Mittal246f8d02011-01-21 17:12:27 -0800113};
Ajay Dudanib01e5062011-12-03 23:23:42 -0800114
Channagoud Kadabie57173d2011-12-19 15:42:44 +0530115static int num_parts = sizeof(board_part_list) / sizeof(struct ptentry);
Ajay Dudanib01e5062011-12-03 23:23:42 -0800116
Shashank Mittal246f8d02011-01-21 17:12:27 -0800117void smem_ptable_init(void);
118unsigned smem_get_apps_flash_start(void);
119
120void keypad_init(void);
121
122int target_is_emmc_boot(void);
123
124void target_init(void)
125{
126 unsigned offset;
127 struct flash_info *flash_info;
128 unsigned total_num_of_blocks;
129 unsigned next_ptr_start_adr = 0;
Ajay Dudanib01e5062011-12-03 23:23:42 -0800130 unsigned blocks_per_1MB = 8; /* Default value of 2k page size on 256MB flash drive */
Shashank Mittal246f8d02011-01-21 17:12:27 -0800131 int i;
132
133 dprintf(INFO, "target_init()\n");
134
Shashank Mittal246f8d02011-01-21 17:12:27 -0800135#if (!ENABLE_NANDWRITE)
136 keys_init();
137 keypad_init();
138#endif
Shashank Mittal246f8d02011-01-21 17:12:27 -0800139
Kinson Chikce306ff2011-07-08 15:23:33 -0700140 /* Display splash screen if enabled */
141#if DISPLAY_SPLASH_SCREEN
Channagoud Kadabi539ef722012-03-29 16:02:50 +0530142 display_init();
143 dprintf(SPEW, "Diplay initialized\n");
Kinson Chikce306ff2011-07-08 15:23:33 -0700144#endif
145
Ajay Dudanib01e5062011-12-03 23:23:42 -0800146 if (target_is_emmc_boot()) {
Amol Jadi2dfe3392011-07-19 16:03:37 -0700147 /* Must wait for modem-up before we can intialize MMC.
148 */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800149 while (readl(MSM_SHARED_BASE + 0x14) != 1) ;
Amol Jadi2dfe3392011-07-19 16:03:37 -0700150
Ajay Dudanib01e5062011-12-03 23:23:42 -0800151 if (mmc_boot_main(MMC_SLOT, MSM_SDC3_BASE)) {
Shashank Mittal246f8d02011-01-21 17:12:27 -0800152 dprintf(CRITICAL, "mmc init failed!");
153 ASSERT(0);
154 }
155 return;
156 }
157
158 ptable_init(&flash_ptable);
159 smem_ptable_init();
160
161 flash_init();
162 flash_info = flash_get_info();
163 ASSERT(flash_info);
164
165 offset = smem_get_apps_flash_start();
166 if (offset == 0xffffffff)
Ajay Dudanib01e5062011-12-03 23:23:42 -0800167 while (1) ;
Shashank Mittal246f8d02011-01-21 17:12:27 -0800168
169 total_num_of_blocks = flash_info->num_blocks;
170 blocks_per_1MB = (1 << 20) / (flash_info->block_size);
171
172 for (i = 0; i < num_parts; i++) {
173 struct ptentry *ptn = &board_part_list[i];
174 unsigned len = ((ptn->length) * blocks_per_1MB);
175
Ajay Dudanib01e5062011-12-03 23:23:42 -0800176 if (ptn->start != 0)
177 ASSERT(ptn->start == DIFF_START_ADDR);
Shashank Mittal246f8d02011-01-21 17:12:27 -0800178
179 ptn->start = next_ptr_start_adr;
180
Ajay Dudanib01e5062011-12-03 23:23:42 -0800181 if (ptn->length == VARIABLE_LENGTH) {
Shashank Mittal246f8d02011-01-21 17:12:27 -0800182 unsigned length_for_prt = 0;
183 unsigned j;
Ajay Dudanib01e5062011-12-03 23:23:42 -0800184 for (j = i + 1; j < num_parts; j++) {
185 struct ptentry *temp_ptn = &board_part_list[j];
186 ASSERT(temp_ptn->length != VARIABLE_LENGTH);
187 length_for_prt +=
188 ((temp_ptn->length) * blocks_per_1MB);
Shashank Mittal246f8d02011-01-21 17:12:27 -0800189 }
Ajay Dudanib01e5062011-12-03 23:23:42 -0800190 len =
191 (total_num_of_blocks - 1) - (offset + ptn->start +
192 length_for_prt);
Shashank Mittal246f8d02011-01-21 17:12:27 -0800193 ASSERT(len >= 0);
194 }
195 next_ptr_start_adr = ptn->start + len;
196 ptable_add(&flash_ptable, ptn->name, offset + ptn->start,
Ajay Dudanib01e5062011-12-03 23:23:42 -0800197 len, ptn->flags, TYPE_APPS_PARTITION,
198 PERM_WRITEABLE);
Shashank Mittal246f8d02011-01-21 17:12:27 -0800199 }
200
201 smem_add_modem_partitions(&flash_ptable);
202
203 ptable_dump(&flash_ptable);
204 flash_set_ptable(&flash_ptable);
205}
206
Shashank Mittalcb25d252011-04-05 12:13:30 -0700207void board_info(void)
208{
209 struct smem_board_info_v4 board_info_v4;
210 unsigned int board_info_len = 0;
211 unsigned smem_status;
212 unsigned format = 0;
213 unsigned id = 0;
214
215 if (hw_platform && target_msm_id)
216 return;
217
218 hw_platform = MSM7X27A_SURF;
219 target_msm_id = MSM7225A;
220
221 smem_status = smem_read_alloc_entry_offset(SMEM_BOARD_INFO_LOCATION,
Ajay Dudanib01e5062011-12-03 23:23:42 -0800222 &format, sizeof(format), 0);
223 if (!smem_status) {
224 if (format == 4) {
Shashank Mittalcb25d252011-04-05 12:13:30 -0700225 board_info_len = sizeof(board_info_v4);
Ajay Dudanib01e5062011-12-03 23:23:42 -0800226 smem_status =
227 smem_read_alloc_entry(SMEM_BOARD_INFO_LOCATION,
228 &board_info_v4,
229 board_info_len);
230 if (!smem_status) {
Shashank Mittalcb25d252011-04-05 12:13:30 -0700231 id = board_info_v4.board_info_v3.hw_platform;
Ajay Dudanib01e5062011-12-03 23:23:42 -0800232 target_msm_id =
233 board_info_v4.board_info_v3.msm_id;
Shashank Mittalcb25d252011-04-05 12:13:30 -0700234 }
235 }
236
Channagoud Kadabi4c41c412011-09-08 15:38:30 +0530237 /* Detect SURF v/s FFA v/s QRD */
Aparna Mallavarapu51879412012-08-27 12:55:50 +0530238 if (target_msm_id >= MSM8225 && target_msm_id <= MSM8625
239 || (target_msm_id == MSM8125A)) {
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530240 switch (id) {
241 case 0x1:
242 hw_platform = MSM8X25_SURF;
243 break;
Aparna Mallavarapu1bb33672012-04-20 16:07:24 +0530244 case 0x2:
245 hw_platform = MSM8X25_FFA;
246 break;
Aparna Mallavarapubac9a722012-05-22 10:15:29 +0530247 case 0x10:
Aparna Mallavarapu287d89c2012-05-11 14:27:03 +0530248 hw_platform = MSM8X25_EVT;
249 break;
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530250 case 0xC:
251 hw_platform = MSM8X25_EVB;
252 break;
Aparna Mallavarapuac332982012-03-18 14:02:38 +0530253 case 0xF:
254 hw_platform = MSM8X25_QRD7;
255 break;
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530256 default:
257 hw_platform = MSM8X25_SURF;
258 }
259 } else {
260 switch (id) {
261 case 0x1:
262 /* Set the machine type based on msm ID */
Channagoud Kadabibd14e2f2012-05-03 22:54:50 +0530263 if (msm_is_7x25a(target_msm_id))
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530264 hw_platform = MSM7X25A_SURF;
Channagoud Kadabi849ad5e2012-04-02 23:21:21 +0530265 else
266 hw_platform = MSM7X27A_SURF;
267 break;
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530268 case 0x2:
Channagoud Kadabibd14e2f2012-05-03 22:54:50 +0530269 if (msm_is_7x25a(target_msm_id))
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530270 hw_platform = MSM7X25A_FFA;
Channagoud Kadabi849ad5e2012-04-02 23:21:21 +0530271 else
272 hw_platform = MSM7X27A_FFA;
273 break;
274 case 0xB:
275 if(target_is_emmc_boot())
276 hw_platform = MSM7X27A_QRD1;
277 else
278 hw_platform = MSM7X27A_QRD3;
279 break;
280 case 0xC:
281 hw_platform = MSM7X27A_EVB;
282 break;
283 case 0xF:
Channagoud Kadabib33d4832012-02-06 17:10:56 +0530284 hw_platform = MSM7X27A_QRD3;
Channagoud Kadabi849ad5e2012-04-02 23:21:21 +0530285 break;
286 default:
Channagoud Kadabibd14e2f2012-05-03 22:54:50 +0530287 if (msm_is_7x25a(target_msm_id))
Channagoud Kadabi849ad5e2012-04-02 23:21:21 +0530288 hw_platform = MSM7X25A_SURF;
289 else
290 hw_platform = MSM7X27A_SURF;
291 };
292 }
Ajay Dudanib01e5062011-12-03 23:23:42 -0800293 /* Set msm ID for target variants based on values read from smem */
294 switch (target_msm_id) {
295 case MSM7225A:
296 case MSM7625A:
297 case ESM7225A:
298 case MSM7225AA:
299 case MSM7625AA:
300 case ESM7225AA:
Channagoud Kadabibd14e2f2012-05-03 22:54:50 +0530301 case MSM7225AB:
302 case MSM7625AB:
303 case ESM7225AB:
Channagoud Kadabi647f0852012-06-08 11:51:45 +0530304 case MSM7125A:
Ajay Dudanib01e5062011-12-03 23:23:42 -0800305 target_msm_id = MSM7625A;
306 break;
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530307 case MSM8225:
308 case MSM8625:
Aparna Mallavarapu51879412012-08-27 12:55:50 +0530309 case MSM8125A:
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530310 target_msm_id = MSM8625;
311 break;
Ajay Dudanib01e5062011-12-03 23:23:42 -0800312 default:
313 target_msm_id = MSM7627A;
Shashank Mittalcb25d252011-04-05 12:13:30 -0700314 }
315 }
316 return;
317}
318
Shashank Mittal246f8d02011-01-21 17:12:27 -0800319unsigned board_machtype(void)
320{
Shashank Mittalcb25d252011-04-05 12:13:30 -0700321 board_info();
322 return hw_platform;
323}
324
325unsigned board_msm_id(void)
326{
327 board_info();
328 return target_msm_id;
Shashank Mittal246f8d02011-01-21 17:12:27 -0800329}
330
Deepa Dinamani5e5c21a2012-02-16 18:59:57 -0800331crypto_engine_type board_ce_type(void)
332{
333 return platform_ce_type;
334}
335
Shashank Mittal246f8d02011-01-21 17:12:27 -0800336void reboot_device(unsigned reboot_reason)
337{
338 reboot(reboot_reason);
339}
340
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530341static int read_from_flash(struct ptentry* ptn, int offset, int size, void *dest)
342{
343 void *buffer = NULL;
344 unsigned page_size = flash_page_size();
345 unsigned page_mask = page_size - 1;
346 int read_size = (size + page_mask) & (~page_mask);
347
348 buffer = malloc(read_size);
349 if(!buffer){
350 dprintf(CRITICAL, "ERROR : Malloc failed for read_from_flash \n");
351 return -1;
352 }
353
354 if(flash_read(ptn, offset, buffer, read_size)){
355 dprintf(CRITICAL, "ERROR : Flash read failed \n");
356 return -1;
357 }
358 memcpy(dest, buffer, size);
359 free(buffer);
360 return 0;
361}
362
363static unsigned int get_fota_cookie_mtd(void)
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530364{
365 struct ptentry *ptn;
366 struct ptable *ptable;
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530367 unsigned int cookie = 0;
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530368
369 ptable = flash_get_ptable();
370 if (ptable == NULL) {
371 dprintf(CRITICAL, "ERROR: Partition table not found\n");
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530372 return 0;
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530373 }
374
375 ptn = ptable_find(ptable, "FOTA");
376 if (ptn == NULL) {
377 dprintf(CRITICAL, "ERROR: No FOTA partition found\n");
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530378 return 0;
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530379 }
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530380
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530381 if (read_from_flash(ptn, 0, sizeof(unsigned int), &cookie) == -1) {
382 dprintf(CRITICAL, "ERROR: failed to read fota cookie from flash\n");
383 return 0;
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530384 }
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530385 return cookie;
386}
387
388static int read_from_mmc(struct ptentry* ptn, int size, void *dest)
389{
390 void *buffer = NULL;
391 unsigned sector_mask = 511;
392 int read_size = (size + sector_mask) & (~sector_mask);
393
394 buffer = malloc(read_size);
395 if(!buffer){
396 dprintf(CRITICAL, "ERROR : Malloc failed for read_from_flash \n");
397 return -1;
398 }
399
400 if(mmc_read(ptn, buffer, read_size)) {
401 dprintf(CRITICAL, "ERROR : Flash read failed \n");
402 return -1;
403 }
404 memcpy(dest, buffer, size);
405 free(buffer);
406 return 0;
407}
408
409static int get_fota_cookie_mmc(void)
410{
411 unsigned long long ptn = 0;
412 int index = -1;
413 unsigned int cookie = 0;
414
415 index = partition_get_index("FOTA");
416 ptn = partition_get_offset(index);
417
418 if(ptn == 0) {
419 dprintf(CRITICAL,"ERROR: FOTA partition not found\n");
420 return 0;
421 }
422 if(read_from_mmc(ptn, sizeof(unsigned int), &cookie)) {
423 dprintf(CRITICAL, "ERROR: Cannot read cookie info\n");
424 return 0;
425 }
426 return cookie;
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530427}
428
Shashank Mittal246f8d02011-01-21 17:12:27 -0800429unsigned check_reboot_mode(void)
430{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800431 unsigned mode[2] = { 0, 0 };
Shashank Mittal246f8d02011-01-21 17:12:27 -0800432 unsigned int mode_len = sizeof(mode);
433 unsigned smem_status;
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530434 unsigned int cookie = 0;
Shashank Mittal246f8d02011-01-21 17:12:27 -0800435
436 smem_status = smem_read_alloc_entry(SMEM_APPS_BOOT_MODE,
Ajay Dudanib01e5062011-12-03 23:23:42 -0800437 &mode, mode_len);
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530438
439 /*
440 * SMEM value is relied upon on power shutdown. Check either of SMEM
441 * or FOTA update cookie is set
442 */
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530443 if (target_is_emmc_boot())
444 cookie = get_fota_cookie_mmc();
445 else
446 cookie = get_fota_cookie_mtd();
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530447
Channagoud Kadabi16f50952012-04-02 16:24:07 +0530448 if ((mode[0] == RECOVERY_MODE) || (cookie == FOTA_COOKIE))
Channagoud Kadabi16da3a22011-10-24 20:25:07 +0530449 return RECOVERY_MODE;
450
Ajay Dudanib01e5062011-12-03 23:23:42 -0800451 if (smem_status) {
452 dprintf(CRITICAL,
453 "ERROR: unable to read shared memory for reboot mode\n");
454 return 0;
Shashank Mittal246f8d02011-01-21 17:12:27 -0800455 }
456 return mode[0];
457}
458
459static unsigned target_check_power_on_reason(void)
460{
461 unsigned power_on_status = 0;
462 unsigned int status_len = sizeof(power_on_status);
463 unsigned smem_status;
464
465 smem_status = smem_read_alloc_entry(SMEM_POWER_ON_STATUS_INFO,
Ajay Dudanib01e5062011-12-03 23:23:42 -0800466 &power_on_status, status_len);
467 if (smem_status) {
468 dprintf(CRITICAL,
469 "ERROR: unable to read shared memory for power on reason\n");
Shashank Mittal246f8d02011-01-21 17:12:27 -0800470 }
471
472 return power_on_status;
473}
474
475unsigned target_pause_for_battery_charge(void)
476{
Ajay Dudaniba822332011-11-25 13:37:31 -0800477 if (target_check_power_on_reason() == PWR_ON_EVENT_WALL_CHG)
Shashank Mittal246f8d02011-01-21 17:12:27 -0800478 return 1;
479 return 0;
480}
481
482void target_battery_charging_enable(unsigned enable, unsigned disconnect)
483{
484}
Shashank Mittal59392f32011-05-01 20:49:56 -0700485
486#if _EMMC_BOOT
487void target_serialno(unsigned char *buf)
488{
489 unsigned int serialno;
Ajay Dudanib01e5062011-12-03 23:23:42 -0800490 serialno = mmc_get_psn();
491 sprintf(buf, "%x", serialno);
Shashank Mittal59392f32011-05-01 20:49:56 -0700492}
Subbaraman Narayanamurthy0e445b02011-06-19 21:34:46 -0700493
494int emmc_recovery_init(void)
495{
496 int rc;
497 rc = _emmc_recovery_init();
498 return rc;
499}
Shashank Mittal59392f32011-05-01 20:49:56 -0700500#endif
Channagoud Kadabid53664b2011-12-28 16:39:15 +0530501
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530502int machine_is_evb()
Channagoud Kadabid53664b2011-12-28 16:39:15 +0530503{
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530504 int ret = 0;
505 unsigned mach_type = board_machtype();
506
507 switch(mach_type) {
508 case MSM7X27A_EVB:
509 case MSM8X25_EVB:
Aparna Mallavarapu287d89c2012-05-11 14:27:03 +0530510 case MSM8X25_EVT:
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530511 ret = 1;
512 break;
513 default:
514 ret = 0;
515 }
516 return ret;
Channagoud Kadabid53664b2011-12-28 16:39:15 +0530517}
Aparna Mallavarapuac332982012-03-18 14:02:38 +0530518int machine_is_qrd()
Channagoud Kadabib33d4832012-02-06 17:10:56 +0530519{
Aparna Mallavarapuac332982012-03-18 14:02:38 +0530520 int ret = 0;
521 unsigned mach_type = board_machtype();
Channagoud Kadabib33d4832012-02-06 17:10:56 +0530522
Aparna Mallavarapuac332982012-03-18 14:02:38 +0530523 switch(mach_type) {
524 case MSM7X27A_QRD1:
525 case MSM7X27A_QRD3:
526 case MSM8X25_QRD7:
527 ret = 1;
528 break;
529 default:
530 ret = 0;
531 }
532 return ret;
Channagoud Kadabib33d4832012-02-06 17:10:56 +0530533}
Channagoud Kadabi81ba1102011-10-01 16:37:59 +0530534int machine_is_8x25()
535{
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530536 int ret = 0;
537 unsigned mach_type = board_machtype();
538
539 switch(mach_type) {
540 case MSM8X25_SURF:
Aparna Mallavarapu1bb33672012-04-20 16:07:24 +0530541 case MSM8X25_FFA:
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530542 case MSM8X25_EVB:
Aparna Mallavarapu287d89c2012-05-11 14:27:03 +0530543 case MSM8X25_EVT:
Aparna Mallavarapuac332982012-03-18 14:02:38 +0530544 case MSM8X25_QRD7:
Channagoud Kadabi3acfb742011-11-15 18:19:32 +0530545 ret = 1;
546 break;
547 default:
548 ret = 0;
549 }
550 return ret;
Channagoud Kadabi81ba1102011-10-01 16:37:59 +0530551}
Channagoud Kadabibd14e2f2012-05-03 22:54:50 +0530552
553int msm_is_7x25a(int msm_id)
554{
555 int ret = 0;
556
557 switch (msm_id) {
558 case MSM7225A:
559 case MSM7625A:
560 case ESM7225A:
561 case MSM7225AA:
562 case MSM7625AA:
563 case ESM7225AA:
564 case MSM7225AB:
565 case MSM7625AB:
566 case ESM7225AB:
Channagoud Kadabi647f0852012-06-08 11:51:45 +0530567 case MSM7125A:
Channagoud Kadabibd14e2f2012-05-03 22:54:50 +0530568 ret = 1;
569 break;
570 default:
571 ret = 0;
572 };
573 return ret;
574}
Amol Jadida118b92012-07-06 19:53:18 -0700575
576static void target_ulpi_init(void)
577{
578 unsigned int reg;
579
580 ulpi_read(0x31);
581 dprintf(INFO, " Value of ulpi read 0x31 is %08x\n", reg);
582 /* todo : the write back value should be calculated according to
583 * reg &= 0xF3 but sometimes the value that is read initially
584 * doesnt look right
585 */
586 ulpi_write(0x4A, 0x31);
587 reg = ulpi_read(0x31);
588 dprintf(INFO, " Value of ulpi read 0x31 after write is %08x\n", reg);
589
590 reg = ulpi_read(0x32);
591 dprintf(INFO, " Value of ulpi read 0x32 is %08x\n", reg);
592 ulpi_write(0x30, 0x32);
593 reg = ulpi_read(0x32);
594 dprintf(INFO, " Value of ulpi read 0x32 after write is %08x\n", reg);
595
596 reg = ulpi_read(0x36);
597 dprintf(INFO, " Value of ulpi read 0x36 is %08x\n", reg);
598 ulpi_write(reg | 0x2, 0x36);
599 reg = ulpi_read(0x36);
600 dprintf(INFO, " Value of ulpi read 0x36 after write is %08x\n", reg);
601}
602
603void target_usb_init(void)
604{
605 target_ulpi_init();
606}
Channagoud Kadabif2488462012-06-12 15:22:48 +0530607
608int target_cont_splash_screen()
609{
610 int ret = 0;
611 unsigned mach_type = 0;
612
613 mach_type = board_machtype();
614
615 switch(mach_type) {
616 case MSM8X25_EVB:
617 case MSM8X25_EVT:
Channagoud Kadabicdda0fe2012-07-13 11:44:28 +0530618 case MSM8X25_QRD7:
Channagoud Kadabif2488462012-06-12 15:22:48 +0530619 ret = 1;
620 break;
621 default:
622 ret = 0;
623 };
624 return ret;
625}