Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 1 | /* Copyright (c) 2015-2018, The Linux Foundation. All rights reserved. |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 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 <reg.h> |
| 32 | #include <target.h> |
| 33 | #include <platform.h> |
| 34 | #include <uart_dm.h> |
| 35 | #include <mmc.h> |
| 36 | #include <platform/gpio.h> |
| 37 | #include <dev/keys.h> |
| 38 | #include <spmi_v2.h> |
| 39 | #include <pm8x41.h> |
Aparna Mallavarapu | bc6315e | 2015-04-11 04:00:43 +0530 | [diff] [blame] | 40 | #include <pm8x41_hw.h> |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 41 | #include <board.h> |
| 42 | #include <baseband.h> |
| 43 | #include <hsusb.h> |
| 44 | #include <scm.h> |
| 45 | #include <platform/gpio.h> |
| 46 | #include <platform/gpio.h> |
| 47 | #include <platform/irqs.h> |
| 48 | #include <platform/clock.h> |
Aparna Mallavarapu | bc6315e | 2015-04-11 04:00:43 +0530 | [diff] [blame] | 49 | #include <platform/timer.h> |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 50 | #include <crypto5_wrapper.h> |
| 51 | #include <partition_parser.h> |
| 52 | #include <stdlib.h> |
Aparna Mallavarapu | fa5f8a7 | 2015-03-31 06:21:36 +0530 | [diff] [blame] | 53 | #include <rpm-smd.h> |
Aparna Mallavarapu | bc6315e | 2015-04-11 04:00:43 +0530 | [diff] [blame] | 54 | #include <spmi.h> |
| 55 | #include <sdhci_msm.h> |
| 56 | #include <clock.h> |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 57 | #include <boot_device.h> |
| 58 | #include <secapp_loader.h> |
| 59 | #include <rpmb.h> |
lijuang | 3606df8 | 2015-09-02 21:14:43 +0800 | [diff] [blame] | 60 | #include <smem.h> |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 61 | |
Padmanabhan Komanduru | 9d49f89 | 2015-04-10 12:58:46 -0700 | [diff] [blame] | 62 | #include "target/display.h" |
| 63 | |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 64 | #if LONG_PRESS_POWER_ON |
| 65 | #include <shutdown_detect.h> |
| 66 | #endif |
| 67 | |
Matthew Qin | 47dfdb7 | 2015-06-10 21:29:11 +0800 | [diff] [blame] | 68 | #if PON_VIB_SUPPORT |
| 69 | #include <vibrator.h> |
| 70 | #endif |
| 71 | |
| 72 | #if PON_VIB_SUPPORT |
| 73 | #define VIBRATE_TIME 250 |
| 74 | #endif |
| 75 | |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 76 | #define PMIC_ARB_CHANNEL_NUM 0 |
| 77 | #define PMIC_ARB_OWNER_ID 0 |
| 78 | #define TLMM_VOL_UP_BTN_GPIO 85 |
Unnati Gandhi | fe004a9 | 2015-06-01 13:06:06 +0530 | [diff] [blame] | 79 | #define TLMM_VOL_UP_BTN_GPIO_8956 113 |
Parth Dixit | 720d3b9 | 2015-10-30 01:21:34 +0530 | [diff] [blame] | 80 | #define TLMM_VOL_UP_BTN_GPIO_8937 91 |
Wufeng | f2e3731 | 2016-04-12 16:09:47 +0800 | [diff] [blame] | 81 | #define TLMM_VOL_DOWN_BTN_GPIO 128 |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 82 | |
| 83 | #define FASTBOOT_MODE 0x77665500 |
Aparna Mallavarapu | 680a133 | 2015-04-29 19:14:09 +0530 | [diff] [blame] | 84 | #define RECOVERY_MODE 0x77665502 |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 85 | #define PON_SOFT_RB_SPARE 0x88F |
| 86 | |
Parth Dixit | 17b8519 | 2016-12-28 15:51:33 +0530 | [diff] [blame] | 87 | #define EXT4_CMDLINE " rootfstype=ext4 root=/dev/mmcblk0p" |
| 88 | |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 89 | #define CE1_INSTANCE 1 |
| 90 | #define CE_EE 1 |
| 91 | #define CE_FIFO_SIZE 64 |
| 92 | #define CE_READ_PIPE 3 |
| 93 | #define CE_WRITE_PIPE 2 |
| 94 | #define CE_READ_PIPE_LOCK_GRP 0 |
| 95 | #define CE_WRITE_PIPE_LOCK_GRP 0 |
| 96 | #define CE_ARRAY_SIZE 20 |
Wufeng | f2e3731 | 2016-04-12 16:09:47 +0800 | [diff] [blame] | 97 | #define SUB_TYPE_SKUT 0x0A |
Vijay Kumar Pendoti | 0d69884 | 2016-09-23 16:23:16 +0530 | [diff] [blame] | 98 | #define SMBCHG_USB_RT_STS 0x21310 |
| 99 | #define USBIN_UV_RT_STS BIT(0) |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 100 | #define USBIN_UV_RT_STS_PMI632 BIT(2) |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 101 | |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 102 | struct mmc_device *dev; |
| 103 | |
| 104 | static uint32_t mmc_pwrctl_base[] = |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 105 | { MSM_SDC1_BASE, MSM_SDC2_BASE }; |
| 106 | |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 107 | static uint32_t mmc_sdhci_base[] = |
| 108 | { MSM_SDC1_SDHCI_BASE, MSM_SDC2_SDHCI_BASE }; |
| 109 | |
| 110 | static uint32_t mmc_sdc_pwrctl_irq[] = |
| 111 | { SDCC1_PWRCTL_IRQ, SDCC2_PWRCTL_IRQ }; |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 112 | |
| 113 | void target_early_init(void) |
| 114 | { |
| 115 | #if WITH_DEBUG_UART |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 116 | uart_dm_init(2, 0, BLSP1_UART1_BASE); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 117 | #endif |
| 118 | } |
| 119 | |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 120 | static void set_sdc_power_ctrl() |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 121 | { |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 122 | /* Drive strength configs for sdc pins */ |
| 123 | struct tlmm_cfgs sdc1_hdrv_cfg[] = |
| 124 | { |
| 125 | { SDC1_CLK_HDRV_CTL_OFF, TLMM_CUR_VAL_16MA, TLMM_HDRV_MASK, 0}, |
| 126 | { SDC1_CMD_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK, 0}, |
| 127 | { SDC1_DATA_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK , 0}, |
| 128 | }; |
| 129 | |
| 130 | /* Pull configs for sdc pins */ |
| 131 | struct tlmm_cfgs sdc1_pull_cfg[] = |
| 132 | { |
| 133 | { SDC1_CLK_PULL_CTL_OFF, TLMM_NO_PULL, TLMM_PULL_MASK, 0}, |
| 134 | { SDC1_CMD_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK, 0}, |
| 135 | { SDC1_DATA_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK, 0}, |
| 136 | }; |
| 137 | |
Aparna Mallavarapu | 2913891 | 2015-04-13 23:45:35 +0530 | [diff] [blame] | 138 | struct tlmm_cfgs sdc1_rclk_cfg[] = |
| 139 | { |
| 140 | { SDC1_RCLK_PULL_CTL_OFF, TLMM_PULL_DOWN, TLMM_PULL_MASK, 0}, |
| 141 | }; |
| 142 | |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 143 | /* Set the drive strength & pull control values */ |
| 144 | tlmm_set_hdrive_ctrl(sdc1_hdrv_cfg, ARRAY_SIZE(sdc1_hdrv_cfg)); |
| 145 | tlmm_set_pull_ctrl(sdc1_pull_cfg, ARRAY_SIZE(sdc1_pull_cfg)); |
Aparna Mallavarapu | 2913891 | 2015-04-13 23:45:35 +0530 | [diff] [blame] | 146 | tlmm_set_pull_ctrl(sdc1_rclk_cfg, ARRAY_SIZE(sdc1_rclk_cfg)); |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | void target_sdc_init() |
| 150 | { |
| 151 | struct mmc_config_data config; |
| 152 | |
| 153 | /* Set drive strength & pull ctrl values */ |
| 154 | set_sdc_power_ctrl(); |
| 155 | |
| 156 | /* Try slot 1*/ |
| 157 | config.slot = 1; |
| 158 | config.bus_width = DATA_BUS_WIDTH_8BIT; |
Aparna Mallavarapu | 680a133 | 2015-04-29 19:14:09 +0530 | [diff] [blame] | 159 | config.max_clk_rate = MMC_CLK_192MHZ; |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 160 | config.sdhc_base = mmc_sdhci_base[config.slot - 1]; |
| 161 | config.pwrctl_base = mmc_pwrctl_base[config.slot - 1]; |
| 162 | config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1]; |
| 163 | config.hs400_support = 1; |
| 164 | |
| 165 | if (!(dev = mmc_init(&config))) { |
| 166 | /* Try slot 2 */ |
| 167 | config.slot = 2; |
| 168 | config.max_clk_rate = MMC_CLK_200MHZ; |
| 169 | config.sdhc_base = mmc_sdhci_base[config.slot - 1]; |
| 170 | config.pwrctl_base = mmc_pwrctl_base[config.slot - 1]; |
| 171 | config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1]; |
| 172 | config.hs400_support = 0; |
| 173 | |
| 174 | if (!(dev = mmc_init(&config))) { |
| 175 | dprintf(CRITICAL, "mmc init failed!"); |
| 176 | ASSERT(0); |
| 177 | } |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | void *target_mmc_device() |
| 182 | { |
| 183 | return (void *) dev; |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /* Return 1 if vol_up pressed */ |
Rami Butstein | e51318a | 2015-05-27 16:23:17 +0300 | [diff] [blame] | 187 | int target_volume_up() |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 188 | { |
lijuang | 2d2b8a0 | 2015-06-05 21:34:15 +0800 | [diff] [blame] | 189 | static uint8_t first_time = 0; |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 190 | uint8_t status = 0; |
Unnati Gandhi | e3a5c0e | 2015-06-14 17:31:07 +0530 | [diff] [blame] | 191 | uint32_t vol_up_gpio; |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 192 | |
Unnati Gandhi | fe004a9 | 2015-06-01 13:06:06 +0530 | [diff] [blame] | 193 | if(platform_is_msm8956()) |
Unnati Gandhi | e3a5c0e | 2015-06-14 17:31:07 +0530 | [diff] [blame] | 194 | vol_up_gpio = TLMM_VOL_UP_BTN_GPIO_8956; |
Parth Dixit | 05f3c9f | 2016-03-18 17:14:57 +0530 | [diff] [blame] | 195 | else if(platform_is_msm8937() || platform_is_msm8917()) |
Parth Dixit | 720d3b9 | 2015-10-30 01:21:34 +0530 | [diff] [blame] | 196 | vol_up_gpio = TLMM_VOL_UP_BTN_GPIO_8937; |
Unnati Gandhi | fe004a9 | 2015-06-01 13:06:06 +0530 | [diff] [blame] | 197 | else |
Unnati Gandhi | e3a5c0e | 2015-06-14 17:31:07 +0530 | [diff] [blame] | 198 | vol_up_gpio = TLMM_VOL_UP_BTN_GPIO; |
| 199 | |
lijuang | 2d2b8a0 | 2015-06-05 21:34:15 +0800 | [diff] [blame] | 200 | if (!first_time) { |
| 201 | gpio_tlmm_config(vol_up_gpio, 0, GPIO_INPUT, GPIO_PULL_UP, GPIO_2MA, GPIO_ENABLE); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 202 | |
lijuang | 2d2b8a0 | 2015-06-05 21:34:15 +0800 | [diff] [blame] | 203 | /* Wait for the gpio config to take effect - debounce time */ |
| 204 | udelay(10000); |
| 205 | |
| 206 | first_time = 1; |
| 207 | } |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 208 | |
| 209 | /* Get status of GPIO */ |
Unnati Gandhi | e3a5c0e | 2015-06-14 17:31:07 +0530 | [diff] [blame] | 210 | status = gpio_status(vol_up_gpio); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 211 | |
Aparna Mallavarapu | fa5f8a7 | 2015-03-31 06:21:36 +0530 | [diff] [blame] | 212 | /* Active low signal. */ |
Aparna Mallavarapu | db938b6 | 2015-04-09 01:00:55 +0530 | [diff] [blame] | 213 | return !status; |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | /* Return 1 if vol_down pressed */ |
| 217 | uint32_t target_volume_down() |
| 218 | { |
Wufeng | f2e3731 | 2016-04-12 16:09:47 +0800 | [diff] [blame] | 219 | static bool vol_down_key_init = false; |
| 220 | |
| 221 | if ((board_hardware_id() == HW_PLATFORM_QRD) && |
| 222 | (board_hardware_subtype() == SUB_TYPE_SKUT)) { |
| 223 | uint32_t status = 0; |
| 224 | |
| 225 | if (!vol_down_key_init) { |
| 226 | gpio_tlmm_config(TLMM_VOL_DOWN_BTN_GPIO, 0, GPIO_INPUT, GPIO_PULL_UP, |
| 227 | GPIO_2MA, GPIO_ENABLE); |
| 228 | /* Wait for the gpio config to take effect - debounce time */ |
| 229 | thread_sleep(10); |
| 230 | vol_down_key_init = true; |
| 231 | } |
| 232 | |
| 233 | /* Get status of GPIO */ |
| 234 | status = gpio_status(TLMM_VOL_DOWN_BTN_GPIO); |
| 235 | |
| 236 | /* Active low signal. */ |
| 237 | return !status; |
| 238 | } else { |
| 239 | /* Volume down button tied in with PMIC RESIN. */ |
| 240 | return pm8x41_resin_status(); |
| 241 | } |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 242 | } |
| 243 | |
Parth Dixit | 300a3b9 | 2015-06-19 16:38:12 +0530 | [diff] [blame] | 244 | uint32_t target_is_pwrkey_pon_reason() |
| 245 | { |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 246 | uint32_t pmic = target_get_pmic(); |
| 247 | uint8_t pon_reason = 0; |
| 248 | bool usb_present_sts = 0; |
| 249 | |
| 250 | if (pmic == PMIC_IS_PMI632) |
| 251 | { |
| 252 | pon_reason = pmi632_get_pon_reason(); |
| 253 | usb_present_sts = !(USBIN_UV_RT_STS_PMI632 & |
Vijay Kumar Pendoti | 0d69884 | 2016-09-23 16:23:16 +0530 | [diff] [blame] | 254 | pm8x41_reg_read(SMBCHG_USB_RT_STS)); |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 255 | } |
| 256 | else |
| 257 | { |
| 258 | pon_reason = pm8950_get_pon_reason(); |
| 259 | usb_present_sts = !(USBIN_UV_RT_STS & |
| 260 | pm8x41_reg_read(SMBCHG_USB_RT_STS)); |
| 261 | } |
| 262 | |
Parth Dixit | 300a3b9 | 2015-06-19 16:38:12 +0530 | [diff] [blame] | 263 | if (pm8x41_get_is_cold_boot() && ((pon_reason == KPDPWR_N) || (pon_reason == (KPDPWR_N|PON1)))) |
| 264 | return 1; |
Vijay Kumar Pendoti | 0d69884 | 2016-09-23 16:23:16 +0530 | [diff] [blame] | 265 | else if ((pon_reason == PON1) && (!usb_present_sts)) |
| 266 | return 1; |
Parth Dixit | 300a3b9 | 2015-06-19 16:38:12 +0530 | [diff] [blame] | 267 | else |
| 268 | return 0; |
| 269 | } |
| 270 | |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 271 | static void target_keystatus() |
| 272 | { |
| 273 | keys_init(); |
| 274 | |
| 275 | if(target_volume_down()) |
| 276 | keys_post_event(KEY_VOLUMEDOWN, 1); |
| 277 | |
| 278 | if(target_volume_up()) |
| 279 | keys_post_event(KEY_VOLUMEUP, 1); |
| 280 | } |
| 281 | |
| 282 | /* Configure PMIC and Drop PS_HOLD for shutdown */ |
| 283 | void shutdown_device() |
| 284 | { |
| 285 | dprintf(CRITICAL, "Going down for shutdown.\n"); |
| 286 | |
| 287 | /* Configure PMIC for shutdown */ |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 288 | if (target_get_pmic() == PMIC_IS_PMI632) |
| 289 | pmi632_reset_configure(PON_PSHOLD_SHUTDOWN); |
| 290 | else |
| 291 | pm8x41_reset_configure(PON_PSHOLD_SHUTDOWN); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 292 | |
| 293 | /* Drop PS_HOLD for MSM */ |
| 294 | writel(0x00, MPM2_MPM_PS_HOLD); |
| 295 | |
| 296 | mdelay(5000); |
| 297 | |
| 298 | dprintf(CRITICAL, "shutdown failed\n"); |
| 299 | |
| 300 | ASSERT(0); |
| 301 | } |
| 302 | |
| 303 | |
| 304 | void target_init(void) |
| 305 | { |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 306 | dprintf(INFO, "target_init()\n"); |
| 307 | |
| 308 | spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID); |
| 309 | |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 310 | if(target_is_pmi_enabled()) |
Parth Dixit | 3e6dead | 2015-12-08 15:04:54 +0530 | [diff] [blame] | 311 | { |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 312 | if(platform_is_msm8937() || platform_is_msm8917()) |
Parth Dixit | 3e6dead | 2015-12-08 15:04:54 +0530 | [diff] [blame] | 313 | { |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 314 | uint8_t pmi_rev = 0; |
| 315 | uint32_t pmi_type = 0; |
| 316 | |
| 317 | pmi_type = board_pmic_target(1) & 0xffff; |
| 318 | if(pmi_type == PMIC_IS_PMI8950) |
| 319 | { |
| 320 | /* read pmic spare register for rev */ |
| 321 | pmi_rev = pmi8950_get_pmi_subtype(); |
| 322 | if(pmi_rev) |
| 323 | board_pmi_target_set(1,pmi_rev); |
| 324 | } |
Parth Dixit | 3e6dead | 2015-12-08 15:04:54 +0530 | [diff] [blame] | 325 | } |
| 326 | } |
| 327 | |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 328 | |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 329 | target_keystatus(); |
| 330 | |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 331 | target_sdc_init(); |
| 332 | if (partition_read_table()) |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 333 | { |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 334 | dprintf(CRITICAL, "Error reading the partition table info\n"); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 335 | ASSERT(0); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 336 | } |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 337 | |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 338 | #if LONG_PRESS_POWER_ON |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 339 | if(target_is_pmi_enabled()) |
| 340 | shutdown_detect(); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 341 | #endif |
Matthew Qin | 47dfdb7 | 2015-06-10 21:29:11 +0800 | [diff] [blame] | 342 | |
| 343 | #if PON_VIB_SUPPORT |
| 344 | /* turn on vibrator to indicate that phone is booting up to end user */ |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 345 | if(target_is_pmi_enabled()) |
| 346 | vib_timed_turn_on(VIBRATE_TIME); |
Matthew Qin | 47dfdb7 | 2015-06-10 21:29:11 +0800 | [diff] [blame] | 347 | #endif |
| 348 | |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 349 | if (target_use_signed_kernel()) |
| 350 | target_crypto_init_params(); |
Aparna Mallavarapu | fa5f8a7 | 2015-03-31 06:21:36 +0530 | [diff] [blame] | 351 | |
Parth Dixit | 5b954e0 | 2015-10-17 22:20:31 +0530 | [diff] [blame] | 352 | #if VERIFIED_BOOT |
Mayank Grover | e2384ad | 2017-10-26 12:11:17 +0530 | [diff] [blame] | 353 | if (VB_M <= target_get_vb_version()) |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 354 | { |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 355 | clock_ce_enable(CE1_INSTANCE); |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 356 | |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 357 | /* Initialize Qseecom */ |
| 358 | if (qseecom_init() < 0) |
| 359 | { |
| 360 | dprintf(CRITICAL, "Failed to initialize qseecom\n"); |
| 361 | ASSERT(0); |
| 362 | } |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 363 | |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 364 | /* Start Qseecom */ |
| 365 | if (qseecom_tz_init() < 0) |
| 366 | { |
| 367 | dprintf(CRITICAL, "Failed to start qseecom\n"); |
| 368 | ASSERT(0); |
| 369 | } |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 370 | |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 371 | if (rpmb_init() < 0) |
| 372 | { |
| 373 | dprintf(CRITICAL, "RPMB init failed\n"); |
| 374 | ASSERT(0); |
| 375 | } |
Parth Dixit | b4b2ffa | 2015-10-09 15:31:14 +0530 | [diff] [blame] | 376 | |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 377 | /* |
| 378 | * Load the sec app for first time |
| 379 | */ |
| 380 | if (load_sec_app() < 0) |
| 381 | { |
| 382 | dprintf(CRITICAL, "Failed to load App for verified\n"); |
| 383 | ASSERT(0); |
| 384 | } |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 385 | } |
Parth Dixit | 5b954e0 | 2015-10-17 22:20:31 +0530 | [diff] [blame] | 386 | #endif |
| 387 | |
Aparna Mallavarapu | fa5f8a7 | 2015-03-31 06:21:36 +0530 | [diff] [blame] | 388 | #if SMD_SUPPORT |
| 389 | rpm_smd_init(); |
| 390 | #endif |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | void target_serialno(unsigned char *buf) |
| 394 | { |
| 395 | uint32_t serialno; |
| 396 | if (target_is_emmc_boot()) { |
| 397 | serialno = mmc_get_psn(); |
| 398 | snprintf((char *)buf, 13, "%x", serialno); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | unsigned board_machtype(void) |
| 403 | { |
Aparna Mallavarapu | e9bdacd | 2015-03-15 14:24:21 +0530 | [diff] [blame] | 404 | return LINUX_MACHTYPE_UNKNOWN; |
| 405 | } |
| 406 | |
| 407 | /* Detect the target type */ |
| 408 | void target_detect(struct board_data *board) |
| 409 | { |
| 410 | /* This is already filled as part of board.c */ |
| 411 | } |
| 412 | |
| 413 | /* Detect the modem type */ |
| 414 | void target_baseband_detect(struct board_data *board) |
| 415 | { |
| 416 | uint32_t platform; |
| 417 | |
| 418 | platform = board->platform; |
| 419 | |
| 420 | switch(platform) { |
| 421 | case MSM8952: |
| 422 | case MSM8956: |
| 423 | case MSM8976: |
Parth Dixit | 4ec3fe2 | 2015-10-30 00:44:33 +0530 | [diff] [blame] | 424 | case MSM8937: |
Parth Dixit | 660369e | 2016-05-12 09:53:15 +0530 | [diff] [blame] | 425 | case MSM8940: |
Parth Dixit | 05f3c9f | 2016-03-18 17:14:57 +0530 | [diff] [blame] | 426 | case MSM8917: |
Mayank Grover | cd5f0ff | 2016-10-03 18:08:52 +0530 | [diff] [blame] | 427 | case MSM8920: |
Parth Dixit | 05f3c9f | 2016-03-18 17:14:57 +0530 | [diff] [blame] | 428 | case MSM8217: |
| 429 | case MSM8617: |
Aparna Mallavarapu | e9bdacd | 2015-03-15 14:24:21 +0530 | [diff] [blame] | 430 | board->baseband = BASEBAND_MSM; |
| 431 | break; |
Aparna Mallavarapu | 815b324 | 2015-04-29 11:08:14 +0530 | [diff] [blame] | 432 | case APQ8052: |
| 433 | case APQ8056: |
| 434 | case APQ8076: |
Parth Dixit | 4ec3fe2 | 2015-10-30 00:44:33 +0530 | [diff] [blame] | 435 | case APQ8037: |
Parth Dixit | 05f3c9f | 2016-03-18 17:14:57 +0530 | [diff] [blame] | 436 | case APQ8017: |
Aparna Mallavarapu | 815b324 | 2015-04-29 11:08:14 +0530 | [diff] [blame] | 437 | board->baseband = BASEBAND_APQ; |
| 438 | break; |
Aparna Mallavarapu | e9bdacd | 2015-03-15 14:24:21 +0530 | [diff] [blame] | 439 | default: |
| 440 | dprintf(CRITICAL, "Platform type: %u is not supported\n",platform); |
| 441 | ASSERT(0); |
| 442 | }; |
| 443 | } |
| 444 | |
| 445 | unsigned target_baseband() |
| 446 | { |
| 447 | return board_baseband(); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | unsigned check_reboot_mode(void) |
| 451 | { |
| 452 | uint32_t restart_reason = 0; |
| 453 | |
| 454 | /* Read reboot reason and scrub it */ |
| 455 | restart_reason = readl(RESTART_REASON_ADDR); |
| 456 | writel(0x00, RESTART_REASON_ADDR); |
| 457 | |
| 458 | return restart_reason; |
| 459 | } |
| 460 | |
| 461 | unsigned check_hard_reboot_mode(void) |
| 462 | { |
| 463 | uint8_t hard_restart_reason = 0; |
| 464 | uint8_t value = 0; |
| 465 | |
| 466 | /* Read reboot reason and scrub it |
| 467 | * Bit-5, bit-6 and bit-7 of SOFT_RB_SPARE for hard reset reason |
| 468 | */ |
| 469 | value = pm8x41_reg_read(PON_SOFT_RB_SPARE); |
| 470 | hard_restart_reason = value >> 5; |
| 471 | pm8x41_reg_write(PON_SOFT_RB_SPARE, value & 0x1f); |
| 472 | |
| 473 | return hard_restart_reason; |
| 474 | } |
| 475 | |
lijuang | 395b5e6 | 2015-11-19 17:39:44 +0800 | [diff] [blame] | 476 | int set_download_mode(enum reboot_reason mode) |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 477 | { |
| 478 | int ret = 0; |
| 479 | ret = scm_dload_mode(mode); |
| 480 | |
| 481 | pm8x41_clear_pmic_watchdog(); |
| 482 | |
| 483 | return ret; |
| 484 | } |
| 485 | |
| 486 | int emmc_recovery_init(void) |
| 487 | { |
| 488 | return _emmc_recovery_init(); |
| 489 | } |
| 490 | |
| 491 | void reboot_device(unsigned reboot_reason) |
| 492 | { |
| 493 | uint8_t reset_type = 0; |
| 494 | uint32_t ret = 0; |
| 495 | |
lijuang | 395b5e6 | 2015-11-19 17:39:44 +0800 | [diff] [blame] | 496 | /* Set cookie for dload mode */ |
| 497 | if(set_download_mode(reboot_reason)) { |
| 498 | dprintf(CRITICAL, "HALT: set_download_mode not supported\n"); |
| 499 | return; |
| 500 | } |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 501 | |
| 502 | writel(reboot_reason, RESTART_REASON_ADDR); |
| 503 | |
| 504 | /* For Reboot-bootloader and Dload cases do a warm reset |
| 505 | * For Reboot cases do a hard reset |
| 506 | */ |
lijuang | 395b5e6 | 2015-11-19 17:39:44 +0800 | [diff] [blame] | 507 | if((reboot_reason == FASTBOOT_MODE) || (reboot_reason == NORMAL_DLOAD) || |
| 508 | (reboot_reason == EMERGENCY_DLOAD) || (reboot_reason == RECOVERY_MODE)) |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 509 | reset_type = PON_PSHOLD_WARM_RESET; |
| 510 | else |
| 511 | reset_type = PON_PSHOLD_HARD_RESET; |
| 512 | |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 513 | if (target_get_pmic() == PMIC_IS_PMI632) |
| 514 | { |
| 515 | pmi632_reset_configure(reset_type); |
| 516 | } |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 517 | else |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 518 | { |
| 519 | if(target_is_pmi_enabled()) |
| 520 | pm8994_reset_configure(reset_type); |
| 521 | else |
| 522 | pm8x41_reset_configure(reset_type); |
| 523 | } |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 524 | |
| 525 | ret = scm_halt_pmic_arbiter(); |
| 526 | if (ret) |
| 527 | dprintf(CRITICAL , "Failed to halt pmic arbiter: %d\n", ret); |
| 528 | |
| 529 | /* Drop PS_HOLD for MSM */ |
| 530 | writel(0x00, MPM2_MPM_PS_HOLD); |
| 531 | |
| 532 | mdelay(5000); |
| 533 | |
| 534 | dprintf(CRITICAL, "Rebooting failed\n"); |
| 535 | } |
| 536 | |
| 537 | #if USER_FORCE_RESET_SUPPORT |
| 538 | /* Return 1 if it is a force resin triggered by user. */ |
| 539 | uint32_t is_user_force_reset(void) |
| 540 | { |
| 541 | uint8_t poff_reason1 = pm8x41_get_pon_poff_reason1(); |
| 542 | uint8_t poff_reason2 = pm8x41_get_pon_poff_reason2(); |
| 543 | |
| 544 | dprintf(SPEW, "poff_reason1: %d\n", poff_reason1); |
| 545 | dprintf(SPEW, "poff_reason2: %d\n", poff_reason2); |
| 546 | if (pm8x41_get_is_cold_boot() && (poff_reason1 == KPDPWR_AND_RESIN || |
| 547 | poff_reason2 == STAGE3)) |
| 548 | return 1; |
| 549 | else |
| 550 | return 0; |
| 551 | } |
| 552 | #endif |
| 553 | |
| 554 | unsigned target_pause_for_battery_charge(void) |
| 555 | { |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 556 | uint32_t pmic = target_get_pmic(); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 557 | uint8_t pon_reason = pm8x41_get_pon_reason(); |
| 558 | uint8_t is_cold_boot = pm8x41_get_is_cold_boot(); |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 559 | bool usb_present_sts = 1; /* don't care by default */ |
| 560 | |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 561 | if (target_is_pmi_enabled()) |
| 562 | { |
| 563 | if (pmic == PMIC_IS_PMI632) |
| 564 | usb_present_sts = !(USBIN_UV_RT_STS_PMI632 & |
| 565 | pm8x41_reg_read(SMBCHG_USB_RT_STS)); |
| 566 | else |
| 567 | usb_present_sts = (!(USBIN_UV_RT_STS & |
| 568 | pm8x41_reg_read(SMBCHG_USB_RT_STS))); |
| 569 | } |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 570 | |
Zhenhua Huang | b46b9b5 | 2015-04-21 19:53:09 +0800 | [diff] [blame] | 571 | dprintf(INFO, "%s : pon_reason is:0x%x cold_boot:%d usb_sts:%d\n", __func__, |
| 572 | pon_reason, is_cold_boot, usb_present_sts); |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 573 | /* In case of fastboot reboot,adb reboot or if we see the power key |
| 574 | * pressed we do not want go into charger mode. |
| 575 | * fastboot reboot is warm boot with PON hard reset bit not set |
| 576 | * adb reboot is a cold boot with PON hard reset bit set |
| 577 | */ |
| 578 | if (is_cold_boot && |
| 579 | (!(pon_reason & HARD_RST)) && |
| 580 | (!(pon_reason & KPDPWR_N)) && |
Zhenhua Huang | b46b9b5 | 2015-04-21 19:53:09 +0800 | [diff] [blame] | 581 | usb_present_sts) |
Aparna Mallavarapu | ca67688 | 2015-01-19 20:39:06 +0530 | [diff] [blame] | 582 | return 1; |
| 583 | else |
| 584 | return 0; |
| 585 | } |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 586 | |
| 587 | void target_uninit(void) |
| 588 | { |
c_wufeng | 8324c04 | 2016-01-25 10:37:37 +0800 | [diff] [blame] | 589 | #if PON_VIB_SUPPORT |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 590 | if(target_is_pmi_enabled()) |
| 591 | turn_off_vib_early(); |
c_wufeng | 8324c04 | 2016-01-25 10:37:37 +0800 | [diff] [blame] | 592 | #endif |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 593 | mmc_put_card_to_sleep(dev); |
| 594 | sdhci_mode_disable(&dev->host); |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 595 | if (crypto_initialized()) |
Vijay Kumar Pendoti | b0f9ba3 | 2016-04-15 16:55:30 +0530 | [diff] [blame] | 596 | { |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 597 | crypto_eng_cleanup(); |
Vijay Kumar Pendoti | b0f9ba3 | 2016-04-15 16:55:30 +0530 | [diff] [blame] | 598 | clock_ce_disable(CE1_INSTANCE); |
| 599 | } |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 600 | |
| 601 | if (target_is_ssd_enabled()) |
| 602 | clock_ce_disable(CE1_INSTANCE); |
Aparna Mallavarapu | fa5f8a7 | 2015-03-31 06:21:36 +0530 | [diff] [blame] | 603 | |
Parth Dixit | 5b954e0 | 2015-10-17 22:20:31 +0530 | [diff] [blame] | 604 | #if VERIFIED_BOOT |
Mayank Grover | e2384ad | 2017-10-26 12:11:17 +0530 | [diff] [blame] | 605 | if (VB_M <= target_get_vb_version()) |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 606 | { |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 607 | if (is_sec_app_loaded()) |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 608 | { |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 609 | if (send_milestone_call_to_tz() < 0) |
| 610 | { |
| 611 | dprintf(CRITICAL, "Failed to unload App for rpmb\n"); |
| 612 | ASSERT(0); |
| 613 | } |
| 614 | } |
| 615 | |
| 616 | if (rpmb_uninit() < 0) |
| 617 | { |
| 618 | dprintf(CRITICAL, "RPMB uninit failed\n"); |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 619 | ASSERT(0); |
| 620 | } |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 621 | |
Mayank Grover | 32ba299 | 2017-09-06 11:14:00 +0530 | [diff] [blame] | 622 | clock_ce_disable(CE1_INSTANCE); |
Parth Dixit | 6e6bad5 | 2015-07-30 19:02:38 +0530 | [diff] [blame] | 623 | } |
Parth Dixit | b73ff34 | 2015-10-27 17:34:08 +0530 | [diff] [blame] | 624 | #endif |
Parth Dixit | 5b954e0 | 2015-10-17 22:20:31 +0530 | [diff] [blame] | 625 | |
Aparna Mallavarapu | fa5f8a7 | 2015-03-31 06:21:36 +0530 | [diff] [blame] | 626 | #if SMD_SUPPORT |
| 627 | rpm_smd_uninit(); |
| 628 | #endif |
Aparna Mallavarapu | 7b638e6 | 2015-03-26 05:51:57 +0530 | [diff] [blame] | 629 | } |
| 630 | |
| 631 | void target_usb_init(void) |
| 632 | { |
| 633 | uint32_t val; |
| 634 | |
| 635 | /* Select and enable external configuration with USB PHY */ |
| 636 | ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_SET); |
| 637 | |
| 638 | /* Enable sess_vld */ |
| 639 | val = readl(USB_GENCONFIG_2) | GEN2_SESS_VLD_CTRL_EN; |
| 640 | writel(val, USB_GENCONFIG_2); |
| 641 | |
| 642 | /* Enable external vbus configuration in the LINK */ |
| 643 | val = readl(USB_USBCMD); |
| 644 | val |= SESS_VLD_CTRL; |
| 645 | writel(val, USB_USBCMD); |
| 646 | } |
| 647 | |
| 648 | void target_usb_stop(void) |
| 649 | { |
| 650 | /* Disable VBUS mimicing in the controller. */ |
| 651 | ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_CLEAR); |
| 652 | } |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 653 | |
Padmanabhan Komanduru | 9d49f89 | 2015-04-10 12:58:46 -0700 | [diff] [blame] | 654 | static uint8_t splash_override; |
| 655 | /* Returns 1 if target supports continuous splash screen. */ |
| 656 | int target_cont_splash_screen() |
| 657 | { |
| 658 | uint8_t splash_screen = 0; |
| 659 | if (!splash_override) { |
| 660 | switch (board_hardware_id()) { |
| 661 | case HW_PLATFORM_MTP: |
| 662 | case HW_PLATFORM_SURF: |
Vishnuvardhan Prodduturi | e116c00 | 2015-07-14 17:14:25 +0530 | [diff] [blame] | 663 | case HW_PLATFORM_RCM: |
feifanz | 174c82c | 2015-04-15 18:57:07 +0800 | [diff] [blame] | 664 | case HW_PLATFORM_QRD: |
Padmanabhan Komanduru | 9d49f89 | 2015-04-10 12:58:46 -0700 | [diff] [blame] | 665 | splash_screen = 1; |
| 666 | break; |
| 667 | default: |
| 668 | splash_screen = 0; |
| 669 | break; |
| 670 | } |
| 671 | dprintf(SPEW, "Target_cont_splash=%d\n", splash_screen); |
| 672 | } |
| 673 | return splash_screen; |
| 674 | } |
| 675 | |
| 676 | void target_force_cont_splash_disable(uint8_t override) |
| 677 | { |
| 678 | splash_override = override; |
| 679 | } |
| 680 | |
Ray Zhang | f95f5b9 | 2015-06-25 15:34:29 +0800 | [diff] [blame] | 681 | uint8_t target_panel_auto_detect_enabled() |
| 682 | { |
| 683 | uint8_t ret = 0; |
| 684 | |
| 685 | switch(board_hardware_id()) |
| 686 | { |
| 687 | case HW_PLATFORM_QRD: |
| 688 | ret = platform_is_msm8956() ? 1 : 0; |
| 689 | break; |
| 690 | case HW_PLATFORM_SURF: |
| 691 | case HW_PLATFORM_MTP: |
| 692 | default: |
| 693 | ret = 0; |
| 694 | } |
| 695 | return ret; |
| 696 | } |
| 697 | |
Aparna Mallavarapu | 1e8b093 | 2015-03-29 23:38:13 +0530 | [diff] [blame] | 698 | /* Do any target specific intialization needed before entering fastboot mode */ |
| 699 | void target_fastboot_init(void) |
| 700 | { |
| 701 | if (target_is_ssd_enabled()) { |
| 702 | clock_ce_enable(CE1_INSTANCE); |
| 703 | target_load_ssd_keystore(); |
| 704 | } |
| 705 | } |
| 706 | |
| 707 | void target_load_ssd_keystore(void) |
| 708 | { |
| 709 | uint64_t ptn; |
| 710 | int index; |
| 711 | uint64_t size; |
| 712 | uint32_t *buffer = NULL; |
| 713 | |
| 714 | if (!target_is_ssd_enabled()) |
| 715 | return; |
| 716 | |
| 717 | index = partition_get_index("ssd"); |
| 718 | |
| 719 | ptn = partition_get_offset(index); |
| 720 | if (ptn == 0){ |
| 721 | dprintf(CRITICAL, "Error: ssd partition not found\n"); |
| 722 | return; |
| 723 | } |
| 724 | |
| 725 | size = partition_get_size(index); |
| 726 | if (size == 0) { |
| 727 | dprintf(CRITICAL, "Error: invalid ssd partition size\n"); |
| 728 | return; |
| 729 | } |
| 730 | |
| 731 | buffer = memalign(CACHE_LINE, ROUNDUP(size, CACHE_LINE)); |
| 732 | if (!buffer) { |
| 733 | dprintf(CRITICAL, "Error: allocating memory for ssd buffer\n"); |
| 734 | return; |
| 735 | } |
| 736 | |
| 737 | if (mmc_read(ptn, buffer, size)) { |
| 738 | dprintf(CRITICAL, "Error: cannot read data\n"); |
| 739 | free(buffer); |
| 740 | return; |
| 741 | } |
| 742 | |
| 743 | clock_ce_enable(CE1_INSTANCE); |
| 744 | scm_protect_keystore(buffer, size); |
| 745 | clock_ce_disable(CE1_INSTANCE); |
| 746 | free(buffer); |
| 747 | } |
| 748 | |
| 749 | crypto_engine_type board_ce_type(void) |
| 750 | { |
| 751 | return CRYPTO_ENGINE_TYPE_HW; |
| 752 | } |
| 753 | |
| 754 | /* Set up params for h/w CE. */ |
| 755 | void target_crypto_init_params() |
| 756 | { |
| 757 | struct crypto_init_params ce_params; |
| 758 | |
| 759 | /* Set up base addresses and instance. */ |
| 760 | ce_params.crypto_instance = CE1_INSTANCE; |
| 761 | ce_params.crypto_base = MSM_CE1_BASE; |
| 762 | ce_params.bam_base = MSM_CE1_BAM_BASE; |
| 763 | |
| 764 | /* Set up BAM config. */ |
| 765 | ce_params.bam_ee = CE_EE; |
| 766 | ce_params.pipes.read_pipe = CE_READ_PIPE; |
| 767 | ce_params.pipes.write_pipe = CE_WRITE_PIPE; |
| 768 | ce_params.pipes.read_pipe_grp = CE_READ_PIPE_LOCK_GRP; |
| 769 | ce_params.pipes.write_pipe_grp = CE_WRITE_PIPE_LOCK_GRP; |
| 770 | |
| 771 | /* Assign buffer sizes. */ |
| 772 | ce_params.num_ce = CE_ARRAY_SIZE; |
| 773 | ce_params.read_fifo_size = CE_FIFO_SIZE; |
| 774 | ce_params.write_fifo_size = CE_FIFO_SIZE; |
| 775 | |
| 776 | /* BAM is initialized by TZ for this platform. |
| 777 | * Do not do it again as the initialization address space |
| 778 | * is locked. |
| 779 | */ |
| 780 | ce_params.do_bam_init = 0; |
| 781 | |
| 782 | crypto_init_params(&ce_params); |
| 783 | } |
lijuang | 3606df8 | 2015-09-02 21:14:43 +0800 | [diff] [blame] | 784 | |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 785 | bool target_is_pmi_enabled(void) |
| 786 | { |
| 787 | if(platform_is_msm8917() && |
Parth Dixit | acec6bf | 2017-02-27 19:06:39 +0530 | [diff] [blame] | 788 | (board_hardware_subtype() == HW_PLATFORM_SUBTYPE_SAP_NOPMI)) |
Parth Dixit | 550ddf3 | 2016-11-28 17:00:29 +0530 | [diff] [blame] | 789 | return 0; |
| 790 | else |
| 791 | return 1; |
| 792 | } |
| 793 | |
Parth Dixit | 17b8519 | 2016-12-28 15:51:33 +0530 | [diff] [blame] | 794 | #if _APPEND_CMDLINE |
| 795 | int get_target_boot_params(const char *cmdline, const char *part, char **buf) |
| 796 | { |
| 797 | int system_ptn_index = -1; |
| 798 | uint32_t buflen; |
| 799 | int ret = -1; |
| 800 | |
| 801 | if (!cmdline || !part ) { |
| 802 | dprintf(CRITICAL, "WARN: Invalid input param\n"); |
| 803 | return -1; |
| 804 | } |
| 805 | |
| 806 | if (!strstr(cmdline, "root=/dev/ram")) /* This check is to handle kdev boot */ |
| 807 | { |
| 808 | if (target_is_emmc_boot()) { |
| 809 | buflen = strlen(EXT4_CMDLINE) + sizeof(int) +1; |
| 810 | *buf = (char *)malloc(buflen); |
| 811 | if(!(*buf)) { |
| 812 | dprintf(CRITICAL,"Unable to allocate memory for boot params\n"); |
| 813 | return -1; |
| 814 | } |
| 815 | /* Below is for emmc boot */ |
| 816 | system_ptn_index = partition_get_index(part) + 1; /* Adding +1 as offsets for eMMC start at 1 and NAND at 0 */ |
| 817 | if (system_ptn_index < 0) { |
| 818 | dprintf(CRITICAL, |
| 819 | "WARN: Cannot get partition index for %s\n", part); |
| 820 | free(*buf); |
| 821 | return -1; |
| 822 | } |
| 823 | snprintf(*buf, buflen, EXT4_CMDLINE"%d", system_ptn_index); |
| 824 | ret = 0; |
| 825 | } |
| 826 | } |
| 827 | /*in success case buf will be freed in the calling function of this*/ |
| 828 | return ret; |
| 829 | } |
| 830 | #endif |
| 831 | |
lijuang | 3606df8 | 2015-09-02 21:14:43 +0800 | [diff] [blame] | 832 | uint32_t target_get_pmic() |
| 833 | { |
Umang Agrawal | 898a191 | 2018-02-13 16:09:10 +0530 | [diff] [blame] | 834 | if (target_is_pmi_enabled()) { |
| 835 | uint32_t pmi_type = board_pmic_target(1) & 0xffff; |
| 836 | if (pmi_type == PMIC_IS_PMI632) |
| 837 | return PMIC_IS_PMI632; |
| 838 | else |
| 839 | return PMIC_IS_PMI8950; |
| 840 | } |
| 841 | else { |
| 842 | return PMIC_IS_UNKNOWN; |
| 843 | } |
lijuang | 3606df8 | 2015-09-02 21:14:43 +0800 | [diff] [blame] | 844 | } |