blob: 97e547037084dc22fc3fd93f5fd2aacd7419db02 [file] [log] [blame]
Paul Mackerras7c8c6b92005-10-06 12:23:33 +10001/*
2 * Procedures for maintaining information about logical memory blocks.
3 *
4 * Peter Bergner, IBM Corp. June 2001.
5 * Copyright (C) 2001 Peter Bergner.
David S. Millerd9b2b2a2008-02-13 16:56:49 -08006 *
Paul Mackerras7c8c6b92005-10-06 12:23:33 +10007 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100013#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/bitops.h>
David S. Millerd9b2b2a2008-02-13 16:56:49 -080016#include <linux/lmb.h>
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100017
Michael Ellerman3b9331d2006-01-25 21:31:30 +130018#define LMB_ALLOC_ANYWHERE 0
19
Michael Ellermaneb481892005-11-15 14:49:22 +110020struct lmb lmb;
21
David S. Millerfaa6cfd2008-05-12 17:21:55 -070022static int lmb_debug;
23
24static int __init early_lmb(char *p)
25{
26 if (p && strstr(p, "debug"))
27 lmb_debug = 1;
28 return 0;
29}
30early_param("lmb", early_lmb);
31
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100032void lmb_dump_all(void)
33{
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100034 unsigned long i;
35
David S. Millerfaa6cfd2008-05-12 17:21:55 -070036 if (!lmb_debug)
37 return;
38
39 pr_info("lmb_dump_all:\n");
40 pr_info(" memory.cnt = 0x%lx\n", lmb.memory.cnt);
41 pr_info(" memory.size = 0x%llx\n",
Becky Brucee5f27092008-02-13 16:58:39 -080042 (unsigned long long)lmb.memory.size);
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100043 for (i=0; i < lmb.memory.cnt ;i++) {
David S. Millerfaa6cfd2008-05-12 17:21:55 -070044 pr_info(" memory.region[0x%lx].base = 0x%llx\n",
Becky Brucee5f27092008-02-13 16:58:39 -080045 i, (unsigned long long)lmb.memory.region[i].base);
David S. Millerfaa6cfd2008-05-12 17:21:55 -070046 pr_info(" .size = 0x%llx\n",
Becky Brucee5f27092008-02-13 16:58:39 -080047 (unsigned long long)lmb.memory.region[i].size);
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100048 }
49
David S. Millerfaa6cfd2008-05-12 17:21:55 -070050 pr_info(" reserved.cnt = 0x%lx\n", lmb.reserved.cnt);
Kumar Galaf9ebcd92008-05-18 13:18:01 -050051 pr_info(" reserved.size = 0x%llx\n",
52 (unsigned long long)lmb.memory.size);
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100053 for (i=0; i < lmb.reserved.cnt ;i++) {
David S. Millerfaa6cfd2008-05-12 17:21:55 -070054 pr_info(" reserved.region[0x%lx].base = 0x%llx\n",
Becky Brucee5f27092008-02-13 16:58:39 -080055 i, (unsigned long long)lmb.reserved.region[i].base);
David S. Millerfaa6cfd2008-05-12 17:21:55 -070056 pr_info(" .size = 0x%llx\n",
Becky Brucee5f27092008-02-13 16:58:39 -080057 (unsigned long long)lmb.reserved.region[i].size);
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100058 }
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100059}
60
Badari Pulavarty98d5c212008-04-18 13:33:52 -070061static unsigned long lmb_addrs_overlap(u64 base1, u64 size1, u64 base2,
62 u64 size2)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100063{
Paul Mackerras300613e2008-04-12 15:20:59 +100064 return ((base1 < (base2 + size2)) && (base2 < (base1 + size1)));
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100065}
66
Badari Pulavarty98d5c212008-04-18 13:33:52 -070067static long lmb_addrs_adjacent(u64 base1, u64 size1, u64 base2, u64 size2)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100068{
69 if (base2 == base1 + size1)
70 return 1;
71 else if (base1 == base2 + size2)
72 return -1;
73
74 return 0;
75}
76
Badari Pulavarty98d5c212008-04-18 13:33:52 -070077static long lmb_regions_adjacent(struct lmb_region *rgn,
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100078 unsigned long r1, unsigned long r2)
79{
Becky Brucee5f27092008-02-13 16:58:39 -080080 u64 base1 = rgn->region[r1].base;
81 u64 size1 = rgn->region[r1].size;
82 u64 base2 = rgn->region[r2].base;
83 u64 size2 = rgn->region[r2].size;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100084
85 return lmb_addrs_adjacent(base1, size1, base2, size2);
86}
87
Badari Pulavarty98d5c212008-04-18 13:33:52 -070088static void lmb_remove_region(struct lmb_region *rgn, unsigned long r)
Michael Ellerman2babf5c2006-05-17 18:00:46 +100089{
90 unsigned long i;
91
92 for (i = r; i < rgn->cnt - 1; i++) {
93 rgn->region[i].base = rgn->region[i + 1].base;
94 rgn->region[i].size = rgn->region[i + 1].size;
95 }
96 rgn->cnt--;
97}
98
Paul Mackerras7c8c6b92005-10-06 12:23:33 +100099/* Assumption: base addr of region 1 < base addr of region 2 */
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700100static void lmb_coalesce_regions(struct lmb_region *rgn,
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000101 unsigned long r1, unsigned long r2)
102{
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000103 rgn->region[r1].size += rgn->region[r2].size;
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000104 lmb_remove_region(rgn, r2);
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000105}
106
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000107void __init lmb_init(void)
108{
109 /* Create a dummy zero size LMB which will get coalesced away later.
110 * This simplifies the lmb_add() code below...
111 */
112 lmb.memory.region[0].base = 0;
113 lmb.memory.region[0].size = 0;
114 lmb.memory.cnt = 1;
115
116 /* Ditto. */
117 lmb.reserved.region[0].base = 0;
118 lmb.reserved.region[0].size = 0;
119 lmb.reserved.cnt = 1;
120}
121
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000122void __init lmb_analyze(void)
123{
124 int i;
125
126 lmb.memory.size = 0;
127
128 for (i = 0; i < lmb.memory.cnt; i++)
129 lmb.memory.size += lmb.memory.region[i].size;
130}
131
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700132static long lmb_add_region(struct lmb_region *rgn, u64 base, u64 size)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000133{
Manish Ahuja56d6d1a2007-07-10 05:03:45 +1000134 unsigned long coalesced = 0;
135 long adjacent, i;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000136
Kumar Gala27e66722008-02-13 16:58:11 -0800137 if ((rgn->cnt == 1) && (rgn->region[0].size == 0)) {
138 rgn->region[0].base = base;
139 rgn->region[0].size = size;
140 return 0;
141 }
142
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000143 /* First try and coalesce this LMB with another. */
Paul Mackerras300613e2008-04-12 15:20:59 +1000144 for (i = 0; i < rgn->cnt; i++) {
Becky Brucee5f27092008-02-13 16:58:39 -0800145 u64 rgnbase = rgn->region[i].base;
146 u64 rgnsize = rgn->region[i].size;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000147
David Gibsoneb6de282007-02-28 14:12:29 +1100148 if ((rgnbase == base) && (rgnsize == size))
149 /* Already have this region, so we're done */
150 return 0;
151
Paul Mackerras300613e2008-04-12 15:20:59 +1000152 adjacent = lmb_addrs_adjacent(base, size, rgnbase, rgnsize);
153 if (adjacent > 0) {
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000154 rgn->region[i].base -= size;
155 rgn->region[i].size += size;
156 coalesced++;
157 break;
Paul Mackerras300613e2008-04-12 15:20:59 +1000158 } else if (adjacent < 0) {
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000159 rgn->region[i].size += size;
160 coalesced++;
161 break;
162 }
163 }
164
Paul Mackerras300613e2008-04-12 15:20:59 +1000165 if ((i < rgn->cnt - 1) && lmb_regions_adjacent(rgn, i, i+1)) {
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000166 lmb_coalesce_regions(rgn, i, i+1);
167 coalesced++;
168 }
169
170 if (coalesced)
171 return coalesced;
172 if (rgn->cnt >= MAX_LMB_REGIONS)
173 return -1;
174
175 /* Couldn't coalesce the LMB, so add it to the sorted table. */
Paul Mackerras300613e2008-04-12 15:20:59 +1000176 for (i = rgn->cnt - 1; i >= 0; i--) {
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000177 if (base < rgn->region[i].base) {
178 rgn->region[i+1].base = rgn->region[i].base;
179 rgn->region[i+1].size = rgn->region[i].size;
180 } else {
181 rgn->region[i+1].base = base;
182 rgn->region[i+1].size = size;
183 break;
184 }
185 }
Kumar Gala74b20da2008-02-19 21:28:18 -0800186
187 if (base < rgn->region[0].base) {
188 rgn->region[0].base = base;
189 rgn->region[0].size = size;
190 }
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000191 rgn->cnt++;
192
193 return 0;
194}
195
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700196long lmb_add(u64 base, u64 size)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000197{
Paul Mackerras300613e2008-04-12 15:20:59 +1000198 struct lmb_region *_rgn = &lmb.memory;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000199
200 /* On pSeries LPAR systems, the first LMB is our RMO region. */
201 if (base == 0)
202 lmb.rmo_size = size;
203
204 return lmb_add_region(_rgn, base, size);
205
206}
207
Badari Pulavarty98d5c212008-04-18 13:33:52 -0700208long lmb_remove(u64 base, u64 size)
209{
210 struct lmb_region *rgn = &(lmb.memory);
211 u64 rgnbegin, rgnend;
212 u64 end = base + size;
213 int i;
214
215 rgnbegin = rgnend = 0; /* supress gcc warnings */
216
217 /* Find the region where (base, size) belongs to */
218 for (i=0; i < rgn->cnt; i++) {
219 rgnbegin = rgn->region[i].base;
220 rgnend = rgnbegin + rgn->region[i].size;
221
222 if ((rgnbegin <= base) && (end <= rgnend))
223 break;
224 }
225
226 /* Didn't find the region */
227 if (i == rgn->cnt)
228 return -1;
229
230 /* Check to see if we are removing entire region */
231 if ((rgnbegin == base) && (rgnend == end)) {
232 lmb_remove_region(rgn, i);
233 return 0;
234 }
235
236 /* Check to see if region is matching at the front */
237 if (rgnbegin == base) {
238 rgn->region[i].base = end;
239 rgn->region[i].size -= size;
240 return 0;
241 }
242
243 /* Check to see if the region is matching at the end */
244 if (rgnend == end) {
245 rgn->region[i].size -= size;
246 return 0;
247 }
248
249 /*
250 * We need to split the entry - adjust the current one to the
251 * beginging of the hole and add the region after hole.
252 */
253 rgn->region[i].size = base - rgn->region[i].base;
254 return lmb_add_region(rgn, end, rgnend - end);
255}
256
Becky Brucee5f27092008-02-13 16:58:39 -0800257long __init lmb_reserve(u64 base, u64 size)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000258{
Paul Mackerras300613e2008-04-12 15:20:59 +1000259 struct lmb_region *_rgn = &lmb.reserved;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000260
Michael Ellerman8c20faf2006-01-25 21:31:26 +1300261 BUG_ON(0 == size);
262
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000263 return lmb_add_region(_rgn, base, size);
264}
265
Paul Mackerras300613e2008-04-12 15:20:59 +1000266long __init lmb_overlaps_region(struct lmb_region *rgn, u64 base, u64 size)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000267{
268 unsigned long i;
269
Paul Mackerras300613e2008-04-12 15:20:59 +1000270 for (i = 0; i < rgn->cnt; i++) {
Becky Brucee5f27092008-02-13 16:58:39 -0800271 u64 rgnbase = rgn->region[i].base;
272 u64 rgnsize = rgn->region[i].size;
Paul Mackerras300613e2008-04-12 15:20:59 +1000273 if (lmb_addrs_overlap(base, size, rgnbase, rgnsize))
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000274 break;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000275 }
276
277 return (i < rgn->cnt) ? i : -1;
278}
279
David S. Millerc50f68c2008-03-24 20:50:48 +1100280static u64 lmb_align_down(u64 addr, u64 size)
281{
282 return addr & ~(size - 1);
283}
284
285static u64 lmb_align_up(u64 addr, u64 size)
286{
287 return (addr + (size - 1)) & ~(size - 1);
288}
289
290static u64 __init lmb_alloc_nid_unreserved(u64 start, u64 end,
291 u64 size, u64 align)
292{
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000293 u64 base, res_base;
David S. Millerc50f68c2008-03-24 20:50:48 +1100294 long j;
295
296 base = lmb_align_down((end - size), align);
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000297 while (start <= base) {
298 j = lmb_overlaps_region(&lmb.reserved, base, size);
299 if (j < 0) {
300 /* this area isn't reserved, take it */
David S. Miller4978db52008-05-12 16:51:15 -0700301 if (lmb_add_region(&lmb.reserved, base, size) < 0)
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000302 base = ~(u64)0;
303 return base;
304 }
305 res_base = lmb.reserved.region[j].base;
306 if (res_base < size)
307 break;
308 base = lmb_align_down(res_base - size, align);
David S. Millerc50f68c2008-03-24 20:50:48 +1100309 }
310
311 return ~(u64)0;
312}
313
314static u64 __init lmb_alloc_nid_region(struct lmb_property *mp,
315 u64 (*nid_range)(u64, u64, int *),
316 u64 size, u64 align, int nid)
317{
318 u64 start, end;
319
320 start = mp->base;
321 end = start + mp->size;
322
323 start = lmb_align_up(start, align);
324 while (start < end) {
325 u64 this_end;
326 int this_nid;
327
328 this_end = nid_range(start, end, &this_nid);
329 if (this_nid == nid) {
330 u64 ret = lmb_alloc_nid_unreserved(start, this_end,
331 size, align);
332 if (ret != ~(u64)0)
333 return ret;
334 }
335 start = this_end;
336 }
337
338 return ~(u64)0;
339}
340
341u64 __init lmb_alloc_nid(u64 size, u64 align, int nid,
342 u64 (*nid_range)(u64 start, u64 end, int *nid))
343{
344 struct lmb_region *mem = &lmb.memory;
345 int i;
346
David S. Miller4978db52008-05-12 16:51:15 -0700347 BUG_ON(0 == size);
348
349 size = lmb_align_up(size, align);
350
David S. Millerc50f68c2008-03-24 20:50:48 +1100351 for (i = 0; i < mem->cnt; i++) {
352 u64 ret = lmb_alloc_nid_region(&mem->region[i],
353 nid_range,
354 size, align, nid);
355 if (ret != ~(u64)0)
356 return ret;
357 }
358
359 return lmb_alloc(size, align);
360}
361
Becky Brucee5f27092008-02-13 16:58:39 -0800362u64 __init lmb_alloc(u64 size, u64 align)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000363{
364 return lmb_alloc_base(size, align, LMB_ALLOC_ANYWHERE);
365}
366
Becky Brucee5f27092008-02-13 16:58:39 -0800367u64 __init lmb_alloc_base(u64 size, u64 align, u64 max_addr)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000368{
Becky Brucee5f27092008-02-13 16:58:39 -0800369 u64 alloc;
Michael Ellermand7a5b2f2006-01-25 21:31:28 +1300370
371 alloc = __lmb_alloc_base(size, align, max_addr);
372
Michael Ellerman2c2766032006-03-16 14:47:20 +1100373 if (alloc == 0)
Becky Brucee5f27092008-02-13 16:58:39 -0800374 panic("ERROR: Failed to allocate 0x%llx bytes below 0x%llx.\n",
375 (unsigned long long) size, (unsigned long long) max_addr);
Michael Ellermand7a5b2f2006-01-25 21:31:28 +1300376
377 return alloc;
378}
379
Becky Brucee5f27092008-02-13 16:58:39 -0800380u64 __init __lmb_alloc_base(u64 size, u64 align, u64 max_addr)
Michael Ellermand7a5b2f2006-01-25 21:31:28 +1300381{
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000382 long i, j;
Becky Brucee5f27092008-02-13 16:58:39 -0800383 u64 base = 0;
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000384 u64 res_base;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000385
Michael Ellerman8c20faf2006-01-25 21:31:26 +1300386 BUG_ON(0 == size);
387
David S. Miller4978db52008-05-12 16:51:15 -0700388 size = lmb_align_up(size, align);
389
David S. Millerd9b2b2a2008-02-13 16:56:49 -0800390 /* On some platforms, make sure we allocate lowmem */
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000391 /* Note that LMB_REAL_LIMIT may be LMB_ALLOC_ANYWHERE */
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000392 if (max_addr == LMB_ALLOC_ANYWHERE)
David S. Millerd9b2b2a2008-02-13 16:56:49 -0800393 max_addr = LMB_REAL_LIMIT;
394
Paul Mackerras300613e2008-04-12 15:20:59 +1000395 for (i = lmb.memory.cnt - 1; i >= 0; i--) {
Becky Brucee5f27092008-02-13 16:58:39 -0800396 u64 lmbbase = lmb.memory.region[i].base;
397 u64 lmbsize = lmb.memory.region[i].size;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000398
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000399 if (lmbsize < size)
400 continue;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000401 if (max_addr == LMB_ALLOC_ANYWHERE)
David S. Millerd9b2b2a2008-02-13 16:56:49 -0800402 base = lmb_align_down(lmbbase + lmbsize - size, align);
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000403 else if (lmbbase < max_addr) {
404 base = min(lmbbase + lmbsize, max_addr);
David S. Millerd9b2b2a2008-02-13 16:56:49 -0800405 base = lmb_align_down(base - size, align);
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000406 } else
407 continue;
408
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000409 while (base && lmbbase <= base) {
Paul Mackerras300613e2008-04-12 15:20:59 +1000410 j = lmb_overlaps_region(&lmb.reserved, base, size);
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000411 if (j < 0) {
412 /* this area isn't reserved, take it */
David S. Miller4978db52008-05-12 16:51:15 -0700413 if (lmb_add_region(&lmb.reserved, base, size) < 0)
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000414 return 0;
415 return base;
416 }
417 res_base = lmb.reserved.region[j].base;
418 if (res_base < size)
Paul Mackerras300613e2008-04-12 15:20:59 +1000419 break;
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000420 base = lmb_align_down(res_base - size, align);
Paul Mackerras300613e2008-04-12 15:20:59 +1000421 }
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000422 }
Paul Mackerrasd9024df2008-04-12 15:20:59 +1000423 return 0;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000424}
425
426/* You must call lmb_analyze() before this. */
Becky Brucee5f27092008-02-13 16:58:39 -0800427u64 __init lmb_phys_mem_size(void)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000428{
429 return lmb.memory.size;
430}
431
Becky Brucee5f27092008-02-13 16:58:39 -0800432u64 __init lmb_end_of_DRAM(void)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000433{
434 int idx = lmb.memory.cnt - 1;
435
436 return (lmb.memory.region[idx].base + lmb.memory.region[idx].size);
437}
438
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000439/* You must call lmb_analyze() after this. */
Becky Brucee5f27092008-02-13 16:58:39 -0800440void __init lmb_enforce_memory_limit(u64 memory_limit)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000441{
Becky Brucee5f27092008-02-13 16:58:39 -0800442 unsigned long i;
443 u64 limit;
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000444 struct lmb_property *p;
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000445
Paul Mackerras300613e2008-04-12 15:20:59 +1000446 if (!memory_limit)
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000447 return;
448
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000449 /* Truncate the lmb regions to satisfy the memory limit. */
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000450 limit = memory_limit;
451 for (i = 0; i < lmb.memory.cnt; i++) {
452 if (limit > lmb.memory.region[i].size) {
453 limit -= lmb.memory.region[i].size;
454 continue;
455 }
456
457 lmb.memory.region[i].size = limit;
458 lmb.memory.cnt = i + 1;
459 break;
460 }
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000461
Michael Ellerman30f30e12006-07-04 17:13:23 +1000462 if (lmb.memory.region[0].size < lmb.rmo_size)
463 lmb.rmo_size = lmb.memory.region[0].size;
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000464
David S. Millerebb19512008-08-15 19:57:57 -0700465 memory_limit = lmb_end_of_DRAM();
466
Michael Ellerman2babf5c2006-05-17 18:00:46 +1000467 /* And truncate any reserves above the limit also. */
468 for (i = 0; i < lmb.reserved.cnt; i++) {
469 p = &lmb.reserved.region[i];
470
471 if (p->base > memory_limit)
472 p->size = 0;
473 else if ((p->base + p->size) > memory_limit)
474 p->size = memory_limit - p->base;
475
476 if (p->size == 0) {
477 lmb_remove_region(&lmb.reserved, i);
478 i--;
479 }
480 }
Paul Mackerras7c8c6b92005-10-06 12:23:33 +1000481}
Kumar Galaf98eeb42008-01-09 11:27:23 -0600482
Becky Brucee5f27092008-02-13 16:58:39 -0800483int __init lmb_is_reserved(u64 addr)
Kumar Galaf98eeb42008-01-09 11:27:23 -0600484{
485 int i;
486
487 for (i = 0; i < lmb.reserved.cnt; i++) {
Becky Brucee5f27092008-02-13 16:58:39 -0800488 u64 upper = lmb.reserved.region[i].base +
489 lmb.reserved.region[i].size - 1;
Kumar Galaf98eeb42008-01-09 11:27:23 -0600490 if ((addr >= lmb.reserved.region[i].base) && (addr <= upper))
491 return 1;
492 }
493 return 0;
494}
Badari Pulavarty9d88a2e2008-04-18 13:33:53 -0700495
496/*
497 * Given a <base, len>, find which memory regions belong to this range.
498 * Adjust the request and return a contiguous chunk.
499 */
500int lmb_find(struct lmb_property *res)
501{
502 int i;
503 u64 rstart, rend;
504
505 rstart = res->base;
506 rend = rstart + res->size - 1;
507
508 for (i = 0; i < lmb.memory.cnt; i++) {
509 u64 start = lmb.memory.region[i].base;
510 u64 end = start + lmb.memory.region[i].size - 1;
511
512 if (start > rend)
513 return -1;
514
515 if ((end >= rstart) && (start < rend)) {
516 /* adjust the request */
517 if (rstart < start)
518 rstart = start;
519 if (rend > end)
520 rend = end;
521 res->base = rstart;
522 res->size = rend - rstart + 1;
523 return 0;
524 }
525 }
526 return -1;
527}