Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2009, Google Inc. |
| 3 | * All rights reserved. |
Shashank Mittal | 8e49dec | 2010-03-01 15:19:04 -0800 | [diff] [blame] | 4 | * Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved. |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 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 <dev/keys.h> |
| 35 | #include <dev/gpio_keypad.h> |
| 36 | #include <lib/ptable.h> |
| 37 | #include <dev/flash.h> |
Chandan Uddaraju | de85d3f | 2010-01-05 16:32:33 -0800 | [diff] [blame] | 38 | #include <smem.h> |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 39 | |
Chandan Uddaraju | 885e4db | 2009-12-03 22:45:26 -0800 | [diff] [blame] | 40 | #define LINUX_MACHTYPE 1008002 |
| 41 | |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 42 | #define VARIABLE_LENGTH 0x10101010 |
| 43 | #define DIFF_START_ADDR 0xF0F0F0F0 |
| 44 | #define NUM_PAGES_PER_BLOCK 0x40 |
| 45 | |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 46 | static 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 | */ |
| 56 | static struct ptentry board_part_list[] = { |
| 57 | { |
| 58 | .start = 0, |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 59 | .length = 5 /* In MB */, |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 60 | .name = "boot", |
| 61 | }, |
| 62 | { |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 63 | .start = DIFF_START_ADDR, |
David Ng | 3755bb8 | 2010-10-12 18:12:06 -0700 | [diff] [blame] | 64 | .length = 100 /* In MB */, |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 65 | .name = "system", |
| 66 | }, |
| 67 | { |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 68 | .start = DIFF_START_ADDR, |
| 69 | .length = 30 /* In MB */, |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 70 | .name = "cache", |
| 71 | }, |
| 72 | { |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 73 | .start = DIFF_START_ADDR, |
| 74 | .length = 1 /* In MB */, |
Subbaraman Narayanamurthy | eb92bcc | 2010-07-20 14:32:46 -0700 | [diff] [blame] | 75 | .name = "misc", |
| 76 | }, |
| 77 | { |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 78 | .start = DIFF_START_ADDR, |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 79 | .length = VARIABLE_LENGTH, |
| 80 | .name = "userdata", |
Chandan Uddaraju | aeb979e | 2009-12-14 18:04:26 -0800 | [diff] [blame] | 81 | }, |
| 82 | { |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 83 | .start = DIFF_START_ADDR, |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 84 | .length = 5 /* In MB */, |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 85 | .name = "recovery", |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 86 | }, |
| 87 | }; |
| 88 | static int num_parts = sizeof(board_part_list)/sizeof(struct ptentry); |
| 89 | |
| 90 | void smem_ptable_init(void); |
| 91 | unsigned smem_get_apps_flash_start(void); |
Chandan Uddaraju | 7f5b901 | 2010-02-06 16:37:48 -0800 | [diff] [blame] | 92 | void usb_charger_change_state(void); |
| 93 | void usb_charger_reset(void); |
| 94 | void usb_stop_charging(unsigned); |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 95 | void keypad_init(void); |
| 96 | |
| 97 | void target_init(void) |
| 98 | { |
| 99 | unsigned offset; |
| 100 | struct flash_info *flash_info; |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 101 | unsigned total_num_of_blocks; |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 102 | unsigned next_ptr_start_adr = 0; |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 103 | unsigned blocks_per_1MB = 8; /* Default value of 2k page size on 256MB flash drive*/ |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 104 | int i; |
| 105 | |
| 106 | dprintf(INFO, "target_init()\n"); |
| 107 | |
Chandan Uddaraju | aeb979e | 2009-12-14 18:04:26 -0800 | [diff] [blame] | 108 | #if (!ENABLE_NANDWRITE) |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 109 | keys_init(); |
| 110 | keypad_init(); |
Chandan Uddaraju | aeb979e | 2009-12-14 18:04:26 -0800 | [diff] [blame] | 111 | #endif |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 112 | ptable_init(&flash_ptable); |
| 113 | smem_ptable_init(); |
| 114 | |
| 115 | flash_init(); |
| 116 | flash_info = flash_get_info(); |
| 117 | ASSERT(flash_info); |
| 118 | |
| 119 | offset = smem_get_apps_flash_start(); |
| 120 | if (offset == 0xffffffff) |
| 121 | while(1); |
| 122 | |
Chandan Uddaraju | 4060511 | 2010-08-09 14:25:08 -0700 | [diff] [blame] | 123 | total_num_of_blocks = flash_info->num_blocks; |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 124 | blocks_per_1MB = (1 << 20) / (flash_info->block_size); |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 125 | |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 126 | for (i = 0; i < num_parts; i++) { |
| 127 | struct ptentry *ptn = &board_part_list[i]; |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 128 | unsigned len = ((ptn->length) * blocks_per_1MB); |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 129 | |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 130 | if(ptn->start != 0) |
| 131 | ASSERT(ptn->start == DIFF_START_ADDR); |
| 132 | |
| 133 | ptn->start = next_ptr_start_adr; |
| 134 | |
| 135 | if(ptn->length == VARIABLE_LENGTH) |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 136 | { |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 137 | unsigned length_for_prt = 0; |
| 138 | unsigned j; |
| 139 | for (j = i+1; j < num_parts; j++) |
| 140 | { |
| 141 | struct ptentry *temp_ptn = &board_part_list[j]; |
| 142 | ASSERT(temp_ptn->length != VARIABLE_LENGTH); |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 143 | length_for_prt += ((temp_ptn->length) * blocks_per_1MB); |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 144 | } |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 145 | len = (total_num_of_blocks - 1) - (offset + ptn->start + length_for_prt); |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 146 | ASSERT(len >= 0); |
Chandan Uddaraju | cc400c2 | 2010-01-22 17:19:09 -0800 | [diff] [blame] | 147 | } |
Ajay Dudani | 7298b63 | 2010-08-24 21:59:00 -0700 | [diff] [blame] | 148 | |
| 149 | next_ptr_start_adr = ptn->start + len; |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 150 | ptable_add(&flash_ptable, ptn->name, offset + ptn->start, |
Shashank Mittal | 8e49dec | 2010-03-01 15:19:04 -0800 | [diff] [blame] | 151 | len, ptn->flags, TYPE_APPS_PARTITION, PERM_WRITEABLE); |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 152 | } |
| 153 | |
Shashank Mittal | 8e49dec | 2010-03-01 15:19:04 -0800 | [diff] [blame] | 154 | smem_add_modem_partitions(&flash_ptable); |
| 155 | |
Ajay Dudani | a66de4f | 2009-11-22 08:57:39 -0800 | [diff] [blame] | 156 | ptable_dump(&flash_ptable); |
| 157 | flash_set_ptable(&flash_ptable); |
| 158 | } |
Chandan Uddaraju | 885e4db | 2009-12-03 22:45:26 -0800 | [diff] [blame] | 159 | |
| 160 | unsigned board_machtype(void) |
| 161 | { |
| 162 | return LINUX_MACHTYPE; |
| 163 | } |
Chandan Uddaraju | de85d3f | 2010-01-05 16:32:33 -0800 | [diff] [blame] | 164 | |
Chandan Uddaraju | 94183c0 | 2010-01-15 15:13:59 -0800 | [diff] [blame] | 165 | void reboot_device(unsigned reboot_reason) |
| 166 | { |
| 167 | reboot(reboot_reason); |
| 168 | } |
| 169 | |
Chandan Uddaraju | de85d3f | 2010-01-05 16:32:33 -0800 | [diff] [blame] | 170 | unsigned check_reboot_mode(void) |
| 171 | { |
| 172 | unsigned mode[2] = {0, 0}; |
| 173 | unsigned int mode_len = sizeof(mode); |
| 174 | unsigned smem_status; |
| 175 | |
| 176 | smem_status = smem_read_alloc_entry(SMEM_APPS_BOOT_MODE, |
| 177 | &mode, mode_len ); |
| 178 | if(smem_status) |
| 179 | { |
| 180 | dprintf(CRITICAL, "ERROR: unable to read shared memory for reboot mode\n"); |
| 181 | return 0; |
| 182 | } |
| 183 | return mode[0]; |
| 184 | } |
Chandan Uddaraju | 7f5b901 | 2010-02-06 16:37:48 -0800 | [diff] [blame] | 185 | |
| 186 | void target_battery_charging_enable(unsigned enable, unsigned disconnect) |
| 187 | { |
| 188 | if(disconnect){ |
| 189 | usb_charger_reset(); |
| 190 | return; |
| 191 | } |
| 192 | else |
| 193 | usb_stop_charging(!enable); |
| 194 | |
| 195 | for(;;) |
| 196 | { |
| 197 | thread_sleep(10); |
| 198 | usb_charger_change_state(); |
| 199 | } |
| 200 | } |