blob: 1d4c44d6a28eec4581da96aab4e41df086e1a13e [file] [log] [blame]
Amol Jadica4f4c92011-01-13 20:19:34 -08001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
4 * Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
13 * the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google, Inc. nor the names of its contributors
16 * may be used to endorse or promote products derived from this
17 * software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33#include <debug.h>
34#include <lib/ptable.h>
35#include <smem.h>
36#include <platform/iomap.h>
37#include <reg.h>
Amol Jadi6db9fe32011-04-15 17:19:00 -070038#include <dev/keys.h>
Amol Jadica4f4c92011-01-13 20:19:34 -080039
40#define LINUX_MACHTYPE_8960_SIM 3230
41#define LINUX_MACHTYPE_8960_RUMI3 3231
Shashank Mittald67508a2011-05-06 19:18:42 -070042#define LINUX_MACHTYPE_8960_CDP 3396
43#define LINUX_MACHTYPE_8960_MTP 3397
44#define LINUX_MACHTYPE_8960_FLUID 3398
45#define LINUX_MACHTYPE_8960_APQ 3399
Amol Jadica4f4c92011-01-13 20:19:34 -080046
Amol Jadicd43ea02011-02-15 20:56:04 -080047extern unsigned int mmc_boot_main(unsigned char slot, unsigned int base);
48extern void mdelay(unsigned msecs);
49extern void dmb(void);
Amol Jadi6db9fe32011-04-15 17:19:00 -070050extern void keypad_init(void);
Amol Jadicd43ea02011-02-15 20:56:04 -080051
Shashank Mittalda89a682011-03-14 19:18:38 -070052static unsigned mmc_sdc_base[] = { MSM_SDC1_BASE, MSM_SDC2_BASE, MSM_SDC3_BASE, MSM_SDC4_BASE};
53
Amol Jadica4f4c92011-01-13 20:19:34 -080054void target_init(void)
55{
Shashank Mittalda89a682011-03-14 19:18:38 -070056 unsigned base_addr;
57 unsigned char slot;
Amol Jadica4f4c92011-01-13 20:19:34 -080058 dprintf(INFO, "target_init()\n");
59
Amol Jadi6db9fe32011-04-15 17:19:00 -070060 /* Keypad init */
61 keys_init();
62 keypad_init();
63
Shashank Mittalda89a682011-03-14 19:18:38 -070064 /* Trying Slot 1 first */
65 slot = 1;
66 base_addr = mmc_sdc_base[slot-1];
67 if(mmc_boot_main(slot, base_addr))
Amol Jadica4f4c92011-01-13 20:19:34 -080068 {
Shashank Mittalda89a682011-03-14 19:18:38 -070069 /* Trying Slot 3 next */
70 slot = 3;
71 base_addr = mmc_sdc_base[slot-1];
72 if(mmc_boot_main(slot, base_addr))
73 {
74 dprintf(CRITICAL, "mmc init failed!");
75 ASSERT(0);
76 }
Amol Jadica4f4c92011-01-13 20:19:34 -080077 }
78}
79
80unsigned board_machtype(void)
81{
Shashank Mittalda89a682011-03-14 19:18:38 -070082 struct smem_board_info_v6 board_info_v6;
83 unsigned int board_info_len = 0;
84 unsigned smem_status = 0;
85 unsigned format = 0;
Amol Jadi64c58c12011-05-11 13:40:25 -070086 unsigned id = HW_PLATFORM_UNKNOWN;
87 unsigned mach_id;
Amol Jadica4f4c92011-01-13 20:19:34 -080088
Shashank Mittald67508a2011-05-06 19:18:42 -070089
Shashank Mittalda89a682011-03-14 19:18:38 -070090 smem_status = smem_read_alloc_entry_offset(SMEM_BOARD_INFO_LOCATION,
91 &format, sizeof(format), 0);
92 if(!smem_status)
93 {
Amol Jadi64c58c12011-05-11 13:40:25 -070094 if (format == 6)
Shashank Mittalda89a682011-03-14 19:18:38 -070095 {
96 board_info_len = sizeof(board_info_v6);
97
98 smem_status = smem_read_alloc_entry(SMEM_BOARD_INFO_LOCATION,
99 &board_info_v6, board_info_len);
100 if(!smem_status)
101 {
102 id = board_info_v6.board_info_v3.hw_platform;
103 }
104 }
105 }
106
Amol Jadi64c58c12011-05-11 13:40:25 -0700107 /* Detect the board we are running on */
Shashank Mittalda89a682011-03-14 19:18:38 -0700108 switch(id)
109 {
110 case HW_PLATFORM_SURF:
Amol Jadi64c58c12011-05-11 13:40:25 -0700111 mach_id = LINUX_MACHTYPE_8960_CDP;
Shashank Mittalda89a682011-03-14 19:18:38 -0700112 break;
113 case HW_PLATFORM_FFA:
Amol Jadi64c58c12011-05-11 13:40:25 -0700114 mach_id = LINUX_MACHTYPE_8960_MTP;
115 break;
116 case HW_PLATFORM_FLUID:
117 mach_id = LINUX_MACHTYPE_8960_FLUID;
Shashank Mittalda89a682011-03-14 19:18:38 -0700118 break;
119 default:
Amol Jadi64c58c12011-05-11 13:40:25 -0700120 mach_id = LINUX_MACHTYPE_8960_CDP;
Shashank Mittalda89a682011-03-14 19:18:38 -0700121 };
122
123 return mach_id;
Amol Jadica4f4c92011-01-13 20:19:34 -0800124}
125
126void reboot_device(unsigned reboot_reason)
127{
128 /* Reset WDG0 counter */
129 writel(1,MSM_WDT0_RST);
130 /* Disable WDG0 */
131 writel(0,MSM_WDT0_EN);
132 /* Set WDG0 bark time */
133 writel(0x31F3,MSM_WDT0_BT);
134 /* Enable WDG0 */
135 writel(3,MSM_WDT0_EN);
136 dmb();
137 /* Enable WDG output */
138 writel(3,MSM_TCSR_BASE + TCSR_WDOG_CFG);
139 mdelay(10000);
140 dprintf (CRITICAL, "Rebooting failed\n");
141 return;
142}
143
144unsigned check_reboot_mode(void)
145{
146 unsigned restart_reason = 0;
Amol Jadicd43ea02011-02-15 20:56:04 -0800147 void *restart_reason_addr = (void*)0x401FFFFC;
Amol Jadica4f4c92011-01-13 20:19:34 -0800148
149 /* Read reboot reason and scrub it */
150 restart_reason = readl(restart_reason_addr);
151 writel(0x00, restart_reason_addr);
152
153 return restart_reason;
154}
155
Ajay Dudani12091e22011-05-06 17:13:23 -0700156void target_serialno(unsigned char *buf)
157{
158 unsigned int serialno;
159 if(target_is_emmc_boot())
160 {
161 serialno = mmc_get_psn();
162 sprintf(buf,"%x",serialno);
163 }
164}
165
Amol Jadica4f4c92011-01-13 20:19:34 -0800166void target_battery_charging_enable(unsigned enable, unsigned disconnect)
167{
168}