blob: 8e6ae5326a584403ecdc1b6e4f1236b6c5d1f9d1 [file] [log] [blame]
Deepa Dinamani7dc3d4b2013-02-08 16:40:38 -08001/* Copyright (c) 2013, 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>
Deepa Dinamani7dc3d4b2013-02-08 16:40:38 -080032#include <qgic.h>
33#include <qtimer.h>
Deepa Dinamanie27da612013-03-25 13:49:14 -070034#include <platform/clock.h>
35#include <mmu.h>
36#include <arch/arm/mmu.h>
37#include <smem.h>
38#include <board.h>
39
40#define MB (1024*1024)
41
42#define MSM_IOMAP_SIZE ((MSM_IOMAP_END - MSM_IOMAP_BASE)/MB)
43
44/* LK memory - cacheable, write through */
45#define LK_MEMORY (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
46 MMU_MEMORY_AP_READ_WRITE)
47
48/* Peripherals - non-shared device */
49#define IOMAP_MEMORY (MMU_MEMORY_TYPE_DEVICE_SHARED | \
50 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN)
51
52/* IMEM memory - cacheable, write through */
53#define IMEM_MEMORY (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
54 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN)
55
56static mmu_section_t mmu_section_table[] = {
57/* Physical addr, Virtual addr, Size (in MB), Flags */
58 { MEMBASE, MEMBASE, (MEMSIZE / MB), LK_MEMORY},
59 { MSM_IOMAP_BASE, MSM_IOMAP_BASE, MSM_IOMAP_SIZE, IOMAP_MEMORY},
60 /* IMEM needs a seperate entry in the table as it's length is only 0x8000. */
61 { SYSTEM_IMEM_BASE, SYSTEM_IMEM_BASE, 1, IMEM_MEMORY},
62};
63
64static struct smem_ram_ptable ram_ptable;
Deepa Dinamani7dc3d4b2013-02-08 16:40:38 -080065
66void platform_early_init(void)
67{
Deepa Dinamanie27da612013-03-25 13:49:14 -070068 board_init();
Deepa Dinamani7dc3d4b2013-02-08 16:40:38 -080069 platform_clock_init();
70 qgic_init();
71 qtimer_init();
72}
73
74void platform_init(void)
75{
76 dprintf(INFO, "platform_init()\n");
77}
78
79void platform_uninit(void)
80{
Terence Hampsonafded262013-06-18 14:48:18 -040081#if DISPLAY_SPLASH_SCREEN
82 display_shutdown();
83#endif
84
Deepa Dinamani7dc3d4b2013-02-08 16:40:38 -080085 qtimer_uninit();
86}
Deepa Dinamanie27da612013-03-25 13:49:14 -070087
88int platform_use_identity_mmu_mappings(void)
89{
90 /* Use only the mappings specified in this file. */
91 return 0;
92}
93
94
95/* Setup memory for this platform */
96void platform_init_mmu_mappings(void)
97{
98 uint32_t i;
99 uint32_t sections;
100 uint32_t table_size = ARRAY_SIZE(mmu_section_table);
101
102 ASSERT(smem_ram_ptable_init(&ram_ptable));
103
104 /* Configure the MMU page entries for SDRAM and IMEM memory read
105 from the smem ram table*/
106 for(i = 0; i < ram_ptable.len; i++)
107 {
108 if(ram_ptable.parts[i].type == SYS_MEMORY)
109 {
110 if((ram_ptable.parts[i].category == SDRAM) ||
111 (ram_ptable.parts[i].category == IMEM))
112 {
113 /* Check to ensure that start address is 1MB aligned */
114 ASSERT((ram_ptable.parts[i].start & 0xFFFFF) == 0);
115
116 sections = (ram_ptable.parts[i].size) / MB;
117 while(sections--)
118 {
119 arm_mmu_map_section(ram_ptable.parts[i].start +
120 sections * MB,
121 ram_ptable.parts[i].start +
122 sections * MB,
123 (MMU_MEMORY_TYPE_NORMAL_WRITE_THROUGH | \
124 MMU_MEMORY_AP_READ_WRITE | MMU_MEMORY_XN));
125 }
126 }
127 }
128 }
129
130 /* Configure the MMU page entries for memory read from the
131 mmu_section_table */
132 for (i = 0; i < table_size; i++)
133 {
134 sections = mmu_section_table[i].num_of_sections;
135
136 while (sections--)
137 {
138 arm_mmu_map_section(mmu_section_table[i].paddress +
139 sections * MB,
140 mmu_section_table[i].vaddress +
141 sections * MB,
142 mmu_section_table[i].flags);
143 }
144 }
145}
146
147addr_t platform_get_virt_to_phys_mapping(addr_t virt_addr)
148{
149 /* Using 1-1 mapping on this platform. */
150 return virt_addr;
151}
152
153addr_t platform_get_phys_to_virt_mapping(addr_t phys_addr)
154{
155 /* Using 1-1 mapping on this platform. */
156 return phys_addr;
157}