blob: a43a5868e492111c9505403046a350e787fe24d3 [file] [log] [blame]
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -08001/*
2 * Copyright (c) 2009, Google Inc.
3 * All rights reserved.
Shashank Mittal8e49dec2010-03-01 15:19:04 -08004 * Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved.
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -08005 *
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 <dev/keys.h>
35#include <dev/gpio_keypad.h>
36#include <lib/ptable.h>
37#include <dev/flash.h>
38#include <smem.h>
39
40#define LINUX_MACHTYPE 1007003
41
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -070042#define VARIABLE_LENGTH 0x10101010
43#define DIFF_START_ADDR 0xF0F0F0F0
44#define NUM_PAGES_PER_BLOCK 0x40
45
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -080046static struct ptable flash_ptable;
47
48/* for these partitions, start will be offset by either what we get from
49 * smem, or from the above offset if smem is not useful. Also, we should
50 * probably have smem_ptable code populate our flash_ptable.
51 *
52 * When smem provides us with a full partition table, we can get rid of
53 * this altogether.
54 *
55 */
56static struct ptentry board_part_list[] = {
57 {
58 .start = 0,
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -070059 .length = 5 /* In MB */,
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -080060 .name = "boot",
61 },
62 {
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -070063 .start = DIFF_START_ADDR,
64 .length = 95 /* In MB */,
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -080065 .name = "system",
66 },
67 {
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -070068 .start = DIFF_START_ADDR,
69 .length = 1 /* In MB */,
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -080070 .name = "cache",
71 },
72 {
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -070073 .start = DIFF_START_ADDR,
74 .length = 1 /* In MB */,
Subbaraman Narayanamurthyeb92bcc2010-07-20 14:32:46 -070075 .name = "misc",
76 },
77 {
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -070078 .start = DIFF_START_ADDR,
79 .length = VARIABLE_LENGTH,
80 .name = "userdata",
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -080081 },
82 {
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -070083 .start = DIFF_START_ADDR,
84 .length = 2 /* In MB */,
85 .name = "persist",
86 },
87 {
88 .start = DIFF_START_ADDR,
89 .length = 5 /* In MB */,
90 .name = "recovery",
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -080091 },
92};
93static int num_parts = sizeof(board_part_list)/sizeof(struct ptentry);
94
95void smem_ptable_init(void);
96unsigned smem_get_apps_flash_start(void);
97
98void keypad_init(void);
99
100int target_is_emmc_boot(void);
101
102void target_init(void)
103{
104 unsigned offset;
105 struct flash_info *flash_info;
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -0700106 unsigned total_num_of_blocks;
107 unsigned next_ptr_start_adr = 0;
108 unsigned blocks_per_1MB = 8; /* Default value of 2k page size on 256MB flash drive*/
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -0800109 int i;
110
111 dprintf(INFO, "target_init()\n");
112
113#if (!ENABLE_NANDWRITE)
114 keys_init();
115 keypad_init();
116#endif
117
118 if (target_is_emmc_boot())
119 return;
120
121 ptable_init(&flash_ptable);
122 smem_ptable_init();
123
124 flash_init();
125 flash_info = flash_get_info();
126 ASSERT(flash_info);
127
128 offset = smem_get_apps_flash_start();
129 if (offset == 0xffffffff)
130 while(1);
131
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -0700132 total_num_of_blocks = flash_info->num_blocks;
133 blocks_per_1MB = (1 << 20) / (flash_info->block_size);
134
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -0800135 for (i = 0; i < num_parts; i++) {
136 struct ptentry *ptn = &board_part_list[i];
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -0700137 unsigned len = ((ptn->length) * blocks_per_1MB);
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -0800138
Chandan Uddarajuc6cbd802010-09-29 00:33:09 -0700139 if(ptn->start != 0)
140 ASSERT(ptn->start == DIFF_START_ADDR);
141
142 ptn->start = next_ptr_start_adr;
143
144 if(ptn->length == VARIABLE_LENGTH)
145 {
146 unsigned length_for_prt = 0;
147 unsigned j;
148 for (j = i+1; j < num_parts; j++)
149 {
150 struct ptentry *temp_ptn = &board_part_list[j];
151 ASSERT(temp_ptn->length != VARIABLE_LENGTH);
152 length_for_prt += ((temp_ptn->length) * blocks_per_1MB);
153 }
154 len = (total_num_of_blocks - 1) - (offset + ptn->start + length_for_prt);
155 ASSERT(len >= 0);
156 }
157 next_ptr_start_adr = ptn->start + len;
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -0800158 ptable_add(&flash_ptable, ptn->name, offset + ptn->start,
Shashank Mittal8e49dec2010-03-01 15:19:04 -0800159 len, ptn->flags, TYPE_APPS_PARTITION, PERM_WRITEABLE);
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -0800160 }
161
Shashank Mittal8e49dec2010-03-01 15:19:04 -0800162 smem_add_modem_partitions(&flash_ptable);
163
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -0800164 ptable_dump(&flash_ptable);
165 flash_set_ptable(&flash_ptable);
166}
167
168unsigned board_machtype(void)
169{
170 return LINUX_MACHTYPE;
171}
172
Chandan Uddaraju94183c02010-01-15 15:13:59 -0800173void reboot_device(unsigned reboot_reason)
174{
175 reboot(reboot_reason);
176}
177
Chandan Uddarajue0adbdb2010-01-09 23:12:46 -0800178unsigned check_reboot_mode(void)
179{
180 unsigned mode[2] = {0, 0};
181 unsigned int mode_len = sizeof(mode);
182 unsigned smem_status;
183
184 smem_status = smem_read_alloc_entry(SMEM_APPS_BOOT_MODE,
185 &mode, mode_len );
186 if(smem_status)
187 {
188 dprintf(CRITICAL, "ERROR: unable to read shared memory for reboot mode\n");
189 return 0;
190 }
191 return mode[0];
192}