blob: 07d4f8a7a078ed51b6361b9ec433e24ff8aa700e [file] [log] [blame]
Channagoud Kadabi571193a2014-02-05 13:58:49 -08001/* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
Shashank Mittala635abf2012-03-28 18:11:43 -07002 *
3 * Redistribution and use in source and binary forms, with or without
4 * 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.
Channagoud Kadabiafd62bf2013-01-08 20:32:52 -080012 * * Neither the name of The Linux Foundation, Inc. nor the names of its
Shashank Mittala635abf2012-03-28 18:11:43 -070013 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * 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.
27 *
28 */
29
30#include <debug.h>
31#include <board.h>
32#include <smem.h>
33#include <baseband.h>
34
35static struct board_data board = {UNKNOWN,
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -080036 0,
Sundarajan Srinivasan763c0db2014-05-20 17:08:36 -070037 0,
Sridhar Parasuramc5f035f2014-10-22 12:37:36 -070038 0,
Shashank Mittala635abf2012-03-28 18:11:43 -070039 HW_PLATFORM_UNKNOWN,
40 HW_PLATFORM_SUBTYPE_UNKNOWN,
Amol Jadi5c61a952012-05-04 17:05:35 -070041 LINUX_MACHTYPE_UNKNOWN,
Deepa Dinamanib8b16432012-08-24 15:48:45 -070042 BASEBAND_MSM,
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -080043 {{PMIC_IS_INVALID, 0}, {PMIC_IS_INVALID, 0}, {PMIC_IS_INVALID, 0}},
44};
Shashank Mittala635abf2012-03-28 18:11:43 -070045
46static void platform_detect()
47{
48 struct smem_board_info_v6 board_info_v6;
Deepa Dinamania4ebcff2012-06-11 11:59:30 -070049 struct smem_board_info_v7 board_info_v7;
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -080050 struct smem_board_info_v8 board_info_v8;
Shashank Mittala635abf2012-03-28 18:11:43 -070051 unsigned int board_info_len = 0;
52 unsigned ret = 0;
53 unsigned format = 0;
Lijuan Gao9f152862014-08-18 13:45:24 +080054 unsigned pmic_type = 0;
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -080055 uint8_t i;
Channagoud Kadabi4f370b42014-05-21 16:06:59 -070056 uint16_t format_major = 0;
57 uint16_t format_minor = 0;
Shashank Mittala635abf2012-03-28 18:11:43 -070058
59 ret = smem_read_alloc_entry_offset(SMEM_BOARD_INFO_LOCATION,
60 &format, sizeof(format), 0);
61 if (ret)
62 return;
63
Channagoud Kadabi4f370b42014-05-21 16:06:59 -070064 /* Extract the major & minor version info,
65 * Upper two bytes: major info
66 * Lower two byets: minor info
67 */
68 format_major = (format & 0xffff0000) >> 16;
69 format_minor = format & 0x0000ffff;
70
71 if (format_major == 0x0)
Deepa Dinamania4ebcff2012-06-11 11:59:30 -070072 {
Channagoud Kadabi4f370b42014-05-21 16:06:59 -070073 if (format_minor == 6)
74 {
Deepa Dinamania4ebcff2012-06-11 11:59:30 -070075 board_info_len = sizeof(board_info_v6);
Shashank Mittala635abf2012-03-28 18:11:43 -070076
Channagoud Kadabi4f370b42014-05-21 16:06:59 -070077 ret = smem_read_alloc_entry(SMEM_BOARD_INFO_LOCATION,
78 &board_info_v6,
79 board_info_len);
80 if (ret)
81 return;
Shashank Mittala635abf2012-03-28 18:11:43 -070082
Channagoud Kadabi4f370b42014-05-21 16:06:59 -070083 board.platform = board_info_v6.board_info_v3.msm_id;
84 board.platform_version = board_info_v6.board_info_v3.msm_version;
85 board.platform_hw = board_info_v6.board_info_v3.hw_platform;
86 board.platform_subtype = board_info_v6.platform_subtype;
87 }
88 else if (format_minor == 7)
89 {
90 board_info_len = sizeof(board_info_v7);
Deepa Dinamania4ebcff2012-06-11 11:59:30 -070091
Channagoud Kadabi4f370b42014-05-21 16:06:59 -070092 ret = smem_read_alloc_entry(SMEM_BOARD_INFO_LOCATION,
93 &board_info_v7,
94 board_info_len);
95 if (ret)
96 return;
Deepa Dinamania4ebcff2012-06-11 11:59:30 -070097
Channagoud Kadabi4f370b42014-05-21 16:06:59 -070098 board.platform = board_info_v7.board_info_v3.msm_id;
99 board.platform_version = board_info_v7.board_info_v3.msm_version;
100 board.platform_hw = board_info_v7.board_info_v3.hw_platform;
101 board.platform_subtype = board_info_v7.platform_subtype;
102 board.pmic_info[0].pmic_type = board_info_v7.pmic_type;
103 board.pmic_info[0].pmic_version = board_info_v7.pmic_version;
104 }
105 else if (format_minor >= 8)
106 {
107 dprintf(INFO, "Minor socinfo format detected: %u.%u\n", format_major, format_minor);
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800108
Channagoud Kadabi4f370b42014-05-21 16:06:59 -0700109 board_info_len = sizeof(board_info_v8);
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800110
Channagoud Kadabi4f370b42014-05-21 16:06:59 -0700111 ret = smem_read_alloc_entry(SMEM_BOARD_INFO_LOCATION,
112 &board_info_v8,
113 board_info_len);
114 if (ret)
115 return;
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800116
Channagoud Kadabi4f370b42014-05-21 16:06:59 -0700117 board.platform = board_info_v8.board_info_v3.msm_id;
118 board.platform_version = board_info_v8.board_info_v3.msm_version;
119 board.platform_hw = board_info_v8.board_info_v3.hw_platform;
120 board.platform_subtype = board_info_v8.platform_subtype;
Maria Yuca51ee22013-06-27 21:45:24 +0800121
Channagoud Kadabi4f370b42014-05-21 16:06:59 -0700122 /*
123 * fill in board.target with variant_id information
124 * bit no |31 24 | 23 16 | 15 8 |7 0|
125 * board.target = |subtype| plat_hw_ver major | plat_hw_ver minor |hw_platform|
126 *
127 */
128 board.target = (((board_info_v8.platform_subtype & 0xff) << 24) |
129 (((board_info_v8.platform_version >> 16) & 0xff) << 16) |
130 ((board_info_v8.platform_version & 0xff) << 8) |
131 (board_info_v8.board_info_v3.hw_platform & 0xff));
132
133 for (i = 0; i < SMEM_V8_SMEM_MAX_PMIC_DEVICES; i++) {
134 board.pmic_info[i].pmic_type = board_info_v8.pmic_info[i].pmic_type;
135 board.pmic_info[i].pmic_version = board_info_v8.pmic_info[i].pmic_version;
Lijuan Gao9f152862014-08-18 13:45:24 +0800136
137 /*
138 * fill in pimc_board_info with pmic type and pmic version information
139 * bit no |31 24 | 23 16 | 15 8 |7 0|
140 * pimc_board_info = |Unused | Major version | Minor version|PMIC_MODEL|
141 *
142 */
143 pmic_type = board_info_v8.pmic_info[i].pmic_type == PMIC_IS_INVALID? 0 : board_info_v8.pmic_info[i].pmic_type;
144
145 board.pmic_info[i].pmic_target = (((board_info_v8.pmic_info[i].pmic_version >> 16) & 0xff) << 16) |
146 ((board_info_v8.pmic_info[i].pmic_version & 0xff) << 8) | (pmic_type & 0xff);
Channagoud Kadabi4f370b42014-05-21 16:06:59 -0700147 }
Sundarajan Srinivasan763c0db2014-05-20 17:08:36 -0700148
149 if (format_minor == 0x9)
150 board.foundry_id = board_info_v8.foundry_id;
Sridhar Parasuramc5f035f2014-10-22 12:37:36 -0700151
152 if (format_minor == 0xA)
153 board.chip_serial = board_info_v8.chip_serial;
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800154 }
Aparna Mallavarapu6eb30902014-05-13 17:03:10 +0530155
156 /* HLOS subtype
Aparna Mallavarapu97850bb2014-09-23 20:03:37 +0530157 * bit no |31 20 | 19 16| 15 8 | 7 0|
158 * board.platform_hlos_subtype = |reserved | Boot device | DDR detection | subtype|
159 * | bits | | bits |
Aparna Mallavarapu6eb30902014-05-13 17:03:10 +0530160 */
Aparna Mallavarapu97850bb2014-09-23 20:03:37 +0530161 board.platform_hlos_subtype = (board_get_ddr_subtype() << 8) | (platform_get_boot_dev() << 16);
Deepa Dinamania4ebcff2012-06-11 11:59:30 -0700162 }
163 else
164 {
Channagoud Kadabi4f370b42014-05-21 16:06:59 -0700165 dprintf(CRITICAL, "Unsupported board info format %u.%u\n", format_major, format_minor);
Deepa Dinamania4ebcff2012-06-11 11:59:30 -0700166 ASSERT(0);
Shashank Mittala635abf2012-03-28 18:11:43 -0700167 }
168}
169
Shashank Mittala635abf2012-03-28 18:11:43 -0700170void board_init()
171{
172 platform_detect();
Amol Jadi5c61a952012-05-04 17:05:35 -0700173 target_detect(&board);
174 target_baseband_detect(&board);
Shashank Mittala635abf2012-03-28 18:11:43 -0700175}
176
Amol Jadi5c61a952012-05-04 17:05:35 -0700177uint32_t board_platform_id(void)
Shashank Mittala635abf2012-03-28 18:11:43 -0700178{
179 return board.platform;
180}
181
Amol Jadi5c61a952012-05-04 17:05:35 -0700182uint32_t board_target_id()
Shashank Mittala635abf2012-03-28 18:11:43 -0700183{
184 return board.target;
185}
186
Amol Jadi5c61a952012-05-04 17:05:35 -0700187uint32_t board_baseband()
Shashank Mittala635abf2012-03-28 18:11:43 -0700188{
189 return board.baseband;
190}
Neeti Desai465491e2012-07-31 12:53:35 -0700191
192uint32_t board_hardware_id()
193{
194 return board.platform_hw;
195}
Deepa Dinamanib8b16432012-08-24 15:48:45 -0700196
Joel Kingaa335dc2013-06-03 16:11:08 -0700197uint32_t board_hardware_subtype(void)
198{
199 return board.platform_subtype;
200}
201
Sundarajan Srinivasan763c0db2014-05-20 17:08:36 -0700202uint32_t board_foundry_id(void)
203{
204 return board.foundry_id;
205}
206
Sridhar Parasuramc5f035f2014-10-22 12:37:36 -0700207uint32_t board_chip_serial(void)
208{
209 return board.chip_serial;
210}
211
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800212uint8_t board_pmic_info(struct board_pmic_data *info, uint8_t num_ent)
Deepa Dinamanib8b16432012-08-24 15:48:45 -0700213{
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800214 uint8_t i;
Deepa Dinamanib8b16432012-08-24 15:48:45 -0700215
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800216 for (i = 0; i < num_ent && i < SMEM_MAX_PMIC_DEVICES; i++) {
217 info->pmic_type = board.pmic_info[i].pmic_type;
218 info->pmic_version = board.pmic_info[i].pmic_version;
Lijuan Gao9f152862014-08-18 13:45:24 +0800219 info->pmic_target = board.pmic_info[i].pmic_target;
Channagoud Kadabibc0e47e2013-02-15 19:41:21 -0800220 info++;
221 }
222
223 return (i--);
Deepa Dinamanib8b16432012-08-24 15:48:45 -0700224}
Channagoud Kadabiafd62bf2013-01-08 20:32:52 -0800225
Lijuan Gao9f152862014-08-18 13:45:24 +0800226uint32_t board_pmic_target(uint8_t num_ent)
227{
228 if (num_ent < SMEM_MAX_PMIC_DEVICES) {
229 return board.pmic_info[num_ent].pmic_target;
230 }
231 return 0;
232}
233
Channagoud Kadabiafd62bf2013-01-08 20:32:52 -0800234uint32_t board_soc_version()
235{
236 return board.platform_version;
237}
Aparna Mallavarapu6eb30902014-05-13 17:03:10 +0530238
239uint32_t board_get_ddr_subtype(void)
240{
241 ram_partition ptn_entry;
242 unsigned int index;
243 uint32_t ret = 0;
244 uint32_t len = 0;
245 unsigned ddr_size = 0;
246
Aparna Mallavarapub377b792014-06-24 19:56:03 +0530247 /* Make sure RAM partition table is initialized */
248 ASSERT(smem_ram_ptable_init_v1());
249
Aparna Mallavarapu6eb30902014-05-13 17:03:10 +0530250 len = smem_get_ram_ptable_len();
251
252 /* Calculating the size of the mem_info_ptr */
253 for (index = 0 ; index < len; index++)
254 {
255 smem_get_ram_ptable_entry(&ptn_entry, index);
256
257 if((ptn_entry.category == SDRAM) &&
258 (ptn_entry.type == SYS_MEMORY))
259 {
260 ddr_size += ptn_entry.size;
261 }
262 }
263
264 switch(ddr_size)
265 {
266 case DDR_512MB:
267 ret = SUBTYPE_512MB;
268 break;
269 default:
270 ret = 0;
271 break;
272 };
273
274 return ret;
275}
276
277uint32_t board_hlos_subtype(void)
278{
279 return board.platform_hlos_subtype;
280}