blob: 286ef412f2287f0251e23979c6703cc8c14ccab8 [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];
219
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700220 if (!(dev = mmc_init(&config)))
221 {
222 /* Trying Slot 2 next */
223 config.slot = 2;
Channagoud Kadabif6f71742013-05-23 14:05:05 -0700224 config.sdhc_base = mmc_sdhci_base[config.slot - 1];
225 config.pwrctl_base = mmc_pwrctl_base[config.slot - 1];
226 config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1];
227
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700228 if (!(dev = mmc_init(&config))) {
229 dprintf(CRITICAL, "mmc init failed!");
230 ASSERT(0);
231 }
232 }
233
234 /*
235 * MMC initialization is complete, read the partition table info
236 */
237 if (partition_read_table()) {
238 dprintf(CRITICAL, "Error reading the partition table info\n");
239 ASSERT(0);
240 }
241}
242
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800243void target_init(void)
244{
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800245 dprintf(INFO, "target_init()\n");
246
247 spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID);
248
249 target_keystatus();
250
Aparna Mallavarapu63a62252013-08-23 17:59:43 +0530251 target_sdc_init();
252
Matthew Qin01b50392014-01-24 16:57:37 +0800253 shutdown_detect();
254
Matthew Qine2afd232014-02-22 07:20:42 +0800255 /* turn on vibrator to indicate that phone is booting up to end user */
256 vib_timed_turn_on(VIBRATE_TIME);
257
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800258 if (target_use_signed_kernel())
259 target_crypto_init_params();
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800260}
261
Deepa Dinamani058f1cd2013-02-25 10:53:01 -0800262/* Do any target specific intialization needed before entering fastboot mode */
263void target_fastboot_init(void)
264{
265 /* Set the BOOT_DONE flag in PM8026 */
266 pm8x41_set_boot_done();
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +0300267
268 if (target_is_ssd_enabled()) {
269 clock_ce_enable(SSD_CE_INSTANCE);
270 target_load_ssd_keystore();
271 }
Deepa Dinamani058f1cd2013-02-25 10:53:01 -0800272}
273
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800274/* Detect the target type */
275void target_detect(struct board_data *board)
276{
Maria Yuca51ee22013-06-27 21:45:24 +0800277 /*
278 * already fill the board->target on board.c
279 */
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800280}
281
282/* Detect the modem type */
283void target_baseband_detect(struct board_data *board)
284{
285 uint32_t platform;
286 uint32_t platform_subtype;
287
288 platform = board->platform;
289 platform_subtype = board->platform_subtype;
290
291 /*
292 * Look for platform subtype if present, else
293 * check for platform type to decide on the
294 * baseband type
295 */
296 switch(platform_subtype)
297 {
298 case HW_PLATFORM_SUBTYPE_UNKNOWN:
299 break;
Maria Yub8fd0822013-06-26 10:10:45 +0800300 case HW_PLATFORM_SUBTYPE_SKUAA:
301 break;
302 case HW_PLATFORM_SUBTYPE_SKUF:
303 break;
304 case HW_PLATFORM_SUBTYPE_SKUAB:
305 break;
Jie Chengf3d8a3b2013-08-01 15:37:55 +0800306 case HW_PLATFORM_SUBTYPE_SKUG:
307 break;
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800308 default:
309 dprintf(CRITICAL, "Platform Subtype : %u is not supported\n", platform_subtype);
310 ASSERT(0);
311 };
312
313 switch(platform)
314 {
315 case MSM8826:
316 case MSM8626:
317 case MSM8226:
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700318 case MSM8926:
319 case MSM8126:
320 case MSM8326:
Deepa Dinamanicd795aa2013-09-05 16:30:53 -0700321 case MSM8528:
322 case MSM8628:
323 case MSM8228:
324 case MSM8928:
325 case MSM8128:
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800326 board->baseband = BASEBAND_MSM;
327 break;
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700328 case APQ8026:
Deepa Dinamanicd795aa2013-09-05 16:30:53 -0700329 case APQ8028:
Deepa Dinamani7eeecf62013-05-21 12:43:26 -0700330 board->baseband = BASEBAND_APQ;
331 break;
Deepa Dinamaniff2b9ce2013-02-25 11:01:00 -0800332 default:
333 dprintf(CRITICAL, "Platform type: %u is not supported\n", platform);
334 ASSERT(0);
335 };
336}
337
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800338void target_serialno(unsigned char *buf)
339{
340 uint32_t serialno;
341 if (target_is_emmc_boot()) {
342 serialno = mmc_get_psn();
343 snprintf((char *)buf, 13, "%x", serialno);
344 }
345}
346
Deepa Dinamani8d2bb222013-02-26 14:03:04 -0800347unsigned check_reboot_mode(void)
348{
349 uint32_t restart_reason = 0;
350
351 /* Read reboot reason and scrub it */
352 restart_reason = readl(RESTART_REASON_ADDR);
353 writel(0x00, RESTART_REASON_ADDR);
354
355 return restart_reason;
356}
357
Deepa Dinamanif7c03c12013-02-26 14:17:20 -0800358void reboot_device(unsigned reboot_reason)
359{
360 writel(reboot_reason, RESTART_REASON_ADDR);
361
362 /* Configure PMIC for warm reset */
363 pm8x41_reset_configure(PON_PSHOLD_WARM_RESET);
364
365 /* Drop PS_HOLD for MSM */
366 writel(0x00, MPM2_MPM_PS_HOLD);
367
368 mdelay(5000);
369
370 dprintf(CRITICAL, "Rebooting failed\n");
371}
372
Matthew Qin7dc113b2014-02-21 10:34:09 +0800373/* Configure PMIC and Drop PS_HOLD for shutdown */
374void shutdown_device()
375{
376 dprintf(CRITICAL, "Going down for shutdown.\n");
377
378 /* Configure PMIC for shutdown */
379 pm8x41_reset_configure(PON_PSHOLD_SHUTDOWN);
380
381 /* Drop PS_HOLD for MSM */
382 writel(0x00, MPM2_MPM_PS_HOLD);
383
384 mdelay(5000);
385
386 dprintf(CRITICAL, "shutdown failed\n");
387
388 ASSERT(0);
389}
390
Deepa Dinamani6bb87d52013-02-26 14:37:36 -0800391crypto_engine_type board_ce_type(void)
392{
393 return CRYPTO_ENGINE_TYPE_HW;
394}
395
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800396unsigned board_machtype(void)
397{
Deepa Dinamani8d6b4252013-03-06 11:16:41 -0800398 return 0;
399}
400
401void target_usb_stop(void)
402{
403 /* Disable VBUS mimicing in the controller. */
404 ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_CLEAR);
Deepa Dinamani645e9b12012-12-21 14:23:40 -0800405}
Amol Jadi85e19192013-02-28 22:45:04 -0800406
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700407void target_uninit(void)
408{
Matthew Qine2afd232014-02-22 07:20:42 +0800409 /* wait for the vibrator timer is expried */
410 wait_vib_timeout();
411
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700412 mmc_put_card_to_sleep(dev);
Stanimir Varbanovf0650ca2013-07-01 12:30:24 +0300413
414 if (target_is_ssd_enabled())
415 clock_ce_disable(SSD_CE_INSTANCE);
Channagoud Kadabie3a695a2013-06-18 18:35:00 -0700416}
417
Amol Jadi85e19192013-02-28 22:45:04 -0800418void target_usb_init(void)
419{
420 uint32_t val;
421
422 /* Select and enable external configuration with USB PHY */
423 ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_SET);
424
425 /* Enable sess_vld */
426 val = readl(USB_GENCONFIG_2) | GEN2_SESS_VLD_CTRL_EN;
427 writel(val, USB_GENCONFIG_2);
428
429 /* Enable external vbus configuration in the LINK */
430 val = readl(USB_USBCMD);
431 val |= SESS_VLD_CTRL;
432 writel(val, USB_USBCMD);
433}
Deepa Dinamanicde64572013-02-25 15:02:25 -0800434
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530435uint8_t target_panel_auto_detect_enabled()
436{
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800437 uint8_t ret = 0;
rayz935a2c72014-02-14 13:17:02 +0800438 uint32_t hw_subtype = board_hardware_subtype();
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800439
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530440 switch(board_hardware_id())
441 {
442 case HW_PLATFORM_QRD:
rayz935a2c72014-02-14 13:17:02 +0800443 if (hw_subtype != HW_PLATFORM_SUBTYPE_SKUF
444 && hw_subtype != HW_PLATFORM_SUBTYPE_SKUG) {
445 /* Enable autodetect for 8x26 DVT boards only */
446 if (((board_target_id() >> 16) & 0xFF) == 0x2)
447 ret = 1;
448 else
449 ret = 0;
450 }
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800451 break;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530452 case HW_PLATFORM_SURF:
453 case HW_PLATFORM_MTP:
454 default:
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800455 ret = 0;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530456 }
Aravind Venkateswaranc2923702013-12-18 17:50:35 -0800457 return ret;
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530458}
459
460static uint8_t splash_override;
Ray Zhang743e5032013-05-25 23:25:39 +0800461/* Returns 1 if target supports continuous splash screen. */
462int target_cont_splash_screen()
463{
Pradeep Jilagamcd51b522013-10-29 13:08:51 +0530464 uint8_t splash_screen = 0;
465 if(!splash_override) {
466 switch(board_hardware_id())
467 {
468 case HW_PLATFORM_MTP:
469 case HW_PLATFORM_QRD:
470 case HW_PLATFORM_SURF:
471 dprintf(SPEW, "Target_cont_splash=1\n");
472 splash_screen = 1;
473 break;
474 default:
475 dprintf(SPEW, "Target_cont_splash=0\n");
476 splash_screen = 0;
477 }
478 }
479 return splash_screen;
480}
481
482void target_force_cont_splash_disable(uint8_t override)
483{
484 splash_override = override;
Ray Zhang743e5032013-05-25 23:25:39 +0800485}
486
Deepa Dinamanicde64572013-02-25 15:02:25 -0800487unsigned target_pause_for_battery_charge(void)
488{
489 uint8_t pon_reason = pm8x41_get_pon_reason();
Ameya Thakur06041312013-06-25 13:46:21 -0700490 uint8_t is_cold_boot = pm8x41_get_is_cold_boot();
Ameya Thakur531e59a2013-07-17 16:53:53 -0700491 dprintf(INFO, "%s : pon_reason is %d cold_boot:%d\n", __func__,
492 pon_reason, is_cold_boot);
Ameya Thakura8711dc2013-07-19 17:52:51 -0700493 /* In case of fastboot reboot,adb reboot or if we see the power key
494 * pressed we do not want go into charger mode.
Ameya Thakur531e59a2013-07-17 16:53:53 -0700495 * fastboot reboot is warm boot with PON hard reset bit not set
496 * adb reboot is a cold boot with PON hard reset bit set
497 */
Ameya Thakura8711dc2013-07-19 17:52:51 -0700498 if (is_cold_boot &&
499 (!(pon_reason & HARD_RST)) &&
500 (!(pon_reason & KPDPWR_N)) &&
Ameya Thakur531e59a2013-07-17 16:53:53 -0700501 ((pon_reason & USB_CHG) || (pon_reason & DC_CHG)))
502 return 1;
503 else
504 return 0;
Deepa Dinamanicde64572013-02-25 15:02:25 -0800505}
Channagoud Kadabida54ca12013-03-29 11:22:15 -0700506
507unsigned target_baseband()
508{
509 return board_baseband();
510}
Stanimir Varbanov7f9d7a72013-04-29 12:05:39 +0300511
512int emmc_recovery_init(void)
513{
Pavel Nedev16f49232013-04-29 16:15:36 +0300514 return _emmc_recovery_init();
515}
516
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +0300517int set_download_mode(enum dload_mode mode)
Pavel Nedev16f49232013-04-29 16:15:36 +0300518{
Pavel Nedeva4c9d3a2013-05-15 14:42:34 +0300519 dload_util_write_cookie(mode == NORMAL_DLOAD ?
520 DLOAD_MODE_ADDR : EMERGENCY_DLOAD_MODE_ADDR, mode);
Pavel Nedev16f49232013-04-29 16:15:36 +0300521
522 return 0;
Stanimir Varbanov7f9d7a72013-04-29 12:05:39 +0300523}
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700524
525static void set_sdc_power_ctrl()
526{
527 /* Drive strength configs for sdc pins */
528 struct tlmm_cfgs sdc1_hdrv_cfg[] =
529 {
Channagoud Kadabi9d4acea2014-01-03 16:18:54 -0800530 { SDC1_CLK_HDRV_CTL_OFF, TLMM_CUR_VAL_16MA, TLMM_HDRV_MASK },
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700531 { SDC1_CMD_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK },
Channagoud Kadabi9d4acea2014-01-03 16:18:54 -0800532 { SDC1_DATA_HDRV_CTL_OFF, TLMM_CUR_VAL_6MA, TLMM_HDRV_MASK },
Channagoud Kadabi3c50c312013-05-02 17:16:03 -0700533 };
534
535 /* Pull configs for sdc pins */
536 struct tlmm_cfgs sdc1_pull_cfg[] =
537 {
538 { SDC1_CLK_PULL_CTL_OFF, TLMM_NO_PULL, TLMM_PULL_MASK },
539 { SDC1_CMD_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK },
540 { SDC1_DATA_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK },
541 };
542
543 /* Set the drive strength & pull control values */
544 tlmm_set_hdrive_ctrl(sdc1_hdrv_cfg, ARRAY_SIZE(sdc1_hdrv_cfg));
545 tlmm_set_pull_ctrl(sdc1_pull_cfg, ARRAY_SIZE(sdc1_pull_cfg));
546}
547
548struct mmc_device *target_mmc_device()
549{
550 return dev;
551}