blob: 1cfc04880902097f9e027f17647de5886bdf7219 [file] [log] [blame]
Jeevan Shrirame51e1372017-01-10 15:51:31 -08001/* Copyright (c) 2013-2017, The Linux Foundation. All rights reserved.
Joonwoo Park451dca32014-04-02 11:47:03 -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.
12 * * Neither the name of The Linux Foundation nor the names of its
13 * 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 BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
20 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <debug.h>
30#include <platform.h>
31#include <qgic.h>
32#include <qtimer.h>
33#include <board.h>
Sridhar Parasuram673c6bb2014-12-29 13:39:35 -080034#include <boot_device.h>
Joonwoo Park451dca32014-04-02 11:47:03 -070035#include <mmu.h>
36#include <arch/arm/mmu.h>
37#include <platform/iomap.h>
Sridhar Parasuram673c6bb2014-12-29 13:39:35 -080038#include <platform/clock.h>
Joonwoo Park451dca32014-04-02 11:47:03 -070039#include <smem.h>
40#include <reg.h>
Joonwoo Park451dca32014-04-02 11:47:03 -070041#include <qpic_nand.h>
42#include <target.h>
43
44extern struct smem_ram_ptable* target_smem_ram_ptable_init();
45
Joonwoo Park451dca32014-04-02 11:47:03 -070046#define MSM_IOMAP_SIZE ((MSM_IOMAP_END - MSM_IOMAP_BASE)/MB)
47
48/* LK memory - Strongly ordered, executable */
49#define LK_MEMORY (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
50 MMU_MEMORY_AP_READ_WRITE)
51/* Scratch memory - Strongly ordered, non-executable */
Channagoud Kadabi1b69e482014-09-23 15:20:22 -070052#define SCRATCH_MEMORY (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
Joonwoo Park451dca32014-04-02 11:47:03 -070053 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN)
54/* Peripherals - shared device */
55#define IOMAP_MEMORY (MMU_MEMORY_TYPE_DEVICE_SHARED | \
56 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN)
57
Joonwoo Park451dca32014-04-02 11:47:03 -070058/* Map all the accesssible memory according to the following rules:
59 * 1. Map 1MB from MSM_SHARED_BASE with 1 -1 mapping.
60 * 2. Map MEMBASE - MEMSIZE with 1 -1 mapping.
61 * 3. Map all the scratch regions immediately after Appsbl memory.
62 * Virtual addresses start right after Appsbl Virtual address.
63 * 4. Map all the IOMAP space with 1 - 1 mapping.
64 * 5. Map all the rest of the SDRAM/ IMEM regions as 1 -1.
65 */
66mmu_section_t mmu_section_table[] = {
67/* Physical addr, Virtual addr, Size (in MB), Flags */
68 {MSM_SHARED_BASE, MSM_SHARED_BASE, 1, SCRATCH_MEMORY},
69 {MEMBASE, MEMBASE, MEMSIZE / MB, LK_MEMORY},
70 {MSM_IOMAP_BASE, MSM_IOMAP_BASE, MSM_IOMAP_SIZE, IOMAP_MEMORY},
Channagoud Kadabi1b69e482014-09-23 15:20:22 -070071 {SCRATCH_REGION1, SCRATCH_REGION1, SCRATCH_REGION1_SIZE / MB, SCRATCH_MEMORY},
Channagoud Kadabi1b69e482014-09-23 15:20:22 -070072 {KERNEL_REGION, KERNEL_REGION, KERNEL_REGION_SIZE / MB, SCRATCH_MEMORY},
Joonwoo Park451dca32014-04-02 11:47:03 -070073};
74
75void platform_early_init(void)
76{
Channagoud Kadabif3e50592015-06-02 16:19:24 -070077 /* Initialize board identifier data */
78 board_init();
79
Channagoud Kadabid23379d2014-10-13 11:33:50 -070080 /* Read boot config for identifying boot device */
81 platform_read_boot_config();
82
Joonwoo Park451dca32014-04-02 11:47:03 -070083
84 /* Initialize clock driver */
85 platform_clock_init();
86
87 /* Initialize interrupt controller */
88 qgic_init();
89
90 /* timer */
91 qtimer_init();
92}
93
94void platform_init(void)
95{
96 dprintf(INFO, "platform_init()\n");
97}
98
99void platform_uninit(void)
100{
101 qtimer_uninit();
102 if (!platform_boot_dev_isemmc())
103 qpic_nand_uninit();
104}
105
106/* Do not use default identitiy mappings. */
107int platform_use_identity_mmu_mappings(void)
108{
109 return 0;
110}
111
112uint32_t platform_get_sclk_count(void)
113{
114 return readl(MPM2_MPM_SLEEP_TIMETICK_COUNT_VAL);
115}
116
117addr_t get_bs_info_addr()
118{
119 return ((addr_t)BS_INFO_ADDR);
120}
121
122/* Setup memory for this platform */
123void platform_init_mmu_mappings(void)
124{
125 uint32_t i;
126 uint32_t sections;
Joonwoo Park451dca32014-04-02 11:47:03 -0700127 uint32_t table_size = ARRAY_SIZE(mmu_section_table);
Joonwoo Park451dca32014-04-02 11:47:03 -0700128
129 /* Configure the MMU page entries for memory read from the
130 mmu_section_table */
131 for (i = 0; i < table_size; i++)
132 {
133 sections = mmu_section_table[i].num_of_sections;
134
135 while (sections--)
136 {
137 arm_mmu_map_section(mmu_section_table[i].paddress +
138 sections * MB,
139 mmu_section_table[i].vaddress +
140 sections * MB,
141 mmu_section_table[i].flags);
142 }
143 }
144}
145
146addr_t platform_get_virt_to_phys_mapping(addr_t virt_addr)
147{
Channagoud Kadabi1b69e482014-09-23 15:20:22 -0700148 /* Fixed 1-1 mapping */
149 return virt_addr;
Joonwoo Park451dca32014-04-02 11:47:03 -0700150}
151
152addr_t platform_get_phys_to_virt_mapping(addr_t phys_addr)
153{
Channagoud Kadabi1b69e482014-09-23 15:20:22 -0700154 /* Fixed 1-1 mapping */
155 return phys_addr;
Joonwoo Park451dca32014-04-02 11:47:03 -0700156}
Channagoud Kadabi6cf28622015-05-28 15:12:43 -0700157
Channagoud Kadabifdfee232015-10-07 11:55:47 -0700158
Karthik Jadala8e6b2192017-02-08 12:59:16 +0530159bool platform_is_mdm9650()
Channagoud Kadabifdfee232015-10-07 11:55:47 -0700160{
161 uint32_t platform_id = board_platform_id();
162 bool ret;
163
164 switch(platform_id)
165 {
Karthik Jadalaa2f6f9c2017-02-20 15:01:47 +0530166 case MDM9650:
167 case MDM9655:
168 case MDM9250:
169 case MDM9255:
Channagoud Kadabifdfee232015-10-07 11:55:47 -0700170 ret = true;
171 break;
172 default:
173 ret = false;
174 };
175
176 return ret;
177}
178
anisha agarwal35eb8032017-03-21 13:12:12 -0700179bool platform_is_sdx20()
Runmin Wangdc8e9732016-10-06 11:14:08 -0700180{
181 uint32_t platform_id = board_platform_id();
182 bool ret;
183
184 switch(platform_id)
185 {
anisha agarwal35eb8032017-03-21 13:12:12 -0700186 case SDX201:
187 case SDX202:
Runmin Wangdc8e9732016-10-06 11:14:08 -0700188 ret = true;
189 break;
190 default:
191 ret = false;
192 };
193
194 return ret;
195}
196
Channagoud Kadabi6cf28622015-05-28 15:12:43 -0700197uint32_t platform_boot_config()
198{
199 uint32_t boot_config;
200
anisha agarwal35eb8032017-03-21 13:12:12 -0700201 if (platform_is_mdm9650() || platform_is_sdx20())
Channagoud Kadabifdfee232015-10-07 11:55:47 -0700202 boot_config = BOOT_CONFIG_REG_V2;
203 /* Else the platform is 9x45 */
204 else if (board_soc_version() >= 0x20000)
Channagoud Kadabi6cf28622015-05-28 15:12:43 -0700205 boot_config = BOOT_CONFIG_REG_V2;
206 else
207 boot_config = BOOT_CONFIG_REG_V1;
208
209 return boot_config;
210}
Channagoud Kadabifdfee232015-10-07 11:55:47 -0700211
212uint32_t platform_get_qmp_rev()
213{
214 return readl(USB3_PHY_REVISION_ID3) << 24 | readl(USB3_PHY_REVISION_ID2) << 16 |
215 readl(USB3_PHY_REVISION_ID1) << 8 | readl(USB3_PHY_REVISION_ID0);
216}
217
Mayank Grover9714e2c2016-12-15 14:48:54 +0530218bool platform_is_glink_enabled()
219{
anisha agarwal35eb8032017-03-21 13:12:12 -0700220 if (platform_is_sdx20())
Mayank Grover9714e2c2016-12-15 14:48:54 +0530221 return 1;
222 else
223 return 0;
224}