blob: 7cbf165e37bc1479e04a094fd89d38048ec02636 [file] [log] [blame]
Channagoud Kadabi6cf28622015-05-28 15:12:43 -07001/* Copyright (c) 2013-2015, 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},
72 {SCRATCH_REGION2, SCRATCH_REGION2, SCRATCH_REGION2_SIZE / MB, SCRATCH_MEMORY},
73 {KERNEL_REGION, KERNEL_REGION, KERNEL_REGION_SIZE / MB, SCRATCH_MEMORY},
Joonwoo Park451dca32014-04-02 11:47:03 -070074};
75
76void platform_early_init(void)
77{
Channagoud Kadabid23379d2014-10-13 11:33:50 -070078 /* Read boot config for identifying boot device */
79 platform_read_boot_config();
80
Joonwoo Park451dca32014-04-02 11:47:03 -070081 /* Initialize board identifier data */
82 board_init();
83
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
158uint32_t platform_boot_config()
159{
160 uint32_t boot_config;
161
162 if (board_soc_version() >= 0x20000)
163 boot_config = BOOT_CONFIG_REG_V2;
164 else
165 boot_config = BOOT_CONFIG_REG_V1;
166
167 return boot_config;
168}