blob: 7f88b56a1d20bb6d68396d12fd1c08c44ff5209a [file] [log] [blame]
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -07001/* Copyright (c) 2012, 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 "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <reg.h>
30#include <debug.h>
31#include <malloc.h>
32#include <smem.h>
33#include <stdint.h>
34#include <libfdt.h>
Deepa Dinamani61e3a0c2012-10-19 14:33:37 -070035#include <platform.h>
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070036#include <platform/iomap.h>
37#include <dev_tree.h>
38
39#define SIZE_1M (1024 * 1024)
40
41typedef struct {
42 uint32_t size;
43 uint32_t start_addr;
44}mem_info;
45
Deepa Dinamani61e3a0c2012-10-19 14:33:37 -070046static struct smem_ram_ptable ram_ptable;
47
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070048mem_info mdm9625_default_fixed_memory[] = {
49 { .size = (29 * SIZE_1M),
50 .start_addr = SDRAM_START_ADDR +
51 (2 * SIZE_1M)
52 },
53 { .size = (10 * SIZE_1M),
54 .start_addr = SDRAM_START_ADDR +
55 (118 * SIZE_1M)
56 },
57};
58
Deepa Dinamani61e3a0c2012-10-19 14:33:37 -070059struct smem_ram_ptable* target_smem_ram_ptable_init()
60{
61 /* Make sure RAM partition table is initialized */
62 ASSERT(smem_ram_ptable_init(&ram_ptable));
63
64 return &ram_ptable;
65}
66
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070067int target_add_first_mem_bank(void *fdt,
68 uint32_t offset,
69 mem_info usable_mem_map[],
70 uint32_t num_regions)
71{
72 uint32_t i;
73 int ret;
74
75 ASSERT(num_regions);
76
77 dprintf(SPEW, "Number of HLOS regions in 1st bank = %u\n", num_regions);
78
79 for (i = 0; i < num_regions; i++)
80 {
81 ret = dev_tree_add_mem_info(fdt,
82 offset,
83 usable_mem_map[i].start_addr,
84 usable_mem_map[i].size);
85 }
86 return ret;
87}
88
89/* Funtion to add the ram partition entries into device tree.
90 * The function assumes that all the entire fixed memory regions should
91 * be listed in the first bank of the passed in ddr regions.
92 */
93uint32_t target_dev_tree_mem(void *fdt, uint32_t memory_node_offset)
94{
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -070095 uint32_t last_fixed_addr;
96 int n;
97 unsigned int i;
98 int ret;
99
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700100 n = ARRAY_SIZE(mdm9625_default_fixed_memory);
101
102 last_fixed_addr = mdm9625_default_fixed_memory[n-1].start_addr +
103 mdm9625_default_fixed_memory[n-1].size;
104
105 for (i = 0; i < ram_ptable.len; i++)
106 {
107 if((ram_ptable.parts[i].category == SDRAM) &&
108 (ram_ptable.parts[i].type == SYS_MEMORY))
109 {
110 if((ram_ptable.parts[i].start <= last_fixed_addr) &&
111 ((ram_ptable.parts[i].start + ram_ptable.parts[i].size) >= last_fixed_addr))
112 {
113
114 /* Pass along all fixed memory regions to Linux */
115 ret = target_add_first_mem_bank(fdt,
116 memory_node_offset,
117 mdm9625_default_fixed_memory,
118 ARRAY_SIZE(mdm9625_default_fixed_memory));
119
120 if (ret)
121 {
122 dprintf(CRITICAL, "Failed to add first bank fixed memory addresses\n");
123 goto target_dev_tree_mem_err;
124 }
125
126 if((ram_ptable.parts[i].start + ram_ptable.parts[i].size) != last_fixed_addr)
127 {
128 /* Pass the memory beyond the fixed memory present in the partition */
129 ret = dev_tree_add_mem_info(fdt,
130 memory_node_offset,
131 ram_ptable.parts[i].start + last_fixed_addr,
132 ram_ptable.parts[i].size - last_fixed_addr);
133
134 if (ret)
135 {
136 dprintf(CRITICAL, "Failed to add first bank memory addresses\n");
137 goto target_dev_tree_mem_err;
138 }
139 }
140 }
141 else
142 {
143 /* Pass along all other usable memory regions to Linux */
144 ret = dev_tree_add_mem_info(fdt,
145 memory_node_offset,
146 ram_ptable.parts[i].start,
147 ram_ptable.parts[i].size);
148
149 if (ret)
150 {
151 dprintf(CRITICAL, "Failed to add secondary banks memory addresses\n");
152 goto target_dev_tree_mem_err;
153 }
154 }
155 }
156 }
157
158target_dev_tree_mem_err:
159
160 return ret;
161}
162
163void *target_get_scratch_address(void)
164{
Deepa Dinamani61e3a0c2012-10-19 14:33:37 -0700165 return ((void *) VA((addr_t)SCRATCH_REGION1));
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700166}
167
168unsigned target_get_max_flash_size(void)
169{
Deepa Dinamani61e3a0c2012-10-19 14:33:37 -0700170 return (SCRATCH_REGION1_SIZE + SCRATCH_REGION2_SIZE);
Deepa Dinamani28c0ffe2012-09-24 11:45:21 -0700171}