blob: 80f4ad317cbf3c930f62316ab25b9d458fd359bc [file] [log] [blame]
Channagoud Kadabi123c9722014-02-06 13:22:50 -08001/* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
2 *
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 <reg.h>
31#include <platform/iomap.h>
32#include <qgic.h>
33#include <qtimer.h>
34#include <platform/clock.h>
35#include <mmu.h>
36#include <arch/arm/mmu.h>
37#include <smem.h>
38#include <board.h>
39
Channagoud Kadabi123c9722014-02-06 13:22:50 -080040#define MSM_IOMAP_SIZE ((MSM_IOMAP_END - MSM_IOMAP_BASE)/MB)
41
42/* LK memory - cacheable, write through */
43#define LK_MEMORY (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
44 MMU_MEMORY_AP_READ_WRITE)
45
46/* Peripherals - non-shared device */
47#define IOMAP_MEMORY (MMU_MEMORY_TYPE_DEVICE_SHARED | \
48 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN)
49
50/* IMEM memory - cacheable, write through */
51#define IMEM_MEMORY (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
52 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN)
53
54static mmu_section_t mmu_section_table[] = {
55/* Physical addr, Virtual addr, Size (in MB), Flags */
56 { MEMBASE, MEMBASE, (MEMSIZE / MB), LK_MEMORY},
57 { MSM_IOMAP_BASE, MSM_IOMAP_BASE, MSM_IOMAP_SIZE, IOMAP_MEMORY},
58 { SYSTEM_IMEM_BASE, SYSTEM_IMEM_BASE, 1, IMEM_MEMORY},
59};
60
61void platform_early_init(void)
62{
63 board_init();
64 platform_clock_init();
65 qgic_init();
66 qtimer_init();
Channagoud Kadabic7eb5692014-08-19 15:45:00 -070067 scm_init();
Channagoud Kadabi123c9722014-02-06 13:22:50 -080068}
69
70void platform_init(void)
71{
72 dprintf(INFO, "platform_init()\n");
Channagoud Kadabidc627c02014-06-26 14:45:34 -070073#if ENABLE_XPU_VIOLATION
74 scm_xpu_err_fatal_init();
75#endif
Channagoud Kadabi123c9722014-02-06 13:22:50 -080076}
77
78void platform_uninit(void)
79{
80#if DISPLAY_SPLASH_SCREEN
81 display_shutdown();
82#endif
83
84 qtimer_uninit();
85}
86
87int platform_use_identity_mmu_mappings(void)
88{
89 /* Use only the mappings specified in this file. */
90 return 0;
91}
92
93/* Setup memory for this platform */
94void platform_init_mmu_mappings(void)
95{
96 uint32_t i;
97 uint32_t sections;
98 ram_partition ptn_entry;
99 uint32_t table_size = ARRAY_SIZE(mmu_section_table);
100 uint32_t len = 0;
101
102 ASSERT(smem_ram_ptable_init_v1());
103
104 len = smem_get_ram_ptable_len();
105
106 /* Configure the MMU page entries for SDRAM and IMEM memory read
107 from the smem ram table*/
108 for(i = 0; i < len; i++)
109 {
110 smem_get_ram_ptable_entry(&ptn_entry, i);
111 if(ptn_entry.type == SYS_MEMORY)
112 {
113 if((ptn_entry.category == SDRAM) ||
114 (ptn_entry.category == IMEM))
115 {
116 /* Check to ensure that start address is 1MB aligned */
117 ASSERT((ptn_entry.start & (MB-1)) == 0);
118
119 sections = (ptn_entry.size) / MB;
120 while(sections--)
121 {
122 arm_mmu_map_section(ptn_entry.start +
123 sections * MB,
124 ptn_entry.start +
125 sections * MB,
126 (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
127 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN));
128 }
129 }
130 }
131 }
132
133 /* Configure the MMU page entries for memory read from the
134 mmu_section_table */
135 for (i = 0; i < table_size; i++)
136 {
137 sections = mmu_section_table[i].num_of_sections;
138
139 while (sections--)
140 {
141 arm_mmu_map_section(mmu_section_table[i].paddress +
142 sections * MB,
143 mmu_section_table[i].vaddress +
144 sections * MB,
145 mmu_section_table[i].flags);
146 }
147 }
148}
149
150addr_t platform_get_virt_to_phys_mapping(addr_t virt_addr)
151{
152 /* Using 1-1 mapping on this platform. */
153 return virt_addr;
154}
155
156addr_t platform_get_phys_to_virt_mapping(addr_t phys_addr)
157{
158 /* Using 1-1 mapping on this platform. */
159 return phys_addr;
160}
161
162uint32_t platform_get_sclk_count(void)
163{
164 return readl(MPM2_MPM_SLEEP_TIMETICK_COUNT_VAL);
165}
166
Sridhar Parasuram39419a32014-09-12 18:11:05 -0700167int platform_is_msm8994()
168{
169 uint32_t platform = board_platform_id();
170 if ((platform == APQ8094) || (platform == MSM8994))
171 return 1;
172 else
173 return 0;
174}
175
Channagoud Kadabi123c9722014-02-06 13:22:50 -0800176addr_t get_bs_info_addr()
177{
Sridhar Parasuram39419a32014-09-12 18:11:05 -0700178 if (platform_is_msm8994())
179 return ((addr_t)BS_INFO_ADDR);
180 else
181 return ((addr_t)BS_INFO_ADDR2);
Channagoud Kadabi123c9722014-02-06 13:22:50 -0800182}
Unnati Gandhi6c92a4f2014-11-18 18:01:51 +0530183
184int boot_device_mask(int val)
185{
186 return ((val & 0x3E) >> 1);
187}