blob: fbb7bde8fb0bc63406dd75a573ab484114fce50e [file] [log] [blame]
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001#ifndef _PPC64_LMB_H
2#define _PPC64_LMB_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Paul Mackerras9b6b5632005-10-06 12:06:20 +10004
5/*
6 * Definitions for talking to the Open Firmware PROM on
7 * Power Macintosh computers.
8 *
9 * Copyright (C) 2001 Peter Bergner, IBM Corp.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
17#include <linux/init.h>
18#include <asm/prom.h>
19
20#define MAX_LMB_REGIONS 128
21
Paul Mackerras9b6b5632005-10-06 12:06:20 +100022struct lmb_property {
23 unsigned long base;
24 unsigned long size;
25};
26
27struct lmb_region {
28 unsigned long cnt;
29 unsigned long size;
30 struct lmb_property region[MAX_LMB_REGIONS+1];
31};
32
33struct lmb {
34 unsigned long debug;
35 unsigned long rmo_size;
36 struct lmb_region memory;
37 struct lmb_region reserved;
38};
39
40extern struct lmb lmb;
41
42extern void __init lmb_init(void);
43extern void __init lmb_analyze(void);
44extern long __init lmb_add(unsigned long, unsigned long);
45extern long __init lmb_reserve(unsigned long, unsigned long);
46extern unsigned long __init lmb_alloc(unsigned long, unsigned long);
47extern unsigned long __init lmb_alloc_base(unsigned long, unsigned long,
48 unsigned long);
Michael Ellermand7a5b2f2006-01-25 21:31:28 +130049extern unsigned long __init __lmb_alloc_base(unsigned long, unsigned long,
50 unsigned long);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100051extern unsigned long __init lmb_phys_mem_size(void);
52extern unsigned long __init lmb_end_of_DRAM(void);
53extern unsigned long __init lmb_abs_to_phys(unsigned long);
54extern void __init lmb_enforce_memory_limit(unsigned long);
55
56extern void lmb_dump_all(void);
57
58extern unsigned long io_hole_start;
59
60static inline unsigned long
61lmb_size_bytes(struct lmb_region *type, unsigned long region_nr)
62{
63 return type->region[region_nr].size;
64}
65static inline unsigned long
66lmb_size_pages(struct lmb_region *type, unsigned long region_nr)
67{
68 return lmb_size_bytes(type, region_nr) >> PAGE_SHIFT;
69}
70static inline unsigned long
71lmb_start_pfn(struct lmb_region *type, unsigned long region_nr)
72{
73 return type->region[region_nr].base >> PAGE_SHIFT;
74}
75static inline unsigned long
76lmb_end_pfn(struct lmb_region *type, unsigned long region_nr)
77{
78 return lmb_start_pfn(type, region_nr) +
79 lmb_size_pages(type, region_nr);
80}
81
Arnd Bergmann88ced032005-12-16 22:43:46 +010082#endif /* __KERNEL__ */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100083#endif /* _PPC64_LMB_H */