blob: 8b93f63407e9278e8681ebe5a0a8279097f88c0a [file] [log] [blame]
David S. Millerd9b2b2a2008-02-13 16:56:49 -08001#ifndef _LINUX_LMB_H
2#define _LINUX_LMB_H
3#ifdef __KERNEL__
4
5/*
6 * Logical memory blocks.
7 *
8 * Copyright (C) 2001 Peter Bergner, IBM Corp.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16#include <linux/init.h>
17#include <linux/mm.h>
18
19#define MAX_LMB_REGIONS 128
20
21struct lmb_property {
22 unsigned long base;
23 unsigned long size;
24};
25
26struct lmb_region {
27 unsigned long cnt;
28 unsigned long size;
29 struct lmb_property region[MAX_LMB_REGIONS+1];
30};
31
32struct lmb {
33 unsigned long debug;
34 unsigned long rmo_size;
35 struct lmb_region memory;
36 struct lmb_region reserved;
37};
38
39extern struct lmb lmb;
40
41extern void __init lmb_init(void);
42extern void __init lmb_analyze(void);
43extern long __init lmb_add(unsigned long base, unsigned long size);
44extern long __init lmb_reserve(unsigned long base, unsigned long size);
45extern unsigned long __init lmb_alloc(unsigned long size, unsigned long align);
46extern unsigned long __init lmb_alloc_base(unsigned long size,
47 unsigned long align, unsigned long max_addr);
48extern unsigned long __init __lmb_alloc_base(unsigned long size,
49 unsigned long align, unsigned long max_addr);
50extern unsigned long __init lmb_phys_mem_size(void);
51extern unsigned long __init lmb_end_of_DRAM(void);
52extern void __init lmb_enforce_memory_limit(unsigned long memory_limit);
53extern int __init lmb_is_reserved(unsigned long addr);
54
55extern void lmb_dump_all(void);
56
57static inline unsigned long
58lmb_size_bytes(struct lmb_region *type, unsigned long region_nr)
59{
60 return type->region[region_nr].size;
61}
62static inline unsigned long
63lmb_size_pages(struct lmb_region *type, unsigned long region_nr)
64{
65 return lmb_size_bytes(type, region_nr) >> PAGE_SHIFT;
66}
67static inline unsigned long
68lmb_start_pfn(struct lmb_region *type, unsigned long region_nr)
69{
70 return type->region[region_nr].base >> PAGE_SHIFT;
71}
72static inline unsigned long
73lmb_end_pfn(struct lmb_region *type, unsigned long region_nr)
74{
75 return lmb_start_pfn(type, region_nr) +
76 lmb_size_pages(type, region_nr);
77}
78
79#include <asm/lmb.h>
80
81#endif /* __KERNEL__ */
82
83#endif /* _LINUX_LMB_H */