blob: da093908cd7978e999a2166b1a752096f307b6c5 [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{
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800246 dprintf(INFO, "target_init()\n");
247
248 spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID);
249
250 target_keystatus();
251
Aparna Mallavarapu63a62252013-08-23 17:59:43 +0530252 target_sdc_init();
253
Matthew Qin01b50392014-01-24 16:57:37 +0800254 shutdown_detect();
255
Matthew Qine2afd232014-02-22 07:20:42 +0800256 /* turn on vibrator to indicate that phone is booting up to end user */
257 vib_timed_turn_on(VIBRATE_TIME);
258
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800259 if (target_use_signed_kernel())
260 target_crypto_init_params();
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800261}
262
Deepa Dinamani058f1cd2013-02-25 10:53:01 -0800263/* Do any target specific intialization needed before entering fastboot mode */
264void target_fastboot_init(void)
265{
266 /* Set the BOOT_DONE flag in PM8026 */
267 pm8x41_set_boot_done();
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +0300268
269 if (target_is_ssd_enabled()) {
270 clock_ce_enable(SSD_CE_INSTANCE);
271 target_load_ssd_keystore();
272 }
Deepa Dinamani058f1cd2013-02-25 10:53:01 -0800273}
274
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800275/* Detect the target type */
276void target_detect(struct board_data *board)
277{
Maria Yuca51ee22013-06-27 21:45:24 +0800278 /*
279 * already fill the board->target on board.c
280 */
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800281}
282
283/* Detect the modem type */
284void target_baseband_detect(struct board_data *board)
285{
286 uint32_t platform;
287 uint32_t platform_subtype;
288
289 platform = board->platform;
290 platform_subtype = board->platform_subtype;
291
292 /*
293 * Look for platform subtype if present, else
294 * check for platform type to decide on the
295 * baseband type
296 */
297 switch(platform_subtype)
298 {
299 case HW_PLATFORM_SUBTYPE_UNKNOWN:
300 break;
Maria Yub8fd0822013-06-26 10:10:45 +0800301 case HW_PLATFORM_SUBTYPE_SKUAA:
302 break;
303 case HW_PLATFORM_SUBTYPE_SKUF:
304 break;
305 case HW_PLATFORM_SUBTYPE_SKUAB:
306 break;
Jie Chengf3d8a3b2013-08-01 15:37:55 +0800307 case HW_PLATFORM_SUBTYPE_SKUG:
308 break;
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800309 default:
310 dprintf(CRITICAL, "Platform Subtype : %u is not supported\n", platform_subtype);
311 ASSERT(0);
312 };
313
314 switch(platform)
315 {
316 case MSM8826:
317 case MSM8626:
318 case MSM8226:
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700319 case MSM8926:
320 case MSM8126:
321 case MSM8326:
Deepa Dinamanicd795aa2013-09-05 16:30:53 -0700322 case MSM8528:
323 case MSM8628:
324 case MSM8228:
325 case MSM8928:
326 case MSM8128:
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800327 board->baseband = BASEBAND_MSM;
328 break;
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700329 case APQ8026:
Deepa Dinamanicd795aa2013-09-05 16:30:53 -0700330 case APQ8028:
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700331 board->baseband = BASEBAND_APQ;
332 break;
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800333 default:
334 dprintf(CRITICAL, "Platform type: %u is not supported\n", platform);
335 ASSERT(0);
336 };
337}
338
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800339void target_serialno(unsigned char *buf)
340{
341 uint32_t serialno;
342 if (target_is_emmc_boot()) {
343 serialno = mmc_get_psn();
344 snprintf((char *)buf, 13, "%x", serialno);
345 }
346}
347
Deepa Dinamani8d2bb222013-02-26 14:03:04 -0800348unsigned check_reboot_mode(void)
349{
350 uint32_t restart_reason = 0;
351
352 /* Read reboot reason and scrub it */
353 restart_reason = readl(RESTART_REASON_ADDR);
354 writel(0x00, RESTART_REASON_ADDR);
355
356 return restart_reason;
357}
358
Deepa Dinamanif7c03c12013-02-26 14:17:20 -0800359void reboot_device(unsigned reboot_reason)
360{
Channagoud Kadabi559dcda2014-02-25 15:28:08 -0800361 int ret = 0;
362
Deepa Dinamanif7c03c12013-02-26 14:17:20 -0800363 writel(reboot_reason, RESTART_REASON_ADDR);
364
365 /* Configure PMIC for warm reset */
366 pm8x41_reset_configure(PON_PSHOLD_WARM_RESET);
367
Channagoud Kadabi559dcda2014-02-25 15:28:08 -0800368 ret = scm_halt_pmic_arbiter();
369 if (ret)
370 dprintf(CRITICAL , "Failed to halt pmic arbiter: %d\n", ret);
371
Deepa Dinamanif7c03c12013-02-26 14:17:20 -0800372 /* Drop PS_HOLD for MSM */
373 writel(0x00, MPM2_MPM_PS_HOLD);
374
375 mdelay(5000);
376
377 dprintf(CRITICAL, "Rebooting failed\n");
378}
379
Matthew Qin7dc113b2014-02-21 10:34:09 +0800380/* Configure PMIC and Drop PS_HOLD for shutdown */
381void shutdown_device()
382{
383 dprintf(CRITICAL, "Going down for shutdown.\n");
384
385 /* Configure PMIC for shutdown */
386 pm8x41_reset_configure(PON_PSHOLD_SHUTDOWN);
387
388 /* Drop PS_HOLD for MSM */
389 writel(0x00, MPM2_MPM_PS_HOLD);
390
391 mdelay(5000);
392
393 dprintf(CRITICAL, "shutdown failed\n");
394
395 ASSERT(0);
396}
397
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800398crypto_engine_type board_ce_type(void)
399{
400 return CRYPTO_ENGINE_TYPE_HW;
401}
402
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800403unsigned board_machtype(void)
404{
Deepa Dinamani8d6b4252013-03-06 11:16:41 -0800405 return 0;
406}
407
408void target_usb_stop(void)
409{
410 /* Disable VBUS mimicing in the controller. */
411 ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_CLEAR);
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800412}
Amol Jadi85e19192013-02-28 22:45:04 -0800413
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700414void target_uninit(void)
415{
Matthew Qine2afd232014-02-22 07:20:42 +0800416 /* wait for the vibrator timer is expried */
417 wait_vib_timeout();
418
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700419 mmc_put_card_to_sleep(dev);
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +0300420
Channagoud Kadabid727a772013-12-04 12:38:27 -0800421 if (crypto_initialized())
422 crypto_eng_cleanup();
Sundarajan Srinivasan2a60d632014-05-08 16:36:25 -0700423
424 if (target_is_ssd_enabled())
425 clock_ce_disable(SSD_CE_INSTANCE);
Aparna Mallavarapu11d763e2014-09-24 17:33:14 +0530426
427 /* Disable HC mode before jumping to kernel */
428 sdhci_mode_disable(&dev->host);
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700429}
430
Amol Jadi85e19192013-02-28 22:45:04 -0800431void target_usb_init(void)
432{
433 uint32_t val;
434
435 /* Select and enable external configuration with USB PHY */
436 ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_SET);
437
438 /* Enable sess_vld */
439 val = readl(USB_GENCONFIG_2) | GEN2_SESS_VLD_CTRL_EN;
440 writel(val, USB_GENCONFIG_2);
441
442 /* Enable external vbus configuration in the LINK */
443 val = readl(USB_USBCMD);
444 val |= SESS_VLD_CTRL;
445 writel(val, USB_USBCMD);
446}
Deepa Dinamanicde64572013-02-25 15:02:25 -0800447
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530448uint8_t target_panel_auto_detect_enabled()
449{
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800450 uint8_t ret = 0;
rayz935a2c72014-02-14 13:17:02 +0800451 uint32_t hw_subtype = board_hardware_subtype();
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800452
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530453 switch(board_hardware_id())
454 {
455 case HW_PLATFORM_QRD:
rayz935a2c72014-02-14 13:17:02 +0800456 if (hw_subtype != HW_PLATFORM_SUBTYPE_SKUF
457 && hw_subtype != HW_PLATFORM_SUBTYPE_SKUG) {
458 /* Enable autodetect for 8x26 DVT boards only */
459 if (((board_target_id() >> 16) & 0xFF) == 0x2)
460 ret = 1;
461 else
462 ret = 0;
463 }
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800464 break;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530465 case HW_PLATFORM_SURF:
466 case HW_PLATFORM_MTP:
467 default:
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800468 ret = 0;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530469 }
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800470 return ret;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530471}
472
473static uint8_t splash_override;
Ray Zhang743e5032013-05-25 23:25:39 +0800474/* Returns 1 if target supports continuous splash screen. */
475int target_cont_splash_screen()
476{
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530477 uint8_t splash_screen = 0;
478 if(!splash_override) {
479 switch(board_hardware_id())
480 {
481 case HW_PLATFORM_MTP:
482 case HW_PLATFORM_QRD:
483 case HW_PLATFORM_SURF:
484 dprintf(SPEW, "Target_cont_splash=1\n");
485 splash_screen = 1;
486 break;
487 default:
488 dprintf(SPEW, "Target_cont_splash=0\n");
489 splash_screen = 0;
490 }
491 }
492 return splash_screen;
493}
494
495void target_force_cont_splash_disable(uint8_t override)
496{
497 splash_override = override;
Ray Zhang743e5032013-05-25 23:25:39 +0800498}
499
Deepa Dinamanicde64572013-02-25 15:02:25 -0800500unsigned target_pause_for_battery_charge(void)
501{
502 uint8_t pon_reason = pm8x41_get_pon_reason();
Ameya Thakur06041312013-06-25 13:46:21 -0700503 uint8_t is_cold_boot = pm8x41_get_is_cold_boot();
Ameya Thakur531e59a2013-07-17 16:53:53 -0700504 dprintf(INFO, "%s : pon_reason is %d cold_boot:%d\n", __func__,
505 pon_reason, is_cold_boot);
Ameya Thakura8711dc2013-07-19 17:52:51 -0700506 /* In case of fastboot reboot,adb reboot or if we see the power key
507 * pressed we do not want go into charger mode.
Ameya Thakur531e59a2013-07-17 16:53:53 -0700508 * fastboot reboot is warm boot with PON hard reset bit not set
509 * adb reboot is a cold boot with PON hard reset bit set
510 */
Ameya Thakura8711dc2013-07-19 17:52:51 -0700511 if (is_cold_boot &&
512 (!(pon_reason & HARD_RST)) &&
513 (!(pon_reason & KPDPWR_N)) &&
Ameya Thakur531e59a2013-07-17 16:53:53 -0700514 ((pon_reason & USB_CHG) || (pon_reason & DC_CHG)))
515 return 1;
516 else
517 return 0;
Deepa Dinamanicde64572013-02-25 15:02:25 -0800518}
Channagoud Kadabida54ca12013-03-29 11:22:15 -0700519
520unsigned target_baseband()
521{
522 return board_baseband();
523}
Stanimir Varbanov7f9d7a72013-04-29 12:05:39 +0300524
525int emmc_recovery_init(void)
526{
Pavel Nedev16f49232013-04-29 16:15:36 +0300527 return _emmc_recovery_init();
528}
529
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +0300530int set_download_mode(enum dload_mode mode)
Pavel Nedev16f49232013-04-29 16:15:36 +0300531{
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +0300532 dload_util_write_cookie(mode == NORMAL_DLOAD ?
533 DLOAD_MODE_ADDR : EMERGENCY_DLOAD_MODE_ADDR, mode);
Pavel Nedev16f49232013-04-29 16:15:36 +0300534
Xiaocheng Li9ddc84a2013-09-14 17:32:00 +0800535 pm8x41_clear_pmic_watchdog();
536
Pavel Nedev16f49232013-04-29 16:15:36 +0300537 return 0;
Stanimir Varbanov7f9d7a72013-04-29 12:05:39 +0300538}
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700539
540static void set_sdc_power_ctrl()
541{
542 /* Drive strength configs for sdc pins */
543 struct tlmm_cfgs sdc1_hdrv_cfg[] =
544 {
Channagoud Kadabi9d4acea2014-01-03 16:18:54 -0800545 { SDC1_CLK_HDRV_CTL_OFF, TLMM_CUR_VAL_16MA, TLMM_HDRV_MASK },
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700546 { SDC1_CMD_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK },
Channagoud Kadabi9d4acea2014-01-03 16:18:54 -0800547 { SDC1_DATA_HDRV_CTL_OFF, TLMM_CUR_VAL_6MA, TLMM_HDRV_MASK },
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700548 };
549
550 /* Pull configs for sdc pins */
551 struct tlmm_cfgs sdc1_pull_cfg[] =
552 {
553 { SDC1_CLK_PULL_CTL_OFF, TLMM_NO_PULL, TLMM_PULL_MASK },
554 { SDC1_CMD_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK },
555 { SDC1_DATA_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK },
556 };
557
558 /* Set the drive strength & pull control values */
559 tlmm_set_hdrive_ctrl(sdc1_hdrv_cfg, ARRAY_SIZE(sdc1_hdrv_cfg));
560 tlmm_set_pull_ctrl(sdc1_pull_cfg, ARRAY_SIZE(sdc1_pull_cfg));
561}
562
563struct mmc_device *target_mmc_device()
564{
565 return dev;
566}