blob: 5bbfaca1461976afea97c4d37150dc35aad8c0c5 [file] [log] [blame]
Deepa Dinamani1e094942012-10-30 15:49:02 -07001/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
Deepa Dinamani7d6c8972011-12-14 15:16:56 -08002 *
3 * Redistribution and use in source and binary forms, with or without
Deepa Dinamani1e094942012-10-30 15:49:02 -07004 * 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 Dinamani7d6c8972011-12-14 15:16:56 -080015 *
Deepa Dinamani1e094942012-10-30 15:49:02 -070016 * 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 Dinamani7d6c8972011-12-14 15:16:56 -080027 */
28
29#include <debug.h>
30#include <platform/iomap.h>
31#include <reg.h>
32#include <target.h>
33#include <platform.h>
Deepa Dinamani26e93262012-05-21 17:35:14 -070034#include <uart_dm.h>
Amol Jadi29f95032012-06-22 12:52:54 -070035#include <mmc.h>
Deepa Dinamanic2a9b362012-02-23 15:15:54 -080036#include <spmi.h>
Neeti Desai465491e2012-07-31 12:53:35 -070037#include <board.h>
38#include <smem.h>
39#include <baseband.h>
Deepa Dinamani9a612932012-08-14 16:15:03 -070040#include <dev/keys.h>
41#include <pm8x41.h>
Deepa Dinamani7d6c8972011-12-14 15:16:56 -080042
43static unsigned int target_id;
Deepa Dinamani7d6c8972011-12-14 15:16:56 -080044
Deepa Dinamanic2a9b362012-02-23 15:15:54 -080045#define PMIC_ARB_CHANNEL_NUM 0
46#define PMIC_ARB_OWNER_ID 0
47
Deepa Dinamani1e094942012-10-30 15:49:02 -070048#define WDOG_DEBUG_DISABLE_BIT 17
Deepa Dinamani7d6c8972011-12-14 15:16:56 -080049
Deepa Dinamanica5ad852012-05-07 18:19:47 -070050static uint32_t mmc_sdc_base[] =
51 { MSM_SDC1_BASE, MSM_SDC2_BASE, MSM_SDC3_BASE, MSM_SDC4_BASE };
52
Deepa Dinamani7d6c8972011-12-14 15:16:56 -080053void target_early_init(void)
54{
Deepa Dinamanib073ba22012-08-10 11:06:41 -070055#if WITH_DEBUG_UART
Neeti Desaiac011272012-08-29 18:24:54 -070056 uart_dm_init(1, 0, BLSP1_UART1_BASE);
Deepa Dinamanib073ba22012-08-10 11:06:41 -070057#endif
Deepa Dinamani7d6c8972011-12-14 15:16:56 -080058}
59
Deepa Dinamani9a612932012-08-14 16:15:03 -070060/* Return 1 if vol_up pressed */
61static int target_volume_up()
62{
63 uint8_t status = 0;
64 struct pm8x41_gpio gpio;
65
66 /* CDP vol_up seems to be always grounded. So gpio status is read as 0,
67 * whether key is pressed or not.
68 * Ignore volume_up key on CDP for now.
69 */
70 if (board_hardware_id() == HW_PLATFORM_SURF)
71 return 0;
72
73 /* Configure the GPIO */
74 gpio.direction = PM_GPIO_DIR_IN;
75 gpio.function = 0;
76 gpio.pull = PM_GPIO_PULL_UP_30;
77 gpio.vin_sel = 0;
78
79 pm8x41_gpio_config(5, &gpio);
80
81 /* Get status of P_GPIO_5 */
82 pm8x41_gpio_get(5, &status);
83
84 return !status; /* active low */
85}
86
87/* Return 1 if vol_down pressed */
88int target_volume_down()
89{
90 return pm8x41_vol_down_key_status();
91}
92
93static void target_keystatus()
94{
95 keys_init();
96
97 if(target_volume_down())
98 keys_post_event(KEY_VOLUMEDOWN, 1);
99
100 if(target_volume_up())
101 keys_post_event(KEY_VOLUMEUP, 1);
102}
103
Deepa Dinamani7d6c8972011-12-14 15:16:56 -0800104void target_init(void)
105{
Deepa Dinamanica5ad852012-05-07 18:19:47 -0700106 uint32_t base_addr;
107 uint8_t slot;
Deepa Dinamani7d6c8972011-12-14 15:16:56 -0800108
Deepa Dinamani26e93262012-05-21 17:35:14 -0700109
Deepa Dinamani7d6c8972011-12-14 15:16:56 -0800110 dprintf(INFO, "target_init()\n");
111
Deepa Dinamanic2a9b362012-02-23 15:15:54 -0800112 spmi_init(PMIC_ARB_CHANNEL_NUM, PMIC_ARB_OWNER_ID);
Deepa Dinamani7d6c8972011-12-14 15:16:56 -0800113
Deepa Dinamani9a612932012-08-14 16:15:03 -0700114 target_keystatus();
115
Deepa Dinamanica5ad852012-05-07 18:19:47 -0700116 /* Trying Slot 1*/
117 slot = 1;
118 base_addr = mmc_sdc_base[slot - 1];
119 if (mmc_boot_main(slot, base_addr))
120 {
Deepa Dinamanid18b47a2012-06-27 13:06:03 -0700121
122 /* Trying Slot 2 next */
123 slot = 2;
124 base_addr = mmc_sdc_base[slot - 1];
125 if (mmc_boot_main(slot, base_addr)) {
126 dprintf(CRITICAL, "mmc init failed!");
127 ASSERT(0);
128 }
Deepa Dinamanica5ad852012-05-07 18:19:47 -0700129 }
Deepa Dinamani7d6c8972011-12-14 15:16:56 -0800130}
131
132unsigned board_machtype(void)
133{
134 return target_id;
135}
136
137/* Do any target specific intialization needed before entering fastboot mode */
138void target_fastboot_init(void)
139{
Deepa Dinamani9a612932012-08-14 16:15:03 -0700140 /* Set the BOOT_DONE flag in PM8921 */
141 pm8x41_set_boot_done();
Deepa Dinamani7d6c8972011-12-14 15:16:56 -0800142}
Neeti Desai465491e2012-07-31 12:53:35 -0700143
144/* Detect the target type */
145void target_detect(struct board_data *board)
146{
147 board->target = LINUX_MACHTYPE_UNKNOWN;
148}
149
150/* Detect the modem type */
151void target_baseband_detect(struct board_data *board)
152{
153 /* Check for baseband variants. Default to MSM */
154 if (board->platform_subtype == HW_PLATFORM_SUBTYPE_MDM)
155 board->baseband = BASEBAND_MDM;
156 else
157 board->baseband = BASEBAND_MSM;
158}
Deepa Dinamani9a612932012-08-14 16:15:03 -0700159
160void target_serialno(unsigned char *buf)
161{
162 unsigned int serialno;
163 if (target_is_emmc_boot()) {
164 serialno = mmc_get_psn();
165 snprintf((char *)buf, 13, "%x", serialno);
166 }
167}
Amol Jadi6639d452012-08-16 14:51:19 -0700168
169unsigned check_reboot_mode(void)
170{
171 uint32_t restart_reason = 0;
172
173 /* Read reboot reason and scrub it */
174 restart_reason = readl(RESTART_REASON_ADDR);
175 writel(0x00, RESTART_REASON_ADDR);
176
177 return restart_reason;
178}
Neeti Desai120b55d2012-08-20 17:15:56 -0700179
180void reboot_device(unsigned reboot_reason)
181{
182 /* Write the reboot reason */
183 writel(reboot_reason, RESTART_REASON_ADDR);
184
185 /* Configure PMIC for warm reset */
186 pm8x41_reset_configure(PON_PSHOLD_WARM_RESET);
187
Deepa Dinamani1e094942012-10-30 15:49:02 -0700188 /* Disable Watchdog Debug.
189 * Required becuase of a H/W bug which causes the system to
190 * reset partially even for non watchdog resets.
191 */
192 writel(readl(GCC_WDOG_DEBUG) & ~(1 << WDOG_DEBUG_DISABLE_BIT), GCC_WDOG_DEBUG);
193
Neeti Desai120b55d2012-08-20 17:15:56 -0700194 /* Drop PS_HOLD for MSM */
195 writel(0x00, MPM2_MPM_PS_HOLD);
196
197 mdelay(5000);
198
199 dprintf(CRITICAL, "Rebooting failed\n");
200}