| /* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are |
| * met: |
| * * Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * * Redistributions in binary form must reproduce the above |
| * copyright notice, this list of conditions and the following |
| * disclaimer in the documentation and/or other materials provided |
| * with the distribution. |
| * * Neither the name of The Linux Foundation nor the names of its |
| * contributors may be used to endorse or promote products derived |
| * from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include <debug.h> |
| #include <platform/iomap.h> |
| #include <reg.h> |
| #include <target.h> |
| #include <platform.h> |
| #include <uart_dm.h> |
| #include <mmc.h> |
| #include <spmi.h> |
| #include <board.h> |
| #include <hsusb.h> |
| #include <smem.h> |
| #include <baseband.h> |
| #include <dev/keys.h> |
| #include <pm8x41.h> |
| #include <platform/gpio.h> |
| #include <platform/irqs.h> |
| |
| #define PMIC_ARB_CHANNEL_NUM 0 |
| #define PMIC_ARB_OWNER_ID 0 |
| #define FASTBOOT_MODE 0x77665500 |
| |
| static uint32_t mmc_pwrctl_base[] = |
| { MSM_SDC1_BASE, MSM_SDC2_BASE, MSM_SDC3_BASE, MSM_SDC4_BASE }; |
| |
| static uint32_t mmc_sdhci_base[] = |
| { MSM_SDC1_SDHCI_BASE, MSM_SDC2_SDHCI_BASE }; |
| |
| static uint32_t mmc_sdc_pwrctl_irq[] = |
| { SDCC1_PWRCTL_IRQ, SDCC2_PWRCTL_IRQ }; |
| |
| static void set_sdc_power_ctrl(); |
| |
| struct mmc_device *dev; |
| void target_early_init(void) |
| { |
| #if WITH_DEBUG_UART |
| uart_dm_init(4, 0, BLSP1_UART4_BASE); /* DEBUG_UART BLSP1_UART5 */ |
| #endif |
| } |
| |
| /* Return 1 if vol_down pressed */ |
| uint32_t target_volume_down() |
| { |
| return pm8x41_resin_status(); |
| } |
| |
| static void target_keystatus() |
| { |
| keys_init(); |
| |
| if(target_volume_down()) |
| keys_post_event(KEY_VOLUMEDOWN, 1); |
| } |
| |
| static void set_sdc_power_ctrl() |
| { |
| /* Drive strength configs for sdc pins */ |
| struct tlmm_cfgs sdc1_hdrv_cfg[] = |
| { |
| { SDC1_CLK_HDRV_CTL_OFF, TLMM_CUR_VAL_16MA, TLMM_HDRV_MASK }, |
| { SDC1_CMD_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK }, |
| { SDC1_DATA_HDRV_CTL_OFF, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK }, |
| }; |
| |
| /* Pull configs for sdc pins */ |
| struct tlmm_cfgs sdc1_pull_cfg[] = |
| { |
| { SDC1_CLK_PULL_CTL_OFF, TLMM_NO_PULL, TLMM_PULL_MASK }, |
| { SDC1_CMD_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK }, |
| { SDC1_DATA_PULL_CTL_OFF, TLMM_PULL_UP, TLMM_PULL_MASK }, |
| { SDC1_RCLK_PULL_CTL_OFF, TLMM_PULL_DOWN, TLMM_PULL_MASK }, |
| }; |
| |
| /* Set the drive strength & pull control values */ |
| tlmm_set_hdrive_ctrl(sdc1_hdrv_cfg, ARRAY_SIZE(sdc1_hdrv_cfg)); |
| tlmm_set_pull_ctrl(sdc1_pull_cfg, ARRAY_SIZE(sdc1_pull_cfg)); |
| } |
| |
| void target_sdc_init() |
| { |
| struct mmc_config_data config; |
| |
| /* Set drive strength & pull ctrl values */ |
| set_sdc_power_ctrl(); |
| |
| config.bus_width = DATA_BUS_WIDTH_8BIT; |
| config.max_clk_rate = MMC_CLK_200MHZ; |
| |
| /* Try slot 1*/ |
| config.slot = 1; |
| config.sdhc_base = mmc_sdhci_base[config.slot - 1]; |
| config.pwrctl_base = mmc_pwrctl_base[config.slot - 1]; |
| config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1]; |
| |
| if (!(dev = mmc_init(&config))) { |
| /* Try slot 2 */ |
| config.slot = 2; |
| config.sdhc_base = mmc_sdhci_base[config.slot - 1]; |
| config.pwrctl_base = mmc_pwrctl_base[config.slot - 1]; |
| config.pwr_irq = mmc_sdc_pwrctl_irq[config.slot - 1]; |
| |
| if (!(dev = mmc_init(&config))) { |
| dprintf(CRITICAL, "mmc init failed!"); |
| ASSERT(0); |
| } |
| } |
| } |
| |
| |
| /*Turn on DVB tuner regulator required by |
| * kernel drivers for probing devices*/ |
| static void dvb_tuner_enable(void) |
| { |
| struct pm8x41_mpp mpp; |
| mpp.base = PM8x41_MMP2_BASE; |
| mpp.mode = MPP_HIGH; |
| mpp.vin = MPP_VIN3; |
| |
| pm8x41_config_output_mpp(&mpp); |
| pm8x41_enable_mpp(&mpp, MPP_ENABLE); |
| |
| /* Need delay before power on regulators */ |
| mdelay(20); |
| } |
| |
| void target_init(void) |
| { |
| dprintf(INFO, "target_init()\n"); |
| |
| spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID); |
| |
| target_keystatus(); |
| |
| target_sdc_init(); |
| |
| /* Storage initialization is complete, read the partition table info */ |
| if (partition_read_table()) |
| { |
| dprintf(CRITICAL, "Error reading the partition table info\n"); |
| ASSERT(0); |
| } |
| |
| dvb_tuner_enable(); |
| } |
| |
| void target_serialno(unsigned char *buf) |
| { |
| uint32_t serialno; |
| if (target_is_emmc_boot()) { |
| serialno = mmc_get_psn(); |
| snprintf((char *)buf, 13, "%x", serialno); |
| } |
| } |
| |
| unsigned board_machtype(void) |
| { |
| return LINUX_MACHTYPE_UNKNOWN; |
| } |
| |
| /* Do target specific usb initialization */ |
| void target_usb_init(void) |
| { |
| uint32_t val; |
| |
| /* Route ChipIDea to use secondary USB HS port2 */ |
| writel(1, USB2_PHY_SEL); |
| |
| /* Enable access to secondary PHY by clamping the low |
| * voltage interface between DVDD of the PHY and Vddcx |
| * (set bit16 (USB2_PHY_HS2_DIG_CLAMP_N_2) = 1) */ |
| writel(readl(USB_OTG_HS_PHY_SEC_CTRL) |
| | 0x00010000, USB_OTG_HS_PHY_SEC_CTRL); |
| |
| /* Perform power-on-reset of the PHY. |
| * Delay values are arbitrary */ |
| writel(readl(USB_OTG_HS_PHY_SEC_CTRL)|1, |
| USB_OTG_HS_PHY_SEC_CTRL); |
| thread_sleep(10); |
| writel(readl(USB_OTG_HS_PHY_SEC_CTRL) & 0xFFFFFFFE, |
| USB_OTG_HS_PHY_SEC_CTRL); |
| thread_sleep(10); |
| |
| /* Select and enable external configuration with USB PHY */ |
| ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_SET); |
| |
| /* Enable sess_vld */ |
| val = readl(USB_GENCONFIG_2) | GEN2_SESS_VLD_CTRL_EN; |
| writel(val, USB_GENCONFIG_2); |
| |
| /* Enable external vbus configuration in the LINK */ |
| val = readl(USB_USBCMD); |
| val |= SESS_VLD_CTRL; |
| writel(val, USB_USBCMD); |
| } |
| |
| void target_usb_stop(void) |
| { |
| /* Disable VBUS mimicing in the controller. */ |
| ulpi_write(ULPI_MISC_A_VBUSVLDEXTSEL | ULPI_MISC_A_VBUSVLDEXT, ULPI_MISC_A_CLEAR); |
| } |
| |
| void reboot_device(unsigned reboot_reason) |
| { |
| uint8_t reset_type = 0; |
| |
| /* Write the reboot reason */ |
| writel(reboot_reason, RESTART_REASON_ADDR); |
| |
| if(reboot_reason == FASTBOOT_MODE) |
| reset_type = PON_PSHOLD_WARM_RESET; |
| else |
| reset_type = PON_PSHOLD_HARD_RESET; |
| |
| pm8x41_reset_configure(reset_type); |
| |
| /* Drop PS_HOLD for MSM */ |
| writel(0x00, MPM2_MPM_PS_HOLD); |
| mdelay(5000); |
| |
| dprintf(CRITICAL, "Rebooting failed\n"); |
| } |
| |
| unsigned check_reboot_mode(void) |
| { |
| uint32_t restart_reason = 0; |
| |
| /* Read reboot reason and scrub it */ |
| restart_reason = readl(RESTART_REASON_ADDR); |
| writel(0x00, RESTART_REASON_ADDR); |
| |
| return restart_reason; |
| } |
| |
| /* Detect the target type */ |
| void target_detect(struct board_data *board) |
| { |
| board->target = LINUX_MACHTYPE_UNKNOWN; |
| } |
| |
| void target_baseband_detect(struct board_data *board) |
| { |
| uint32_t platform; |
| |
| platform = board->platform; |
| switch(platform) |
| { |
| case MPQ8092: |
| board->baseband = BASEBAND_APQ; |
| break; |
| default: |
| dprintf(CRITICAL, "Platform type: %u is not supported\n", platform); |
| ASSERT(0); |
| }; |
| } |
| |
| unsigned target_baseband() |
| { |
| return board_baseband(); |
| } |
| |
| void *target_mmc_device() |
| { |
| return (void *) dev; |
| } |
| |
| |
| int emmc_recovery_init(void) |
| { |
| return _emmc_recovery_init(); |
| } |