blob: 1995c270bc7e371b68f2cfb1be8a8e5a805477d8 [file] [log] [blame]
rayz935a2c72014-02-14 13:17:02 +08001/* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
Deepa Dinamani645e9b12012-12-21 14:23:40 -08002 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
12 * * Neither the name of The Linux Foundation nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <debug.h>
30#include <platform/iomap.h>
Channagoud Kadabif6f71742013-05-23 14:05:05 -070031#include <platform/irqs.h>
Deepa Dinamani645e9b12012-12-21 14:23:40 -080032#include <reg.h>
33#include <target.h>
34#include <platform.h>
Pavel Nedev16f49232013-04-29 16:15:36 +030035#include <dload_util.h>
Deepa Dinamani645e9b12012-12-21 14:23:40 -080036#include <uart_dm.h>
Channagoud Kadabi3c50c312013-05-02 17:16:03 -070037#include <mmc_sdhci.h>
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +030038#include <platform/clock.h>
Deepa Dinamani7e729772013-02-25 11:54:05 -080039#include <platform/gpio.h>
Deepa Dinamani645e9b12012-12-21 14:23:40 -080040#include <spmi.h>
41#include <board.h>
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -080042#include <smem.h>
43#include <baseband.h>
Deepa Dinamani7e729772013-02-25 11:54:05 -080044#include <dev/keys.h>
Deepa Dinamani058f1cd2013-02-25 10:53:01 -080045#include <pm8x41.h>
Deepa Dinamani6bb87d52013-02-26 14:37:36 -080046#include <crypto5_wrapper.h>
Amol Jadi85e19192013-02-28 22:45:04 -080047#include <hsusb.h>
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +030048#include <scm.h>
49#include <stdlib.h>
50#include <partition_parser.h>
Matthew Qin01b50392014-01-24 16:57:37 +080051#include <shutdown_detect.h>
Matthew Qine2afd232014-02-22 07:20:42 +080052#include <vibrator.h>
Deepa Dinamani645e9b12012-12-21 14:23:40 -080053
Deepa Dinamani6bb87d52013-02-26 14:37:36 -080054extern bool target_use_signed_kernel(void);
Channagoud Kadabi3c50c312013-05-02 17:16:03 -070055static void set_sdc_power_ctrl(void);
Deepa Dinamani6bb87d52013-02-26 14:37:36 -080056
57#define PMIC_ARB_CHANNEL_NUM 0
58#define PMIC_ARB_OWNER_ID 0
59
60#define CRYPTO_ENGINE_INSTANCE 1
61#define CRYPTO_ENGINE_EE 1
62#define CRYPTO_ENGINE_FIFO_SIZE 64
63#define CRYPTO_ENGINE_READ_PIPE 3
64#define CRYPTO_ENGINE_WRITE_PIPE 2
Deepa Dinamanibbcf1ca2013-07-09 14:10:57 -070065#define CRYPTO_READ_PIPE_LOCK_GRP 0
66#define CRYPTO_WRITE_PIPE_LOCK_GRP 0
Deepa Dinamani6bb87d52013-02-26 14:37:36 -080067#define CRYPTO_ENGINE_CMD_ARRAY_SIZE 20
Deepa Dinamani645e9b12012-12-21 14:23:40 -080068
Deepa Dinamani7e729772013-02-25 11:54:05 -080069#define TLMM_VOL_UP_BTN_GPIO 106
Matthew Qine2afd232014-02-22 07:20:42 +080070#define VIBRATE_TIME 250
Deepa Dinamani7e729772013-02-25 11:54:05 -080071
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +030072#define SSD_CE_INSTANCE 1
73
Maria Yub8fd0822013-06-26 10:10:45 +080074enum target_subtype {
75 HW_PLATFORM_SUBTYPE_SKUAA = 1,
76 HW_PLATFORM_SUBTYPE_SKUF = 2,
77 HW_PLATFORM_SUBTYPE_SKUAB = 3,
Jie Chengf3d8a3b2013-08-01 15:37:55 +080078 HW_PLATFORM_SUBTYPE_SKUG = 5,
Maria Yub8fd0822013-06-26 10:10:45 +080079};
80
Channagoud Kadabif6f71742013-05-23 14:05:05 -070081static uint32_t mmc_pwrctl_base[] =
82 { MSM_SDC1_BASE, MSM_SDC2_BASE, MSM_SDC3_BASE };
83
Channagoud Kadabi3c50c312013-05-02 17:16:03 -070084static uint32_t mmc_sdhci_base[] =
85 { MSM_SDC1_SDHCI_BASE, MSM_SDC2_SDHCI_BASE, MSM_SDC3_SDHCI_BASE };
86
Channagoud Kadabif6f71742013-05-23 14:05:05 -070087static uint32_t mmc_sdc_pwrctl_irq[] =
88 { SDCC1_PWRCTL_IRQ, SDCC2_PWRCTL_IRQ, SDCC3_PWRCTL_IRQ };
89
Channagoud Kadabi3c50c312013-05-02 17:16:03 -070090struct mmc_device *dev;
Deepa Dinamani645e9b12012-12-21 14:23:40 -080091
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +030092void target_load_ssd_keystore(void)
93{
94 uint64_t ptn;
95 int index;
96 uint64_t size;
97 uint32_t *buffer;
98
99 if (!target_is_ssd_enabled())
100 return;
101
102 index = partition_get_index("ssd");
103
104 ptn = partition_get_offset(index);
105 if (ptn == 0){
106 dprintf(CRITICAL, "Error: ssd partition not found\n");
107 return;
108 }
109
110 size = partition_get_size(index);
111 if (size == 0) {
112 dprintf(CRITICAL, "Error: invalid ssd partition size\n");
113 return;
114 }
115
116 buffer = memalign(CACHE_LINE, ROUNDUP(size, CACHE_LINE));
117 if (!buffer) {
118 dprintf(CRITICAL, "Error: allocating memory for ssd buffer\n");
119 return;
120 }
121
122 if (mmc_read(ptn, buffer, size)) {
123 dprintf(CRITICAL, "Error: cannot read data\n");
124 free(buffer);
125 return;
126 }
127
128 clock_ce_enable(SSD_CE_INSTANCE);
129 scm_protect_keystore(buffer, size);
130 clock_ce_disable(SSD_CE_INSTANCE);
131 free(buffer);
132}
133
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800134void target_early_init(void)
135{
136#if WITH_DEBUG_UART
Deepa Dinamani0a6c48c2013-02-04 15:45:01 -0800137 uart_dm_init(1, 0, BLSP1_UART2_BASE);
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800138#endif
139}
140
Deepa Dinamani7e729772013-02-25 11:54:05 -0800141/* Return 1 if vol_up pressed */
142static int target_volume_up()
143{
144 uint8_t status = 0;
145
146 gpio_tlmm_config(TLMM_VOL_UP_BTN_GPIO, 0, GPIO_INPUT, GPIO_PULL_UP, GPIO_2MA, GPIO_ENABLE);
147
aiquny933017c2013-03-02 12:48:52 -0800148 thread_sleep(10);
149
Deepa Dinamani7e729772013-02-25 11:54:05 -0800150 /* Get status of GPIO */
151 status = gpio_status(TLMM_VOL_UP_BTN_GPIO);
152
153 /* Active low signal. */
154 return !status;
155}
156
157/* Return 1 if vol_down pressed */
158uint32_t target_volume_down()
159{
160 /* Volume down button tied in with PMIC RESIN. */
161 return pm8x41_resin_status();
162}
163
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800164static void target_keystatus()
165{
Deepa Dinamani7e729772013-02-25 11:54:05 -0800166 keys_init();
167
168 if(target_volume_down())
169 keys_post_event(KEY_VOLUMEDOWN, 1);
170
171 if(target_volume_up())
172 keys_post_event(KEY_VOLUMEUP, 1);
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800173}
174
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800175/* Set up params for h/w CRYPTO_ENGINE. */
176void target_crypto_init_params()
177{
178 struct crypto_init_params ce_params;
179
180 /* Set up base addresses and instance. */
181 ce_params.crypto_instance = CRYPTO_ENGINE_INSTANCE;
182 ce_params.crypto_base = MSM_CE1_BASE;
183 ce_params.bam_base = MSM_CE1_BAM_BASE;
184
185 /* Set up BAM config. */
Deepa Dinamanibbcf1ca2013-07-09 14:10:57 -0700186 ce_params.bam_ee = CRYPTO_ENGINE_EE;
187 ce_params.pipes.read_pipe = CRYPTO_ENGINE_READ_PIPE;
188 ce_params.pipes.write_pipe = CRYPTO_ENGINE_WRITE_PIPE;
189 ce_params.pipes.read_pipe_grp = CRYPTO_READ_PIPE_LOCK_GRP;
190 ce_params.pipes.write_pipe_grp = CRYPTO_WRITE_PIPE_LOCK_GRP;
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800191
192 /* Assign buffer sizes. */
193 ce_params.num_ce = CRYPTO_ENGINE_CMD_ARRAY_SIZE;
194 ce_params.read_fifo_size = CRYPTO_ENGINE_FIFO_SIZE;
195 ce_params.write_fifo_size = CRYPTO_ENGINE_FIFO_SIZE;
196
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +0300197 ce_params.do_bam_init = 0;
198
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800199 crypto_init_params(&ce_params);
200}
201
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700202void target_sdc_init()
203{
Channagoud Kadabif6f71742013-05-23 14:05:05 -0700204 struct mmc_config_data config = {0};
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700205
206 /*
207 * Set drive strength & pull ctrl for emmc
208 */
209 set_sdc_power_ctrl();
210
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700211 config.bus_width = DATA_BUS_WIDTH_8BIT;
212 config.max_clk_rate = MMC_CLK_200MHZ;
213
214 /* Trying Slot 1*/
215 config.slot = 1;
Channagoud Kadabif6f71742013-05-23 14:05:05 -0700216 config.sdhc_base = mmc_sdhci_base[config.slot - 1];
217 config.pwrctl_base = mmc_pwrctl_base[config.slot - 1];
218 config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1];
Aparna Mallavarapu1957cb42014-03-11 13:47:34 +0530219 config.hs400_support = 0;
Channagoud Kadabif6f71742013-05-23 14:05:05 -0700220
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700221 if (!(dev = mmc_init(&config)))
222 {
223 /* Trying Slot 2 next */
224 config.slot = 2;
Channagoud Kadabif6f71742013-05-23 14:05:05 -0700225 config.sdhc_base = mmc_sdhci_base[config.slot - 1];
226 config.pwrctl_base = mmc_pwrctl_base[config.slot - 1];
227 config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1];
228
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700229 if (!(dev = mmc_init(&config))) {
230 dprintf(CRITICAL, "mmc init failed!");
231 ASSERT(0);
232 }
233 }
234
235 /*
236 * MMC initialization is complete, read the partition table info
237 */
238 if (partition_read_table()) {
239 dprintf(CRITICAL, "Error reading the partition table info\n");
240 ASSERT(0);
241 }
242}
243
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800244void target_init(void)
245{
Sridhar Parasuram32d42ed2015-09-09 12:58:43 -0700246 int ret = 0;
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800247 dprintf(INFO, "target_init()\n");
248
249 spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID);
250
251 target_keystatus();
252
Aparna Mallavarapu63a62252013-08-23 17:59:43 +0530253 target_sdc_init();
Sridhar Parasuram32d42ed2015-09-09 12:58:43 -0700254 clock_ce_enable(SSD_CE_INSTANCE);
255 if (target_use_signed_kernel())
256 target_crypto_init_params();
Aparna Mallavarapu63a62252013-08-23 17:59:43 +0530257
Sridhar Parasuram32d42ed2015-09-09 12:58:43 -0700258#if VERIFIED_BOOT
259 /* Initialize Qseecom */
260 ret = qseecom_init();
261
262 if (ret < 0)
263 {
264 dprintf(CRITICAL, "Failed to initialize qseecom, error: %d\n", ret);
265 ASSERT(0);
266 }
267
268 /* Start Qseecom */
269 ret = qseecom_tz_init();
270
271 if (ret < 0)
272 {
273 dprintf(CRITICAL, "Failed to start qseecom, error: %d\n", ret);
274 ASSERT(0);
275 }
276
277 /*
278 * Load the sec app for first time
279 */
280 if (load_sec_app() < 0)
281 {
282 dprintf(CRITICAL, "Failed to load App for verified\n");
283 ASSERT(0);
284 }
285#endif
Matthew Qin01b50392014-01-24 16:57:37 +0800286 shutdown_detect();
287
Matthew Qine2afd232014-02-22 07:20:42 +0800288 /* turn on vibrator to indicate that phone is booting up to end user */
289 vib_timed_turn_on(VIBRATE_TIME);
290
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800291}
292
Deepa Dinamani058f1cd2013-02-25 10:53:01 -0800293/* Do any target specific intialization needed before entering fastboot mode */
294void target_fastboot_init(void)
295{
296 /* Set the BOOT_DONE flag in PM8026 */
297 pm8x41_set_boot_done();
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +0300298
299 if (target_is_ssd_enabled()) {
300 clock_ce_enable(SSD_CE_INSTANCE);
301 target_load_ssd_keystore();
302 }
Deepa Dinamani058f1cd2013-02-25 10:53:01 -0800303}
304
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800305/* Detect the target type */
306void target_detect(struct board_data *board)
307{
Maria Yuca51ee22013-06-27 21:45:24 +0800308 /*
309 * already fill the board->target on board.c
310 */
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800311}
312
313/* Detect the modem type */
314void target_baseband_detect(struct board_data *board)
315{
316 uint32_t platform;
317 uint32_t platform_subtype;
318
319 platform = board->platform;
320 platform_subtype = board->platform_subtype;
321
322 /*
323 * Look for platform subtype if present, else
324 * check for platform type to decide on the
325 * baseband type
326 */
327 switch(platform_subtype)
328 {
329 case HW_PLATFORM_SUBTYPE_UNKNOWN:
330 break;
Maria Yub8fd0822013-06-26 10:10:45 +0800331 case HW_PLATFORM_SUBTYPE_SKUAA:
332 break;
333 case HW_PLATFORM_SUBTYPE_SKUF:
334 break;
335 case HW_PLATFORM_SUBTYPE_SKUAB:
336 break;
Jie Chengf3d8a3b2013-08-01 15:37:55 +0800337 case HW_PLATFORM_SUBTYPE_SKUG:
338 break;
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800339 default:
340 dprintf(CRITICAL, "Platform Subtype : %u is not supported\n", platform_subtype);
341 ASSERT(0);
342 };
343
344 switch(platform)
345 {
346 case MSM8826:
347 case MSM8626:
348 case MSM8226:
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700349 case MSM8926:
350 case MSM8126:
351 case MSM8326:
Deepa Dinamanicd795aa2013-09-05 16:30:53 -0700352 case MSM8528:
353 case MSM8628:
354 case MSM8228:
355 case MSM8928:
356 case MSM8128:
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800357 board->baseband = BASEBAND_MSM;
358 break;
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700359 case APQ8026:
Deepa Dinamanicd795aa2013-09-05 16:30:53 -0700360 case APQ8028:
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700361 board->baseband = BASEBAND_APQ;
362 break;
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800363 default:
364 dprintf(CRITICAL, "Platform type: %u is not supported\n", platform);
365 ASSERT(0);
366 };
367}
368
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800369void target_serialno(unsigned char *buf)
370{
371 uint32_t serialno;
372 if (target_is_emmc_boot()) {
373 serialno = mmc_get_psn();
374 snprintf((char *)buf, 13, "%x", serialno);
375 }
376}
377
Deepa Dinamani8d2bb222013-02-26 14:03:04 -0800378unsigned check_reboot_mode(void)
379{
380 uint32_t restart_reason = 0;
381
382 /* Read reboot reason and scrub it */
383 restart_reason = readl(RESTART_REASON_ADDR);
384 writel(0x00, RESTART_REASON_ADDR);
385
386 return restart_reason;
387}
388
Deepa Dinamanif7c03c12013-02-26 14:17:20 -0800389void reboot_device(unsigned reboot_reason)
390{
Channagoud Kadabi559dcda2014-02-25 15:28:08 -0800391 int ret = 0;
392
Deepa Dinamanif7c03c12013-02-26 14:17:20 -0800393 writel(reboot_reason, RESTART_REASON_ADDR);
394
395 /* Configure PMIC for warm reset */
396 pm8x41_reset_configure(PON_PSHOLD_WARM_RESET);
397
Channagoud Kadabi559dcda2014-02-25 15:28:08 -0800398 ret = scm_halt_pmic_arbiter();
399 if (ret)
400 dprintf(CRITICAL , "Failed to halt pmic arbiter: %d\n", ret);
401
Deepa Dinamanif7c03c12013-02-26 14:17:20 -0800402 /* Drop PS_HOLD for MSM */
403 writel(0x00, MPM2_MPM_PS_HOLD);
404
405 mdelay(5000);
406
407 dprintf(CRITICAL, "Rebooting failed\n");
408}
409
Matthew Qin7dc113b2014-02-21 10:34:09 +0800410/* Configure PMIC and Drop PS_HOLD for shutdown */
411void shutdown_device()
412{
413 dprintf(CRITICAL, "Going down for shutdown.\n");
414
415 /* Configure PMIC for shutdown */
416 pm8x41_reset_configure(PON_PSHOLD_SHUTDOWN);
417
418 /* Drop PS_HOLD for MSM */
419 writel(0x00, MPM2_MPM_PS_HOLD);
420
421 mdelay(5000);
422
423 dprintf(CRITICAL, "shutdown failed\n");
424
425 ASSERT(0);
426}
427
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800428crypto_engine_type board_ce_type(void)
429{
430 return CRYPTO_ENGINE_TYPE_HW;
431}
432
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800433unsigned board_machtype(void)
434{
Deepa Dinamani8d6b4252013-03-06 11:16:41 -0800435 return 0;
436}
437
438void target_usb_stop(void)
439{
440 /* Disable VBUS mimicing in the controller. */
441 ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_CLEAR);
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800442}
Amol Jadi85e19192013-02-28 22:45:04 -0800443
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700444void target_uninit(void)
445{
Matthew Qine2afd232014-02-22 07:20:42 +0800446 /* wait for the vibrator timer is expried */
447 wait_vib_timeout();
448
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700449 mmc_put_card_to_sleep(dev);
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +0300450
Sridhar Parasuram32d42ed2015-09-09 12:58:43 -0700451 clock_ce_disable(SSD_CE_INSTANCE);
Channagoud Kadabid727a772013-12-04 12:38:27 -0800452 if (crypto_initialized())
453 crypto_eng_cleanup();
Sundarajan Srinivasan2a60d632014-05-08 16:36:25 -0700454
Sridhar Parasuram32d42ed2015-09-09 12:58:43 -0700455#if VERIFIED_BOOT
456 if (is_sec_app_loaded())
457 {
458 if (send_milestone_call_to_tz() < 0)
459 {
460 dprintf(CRITICAL, "Failed to send milestone call\n");
461 ASSERT(0);
462 }
463 }
464#endif
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700465}
466
Amol Jadi85e19192013-02-28 22:45:04 -0800467void target_usb_init(void)
468{
469 uint32_t val;
470
471 /* Select and enable external configuration with USB PHY */
472 ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_SET);
473
474 /* Enable sess_vld */
475 val = readl(USB_GENCONFIG_2) | GEN2_SESS_VLD_CTRL_EN;
476 writel(val, USB_GENCONFIG_2);
477
478 /* Enable external vbus configuration in the LINK */
479 val = readl(USB_USBCMD);
480 val |= SESS_VLD_CTRL;
481 writel(val, USB_USBCMD);
482}
Deepa Dinamanicde64572013-02-25 15:02:25 -0800483
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530484uint8_t target_panel_auto_detect_enabled()
485{
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800486 uint8_t ret = 0;
rayz935a2c72014-02-14 13:17:02 +0800487 uint32_t hw_subtype = board_hardware_subtype();
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800488
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530489 switch(board_hardware_id())
490 {
491 case HW_PLATFORM_QRD:
rayz935a2c72014-02-14 13:17:02 +0800492 if (hw_subtype != HW_PLATFORM_SUBTYPE_SKUF
493 && hw_subtype != HW_PLATFORM_SUBTYPE_SKUG) {
494 /* Enable autodetect for 8x26 DVT boards only */
495 if (((board_target_id() >> 16) & 0xFF) == 0x2)
496 ret = 1;
497 else
498 ret = 0;
499 }
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800500 break;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530501 case HW_PLATFORM_SURF:
502 case HW_PLATFORM_MTP:
503 default:
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800504 ret = 0;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530505 }
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800506 return ret;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530507}
508
509static uint8_t splash_override;
Ray Zhang743e5032013-05-25 23:25:39 +0800510/* Returns 1 if target supports continuous splash screen. */
511int target_cont_splash_screen()
512{
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530513 uint8_t splash_screen = 0;
514 if(!splash_override) {
515 switch(board_hardware_id())
516 {
517 case HW_PLATFORM_MTP:
518 case HW_PLATFORM_QRD:
519 case HW_PLATFORM_SURF:
520 dprintf(SPEW, "Target_cont_splash=1\n");
521 splash_screen = 1;
522 break;
523 default:
524 dprintf(SPEW, "Target_cont_splash=0\n");
525 splash_screen = 0;
526 }
527 }
528 return splash_screen;
529}
530
531void target_force_cont_splash_disable(uint8_t override)
532{
533 splash_override = override;
Ray Zhang743e5032013-05-25 23:25:39 +0800534}
535
Deepa Dinamanicde64572013-02-25 15:02:25 -0800536unsigned target_pause_for_battery_charge(void)
537{
538 uint8_t pon_reason = pm8x41_get_pon_reason();
Ameya Thakur06041312013-06-25 13:46:21 -0700539 uint8_t is_cold_boot = pm8x41_get_is_cold_boot();
Ameya Thakur531e59a2013-07-17 16:53:53 -0700540 dprintf(INFO, "%s : pon_reason is %d cold_boot:%d\n", __func__,
541 pon_reason, is_cold_boot);
Ameya Thakura8711dc2013-07-19 17:52:51 -0700542 /* In case of fastboot reboot,adb reboot or if we see the power key
543 * pressed we do not want go into charger mode.
Ameya Thakur531e59a2013-07-17 16:53:53 -0700544 * fastboot reboot is warm boot with PON hard reset bit not set
545 * adb reboot is a cold boot with PON hard reset bit set
546 */
Ameya Thakura8711dc2013-07-19 17:52:51 -0700547 if (is_cold_boot &&
548 (!(pon_reason & HARD_RST)) &&
549 (!(pon_reason & KPDPWR_N)) &&
Ameya Thakur531e59a2013-07-17 16:53:53 -0700550 ((pon_reason & USB_CHG) || (pon_reason & DC_CHG)))
551 return 1;
552 else
553 return 0;
Deepa Dinamanicde64572013-02-25 15:02:25 -0800554}
Channagoud Kadabida54ca12013-03-29 11:22:15 -0700555
556unsigned target_baseband()
557{
558 return board_baseband();
559}
Stanimir Varbanov7f9d7a72013-04-29 12:05:39 +0300560
561int emmc_recovery_init(void)
562{
Pavel Nedev16f49232013-04-29 16:15:36 +0300563 return _emmc_recovery_init();
564}
565
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +0300566int set_download_mode(enum dload_mode mode)
Pavel Nedev16f49232013-04-29 16:15:36 +0300567{
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +0300568 dload_util_write_cookie(mode == NORMAL_DLOAD ?
569 DLOAD_MODE_ADDR : EMERGENCY_DLOAD_MODE_ADDR, mode);
Pavel Nedev16f49232013-04-29 16:15:36 +0300570
Xiaocheng Li9ddc84a2013-09-14 17:32:00 +0800571 pm8x41_clear_pmic_watchdog();
572
Pavel Nedev16f49232013-04-29 16:15:36 +0300573 return 0;
Stanimir Varbanov7f9d7a72013-04-29 12:05:39 +0300574}
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700575
576static void set_sdc_power_ctrl()
577{
578 /* Drive strength configs for sdc pins */
579 struct tlmm_cfgs sdc1_hdrv_cfg[] =
580 {
Channagoud Kadabi9d4acea2014-01-03 16:18:54 -0800581 { SDC1_CLK_HDRV_CTL_OFF, TLMM_CUR_VAL_16MA, TLMM_HDRV_MASK },
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700582 { SDC1_CMD_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK },
Channagoud Kadabi9d4acea2014-01-03 16:18:54 -0800583 { SDC1_DATA_HDRV_CTL_OFF, TLMM_CUR_VAL_6MA, TLMM_HDRV_MASK },
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700584 };
585
586 /* Pull configs for sdc pins */
587 struct tlmm_cfgs sdc1_pull_cfg[] =
588 {
589 { SDC1_CLK_PULL_CTL_OFF, TLMM_NO_PULL, TLMM_PULL_MASK },
590 { SDC1_CMD_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK },
591 { SDC1_DATA_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK },
592 };
593
594 /* Set the drive strength & pull control values */
595 tlmm_set_hdrive_ctrl(sdc1_hdrv_cfg, ARRAY_SIZE(sdc1_hdrv_cfg));
596 tlmm_set_pull_ctrl(sdc1_pull_cfg, ARRAY_SIZE(sdc1_pull_cfg));
597}
598
599struct mmc_device *target_mmc_device()
600{
601 return dev;
602}