blob: 48482e123e2287cef13b62395061552c99a07dfe [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>
Greg Griscod6250552011-06-29 14:40:23 -070037#include <mmc.h>
38#include <platform/timer.h>
Amol Jadica4f4c92011-01-13 20:19:34 -080039#include <reg.h>
Amol Jadi6db9fe32011-04-15 17:19:00 -070040#include <dev/keys.h>
Amol Jadi57abe4c2011-05-24 15:47:27 -070041#include <dev/pm8921.h>
42#include <dev/gpio_keypad.h>
Amol Jadic52c8a32011-07-12 11:27:04 -070043#include <gsbi.h>
Greg Griscod2471ef2011-07-14 13:00:42 -070044#include <target.h>
Amol Jadica4f4c92011-01-13 20:19:34 -080045
46#define LINUX_MACHTYPE_8960_SIM 3230
47#define LINUX_MACHTYPE_8960_RUMI3 3231
Shashank Mittald67508a2011-05-06 19:18:42 -070048#define LINUX_MACHTYPE_8960_CDP 3396
49#define LINUX_MACHTYPE_8960_MTP 3397
50#define LINUX_MACHTYPE_8960_FLUID 3398
51#define LINUX_MACHTYPE_8960_APQ 3399
Amir Samuelov6a9871b2011-07-31 14:38:05 +030052#define LINUX_MACHTYPE_8960_LIQUID 3535
Amol Jadica4f4c92011-01-13 20:19:34 -080053
Greg Griscod2471ef2011-07-14 13:00:42 -070054
Amol Jadicd43ea02011-02-15 20:56:04 -080055extern void dmb(void);
Amol Jadi6db9fe32011-04-15 17:19:00 -070056extern void keypad_init(void);
Greg Griscod2471ef2011-07-14 13:00:42 -070057extern void panel_backlight_on(void);
Amol Jadicd43ea02011-02-15 20:56:04 -080058
Shashank Mittalda89a682011-03-14 19:18:38 -070059static unsigned mmc_sdc_base[] = { MSM_SDC1_BASE, MSM_SDC2_BASE, MSM_SDC3_BASE, MSM_SDC4_BASE};
60
Amol Jadi57abe4c2011-05-24 15:47:27 -070061static pm8921_dev_t pmic;
62
Amol Jadic52c8a32011-07-12 11:27:04 -070063static const uint8_t uart_gsbi_id = GSBI_ID_5;
64
Shashank Mittal39503262011-07-19 11:41:35 -070065void shutdown_device(void)
66{
67 dprintf(CRITICAL, "Shutdown system.\n");
68 pm8921_config_reset_pwr_off(0);
69
70 /* Actually reset the chip */
71 writel(0, MSM_PSHOLD_CTL_SU);
72 mdelay(5000);
73
74 dprintf (CRITICAL, "Shutdown failed.\n");
75}
76
Amol Jadica4f4c92011-01-13 20:19:34 -080077void target_init(void)
78{
Shashank Mittalda89a682011-03-14 19:18:38 -070079 unsigned base_addr;
80 unsigned char slot;
Amol Jadica4f4c92011-01-13 20:19:34 -080081 dprintf(INFO, "target_init()\n");
82
Amol Jadi57abe4c2011-05-24 15:47:27 -070083 /* Initialize PMIC driver */
Greg Griscod2471ef2011-07-14 13:00:42 -070084 pmic.read = (pm8921_read_func) &pa1_ssbi2_read_bytes;
85 pmic.write = (pm8921_write_func) &pa1_ssbi2_write_bytes;
Amol Jadi57abe4c2011-05-24 15:47:27 -070086
87 pm8921_init(&pmic);
Amol Jadi6db9fe32011-04-15 17:19:00 -070088 /* Keypad init */
89 keys_init();
90 keypad_init();
91
Kinson Chikce306ff2011-07-08 15:23:33 -070092 /* Display splash screen if enabled */
93#if DISPLAY_SPLASH_SCREEN
94 panel_backlight_on();
95 display_init();
96 dprintf(SPEW, "Diplay initialized\n");
97 display_image_on_screen();
98#endif
99
Shashank Mittalda89a682011-03-14 19:18:38 -0700100 /* Trying Slot 1 first */
101 slot = 1;
102 base_addr = mmc_sdc_base[slot-1];
103 if(mmc_boot_main(slot, base_addr))
Amol Jadica4f4c92011-01-13 20:19:34 -0800104 {
Shashank Mittalda89a682011-03-14 19:18:38 -0700105 /* Trying Slot 3 next */
106 slot = 3;
107 base_addr = mmc_sdc_base[slot-1];
108 if(mmc_boot_main(slot, base_addr))
109 {
110 dprintf(CRITICAL, "mmc init failed!");
111 ASSERT(0);
112 }
Amol Jadica4f4c92011-01-13 20:19:34 -0800113 }
114}
115
116unsigned board_machtype(void)
117{
Shashank Mittalda89a682011-03-14 19:18:38 -0700118 struct smem_board_info_v6 board_info_v6;
119 unsigned int board_info_len = 0;
120 unsigned smem_status = 0;
121 unsigned format = 0;
Amol Jadi64c58c12011-05-11 13:40:25 -0700122 unsigned id = HW_PLATFORM_UNKNOWN;
123 unsigned mach_id;
Amol Jadica4f4c92011-01-13 20:19:34 -0800124
Shashank Mittald67508a2011-05-06 19:18:42 -0700125
Shashank Mittalda89a682011-03-14 19:18:38 -0700126 smem_status = smem_read_alloc_entry_offset(SMEM_BOARD_INFO_LOCATION,
127 &format, sizeof(format), 0);
128 if(!smem_status)
129 {
Amol Jadi64c58c12011-05-11 13:40:25 -0700130 if (format == 6)
Shashank Mittalda89a682011-03-14 19:18:38 -0700131 {
132 board_info_len = sizeof(board_info_v6);
133
134 smem_status = smem_read_alloc_entry(SMEM_BOARD_INFO_LOCATION,
135 &board_info_v6, board_info_len);
136 if(!smem_status)
137 {
138 id = board_info_v6.board_info_v3.hw_platform;
139 }
140 }
141 }
142
Amol Jadi64c58c12011-05-11 13:40:25 -0700143 /* Detect the board we are running on */
Shashank Mittalda89a682011-03-14 19:18:38 -0700144 switch(id)
145 {
146 case HW_PLATFORM_SURF:
Amol Jadi64c58c12011-05-11 13:40:25 -0700147 mach_id = LINUX_MACHTYPE_8960_CDP;
Shashank Mittalda89a682011-03-14 19:18:38 -0700148 break;
149 case HW_PLATFORM_FFA:
Amol Jadi64c58c12011-05-11 13:40:25 -0700150 mach_id = LINUX_MACHTYPE_8960_MTP;
151 break;
152 case HW_PLATFORM_FLUID:
153 mach_id = LINUX_MACHTYPE_8960_FLUID;
Shashank Mittalda89a682011-03-14 19:18:38 -0700154 break;
Amir Samuelov6a9871b2011-07-31 14:38:05 +0300155 case HW_PLATFORM_LIQUID:
156 mach_id = LINUX_MACHTYPE_8960_LIQUID;
157 break;
Shashank Mittalda89a682011-03-14 19:18:38 -0700158 default:
Amol Jadi64c58c12011-05-11 13:40:25 -0700159 mach_id = LINUX_MACHTYPE_8960_CDP;
Shashank Mittalda89a682011-03-14 19:18:38 -0700160 };
161
162 return mach_id;
Amol Jadica4f4c92011-01-13 20:19:34 -0800163}
164
165void reboot_device(unsigned reboot_reason)
166{
Shashank Mittal6239b162011-06-28 17:59:33 -0700167 /* Actually reset the chip */
Shashank Mittal39503262011-07-19 11:41:35 -0700168 pm8921_config_reset_pwr_off(1);
Shashank Mittal6239b162011-06-28 17:59:33 -0700169 writel(0, MSM_PSHOLD_CTL_SU);
Amol Jadica4f4c92011-01-13 20:19:34 -0800170 mdelay(10000);
Shashank Mittal39503262011-07-19 11:41:35 -0700171
Amol Jadica4f4c92011-01-13 20:19:34 -0800172 dprintf (CRITICAL, "Rebooting failed\n");
173 return;
174}
175
176unsigned check_reboot_mode(void)
177{
178 unsigned restart_reason = 0;
Amol Jadica4f4c92011-01-13 20:19:34 -0800179
180 /* Read reboot reason and scrub it */
Shashank Mittal0207df72011-06-15 15:20:43 -0700181 restart_reason = readl(RESTART_REASON_ADDR);
182 writel(0x00, RESTART_REASON_ADDR);
Amol Jadica4f4c92011-01-13 20:19:34 -0800183
184 return restart_reason;
185}
186
Ajay Dudani12091e22011-05-06 17:13:23 -0700187void target_serialno(unsigned char *buf)
188{
189 unsigned int serialno;
190 if(target_is_emmc_boot())
191 {
192 serialno = mmc_get_psn();
Greg Griscod6250552011-06-29 14:40:23 -0700193 sprintf((char *) buf,"%x",serialno);
Ajay Dudani12091e22011-05-06 17:13:23 -0700194 }
195}
196
Amol Jadica4f4c92011-01-13 20:19:34 -0800197void target_battery_charging_enable(unsigned enable, unsigned disconnect)
198{
199}
Amol Jadi57abe4c2011-05-24 15:47:27 -0700200
201/* Do any target specific intialization needed before entering fastboot mode */
202void target_fastboot_init(void)
203{
204 /* Set the BOOT_DONE flag in PM8921 */
205 pm8921_boot_done();
206}
Amol Jadic52c8a32011-07-12 11:27:04 -0700207
208uint8_t target_uart_gsbi(void)
209{
210 return uart_gsbi_id;
211}