blob: 961b5a406e3532a291a4c61ca4b18153736f0c42 [file] [log] [blame]
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -08001/* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
2 *
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>
31#include <platform/irqs.h>
32#include <platform/gpio.h>
33#include <reg.h>
34#include <target.h>
35#include <platform.h>
36#include <dload_util.h>
37#include <uart_dm.h>
38#include <mmc.h>
39#include <spmi.h>
40#include <board.h>
41#include <smem.h>
42#include <baseband.h>
43#include <dev/keys.h>
44#include <pm8x41.h>
45#include <crypto5_wrapper.h>
46#include <hsusb.h>
47#include <clock.h>
48#include <partition_parser.h>
49#include <scm.h>
50#include <platform/clock.h>
51#include <platform/gpio.h>
52#include <platform/timer.h>
53#include <stdlib.h>
vijay kumar4e5859e2014-09-22 17:49:02 +053054#include <string.h>
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -080055#include <ufs.h>
Sundarajan Srinivasand598b122014-03-21 17:33:29 -070056#include <boot_device.h>
Channagoud Kadabi3dcc4ed2014-04-10 14:59:41 -070057#include <qmp_phy.h>
Joonwoo Park8b309972014-06-09 16:58:38 -070058#include <qusb2_phy.h>
Sundarajan Srinivasan19b95c72014-07-24 16:37:04 -070059#include <rpm-smd.h>
vijay kumar4e5859e2014-09-22 17:49:02 +053060#include <sdhci_msm.h>
61#include <pm8x41_wled.h>
62#include <qpnp_wled.h>
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -080063
Channagoud Kadabi27ff9342014-06-16 11:19:29 -070064#define CE_INSTANCE 2
Channagoud Kadabi4b93fd32014-06-04 17:28:03 -070065#define CE_EE 1
66#define CE_FIFO_SIZE 64
67#define CE_READ_PIPE 3
68#define CE_WRITE_PIPE 2
69#define CE_READ_PIPE_LOCK_GRP 0
70#define CE_WRITE_PIPE_LOCK_GRP 0
71#define CE_ARRAY_SIZE 20
72
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -080073#define PMIC_ARB_CHANNEL_NUM 0
74#define PMIC_ARB_OWNER_ID 0
75
76#define FASTBOOT_MODE 0x77665500
77
Aparna Mallavarapu965fac92014-08-04 22:45:01 +053078#define PMIC_WLED_SLAVE_ID 3
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -080079
Channagoud Kadabie804d642014-08-20 17:43:57 -070080static void set_sdc_power_ctrl(uint8_t slot);
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -080081static uint32_t mmc_pwrctl_base[] =
82 { MSM_SDC1_BASE, MSM_SDC2_BASE };
83
84static uint32_t mmc_sdhci_base[] =
85 { MSM_SDC1_SDHCI_BASE, MSM_SDC2_SDHCI_BASE };
86
87static uint32_t mmc_sdc_pwrctl_irq[] =
88 { SDCC1_PWRCTL_IRQ, SDCC2_PWRCTL_IRQ };
89
90struct mmc_device *dev;
91struct ufs_dev ufs_device;
92
93extern void ulpi_write(unsigned val, unsigned reg);
Sridhar Parasuram39419a32014-09-12 18:11:05 -070094extern int platform_is_msm8994();
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -080095
96void target_early_init(void)
97{
98#if WITH_DEBUG_UART
99 uart_dm_init(2, 0, BLSP1_UART1_BASE);
100#endif
101}
102
103/* Return 1 if vol_up pressed */
104static int target_volume_up()
105{
106 uint8_t status = 0;
107 struct pm8x41_gpio gpio;
108
109 /* Configure the GPIO */
110 gpio.direction = PM_GPIO_DIR_IN;
111 gpio.function = 0;
112 gpio.pull = PM_GPIO_PULL_UP_30;
113 gpio.vin_sel = 2;
114
115 pm8x41_gpio_config(3, &gpio);
116
117 /* Wait for the pmic gpio config to take effect */
118 thread_sleep(1);
119
120 /* Get status of P_GPIO_5 */
121 pm8x41_gpio_get(3, &status);
122
123 return !status; /* active low */
124}
125
126/* Return 1 if vol_down pressed */
127uint32_t target_volume_down()
128{
129 return pm8x41_resin_status();
130}
131
132static void target_keystatus()
133{
134 keys_init();
135
136 if(target_volume_down())
137 keys_post_event(KEY_VOLUMEDOWN, 1);
138
139 if(target_volume_up())
140 keys_post_event(KEY_VOLUMEUP, 1);
141}
142
143void target_uninit(void)
144{
Sundarajan Srinivasand598b122014-03-21 17:33:29 -0700145 if (platform_boot_dev_isemmc())
Channagoud Kadabid6a45ea2014-06-02 21:12:51 -0700146 {
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800147 mmc_put_card_to_sleep(dev);
Channagoud Kadabid6a45ea2014-06-02 21:12:51 -0700148 /* Disable HC mode before jumping to kernel */
149 sdhci_mode_disable(&dev->host);
150 }
Channagoud Kadabi4b93fd32014-06-04 17:28:03 -0700151
152 if (crypto_initialized())
153 crypto_eng_cleanup();
Sundarajan Srinivasan19b95c72014-07-24 16:37:04 -0700154
155 rpm_smd_uninit();
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800156}
157
158/* Do target specific usb initialization */
159void target_usb_init(void)
160{
161 uint32_t val;
162
Sundarajan Srinivasan0ebf2fc2014-04-23 16:45:18 -0700163 if(board_hardware_id() == HW_PLATFORM_DRAGON)
164 {
165 /* Select the QUSB2 PHY */
166 writel(0x1, USB2_PHY_SEL);
167
Joonwoo Park8b309972014-06-09 16:58:38 -0700168 qusb2_phy_reset();
Sundarajan Srinivasan0ebf2fc2014-04-23 16:45:18 -0700169 }
170
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800171 /* Enable sess_vld */
172 val = readl(USB_GENCONFIG_2) | GEN2_SESS_VLD_CTRL_EN;
173 writel(val, USB_GENCONFIG_2);
174
175 /* Enable external vbus configuration in the LINK */
176 val = readl(USB_USBCMD);
177 val |= SESS_VLD_CTRL;
178 writel(val, USB_USBCMD);
179}
180
181void target_usb_stop(void)
182{
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800183}
184
Channagoud Kadabib9473932014-10-09 13:08:35 -0700185unsigned target_pause_for_battery_charge(void)
186{
187 uint8_t pon_reason = pm8x41_get_pon_reason();
188 uint8_t is_cold_boot = pm8x41_get_is_cold_boot();
189 dprintf(INFO, "%s : pon_reason is %d cold_boot:%d\n", __func__,
190 pon_reason, is_cold_boot);
191 /* In case of fastboot reboot,adb reboot or if we see the power key
192 * pressed we do not want go into charger mode.
193 * fastboot reboot is warm boot with PON hard reset bit not set
194 * adb reboot is a cold boot with PON hard reset bit set
195 */
196 if (is_cold_boot &&
197 (!(pon_reason & HARD_RST)) &&
198 (!(pon_reason & KPDPWR_N)) &&
199 ((pon_reason & USB_CHG) || (pon_reason & DC_CHG)))
200 return 1;
201 else
202 return 0;
203}
204
Channagoud Kadabie804d642014-08-20 17:43:57 -0700205static void set_sdc_power_ctrl(uint8_t slot)
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800206{
Channagoud Kadabie804d642014-08-20 17:43:57 -0700207 uint32_t reg = 0;
Channagoud Kadabi751fe7a2014-09-04 18:52:24 -0700208 uint8_t clk;
209 uint8_t cmd;
210 uint8_t dat;
Channagoud Kadabie804d642014-08-20 17:43:57 -0700211
212 if (slot == 0x1)
Channagoud Kadabi751fe7a2014-09-04 18:52:24 -0700213 {
214 clk = TLMM_CUR_VAL_16MA;
215 cmd = TLMM_CUR_VAL_8MA;
216 dat = TLMM_CUR_VAL_8MA;
Channagoud Kadabie804d642014-08-20 17:43:57 -0700217 reg = SDC1_HDRV_PULL_CTL;
Channagoud Kadabi751fe7a2014-09-04 18:52:24 -0700218 }
Channagoud Kadabie804d642014-08-20 17:43:57 -0700219 else if (slot == 0x2)
Channagoud Kadabi751fe7a2014-09-04 18:52:24 -0700220 {
221 clk = TLMM_CUR_VAL_16MA;
222 cmd = TLMM_CUR_VAL_10MA;
223 dat = TLMM_CUR_VAL_10MA;
Channagoud Kadabie804d642014-08-20 17:43:57 -0700224 reg = SDC2_HDRV_PULL_CTL;
Channagoud Kadabi751fe7a2014-09-04 18:52:24 -0700225 }
226 else
227 {
228 dprintf(CRITICAL, "Unsupported SDC slot passed\n");
229 return;
230 }
Channagoud Kadabie804d642014-08-20 17:43:57 -0700231
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800232 /* Drive strength configs for sdc pins */
233 struct tlmm_cfgs sdc1_hdrv_cfg[] =
234 {
Channagoud Kadabi751fe7a2014-09-04 18:52:24 -0700235 { SDC1_CLK_HDRV_CTL_OFF, clk, TLMM_HDRV_MASK, reg },
236 { SDC1_CMD_HDRV_CTL_OFF, cmd, TLMM_HDRV_MASK, reg },
237 { SDC1_DATA_HDRV_CTL_OFF, dat, TLMM_HDRV_MASK, reg },
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800238 };
239
240 /* Pull configs for sdc pins */
241 struct tlmm_cfgs sdc1_pull_cfg[] =
242 {
Channagoud Kadabie804d642014-08-20 17:43:57 -0700243 { SDC1_CLK_PULL_CTL_OFF, TLMM_NO_PULL, TLMM_PULL_MASK, reg },
244 { SDC1_CMD_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK, reg },
245 { SDC1_DATA_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK, reg },
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800246 };
247
Channagoud Kadabi95717152014-06-04 17:59:29 -0700248 struct tlmm_cfgs sdc1_rclk_cfg[] =
249 {
Channagoud Kadabie804d642014-08-20 17:43:57 -0700250 { SDC1_RCLK_PULL_CTL_OFF, TLMM_PULL_DOWN, TLMM_PULL_MASK, reg },
Channagoud Kadabi95717152014-06-04 17:59:29 -0700251 };
252
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800253 /* Set the drive strength & pull control values */
254 tlmm_set_hdrive_ctrl(sdc1_hdrv_cfg, ARRAY_SIZE(sdc1_hdrv_cfg));
255 tlmm_set_pull_ctrl(sdc1_pull_cfg, ARRAY_SIZE(sdc1_pull_cfg));
Channagoud Kadabi95717152014-06-04 17:59:29 -0700256 tlmm_set_pull_ctrl(sdc1_rclk_cfg, ARRAY_SIZE(sdc1_rclk_cfg));
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800257}
258
259void target_sdc_init()
260{
Channagoud Kadabia66a6f22014-05-28 17:19:44 -0700261 struct mmc_config_data config = {0};
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800262
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800263 config.bus_width = DATA_BUS_WIDTH_8BIT;
264 config.max_clk_rate = MMC_CLK_192MHZ;
265
266 /* Try slot 1*/
267 config.slot = 1;
268 config.sdhc_base = mmc_sdhci_base[config.slot - 1];
269 config.pwrctl_base = mmc_pwrctl_base[config.slot - 1];
270 config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1];
Channagoud Kadabi6b3a9982014-06-05 12:59:46 -0700271 config.hs400_support = 1;
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800272
Channagoud Kadabie804d642014-08-20 17:43:57 -0700273 /* Set drive strength & pull ctrl values */
274 set_sdc_power_ctrl(config.slot);
275
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800276 if (!(dev = mmc_init(&config)))
277 {
278 /* Try slot 2 */
279 config.slot = 2;
280 config.max_clk_rate = MMC_CLK_200MHZ;
281 config.sdhc_base = mmc_sdhci_base[config.slot - 1];
282 config.pwrctl_base = mmc_pwrctl_base[config.slot - 1];
283 config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1];
284
Channagoud Kadabie804d642014-08-20 17:43:57 -0700285 /* Set drive strength & pull ctrl values */
286 set_sdc_power_ctrl(config.slot);
287
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800288 if (!(dev = mmc_init(&config)))
289 {
290 dprintf(CRITICAL, "mmc init failed!");
291 ASSERT(0);
292 }
293 }
294}
295
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800296void *target_mmc_device()
297{
Sundarajan Srinivasand598b122014-03-21 17:33:29 -0700298 if (platform_boot_dev_isemmc())
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800299 return (void *) dev;
300 else
301 return (void *) &ufs_device;
302}
303
304void target_init(void)
305{
306 dprintf(INFO, "target_init()\n");
307
308 spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID);
309
310 target_keystatus();
311
Channagoud Kadabi4b93fd32014-06-04 17:28:03 -0700312
313 if (target_use_signed_kernel())
314 target_crypto_init_params();
315
Sundarajan Srinivasand598b122014-03-21 17:33:29 -0700316 platform_read_boot_config();
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800317
Sundarajan Srinivasand598b122014-03-21 17:33:29 -0700318 if (platform_boot_dev_isemmc())
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800319 {
320 target_sdc_init();
321 }
322 else
323 {
324 ufs_device.base = UFS_BASE;
325 ufs_init(&ufs_device);
326 }
327
328 /* Storage initialization is complete, read the partition table info */
329 if (partition_read_table())
330 {
331 dprintf(CRITICAL, "Error reading the partition table info\n");
332 ASSERT(0);
333 }
Sundarajan Srinivasan19b95c72014-07-24 16:37:04 -0700334
335 rpm_smd_init();
Aparna Mallavarapu965fac92014-08-04 22:45:01 +0530336
337 /* QPNP WLED init for display backlight */
338 pm8x41_wled_config_slave_id(PMIC_WLED_SLAVE_ID);
339 qpnp_wled_init();
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800340}
341
342unsigned board_machtype(void)
343{
344 return LINUX_MACHTYPE_UNKNOWN;
345}
346
347/* Detect the target type */
348void target_detect(struct board_data *board)
349{
350 /* This is filled from board.c */
351}
352
Justin Philipbe9de5c2014-09-17 12:26:49 +0530353static uint8_t splash_override;
Dhaval Patel019057a2014-08-12 13:52:25 -0700354/* Returns 1 if target supports continuous splash screen. */
355int target_cont_splash_screen()
356{
Justin Philipbe9de5c2014-09-17 12:26:49 +0530357 uint8_t splash_screen = 0;
358 if(!splash_override) {
359 switch(board_hardware_id())
360 {
361 case HW_PLATFORM_SURF:
362 case HW_PLATFORM_MTP:
363 case HW_PLATFORM_FLUID:
364 dprintf(SPEW, "Target_cont_splash=1\n");
365 splash_screen = 1;
366 break;
367 default:
368 dprintf(SPEW, "Target_cont_splash=0\n");
369 splash_screen = 0;
370 }
371 }
372 return splash_screen;
373}
374
375void target_force_cont_splash_disable(uint8_t override)
376{
377 splash_override = override;
Dhaval Patel019057a2014-08-12 13:52:25 -0700378}
379
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800380/* Detect the modem type */
381void target_baseband_detect(struct board_data *board)
382{
383 uint32_t platform;
384
385 platform = board->platform;
386
387 switch(platform) {
Channagoud Kadabi44ea30d2014-04-14 13:59:42 -0700388 case MSM8994:
Channagoud Kadabi23c90ab2014-08-28 15:49:19 -0700389 case MSM8992:
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800390 board->baseband = BASEBAND_MSM;
391 break;
Channagoud Kadabi30ef4452014-07-12 13:03:30 -0700392 case APQ8094:
Channagoud Kadabi23c90ab2014-08-28 15:49:19 -0700393 case APQ8092:
Channagoud Kadabi30ef4452014-07-12 13:03:30 -0700394 board->baseband = BASEBAND_APQ;
395 break;
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800396 default:
397 dprintf(CRITICAL, "Platform type: %u is not supported\n",platform);
398 ASSERT(0);
399 };
400}
401unsigned target_baseband()
402{
403 return board_baseband();
404}
405
406void target_serialno(unsigned char *buf)
407{
408 unsigned int serialno;
409 if (target_is_emmc_boot()) {
410 serialno = mmc_get_psn();
411 snprintf((char *)buf, 13, "%x", serialno);
412 }
413}
414
415unsigned check_reboot_mode(void)
416{
417 uint32_t restart_reason = 0;
418 uint32_t restart_reason_addr;
419
Sridhar Parasuram39419a32014-09-12 18:11:05 -0700420 if (platform_is_msm8994())
421 restart_reason_addr = RESTART_REASON_ADDR;
422 else
423 restart_reason_addr = RESTART_REASON_ADDR2;
Channagoud Kadabi0f3a4f72014-02-06 13:22:07 -0800424
425 /* Read reboot reason and scrub it */
426 restart_reason = readl(restart_reason_addr);
427 writel(0x00, restart_reason_addr);
428
429 return restart_reason;
430}
431
432void reboot_device(unsigned reboot_reason)
433{
434 uint8_t reset_type = 0;
435
436 /* Write the reboot reason */
437 writel(reboot_reason, RESTART_REASON_ADDR);
438
439 if(reboot_reason == FASTBOOT_MODE)
440 reset_type = PON_PSHOLD_WARM_RESET;
441 else
442 reset_type = PON_PSHOLD_HARD_RESET;
443
444 pm8x41_reset_configure(reset_type);
445
446 /* Drop PS_HOLD for MSM */
447 writel(0x00, MPM2_MPM_PS_HOLD);
448
449 mdelay(5000);
450
451 dprintf(CRITICAL, "Rebooting failed\n");
452}
453
454int emmc_recovery_init(void)
455{
456 return _emmc_recovery_init();
457}
Channagoud Kadabi3dcc4ed2014-04-10 14:59:41 -0700458
459target_usb_iface_t* target_usb30_init()
460{
461 target_usb_iface_t *t_usb_iface;
462
463 t_usb_iface = calloc(1, sizeof(target_usb_iface_t));
464 ASSERT(t_usb_iface);
465
466 t_usb_iface->mux_config = target_usb_phy_mux_configure;
467 t_usb_iface->phy_init = usb30_qmp_phy_init;
468 t_usb_iface->phy_reset = usb30_qmp_phy_reset;
469 t_usb_iface->clock_init = clock_usb30_init;
470 t_usb_iface->vbus_override = 1;
471
472 return t_usb_iface;
473}
474
475/* identify the usb controller to be used for the target */
476const char * target_usb_controller()
477{
Tanya Finkel90abab72014-07-30 09:55:23 +0300478 if(board_hardware_id() == HW_PLATFORM_DRAGON)
479 return "ci";
Channagoud Kadabi3dcc4ed2014-04-10 14:59:41 -0700480 return "dwc";
481}
482
483/* mux hs phy to route to dwc controller */
484static void phy_mux_configure_with_tcsr()
485{
486 /* As per the hardware team, set the mux for snps controller */
487 RMWREG32(TCSR_PHSS_USB2_PHY_SEL, 0x0, 0x1, 0x1);
488}
489
490/* configure hs phy mux if using dwc controller */
491void target_usb_phy_mux_configure(void)
492{
493 if(!strcmp(target_usb_controller(), "dwc"))
494 {
495 phy_mux_configure_with_tcsr();
496 }
497}
Channagoud Kadabi3c2be1c2014-06-01 18:59:21 -0700498
499uint32_t target_override_pll()
500{
501 return 1;
502}
Channagoud Kadabi4b93fd32014-06-04 17:28:03 -0700503
504/* Set up params for h/w CE. */
505void target_crypto_init_params()
506{
507 struct crypto_init_params ce_params;
508
509 /* Set up base addresses and instance. */
510 ce_params.crypto_instance = CE_INSTANCE;
Channagoud Kadabi27ff9342014-06-16 11:19:29 -0700511 ce_params.crypto_base = MSM_CE2_BASE;
512 ce_params.bam_base = MSM_CE2_BAM_BASE;
Channagoud Kadabi4b93fd32014-06-04 17:28:03 -0700513
514 /* Set up BAM config. */
515 ce_params.bam_ee = CE_EE;
516 ce_params.pipes.read_pipe = CE_READ_PIPE;
517 ce_params.pipes.write_pipe = CE_WRITE_PIPE;
518 ce_params.pipes.read_pipe_grp = CE_READ_PIPE_LOCK_GRP;
519 ce_params.pipes.write_pipe_grp = CE_WRITE_PIPE_LOCK_GRP;
520
521 /* Assign buffer sizes. */
522 ce_params.num_ce = CE_ARRAY_SIZE;
523 ce_params.read_fifo_size = CE_FIFO_SIZE;
524 ce_params.write_fifo_size = CE_FIFO_SIZE;
525
526 /* BAM is initialized by TZ for this platform.
527 * Do not do it again as the initialization address space
528 * is locked.
529 */
530 ce_params.do_bam_init = 0;
531
532 crypto_init_params(&ce_params);
533}
534
535crypto_engine_type board_ce_type(void)
536{
537 return CRYPTO_ENGINE_TYPE_HW;
538}
Channagoud Kadabi84f860f2014-07-01 15:46:09 -0700539
540void shutdown_device()
541{
542 dprintf(CRITICAL, "Going down for shutdown.\n");
543
544 /* Configure PMIC for shutdown. */
545 pm8x41_reset_configure(PON_PSHOLD_SHUTDOWN);
546
547 /* Drop PS_HOLD for MSM */
548 writel(0x00, MPM2_MPM_PS_HOLD);
549
550 mdelay(5000);
551
552 dprintf(CRITICAL, "Shutdown failed\n");
553
554 ASSERT(0);
555}
Sundarajan Srinivasancd3bb3c2014-07-23 12:25:44 -0700556
557void target_fastboot_init(void)
558{
559 /* We are entering fastboot mode, so read partition table */
560 mmc_read_partition_table(1);
561}