]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/asm-ppc64/abs_addr.h
93dc63ed4f2f1048dfbdd4f5165d060dcec3f1b3
[karo-tx-linux.git] / include / asm-ppc64 / abs_addr.h
1 #ifndef _ABS_ADDR_H
2 #define _ABS_ADDR_H
3
4 #include <linux/config.h>
5
6 /*
7  * c 2001 PPC 64 Team, IBM Corp
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version
12  * 2 of the License, or (at your option) any later version.
13  */
14
15 #include <asm/types.h>
16 #include <asm/page.h>
17 #include <asm/prom.h>
18 #include <asm/lmb.h>
19
20 typedef u32 msChunks_entry;
21 struct msChunks {
22         unsigned long num_chunks;
23         unsigned long chunk_size;
24         unsigned long chunk_shift;
25         unsigned long chunk_mask;
26         msChunks_entry *abs;
27 };
28
29 extern struct msChunks msChunks;
30
31 extern unsigned long msChunks_alloc(unsigned long, unsigned long, unsigned long);
32
33 #ifdef CONFIG_MSCHUNKS
34
35 static inline unsigned long chunk_to_addr(unsigned long chunk)
36 {
37         return chunk << msChunks.chunk_shift;
38 }
39
40 static inline unsigned long addr_to_chunk(unsigned long addr)
41 {
42         return addr >> msChunks.chunk_shift;
43 }
44
45 static inline unsigned long chunk_offset(unsigned long addr)
46 {
47         return addr & msChunks.chunk_mask;
48 }
49
50 static inline unsigned long abs_chunk(unsigned long pchunk)
51 {
52         if (pchunk >= msChunks.num_chunks)
53                 return pchunk;
54
55         return msChunks.abs[pchunk];
56 }
57
58 /* A macro so it can take pointers or unsigned long. */
59 #define phys_to_abs(pa)                                              \
60         ({ unsigned long _pa = (unsigned long)(pa);                          \
61            chunk_to_addr(abs_chunk(addr_to_chunk(_pa))) + chunk_offset(_pa); \
62         })
63
64 static inline unsigned long
65 physRpn_to_absRpn(unsigned long rpn)
66 {
67         unsigned long pa = rpn << PAGE_SHIFT;
68         unsigned long aa = phys_to_abs(pa);
69         return (aa >> PAGE_SHIFT);
70 }
71
72 /* A macro so it can take pointers or unsigned long. */
73 #define abs_to_phys(aa) lmb_abs_to_phys((unsigned long)(aa))
74
75 #else  /* !CONFIG_MSCHUNKS */
76
77 #define chunk_to_addr(chunk) ((unsigned long)(chunk))
78 #define addr_to_chunk(addr) (addr)
79 #define chunk_offset(addr) (0)
80 #define abs_chunk(pchunk) (pchunk)
81
82 #define phys_to_abs(pa) (pa)
83 #define physRpn_to_absRpn(rpn) (rpn)
84 #define abs_to_phys(aa) (aa)
85
86 #endif /* !CONFIG_MSCHUNKS */
87
88 /* Convenience macros */
89 #define virt_to_abs(va) phys_to_abs(__pa(va))
90 #define abs_to_virt(aa) __va(abs_to_phys(aa))
91
92 #endif /* _ABS_ADDR_H */