Eugene Yasman | 6382ee0 | 2013-01-16 13:00:56 +0200 | [diff] [blame] | 1 | /* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved. |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 2 | * |
| 3 | * Redistribution and use in source and binary forms, with or without |
Deepa Dinamani | 1e09494 | 2012-10-30 15:49:02 -0700 | [diff] [blame] | 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. |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 15 | * |
Deepa Dinamani | 1e09494 | 2012-10-30 15:49:02 -0700 | [diff] [blame] | 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. |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 27 | */ |
| 28 | |
| 29 | #include <debug.h> |
| 30 | #include <platform/iomap.h> |
Channagoud Kadabi | 744c890 | 2013-04-02 11:54:53 -0700 | [diff] [blame] | 31 | #include <platform/gpio.h> |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 32 | #include <reg.h> |
| 33 | #include <target.h> |
| 34 | #include <platform.h> |
Pavel Nedev | 0351149 | 2013-03-08 19:05:32 -0800 | [diff] [blame] | 35 | #include <dload_util.h> |
Deepa Dinamani | 26e9326 | 2012-05-21 17:35:14 -0700 | [diff] [blame] | 36 | #include <uart_dm.h> |
Amol Jadi | 29f9503 | 2012-06-22 12:52:54 -0700 | [diff] [blame] | 37 | #include <mmc.h> |
Deepa Dinamani | c2a9b36 | 2012-02-23 15:15:54 -0800 | [diff] [blame] | 38 | #include <spmi.h> |
Neeti Desai | 465491e | 2012-07-31 12:53:35 -0700 | [diff] [blame] | 39 | #include <board.h> |
| 40 | #include <smem.h> |
| 41 | #include <baseband.h> |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 42 | #include <dev/keys.h> |
| 43 | #include <pm8x41.h> |
Deepa Dinamani | b9a5720 | 2012-12-20 18:05:11 -0800 | [diff] [blame] | 44 | #include <crypto5_wrapper.h> |
Eugene Yasman | a0d1812 | 2013-02-26 13:23:05 +0200 | [diff] [blame] | 45 | #include <hsusb.h> |
| 46 | #include <clock.h> |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 47 | #include <partition_parser.h> |
| 48 | #include <scm.h> |
| 49 | #include <platform/clock.h> |
Channagoud Kadabi | c1fdc8d | 2013-04-05 11:29:23 -0700 | [diff] [blame] | 50 | #include <platform/gpio.h> |
Channagoud Kadabi | f84830c | 2013-04-19 14:35:47 -0700 | [diff] [blame] | 51 | #include <stdlib.h> |
Deepa Dinamani | b9a5720 | 2012-12-20 18:05:11 -0800 | [diff] [blame] | 52 | |
| 53 | extern bool target_use_signed_kernel(void); |
Channagoud Kadabi | 744c890 | 2013-04-02 11:54:53 -0700 | [diff] [blame] | 54 | static void set_sdc_power_ctrl(); |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 55 | |
| 56 | static unsigned int target_id; |
Deepa Dinamani | 07f1571 | 2013-03-08 17:02:13 -0800 | [diff] [blame] | 57 | static uint32_t pmic_ver; |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 58 | |
Channagoud Kadabi | c1fdc8d | 2013-04-05 11:29:23 -0700 | [diff] [blame] | 59 | #if MMC_SDHCI_SUPPORT |
| 60 | struct mmc_device *dev; |
| 61 | #endif |
| 62 | |
Deepa Dinamani | c2a9b36 | 2012-02-23 15:15:54 -0800 | [diff] [blame] | 63 | #define PMIC_ARB_CHANNEL_NUM 0 |
| 64 | #define PMIC_ARB_OWNER_ID 0 |
| 65 | |
Deepa Dinamani | 1e09494 | 2012-10-30 15:49:02 -0700 | [diff] [blame] | 66 | #define WDOG_DEBUG_DISABLE_BIT 17 |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 67 | |
Deepa Dinamani | b9a5720 | 2012-12-20 18:05:11 -0800 | [diff] [blame] | 68 | #define CE_INSTANCE 2 |
| 69 | #define CE_EE 1 |
| 70 | #define CE_FIFO_SIZE 64 |
| 71 | #define CE_READ_PIPE 3 |
| 72 | #define CE_WRITE_PIPE 2 |
| 73 | #define CE_ARRAY_SIZE 20 |
| 74 | |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 75 | #ifdef SSD_ENABLE |
| 76 | #define SSD_CE_INSTANCE_1 1 |
| 77 | #define SSD_PARTITION_SIZE 8192 |
| 78 | #endif |
| 79 | |
Channagoud Kadabi | c1fdc8d | 2013-04-05 11:29:23 -0700 | [diff] [blame] | 80 | #if MMC_SDHCI_SUPPORT |
| 81 | static uint32_t mmc_sdhci_base[] = |
| 82 | { MSM_SDC1_SDHCI_BASE, MSM_SDC2_SDHCI_BASE, MSM_SDC3_SDHCI_BASE, MSM_SDC4_SDHCI_BASE }; |
| 83 | #endif |
| 84 | |
Deepa Dinamani | ca5ad85 | 2012-05-07 18:19:47 -0700 | [diff] [blame] | 85 | static uint32_t mmc_sdc_base[] = |
| 86 | { MSM_SDC1_BASE, MSM_SDC2_BASE, MSM_SDC3_BASE, MSM_SDC4_BASE }; |
| 87 | |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 88 | void target_early_init(void) |
| 89 | { |
Deepa Dinamani | b073ba2 | 2012-08-10 11:06:41 -0700 | [diff] [blame] | 90 | #if WITH_DEBUG_UART |
Neeti Desai | ac01127 | 2012-08-29 18:24:54 -0700 | [diff] [blame] | 91 | uart_dm_init(1, 0, BLSP1_UART1_BASE); |
Deepa Dinamani | b073ba2 | 2012-08-10 11:06:41 -0700 | [diff] [blame] | 92 | #endif |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 93 | } |
| 94 | |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 95 | /* Return 1 if vol_up pressed */ |
| 96 | static int target_volume_up() |
| 97 | { |
| 98 | uint8_t status = 0; |
| 99 | struct pm8x41_gpio gpio; |
| 100 | |
| 101 | /* CDP vol_up seems to be always grounded. So gpio status is read as 0, |
| 102 | * whether key is pressed or not. |
| 103 | * Ignore volume_up key on CDP for now. |
| 104 | */ |
| 105 | if (board_hardware_id() == HW_PLATFORM_SURF) |
| 106 | return 0; |
| 107 | |
| 108 | /* Configure the GPIO */ |
| 109 | gpio.direction = PM_GPIO_DIR_IN; |
| 110 | gpio.function = 0; |
| 111 | gpio.pull = PM_GPIO_PULL_UP_30; |
Eugene Yasman | 6382ee0 | 2013-01-16 13:00:56 +0200 | [diff] [blame] | 112 | gpio.vin_sel = 2; |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 113 | |
| 114 | pm8x41_gpio_config(5, &gpio); |
| 115 | |
| 116 | /* Get status of P_GPIO_5 */ |
| 117 | pm8x41_gpio_get(5, &status); |
| 118 | |
| 119 | return !status; /* active low */ |
| 120 | } |
| 121 | |
| 122 | /* Return 1 if vol_down pressed */ |
Deepa Dinamani | 66a8796 | 2013-02-04 10:39:30 -0800 | [diff] [blame] | 123 | uint32_t target_volume_down() |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 124 | { |
Deepa Dinamani | 66a8796 | 2013-02-04 10:39:30 -0800 | [diff] [blame] | 125 | /* Volume down button is tied in with RESIN on MSM8974. */ |
Deepa Dinamani | 07f1571 | 2013-03-08 17:02:13 -0800 | [diff] [blame] | 126 | if (pmic_ver == PMIC_VERSION_V2) |
Deepa Dinamani | 13bfc85 | 2013-02-05 17:56:47 -0800 | [diff] [blame] | 127 | return pm8x41_resin_bark_workaround_status(); |
| 128 | else |
| 129 | return pm8x41_resin_status(); |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | static 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 | |
Deepa Dinamani | b9a5720 | 2012-12-20 18:05:11 -0800 | [diff] [blame] | 143 | /* Set up params for h/w CE. */ |
| 144 | void target_crypto_init_params() |
| 145 | { |
| 146 | struct crypto_init_params ce_params; |
| 147 | |
| 148 | /* Set up base addresses and instance. */ |
| 149 | ce_params.crypto_instance = CE_INSTANCE; |
| 150 | ce_params.crypto_base = MSM_CE2_BASE; |
| 151 | ce_params.bam_base = MSM_CE2_BAM_BASE; |
| 152 | |
| 153 | /* Set up BAM config. */ |
| 154 | ce_params.bam_ee = CE_EE; |
| 155 | ce_params.pipes.read_pipe = CE_READ_PIPE; |
| 156 | ce_params.pipes.write_pipe = CE_WRITE_PIPE; |
| 157 | |
| 158 | /* Assign buffer sizes. */ |
| 159 | ce_params.num_ce = CE_ARRAY_SIZE; |
| 160 | ce_params.read_fifo_size = CE_FIFO_SIZE; |
| 161 | ce_params.write_fifo_size = CE_FIFO_SIZE; |
| 162 | |
Deepa Dinamani | e505d3d | 2013-05-14 16:55:38 -0700 | [diff] [blame] | 163 | /* BAM is initialized by TZ for this platform. |
| 164 | * Do not do it again as the initialization address space |
| 165 | * is locked. |
| 166 | */ |
| 167 | ce_params.do_bam_init = 0; |
| 168 | |
Deepa Dinamani | b9a5720 | 2012-12-20 18:05:11 -0800 | [diff] [blame] | 169 | crypto_init_params(&ce_params); |
| 170 | } |
| 171 | |
| 172 | crypto_engine_type board_ce_type(void) |
| 173 | { |
| 174 | return CRYPTO_ENGINE_TYPE_HW; |
| 175 | } |
| 176 | |
Channagoud Kadabi | c1fdc8d | 2013-04-05 11:29:23 -0700 | [diff] [blame] | 177 | #if MMC_SDHCI_SUPPORT |
| 178 | static target_mmc_sdhci_init() |
| 179 | { |
| 180 | struct mmc_config_data config; |
| 181 | uint32_t soc_ver = 0; |
| 182 | |
| 183 | /* Enable sdhci mode */ |
| 184 | sdhci_mode_enable(1); |
| 185 | |
| 186 | soc_ver = board_soc_version(); |
| 187 | |
| 188 | /* |
| 189 | * 8974 v1 fluid devices, have a hardware bug |
| 190 | * which limits the bus width to 4 bit. |
| 191 | */ |
| 192 | switch(board_hardware_id()) |
| 193 | { |
| 194 | case HW_PLATFORM_FLUID: |
| 195 | if (soc_ver >= BOARD_SOC_VERSION2) |
| 196 | config.bus_width = DATA_BUS_WIDTH_8BIT; |
| 197 | else |
| 198 | config.bus_width = DATA_BUS_WIDTH_4BIT; |
| 199 | break; |
| 200 | default: |
| 201 | config.bus_width = DATA_BUS_WIDTH_8BIT; |
| 202 | }; |
| 203 | |
| 204 | config.max_clk_rate = MMC_CLK_200MHZ; |
| 205 | |
| 206 | /* Trying Slot 1*/ |
| 207 | config.slot = 1; |
| 208 | config.base = mmc_sdhci_base[config.slot - 1]; |
| 209 | |
| 210 | if (!(dev = mmc_init(&config))) { |
| 211 | /* Trying Slot 2 next */ |
| 212 | config.slot = 2; |
| 213 | config.base = mmc_sdhci_base[config.slot - 1]; |
| 214 | if (!(dev = mmc_init(&config))) { |
| 215 | dprintf(CRITICAL, "mmc init failed!"); |
| 216 | ASSERT(0); |
| 217 | } |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | struct mmc_device *target_mmc_device() |
| 222 | { |
| 223 | return dev; |
| 224 | } |
| 225 | #else |
| 226 | static target_mmc_mci_init() |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 227 | { |
Deepa Dinamani | ca5ad85 | 2012-05-07 18:19:47 -0700 | [diff] [blame] | 228 | uint32_t base_addr; |
| 229 | uint8_t slot; |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 230 | |
Channagoud Kadabi | c1fdc8d | 2013-04-05 11:29:23 -0700 | [diff] [blame] | 231 | /* Trying Slot 1 */ |
| 232 | slot = 1; |
| 233 | base_addr = mmc_sdc_base[slot - 1]; |
| 234 | |
| 235 | if (mmc_boot_main(slot, base_addr)) |
| 236 | { |
| 237 | /* Trying Slot 2 next */ |
| 238 | slot = 2; |
| 239 | base_addr = mmc_sdc_base[slot - 1]; |
| 240 | if (mmc_boot_main(slot, base_addr)) { |
| 241 | dprintf(CRITICAL, "mmc init failed!"); |
| 242 | ASSERT(0); |
| 243 | } |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | /* |
| 248 | * Function to set the capabilities for the host |
| 249 | */ |
| 250 | void target_mmc_caps(struct mmc_host *host) |
| 251 | { |
| 252 | uint32_t soc_ver = 0; |
| 253 | |
| 254 | soc_ver = board_soc_version(); |
| 255 | |
| 256 | /* |
| 257 | * 8974 v1 fluid devices, have a hardware bug |
| 258 | * which limits the bus width to 4 bit. |
| 259 | */ |
| 260 | switch(board_hardware_id()) |
| 261 | { |
| 262 | case HW_PLATFORM_FLUID: |
| 263 | if (soc_ver >= BOARD_SOC_VERSION2) |
| 264 | host->caps.bus_width = MMC_BOOT_BUS_WIDTH_8_BIT; |
| 265 | else |
| 266 | host->caps.bus_width = MMC_BOOT_BUS_WIDTH_4_BIT; |
| 267 | break; |
| 268 | default: |
| 269 | host->caps.bus_width = MMC_BOOT_BUS_WIDTH_8_BIT; |
| 270 | }; |
| 271 | |
| 272 | host->caps.ddr_mode = 1; |
| 273 | host->caps.hs200_mode = 1; |
| 274 | host->caps.hs_clk_rate = MMC_CLK_96MHZ; |
| 275 | } |
| 276 | #endif |
| 277 | |
| 278 | |
| 279 | void target_init(void) |
| 280 | { |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 281 | dprintf(INFO, "target_init()\n"); |
| 282 | |
Deepa Dinamani | c2a9b36 | 2012-02-23 15:15:54 -0800 | [diff] [blame] | 283 | spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID); |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 284 | |
Deepa Dinamani | 07f1571 | 2013-03-08 17:02:13 -0800 | [diff] [blame] | 285 | /* Save PM8941 version info. */ |
| 286 | pmic_ver = pm8x41_get_pmic_rev(); |
| 287 | |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 288 | target_keystatus(); |
| 289 | |
Deepa Dinamani | b9a5720 | 2012-12-20 18:05:11 -0800 | [diff] [blame] | 290 | if (target_use_signed_kernel()) |
| 291 | target_crypto_init_params(); |
Siddhartha Agrawal | 7ac6d51 | 2013-01-22 18:39:50 -0800 | [diff] [blame] | 292 | /* Display splash screen if enabled */ |
| 293 | #if DISPLAY_SPLASH_SCREEN |
Channagoud Kadabi | 8a9c6a2 | 2013-02-05 14:43:48 -0800 | [diff] [blame] | 294 | dprintf(INFO, "Display Init: Start\n"); |
Siddhartha Agrawal | 7ac6d51 | 2013-01-22 18:39:50 -0800 | [diff] [blame] | 295 | display_init(); |
Channagoud Kadabi | 8a9c6a2 | 2013-02-05 14:43:48 -0800 | [diff] [blame] | 296 | dprintf(INFO, "Display Init: Done\n"); |
Siddhartha Agrawal | 7ac6d51 | 2013-01-22 18:39:50 -0800 | [diff] [blame] | 297 | #endif |
Deepa Dinamani | b9a5720 | 2012-12-20 18:05:11 -0800 | [diff] [blame] | 298 | |
Channagoud Kadabi | 744c890 | 2013-04-02 11:54:53 -0700 | [diff] [blame] | 299 | /* |
| 300 | * Set drive strength & pull ctrl for |
| 301 | * emmc |
| 302 | */ |
| 303 | set_sdc_power_ctrl(); |
| 304 | |
Channagoud Kadabi | c1fdc8d | 2013-04-05 11:29:23 -0700 | [diff] [blame] | 305 | #if MMC_SDHCI_SUPPORT |
| 306 | target_mmc_sdhci_init(); |
| 307 | #else |
| 308 | target_mmc_mci_init(); |
| 309 | #endif |
Deepa Dinamani | d18b47a | 2012-06-27 13:06:03 -0700 | [diff] [blame] | 310 | |
Channagoud Kadabi | c1fdc8d | 2013-04-05 11:29:23 -0700 | [diff] [blame] | 311 | /* |
| 312 | * MMC initialization is complete, read the partition table info |
| 313 | */ |
| 314 | if (partition_read_table()) { |
| 315 | dprintf(CRITICAL, "Error reading the partition table info\n"); |
| 316 | ASSERT(0); |
Deepa Dinamani | ca5ad85 | 2012-05-07 18:19:47 -0700 | [diff] [blame] | 317 | } |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | unsigned board_machtype(void) |
| 321 | { |
| 322 | return target_id; |
| 323 | } |
| 324 | |
| 325 | /* Do any target specific intialization needed before entering fastboot mode */ |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 326 | #ifdef SSD_ENABLE |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 327 | static void ssd_load_keystore_from_emmc() |
| 328 | { |
| 329 | uint64_t ptn = 0; |
| 330 | int index = -1; |
| 331 | uint32_t size = SSD_PARTITION_SIZE; |
| 332 | int ret = -1; |
| 333 | |
Channagoud Kadabi | f84830c | 2013-04-19 14:35:47 -0700 | [diff] [blame] | 334 | uint32_t *buffer = (uint32_t *)memalign(CACHE_LINE, |
| 335 | ROUNDUP(SSD_PARTITION_SIZE, CACHE_LINE)); |
| 336 | |
| 337 | if (!buffer) { |
| 338 | dprintf(CRITICAL, "Error Allocating memory for SSD buffer\n"); |
| 339 | ASSERT(0); |
| 340 | } |
| 341 | |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 342 | index = partition_get_index("ssd"); |
| 343 | |
| 344 | ptn = partition_get_offset(index); |
| 345 | if(ptn == 0){ |
| 346 | dprintf(CRITICAL,"ERROR: ssd parition not found"); |
| 347 | return; |
| 348 | } |
| 349 | |
| 350 | if(mmc_read(ptn, buffer, size)){ |
| 351 | dprintf(CRITICAL,"ERROR:Cannot read data\n"); |
| 352 | return; |
| 353 | } |
| 354 | |
| 355 | ret = scm_protect_keystore((uint32_t *)&buffer[0],size); |
| 356 | if(ret != 0) |
| 357 | dprintf(CRITICAL,"ERROR: scm_protect_keystore Failed"); |
Channagoud Kadabi | f84830c | 2013-04-19 14:35:47 -0700 | [diff] [blame] | 358 | |
| 359 | free(buffer); |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 360 | } |
| 361 | #endif |
| 362 | |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 363 | void target_fastboot_init(void) |
| 364 | { |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 365 | /* Set the BOOT_DONE flag in PM8921 */ |
| 366 | pm8x41_set_boot_done(); |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 367 | |
| 368 | #ifdef SSD_ENABLE |
| 369 | clock_ce_enable(SSD_CE_INSTANCE_1); |
| 370 | ssd_load_keystore_from_emmc(); |
| 371 | #endif |
Deepa Dinamani | 7d6c897 | 2011-12-14 15:16:56 -0800 | [diff] [blame] | 372 | } |
Neeti Desai | 465491e | 2012-07-31 12:53:35 -0700 | [diff] [blame] | 373 | |
| 374 | /* Detect the target type */ |
| 375 | void target_detect(struct board_data *board) |
| 376 | { |
| 377 | board->target = LINUX_MACHTYPE_UNKNOWN; |
| 378 | } |
| 379 | |
| 380 | /* Detect the modem type */ |
| 381 | void target_baseband_detect(struct board_data *board) |
| 382 | { |
Channagoud Kadabi | f1d4442 | 2013-02-21 22:59:35 -0800 | [diff] [blame] | 383 | uint32_t platform; |
| 384 | uint32_t platform_subtype; |
| 385 | |
| 386 | platform = board->platform; |
| 387 | platform_subtype = board->platform_subtype; |
| 388 | |
| 389 | /* |
| 390 | * Look for platform subtype if present, else |
| 391 | * check for platform type to decide on the |
| 392 | * baseband type |
| 393 | */ |
| 394 | switch(platform_subtype) { |
| 395 | case HW_PLATFORM_SUBTYPE_UNKNOWN: |
| 396 | break; |
Joel King | ead31e8 | 2013-04-20 11:26:01 -0700 | [diff] [blame] | 397 | case HW_PLATFORM_SUBTYPE_MDM: |
| 398 | board->baseband = BASEBAND_MDM; |
| 399 | return; |
Channagoud Kadabi | f1d4442 | 2013-02-21 22:59:35 -0800 | [diff] [blame] | 400 | default: |
| 401 | dprintf(CRITICAL, "Platform Subtype : %u is not supported\n",platform_subtype); |
| 402 | ASSERT(0); |
| 403 | }; |
| 404 | |
| 405 | switch(platform) { |
| 406 | case MSM8974: |
Deepa Dinamani | 713a76f | 2013-05-03 13:17:24 -0700 | [diff] [blame] | 407 | case MSM8274: |
| 408 | case MSM8674: |
Neeti Desai | 465491e | 2012-07-31 12:53:35 -0700 | [diff] [blame] | 409 | board->baseband = BASEBAND_MSM; |
Channagoud Kadabi | f1d4442 | 2013-02-21 22:59:35 -0800 | [diff] [blame] | 410 | break; |
| 411 | case APQ8074: |
| 412 | board->baseband = BASEBAND_APQ; |
| 413 | break; |
| 414 | default: |
| 415 | dprintf(CRITICAL, "Platform type: %u is not supported\n",platform); |
| 416 | ASSERT(0); |
| 417 | }; |
Neeti Desai | 465491e | 2012-07-31 12:53:35 -0700 | [diff] [blame] | 418 | } |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 419 | |
Deepa Dinamani | 927a6b6 | 2013-03-28 17:05:32 -0700 | [diff] [blame] | 420 | unsigned target_baseband() |
| 421 | { |
| 422 | return board_baseband(); |
| 423 | } |
| 424 | |
Deepa Dinamani | 9a61293 | 2012-08-14 16:15:03 -0700 | [diff] [blame] | 425 | void target_serialno(unsigned char *buf) |
| 426 | { |
| 427 | unsigned int serialno; |
| 428 | if (target_is_emmc_boot()) { |
| 429 | serialno = mmc_get_psn(); |
| 430 | snprintf((char *)buf, 13, "%x", serialno); |
| 431 | } |
| 432 | } |
Amol Jadi | 6639d45 | 2012-08-16 14:51:19 -0700 | [diff] [blame] | 433 | |
| 434 | unsigned check_reboot_mode(void) |
| 435 | { |
| 436 | uint32_t restart_reason = 0; |
Channagoud Kadabi | 8c8587f | 2013-02-08 12:46:09 -0800 | [diff] [blame] | 437 | uint32_t soc_ver = 0; |
| 438 | uint32_t restart_reason_addr; |
| 439 | |
| 440 | soc_ver = board_soc_version(); |
| 441 | |
| 442 | if (soc_ver >= BOARD_SOC_VERSION2) |
| 443 | restart_reason_addr = RESTART_REASON_ADDR_V2; |
| 444 | else |
| 445 | restart_reason_addr = RESTART_REASON_ADDR; |
Amol Jadi | 6639d45 | 2012-08-16 14:51:19 -0700 | [diff] [blame] | 446 | |
| 447 | /* Read reboot reason and scrub it */ |
Channagoud Kadabi | 8c8587f | 2013-02-08 12:46:09 -0800 | [diff] [blame] | 448 | restart_reason = readl(restart_reason_addr); |
| 449 | writel(0x00, restart_reason_addr); |
Amol Jadi | 6639d45 | 2012-08-16 14:51:19 -0700 | [diff] [blame] | 450 | |
| 451 | return restart_reason; |
| 452 | } |
Neeti Desai | 120b55d | 2012-08-20 17:15:56 -0700 | [diff] [blame] | 453 | |
| 454 | void reboot_device(unsigned reboot_reason) |
| 455 | { |
Channagoud Kadabi | 8c8587f | 2013-02-08 12:46:09 -0800 | [diff] [blame] | 456 | uint32_t soc_ver = 0; |
| 457 | |
| 458 | soc_ver = board_soc_version(); |
| 459 | |
Neeti Desai | 120b55d | 2012-08-20 17:15:56 -0700 | [diff] [blame] | 460 | /* Write the reboot reason */ |
Channagoud Kadabi | 8c8587f | 2013-02-08 12:46:09 -0800 | [diff] [blame] | 461 | if (soc_ver >= BOARD_SOC_VERSION2) |
| 462 | writel(reboot_reason, RESTART_REASON_ADDR_V2); |
| 463 | else |
| 464 | writel(reboot_reason, RESTART_REASON_ADDR); |
Neeti Desai | 120b55d | 2012-08-20 17:15:56 -0700 | [diff] [blame] | 465 | |
| 466 | /* Configure PMIC for warm reset */ |
Deepa Dinamani | 07f1571 | 2013-03-08 17:02:13 -0800 | [diff] [blame] | 467 | if (pmic_ver == PMIC_VERSION_V2) |
| 468 | pm8x41_v2_reset_configure(PON_PSHOLD_WARM_RESET); |
| 469 | else |
| 470 | pm8x41_reset_configure(PON_PSHOLD_WARM_RESET); |
Neeti Desai | 120b55d | 2012-08-20 17:15:56 -0700 | [diff] [blame] | 471 | |
Deepa Dinamani | 1e09494 | 2012-10-30 15:49:02 -0700 | [diff] [blame] | 472 | /* Disable Watchdog Debug. |
| 473 | * Required becuase of a H/W bug which causes the system to |
| 474 | * reset partially even for non watchdog resets. |
| 475 | */ |
| 476 | writel(readl(GCC_WDOG_DEBUG) & ~(1 << WDOG_DEBUG_DISABLE_BIT), GCC_WDOG_DEBUG); |
| 477 | |
Deepa Dinamani | e0808e5 | 2012-11-26 15:22:46 -0800 | [diff] [blame] | 478 | dsb(); |
| 479 | |
| 480 | /* Wait until the write takes effect. */ |
| 481 | while(readl(GCC_WDOG_DEBUG) & (1 << WDOG_DEBUG_DISABLE_BIT)); |
| 482 | |
Neeti Desai | 120b55d | 2012-08-20 17:15:56 -0700 | [diff] [blame] | 483 | /* Drop PS_HOLD for MSM */ |
| 484 | writel(0x00, MPM2_MPM_PS_HOLD); |
| 485 | |
| 486 | mdelay(5000); |
| 487 | |
| 488 | dprintf(CRITICAL, "Rebooting failed\n"); |
| 489 | } |
Siddhartha Agrawal | 7ac6d51 | 2013-01-22 18:39:50 -0800 | [diff] [blame] | 490 | |
Pavel Nedev | a4c9d3a | 2013-05-15 14:42:34 +0300 | [diff] [blame^] | 491 | int set_download_mode(enum dload_mode mode) |
Pavel Nedev | 0351149 | 2013-03-08 19:05:32 -0800 | [diff] [blame] | 492 | { |
Pavel Nedev | a4c9d3a | 2013-05-15 14:42:34 +0300 | [diff] [blame^] | 493 | dload_util_write_cookie(mode == NORMAL_DLOAD ? |
| 494 | DLOAD_MODE_ADDR_V2 : EMERGENCY_DLOAD_MODE_ADDR_V2, mode); |
Pavel Nedev | 0351149 | 2013-03-08 19:05:32 -0800 | [diff] [blame] | 495 | |
| 496 | return 0; |
| 497 | } |
| 498 | |
Eugene Yasman | a0d1812 | 2013-02-26 13:23:05 +0200 | [diff] [blame] | 499 | /* Do target specific usb initialization */ |
| 500 | void target_usb_init(void) |
| 501 | { |
| 502 | /* Enable secondary USB PHY on DragonBoard8074 */ |
| 503 | if (board_hardware_id() == HW_PLATFORM_DRAGON) { |
| 504 | /* Route ChipIDea to use secondary USB HS port2 */ |
| 505 | writel_relaxed(1, USB2_PHY_SEL); |
| 506 | |
| 507 | /* Enable access to secondary PHY by clamping the low |
| 508 | * voltage interface between DVDD of the PHY and Vddcx |
| 509 | * (set bit16 (USB2_PHY_HS2_DIG_CLAMP_N_2) = 1) */ |
| 510 | writel_relaxed(readl_relaxed(USB_OTG_HS_PHY_SEC_CTRL) |
| 511 | | 0x00010000, USB_OTG_HS_PHY_SEC_CTRL); |
| 512 | |
| 513 | /* Perform power-on-reset of the PHY. |
| 514 | * Delay values are arbitrary */ |
| 515 | writel_relaxed(readl_relaxed(USB_OTG_HS_PHY_CTRL)|1, |
| 516 | USB_OTG_HS_PHY_CTRL); |
| 517 | thread_sleep(10); |
| 518 | writel_relaxed(readl_relaxed(USB_OTG_HS_PHY_CTRL) & 0xFFFFFFFE, |
| 519 | USB_OTG_HS_PHY_CTRL); |
| 520 | thread_sleep(10); |
| 521 | |
| 522 | /* Enable HSUSB PHY port for ULPI interface, |
| 523 | * then configure related parameters within the PHY */ |
| 524 | writel_relaxed(((readl_relaxed(USB_PORTSC) & 0xC0000000) |
| 525 | | 0x8c000004), USB_PORTSC); |
| 526 | } |
| 527 | } |
| 528 | |
Siddhartha Agrawal | 7ac6d51 | 2013-01-22 18:39:50 -0800 | [diff] [blame] | 529 | /* Returns 1 if target supports continuous splash screen. */ |
| 530 | int target_cont_splash_screen() |
| 531 | { |
Siddhartha Agrawal | 17a6b83 | 2013-02-17 18:36:25 -0800 | [diff] [blame] | 532 | switch(board_hardware_id()) |
Siddhartha Agrawal | 7ac6d51 | 2013-01-22 18:39:50 -0800 | [diff] [blame] | 533 | { |
Siddhartha Agrawal | 17a6b83 | 2013-02-17 18:36:25 -0800 | [diff] [blame] | 534 | case HW_PLATFORM_SURF: |
| 535 | case HW_PLATFORM_MTP: |
| 536 | case HW_PLATFORM_FLUID: |
Asaf Penso | b85263f | 2013-05-01 10:54:34 +0300 | [diff] [blame] | 537 | case HW_PLATFORM_DRAGON: |
Siddhartha Agrawal | 17a6b83 | 2013-02-17 18:36:25 -0800 | [diff] [blame] | 538 | dprintf(SPEW, "Target_cont_splash=1\n"); |
| 539 | return 1; |
| 540 | break; |
| 541 | default: |
| 542 | dprintf(SPEW, "Target_cont_splash=0\n"); |
| 543 | return 0; |
Siddhartha Agrawal | 7ac6d51 | 2013-01-22 18:39:50 -0800 | [diff] [blame] | 544 | } |
| 545 | } |
sundarajan srinivasan | b5db0a9 | 2013-02-12 19:19:27 -0800 | [diff] [blame] | 546 | |
| 547 | unsigned target_pause_for_battery_charge(void) |
| 548 | { |
| 549 | uint8_t pon_reason = pm8x41_get_pon_reason(); |
| 550 | |
| 551 | /* This function will always return 0 to facilitate |
| 552 | * automated testing/reboot with usb connected. |
| 553 | * uncomment if this feature is needed */ |
| 554 | /* if ((pon_reason == USB_CHG) || (pon_reason == DC_CHG)) |
| 555 | return 1;*/ |
| 556 | |
| 557 | return 0; |
| 558 | } |
sundarajan srinivasan | a098d83 | 2013-03-07 12:19:30 -0800 | [diff] [blame] | 559 | |
| 560 | void target_usb_stop(void) |
| 561 | { |
| 562 | #ifdef SSD_ENABLE |
| 563 | clock_ce_disable(SSD_CE_INSTANCE_1); |
| 564 | #endif |
| 565 | } |
Deepa Dinamani | 65df982 | 2013-03-08 13:38:34 -0800 | [diff] [blame] | 566 | |
| 567 | void shutdown_device() |
| 568 | { |
| 569 | dprintf(CRITICAL, "Going down for shutdown.\n"); |
| 570 | |
| 571 | /* Configure PMIC for shutdown. */ |
| 572 | if (pmic_ver == PMIC_VERSION_V2) |
| 573 | pm8x41_v2_reset_configure(PON_PSHOLD_SHUTDOWN); |
| 574 | else |
| 575 | pm8x41_reset_configure(PON_PSHOLD_SHUTDOWN); |
| 576 | |
| 577 | /* Drop PS_HOLD for MSM */ |
| 578 | writel(0x00, MPM2_MPM_PS_HOLD); |
| 579 | |
| 580 | mdelay(5000); |
| 581 | |
| 582 | dprintf(CRITICAL, "Shutdown failed\n"); |
Channagoud Kadabi | 744c890 | 2013-04-02 11:54:53 -0700 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | static void set_sdc_power_ctrl() |
| 586 | { |
| 587 | /* Drive strength configs for sdc pins */ |
| 588 | struct tlmm_cfgs sdc1_hdrv_cfg[] = |
| 589 | { |
| 590 | { SDC1_CLK_HDRV_CTL_OFF, TLMM_CUR_VAL_16MA, TLMM_HDRV_MASK }, |
| 591 | { SDC1_CMD_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK }, |
| 592 | { SDC1_DATA_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK }, |
| 593 | }; |
| 594 | |
| 595 | /* Pull configs for sdc pins */ |
| 596 | struct tlmm_cfgs sdc1_pull_cfg[] = |
| 597 | { |
| 598 | { SDC1_CLK_PULL_CTL_OFF, TLMM_NO_PULL, TLMM_PULL_MASK }, |
| 599 | { SDC1_CMD_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK }, |
| 600 | { SDC1_DATA_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK }, |
| 601 | }; |
| 602 | |
| 603 | /* Set the drive strength & pull control values */ |
| 604 | tlmm_set_hdrive_ctrl(sdc1_hdrv_cfg, ARRAY_SIZE(sdc1_hdrv_cfg)); |
| 605 | tlmm_set_pull_ctrl(sdc1_pull_cfg, ARRAY_SIZE(sdc1_pull_cfg)); |
| 606 | } |
Stanimir Varbanov | f64a029 | 2013-04-29 11:58:27 +0300 | [diff] [blame] | 607 | |
| 608 | int emmc_recovery_init(void) |
| 609 | { |
| 610 | return _emmc_recovery_init(); |
| 611 | } |