]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/memblock.h
memblock: Rename memblock_region to memblock_type and memblock_property to memblock_r...
[mirror_ubuntu-zesty-kernel.git] / include / linux / memblock.h
CommitLineData
95f72d1e
YL
1#ifndef _LINUX_MEMBLOCK_H
2#define _LINUX_MEMBLOCK_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_MEMBLOCK_REGIONS 128
20
e3239ff9 21struct memblock_region {
95f72d1e
YL
22 u64 base;
23 u64 size;
24};
25
e3239ff9 26struct memblock_type {
95f72d1e
YL
27 unsigned long cnt;
28 u64 size;
e3239ff9 29 struct memblock_region regions[MAX_MEMBLOCK_REGIONS+1];
95f72d1e
YL
30};
31
32struct memblock {
33 unsigned long debug;
34 u64 rmo_size;
e3239ff9
BH
35 struct memblock_type memory;
36 struct memblock_type reserved;
95f72d1e
YL
37};
38
39extern struct memblock memblock;
40
41extern void __init memblock_init(void);
42extern void __init memblock_analyze(void);
43extern long memblock_add(u64 base, u64 size);
44extern long memblock_remove(u64 base, u64 size);
45extern long __init memblock_free(u64 base, u64 size);
46extern long __init memblock_reserve(u64 base, u64 size);
47extern u64 __init memblock_alloc_nid(u64 size, u64 align, int nid,
48 u64 (*nid_range)(u64, u64, int *));
49extern u64 __init memblock_alloc(u64 size, u64 align);
50extern u64 __init memblock_alloc_base(u64 size,
51 u64, u64 max_addr);
52extern u64 __init __memblock_alloc_base(u64 size,
53 u64 align, u64 max_addr);
54extern u64 __init memblock_phys_mem_size(void);
55extern u64 memblock_end_of_DRAM(void);
56extern void __init memblock_enforce_memory_limit(u64 memory_limit);
57extern int __init memblock_is_reserved(u64 addr);
58extern int memblock_is_region_reserved(u64 base, u64 size);
e3239ff9 59extern int memblock_find(struct memblock_region *res);
95f72d1e
YL
60
61extern void memblock_dump_all(void);
62
63static inline u64
e3239ff9 64memblock_size_bytes(struct memblock_type *type, unsigned long region_nr)
95f72d1e 65{
e3239ff9 66 return type->regions[region_nr].size;
95f72d1e
YL
67}
68static inline u64
e3239ff9 69memblock_size_pages(struct memblock_type *type, unsigned long region_nr)
95f72d1e
YL
70{
71 return memblock_size_bytes(type, region_nr) >> PAGE_SHIFT;
72}
73static inline u64
e3239ff9 74memblock_start_pfn(struct memblock_type *type, unsigned long region_nr)
95f72d1e 75{
e3239ff9 76 return type->regions[region_nr].base >> PAGE_SHIFT;
95f72d1e
YL
77}
78static inline u64
e3239ff9 79memblock_end_pfn(struct memblock_type *type, unsigned long region_nr)
95f72d1e
YL
80{
81 return memblock_start_pfn(type, region_nr) +
82 memblock_size_pages(type, region_nr);
83}
84
85#include <asm/memblock.h>
86
87#endif /* __KERNEL__ */
88
89#endif /* _LINUX_MEMBLOCK_H */