blob: c316ab37efda5982a4df6c63134baf175a551d72 [file] [log] [blame]
Sundarajan Srinivasan270b1c02014-03-28 16:45:21 -07001/* Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
Deepa Dinamani645e9b12012-12-21 14:23:40 -08002 *
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>
Deepa Dinamanid1260ed2013-03-06 14:24:01 -080034#include <platform/clock.h>
35#include <mmu.h>
36#include <arch/arm/mmu.h>
37#include <smem.h>
38#include <board.h>
sundarajan srinivasan432010b2013-05-10 14:24:53 -070039#include <boot_stats.h>
Deepa Dinamanid1260ed2013-03-06 14:24:01 -080040
41#define MB (1024*1024)
42
43#define MSM_IOMAP_SIZE ((MSM_IOMAP_END - MSM_IOMAP_BASE)/MB)
44
45/* LK memory - cacheable, write through */
46#define LK_MEMORY (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
47 MMU_MEMORY_AP_READ_WRITE)
48
49/* Peripherals - non-shared device */
50#define IOMAP_MEMORY (MMU_MEMORY_TYPE_DEVICE_SHARED | \
51 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN)
52
53static mmu_section_t mmu_section_table[] = {
54/* Physical addr, Virtual addr, Size (in MB), Flags */
55 { MEMBASE, MEMBASE, (MEMSIZE / MB), LK_MEMORY},
56 { MSM_IOMAP_BASE, MSM_IOMAP_BASE, MSM_IOMAP_SIZE, IOMAP_MEMORY},
Sridhar Parasuram32d42ed2015-09-09 12:58:43 -070057 { RPMB_SND_RCV_BUF, RPMB_SND_RCV_BUF, RPMB_SND_RCV_BUF_SZ, IOMAP_MEMORY},
Deepa Dinamanid1260ed2013-03-06 14:24:01 -080058};
59
60static struct smem_ram_ptable ram_ptable;
Deepa Dinamani645e9b12012-12-21 14:23:40 -080061
62void platform_early_init(void)
63{
aiqunyb7f1cb12013-03-02 11:40:05 -080064 board_init();
Deepa Dinamanieb182372013-02-04 15:53:58 -080065 platform_clock_init();
Deepa Dinamani645e9b12012-12-21 14:23:40 -080066 qgic_init();
67 qtimer_init();
68}
69
70void platform_init(void)
71{
72 dprintf(INFO, "platform_init()\n");
73}
74
75void platform_uninit(void)
76{
Aravind Venkateswaran93f62312013-06-19 15:32:22 -070077#if DISPLAY_SPLASH_SCREEN
78 display_shutdown();
79#endif
80
Deepa Dinamani645e9b12012-12-21 14:23:40 -080081 qtimer_uninit();
82}
Deepa Dinamanid1260ed2013-03-06 14:24:01 -080083
sundarajan srinivasan432010b2013-05-10 14:24:53 -070084uint32_t platform_get_sclk_count(void)
85{
86 return readl(MPM2_MPM_SLEEP_TIMETICK_COUNT_VAL);
87}
88
89addr_t get_bs_info_addr()
90{
91 return ((addr_t)BS_INFO_ADDR);
92}
93
Deepa Dinamanid1260ed2013-03-06 14:24:01 -080094/* Setup memory for this platform */
95void platform_init_mmu_mappings(void)
96{
97 uint32_t i;
98 uint32_t sections;
99 uint32_t table_size = ARRAY_SIZE(mmu_section_table);
100
101 ASSERT(smem_ram_ptable_init(&ram_ptable));
102
103 /* Configure the MMU page entries for SDRAM and IMEM memory read
104 from the smem ram table*/
105 for(i = 0; i < ram_ptable.len; i++)
106 {
107 if(ram_ptable.parts[i].type == SYS_MEMORY)
108 {
109 if((ram_ptable.parts[i].category == SDRAM) ||
110 (ram_ptable.parts[i].category == IMEM))
111 {
112 /* Check to ensure that start address is 1MB aligned */
113 ASSERT((ram_ptable.parts[i].start & 0xFFFFF) == 0);
114
115 sections = (ram_ptable.parts[i].size) / MB;
116 while(sections--)
117 {
118 arm_mmu_map_section(ram_ptable.parts[i].start +
119 sections * MB,
120 ram_ptable.parts[i].start +
121 sections * MB,
122 (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
123 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN));
124 }
125 }
126 }
127 }
128
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}
Sundarajan Srinivasan270b1c02014-03-28 16:45:21 -0700145
146uint32_t platform_get_smem_base_addr()
147{
148 return (uint32_t)(readl(MSM_DYNAMIC_SHARED_BASE));
149}