pgtable.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:20k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. #ifdef __KERNEL__
  5. #ifndef _PPC_PGTABLE_H
  6. #define _PPC_PGTABLE_H
  7. #include <linux/config.h>
  8. #ifndef __ASSEMBLY__
  9. #include <linux/sched.h>
  10. #include <linux/threads.h>
  11. #include <asm/processor.h> /* For TASK_SIZE */
  12. #include <asm/mmu.h>
  13. #include <asm/page.h>
  14. #if defined(CONFIG_4xx)
  15. extern void local_flush_tlb_all(void);
  16. extern void local_flush_tlb_mm(struct mm_struct *mm);
  17. extern void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
  18. extern void local_flush_tlb_range(struct mm_struct *mm, unsigned long start,
  19.   unsigned long end);
  20. #define update_mmu_cache(vma, addr, pte) do { } while (0)
  21. #elif defined(CONFIG_8xx)
  22. #define __tlbia() asm volatile ("tlbia" : : )
  23. static inline void local_flush_tlb_all(void)
  24. { __tlbia(); }
  25. static inline void local_flush_tlb_mm(struct mm_struct *mm)
  26. { __tlbia(); }
  27. static inline void local_flush_tlb_page(struct vm_area_struct *vma,
  28. unsigned long vmaddr)
  29. { __tlbia(); }
  30. static inline void local_flush_tlb_range(struct mm_struct *mm,
  31. unsigned long start, unsigned long end)
  32. { __tlbia(); }
  33. #define update_mmu_cache(vma, addr, pte) do { } while (0)
  34. #else /* 6xx, 7xx, 7xxx cpus */
  35. struct mm_struct;
  36. struct vm_area_struct;
  37. extern void local_flush_tlb_all(void);
  38. extern void local_flush_tlb_mm(struct mm_struct *mm);
  39. extern void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
  40. extern void local_flush_tlb_range(struct mm_struct *mm, unsigned long start,
  41.     unsigned long end);
  42. /*
  43.  * This gets called at the end of handling a page fault, when
  44.  * the kernel has put a new PTE into the page table for the process.
  45.  * We use it to put a corresponding HPTE into the hash table
  46.  * ahead of time, instead of waiting for the inevitable extra
  47.  * hash-table miss exception.
  48.  */
  49. extern void update_mmu_cache(struct vm_area_struct *, unsigned long, pte_t);
  50. #endif
  51. #define flush_tlb_all local_flush_tlb_all
  52. #define flush_tlb_mm local_flush_tlb_mm
  53. #define flush_tlb_page local_flush_tlb_page
  54. #define flush_tlb_range local_flush_tlb_range
  55. /*
  56.  * This is called in munmap when we have freed up some page-table
  57.  * pages.  We don't need to do anything here, there's nothing special
  58.  * about our page-table pages.  -- paulus
  59.  */
  60. static inline void flush_tlb_pgtables(struct mm_struct *mm,
  61.       unsigned long start, unsigned long end)
  62. {
  63. }
  64. /*
  65.  * No cache flushing is required when address mappings are
  66.  * changed, because the caches on PowerPCs are physically
  67.  * addressed.  -- paulus
  68.  * Also, when SMP we use the coherency (M) bit of the
  69.  * BATs and PTEs.  -- Cort
  70.  */
  71. #define flush_cache_all() do { } while (0)
  72. #define flush_cache_mm(mm) do { } while (0)
  73. #define flush_cache_range(mm, a, b) do { } while (0)
  74. #define flush_cache_page(vma, p) do { } while (0)
  75. #define flush_page_to_ram(page) do { } while (0)
  76. extern void flush_icache_user_range(struct vm_area_struct *vma,
  77. struct page *page, unsigned long addr, int len);
  78. extern void flush_icache_range(unsigned long, unsigned long);
  79. extern void __flush_dcache_icache(void *page_va);
  80. extern void flush_dcache_page(struct page *page);
  81. extern void flush_icache_page(struct vm_area_struct *vma, struct page *page);
  82. extern unsigned long va_to_phys(unsigned long address);
  83. extern pte_t *va_to_pte(unsigned long address);
  84. extern unsigned long ioremap_bot, ioremap_base;
  85. #endif /* __ASSEMBLY__ */
  86. /*
  87.  * The PowerPC MMU uses a hash table containing PTEs, together with
  88.  * a set of 16 segment registers (on 32-bit implementations), to define
  89.  * the virtual to physical address mapping.
  90.  *
  91.  * We use the hash table as an extended TLB, i.e. a cache of currently
  92.  * active mappings.  We maintain a two-level page table tree, much
  93.  * like that used by the i386, for the sake of the Linux memory
  94.  * management code.  Low-level assembler code in hashtable.S
  95.  * (procedure hash_page) is responsible for extracting ptes from the
  96.  * tree and putting them into the hash table when necessary, and
  97.  * updating the accessed and modified bits in the page table tree.
  98.  */
  99. /*
  100.  * The PowerPC MPC8xx uses a TLB with hardware assisted, software tablewalk.
  101.  * We also use the two level tables, but we can put the real bits in them
  102.  * needed for the TLB and tablewalk.  These definitions require Mx_CTR.PPM = 0,
  103.  * Mx_CTR.PPCS = 0, and MD_CTR.TWAM = 1.  The level 2 descriptor has
  104.  * additional page protection (when Mx_CTR.PPCS = 1) that allows TLB hit
  105.  * based upon user/super access.  The TLB does not have accessed nor write
  106.  * protect.  We assume that if the TLB get loaded with an entry it is
  107.  * accessed, and overload the changed bit for write protect.  We use
  108.  * two bits in the software pte that are supposed to be set to zero in
  109.  * the TLB entry (24 and 25) for these indicators.  Although the level 1
  110.  * descriptor contains the guarded and writethrough/copyback bits, we can
  111.  * set these at the page level since they get copied from the Mx_TWC
  112.  * register when the TLB entry is loaded.  We will use bit 27 for guard, since
  113.  * that is where it exists in the MD_TWC, and bit 26 for writethrough.
  114.  * These will get masked from the level 2 descriptor at TLB load time, and
  115.  * copied to the MD_TWC before it gets loaded.
  116.  */
  117. /*
  118.  * At present, all PowerPC 400-class processors share a similar TLB
  119.  * architecture. The instruction and data sides share a unified,
  120.  * 64-entry, fully-associative TLB which is maintained totally under
  121.  * software control. In addition, the instruction side has a
  122.  * hardware-managed, 4-entry, fully-associative TLB which serves as a
  123.  * first level to the shared TLB. These two TLBs are known as the UTLB
  124.  * and ITLB, respectively (see "mmu.h" for definitions).
  125.  */
  126. /* PMD_SHIFT determines the size of the area mapped by the second-level page tables */
  127. #define PMD_SHIFT 22
  128. #define PMD_SIZE (1UL << PMD_SHIFT)
  129. #define PMD_MASK (~(PMD_SIZE-1))
  130. /* PGDIR_SHIFT determines what a third-level page table entry can map */
  131. #define PGDIR_SHIFT 22
  132. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  133. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  134. /*
  135.  * entries per page directory level: our page-table tree is two-level, so
  136.  * we don't really have any PMD directory.
  137.  */
  138. #define PTRS_PER_PTE 1024
  139. #define PTRS_PER_PMD 1
  140. #define PTRS_PER_PGD 1024
  141. #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
  142. #define FIRST_USER_PGD_NR 0
  143. #define USER_PGD_PTRS (PAGE_OFFSET >> PGDIR_SHIFT)
  144. #define KERNEL_PGD_PTRS (PTRS_PER_PGD-USER_PGD_PTRS)
  145. #define pte_ERROR(e) 
  146. printk("%s:%d: bad pte %08lx.n", __FILE__, __LINE__, pte_val(e))
  147. #define pmd_ERROR(e) 
  148. printk("%s:%d: bad pmd %08lx.n", __FILE__, __LINE__, pmd_val(e))
  149. #define pgd_ERROR(e) 
  150. printk("%s:%d: bad pgd %08lx.n", __FILE__, __LINE__, pgd_val(e))
  151. /*
  152.  * Just any arbitrary offset to the start of the vmalloc VM area: the
  153.  * current 64MB value just means that there will be a 64MB "hole" after the
  154.  * physical memory until the kernel virtual memory starts.  That means that
  155.  * any out-of-bounds memory accesses will hopefully be caught.
  156.  * The vmalloc() routines leaves a hole of 4kB between each vmalloced
  157.  * area for the same reason. ;)
  158.  *
  159.  * We no longer map larger than phys RAM with the BATs so we don't have
  160.  * to worry about the VMALLOC_OFFSET causing problems.  We do have to worry
  161.  * about clashes between our early calls to ioremap() that start growing down
  162.  * from ioremap_base being run into the VM area allocations (growing upwards
  163.  * from VMALLOC_START).  For this reason we have ioremap_bot to check when
  164.  * we actually run into our mappings setup in the early boot with the VM
  165.  * system.  This really does become a problem for machines with good amounts
  166.  * of RAM.  -- Cort
  167.  */
  168. #define VMALLOC_OFFSET (0x1000000) /* 16M */
  169. #define VMALLOC_START ((((long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
  170. #define VMALLOC_VMADDR(x) ((unsigned long)(x))
  171. #define VMALLOC_END ioremap_bot
  172. /*
  173.  * Bits in a linux-style PTE.  These match the bits in the
  174.  * (hardware-defined) PowerPC PTE as closely as possible.
  175.  */
  176. #if defined(CONFIG_4xx)
  177. /* Definitions for 4xx embedded chips. */
  178. #define _PAGE_GUARDED 0x001 /* G: page is guarded from prefetch */
  179. #define _PAGE_COHERENT 0x002 /* M: enforece memory coherence */
  180. #define _PAGE_NO_CACHE 0x004 /* I: caching is inhibited */
  181. #define _PAGE_WRITETHRU 0x008 /* W: caching is write-through */
  182. #define _PAGE_USER 0x010 /* matches one of the zone permission bits */
  183. #define _PAGE_EXEC 0x020 /* software: i-cache coherency required */
  184. #define _PAGE_PRESENT 0x040 /* software: PTE contains a translation */
  185. #define _PAGE_DIRTY 0x100 /* C: page changed */
  186. #define _PAGE_RW 0x200 /* Writes permitted */
  187. #define _PAGE_ACCESSED 0x400 /* R: page referenced */
  188. #elif defined(CONFIG_8xx)
  189. /* Definitions for 8xx embedded chips. */
  190. #define _PAGE_PRESENT 0x0001 /* Page is valid */
  191. #define _PAGE_NO_CACHE 0x0002 /* I: cache inhibit */
  192. #define _PAGE_SHARED 0x0004 /* No ASID (context) compare */
  193. /* These five software bits must be masked out when the entry is loaded
  194.  * into the TLB.
  195.  */
  196. #define _PAGE_EXEC 0x0008 /* software: i-cache coherency required */
  197. #define _PAGE_GUARDED 0x0010 /* software: guarded access */
  198. #define _PAGE_WRITETHRU 0x0020 /* software: use writethrough cache */
  199. #define _PAGE_RW 0x0040 /* software: user write access allowed */
  200. #define _PAGE_ACCESSED 0x0080 /* software: page referenced */
  201. #define _PAGE_HWWRITE 0x0100 /* h/w write enable: never set in Linux PTE */
  202. #define _PAGE_DIRTY 0x0200 /* software: page changed */
  203. #define _PAGE_USER 0x0800 /* One of the PP bits, the other is USER&~RW */
  204. #else /* CONFIG_6xx */
  205. /* Definitions for 60x, 740/750, etc. */
  206. #define _PAGE_PRESENT 0x001 /* software: pte contains a translation */
  207. #define _PAGE_HASHPTE 0x002 /* hash_page has made an HPTE for this pte */
  208. #define _PAGE_USER 0x004 /* usermode access allowed */
  209. #define _PAGE_GUARDED 0x008 /* G: prohibit speculative access */
  210. #define _PAGE_COHERENT 0x010 /* M: enforce memory coherence (SMP systems) */
  211. #define _PAGE_NO_CACHE 0x020 /* I: cache inhibit */
  212. #define _PAGE_WRITETHRU 0x040 /* W: cache write-through */
  213. #define _PAGE_DIRTY 0x080 /* C: page changed */
  214. #define _PAGE_ACCESSED 0x100 /* R: page referenced */
  215. #define _PAGE_EXEC 0x200 /* software: i-cache coherency required */
  216. #define _PAGE_RW 0x400 /* software: user write access allowed */
  217. #endif
  218. /* The non-standard PowerPC MMUs, which includes the 4xx and 8xx (and
  219.  * mabe 603e) have TLB miss handlers that unconditionally set the
  220.  * _PAGE_ACCESSED flag as a performance optimization.  This causes
  221.  * problems for the page_none() macro, just like the HASHPTE flag does
  222.  * for the standard PowerPC MMUs.  Depending upon the MMU configuration,
  223.  * either HASHPTE or ACCESSED will have to be masked to give us a
  224.  * proper pte_none() condition.
  225.  */
  226. #ifndef _PAGE_HASHPTE
  227. #define _PAGE_HASHPTE 0
  228. #define _PTE_NONE_MASK _PAGE_ACCESSED
  229. #else
  230. #define _PTE_NONE_MASK _PAGE_HASHPTE
  231. #endif
  232. #ifndef _PAGE_SHARED
  233. #define _PAGE_SHARED 0
  234. #endif
  235. #ifndef _PAGE_HWWRITE
  236. #define _PAGE_HWWRITE 0
  237. #endif
  238. #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  239. /*
  240.  * Note: the _PAGE_COHERENT bit automatically gets set in the hardware
  241.  * PTE if CONFIG_SMP is defined (hash_page does this); there is no need
  242.  * to have it in the Linux PTE, and in fact the bit could be reused for
  243.  * another purpose.  -- paulus.
  244.  */
  245. #define _PAGE_BASE _PAGE_PRESENT | _PAGE_ACCESSED
  246. #define _PAGE_WRENABLE _PAGE_RW | _PAGE_DIRTY | _PAGE_HWWRITE
  247. #define _PAGE_KERNEL _PAGE_BASE | _PAGE_WRENABLE | _PAGE_SHARED
  248. #define _PAGE_IO _PAGE_KERNEL | _PAGE_NO_CACHE | _PAGE_GUARDED
  249. #define PAGE_NONE __pgprot(_PAGE_BASE)
  250. #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
  251. #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  252. #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
  253. #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
  254. #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
  255. #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  256. #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
  257. #define PAGE_KERNEL_RO __pgprot(_PAGE_BASE | _PAGE_SHARED)
  258. #define PAGE_KERNEL_CI __pgprot(_PAGE_IO)
  259. /*
  260.  * The PowerPC can only do execute protection on a segment (256MB) basis,
  261.  * not on a page basis.  So we consider execute permission the same as read.
  262.  * Also, write permissions imply read permissions.
  263.  * This is the closest we can get..
  264.  */
  265. #define __P000 PAGE_NONE
  266. #define __P001 PAGE_READONLY_X
  267. #define __P010 PAGE_COPY
  268. #define __P011 PAGE_COPY_X
  269. #define __P100 PAGE_READONLY
  270. #define __P101 PAGE_READONLY_X
  271. #define __P110 PAGE_COPY
  272. #define __P111 PAGE_COPY_X
  273. #define __S000 PAGE_NONE
  274. #define __S001 PAGE_READONLY_X
  275. #define __S010 PAGE_SHARED
  276. #define __S011 PAGE_SHARED_X
  277. #define __S100 PAGE_READONLY
  278. #define __S101 PAGE_READONLY_X
  279. #define __S110 PAGE_SHARED
  280. #define __S111 PAGE_SHARED_X
  281. #ifndef __ASSEMBLY__
  282. /*
  283.  * ZERO_PAGE is a global shared page that is always zero: used
  284.  * for zero-mapped memory areas etc..
  285.  */
  286. extern unsigned long empty_zero_page[1024];
  287. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  288. #endif /* __ASSEMBLY__ */
  289. #define pte_none(pte) ((pte_val(pte) & ~_PTE_NONE_MASK) == 0)
  290. #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
  291. #define pte_clear(ptep) do { set_pte((ptep), __pte(0)); } while (0)
  292. #define pmd_none(pmd) (!pmd_val(pmd))
  293. #define pmd_bad(pmd) ((pmd_val(pmd) & ~PAGE_MASK) != 0)
  294. #define pmd_present(pmd) ((pmd_val(pmd) & PAGE_MASK) != 0)
  295. #define pmd_clear(pmdp) do { pmd_val(*(pmdp)) = 0; } while (0)
  296. #define pte_page(x) (mem_map+(unsigned long)((pte_val(x) >> PAGE_SHIFT)))
  297. #ifndef __ASSEMBLY__
  298. /*
  299.  * The "pgd_xxx()" functions here are trivial for a folded two-level
  300.  * setup: the pgd is never bad, and a pmd always exists (as it's folded
  301.  * into the pgd entry)
  302.  */
  303. static inline int pgd_none(pgd_t pgd) { return 0; }
  304. static inline int pgd_bad(pgd_t pgd) { return 0; }
  305. static inline int pgd_present(pgd_t pgd) { return 1; }
  306. #define pgd_clear(xp) do { } while (0)
  307. #define pgd_page(pgd) 
  308. ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
  309. /*
  310.  * The following only work if pte_present() is true.
  311.  * Undefined behaviour if not..
  312.  */
  313. static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; }
  314. static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
  315. static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; }
  316. static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
  317. static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
  318. static inline void pte_uncache(pte_t pte)       { pte_val(pte) |= _PAGE_NO_CACHE; }
  319. static inline void pte_cache(pte_t pte)         { pte_val(pte) &= ~_PAGE_NO_CACHE; }
  320. static inline pte_t pte_rdprotect(pte_t pte) {
  321. pte_val(pte) &= ~_PAGE_USER; return pte; }
  322. static inline pte_t pte_wrprotect(pte_t pte) {
  323. pte_val(pte) &= ~(_PAGE_RW | _PAGE_HWWRITE); return pte; }
  324. static inline pte_t pte_exprotect(pte_t pte) {
  325. pte_val(pte) &= ~_PAGE_EXEC; return pte; }
  326. static inline pte_t pte_mkclean(pte_t pte) {
  327. pte_val(pte) &= ~(_PAGE_DIRTY | _PAGE_HWWRITE); return pte; }
  328. static inline pte_t pte_mkold(pte_t pte) {
  329. pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
  330. static inline pte_t pte_mkread(pte_t pte) {
  331. pte_val(pte) |= _PAGE_USER; return pte; }
  332. static inline pte_t pte_mkexec(pte_t pte) {
  333. pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; }
  334. static inline pte_t pte_mkwrite(pte_t pte) {
  335. pte_val(pte) |= _PAGE_RW; return pte; }
  336. static inline pte_t pte_mkdirty(pte_t pte) {
  337. pte_val(pte) |= _PAGE_DIRTY; return pte; }
  338. static inline pte_t pte_mkyoung(pte_t pte) {
  339. pte_val(pte) |= _PAGE_ACCESSED; return pte; }
  340. /*
  341.  * Conversion functions: convert a page and protection to a page entry,
  342.  * and a page entry and page directory to the page they refer to.
  343.  */
  344. static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
  345. {
  346. pte_t pte;
  347. pte_val(pte) = physpage | pgprot_val(pgprot);
  348. return pte;
  349. }
  350. #define mk_pte(page,pgprot) 
  351. ({
  352. pte_t pte;
  353. pte_val(pte) = ((page - mem_map) << PAGE_SHIFT) | pgprot_val(pgprot); 
  354. pte;
  355. })
  356. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  357. {
  358. pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot);
  359. return pte;
  360. }
  361. /*
  362.  * Atomic PTE updates.
  363.  *
  364.  * pte_update clears and sets bit atomically, and returns
  365.  * the old pte value.
  366.  */
  367. static inline unsigned long pte_update(pte_t *p, unsigned long clr,
  368.        unsigned long set)
  369. {
  370. unsigned long old, tmp;
  371. __asm__ __volatile__("
  372. 1: lwarx %0,0,%3n
  373. andc %1,%0,%4n
  374. or %1,%1,%5n
  375. stwcx. %1,0,%3n
  376. bne- 1b"
  377. : "=&r" (old), "=&r" (tmp), "=m" (*p)
  378. : "r" (p), "r" (clr), "r" (set), "m" (*p)
  379. : "cc" );
  380. return old;
  381. }
  382. /*
  383.  * set_pte stores a linux PTE into the linux page table.
  384.  * On machines which use an MMU hash table we avoid changing the
  385.  * _PAGE_HASHPTE bit.
  386.  */
  387. static inline void set_pte(pte_t *ptep, pte_t pte)
  388. {
  389. #if _PAGE_HASHPTE != 0
  390. pte_update(ptep, ~_PAGE_HASHPTE, pte_val(pte) & ~_PAGE_HASHPTE);
  391. #else
  392. *ptep = pte;
  393. #endif
  394. }
  395. static inline int ptep_test_and_clear_young(pte_t *ptep)
  396. {
  397. return (pte_update(ptep, _PAGE_ACCESSED, 0) & _PAGE_ACCESSED) != 0;
  398. }
  399. static inline int ptep_test_and_clear_dirty(pte_t *ptep)
  400. {
  401. return (pte_update(ptep, (_PAGE_DIRTY | _PAGE_HWWRITE), 0) & _PAGE_DIRTY) != 0;
  402. }
  403. static inline pte_t ptep_get_and_clear(pte_t *ptep)
  404. {
  405. return __pte(pte_update(ptep, ~_PAGE_HASHPTE, 0));
  406. }
  407. static inline void ptep_set_wrprotect(pte_t *ptep)
  408. {
  409. pte_update(ptep, (_PAGE_RW | _PAGE_HWWRITE), 0);
  410. }
  411. static inline void ptep_mkdirty(pte_t *ptep)
  412. {
  413. pte_update(ptep, 0, _PAGE_DIRTY);
  414. }
  415. #define pte_same(A,B) (((pte_val(A) ^ pte_val(B)) & ~_PAGE_HASHPTE) == 0)
  416. #define pmd_page(pmd) (pmd_val(pmd))
  417. /* to find an entry in a kernel page-table-directory */
  418. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  419. /* to find an entry in a page-table-directory */
  420. #define pgd_index(address)  ((address) >> PGDIR_SHIFT)
  421. #define pgd_offset(mm, address)  ((mm)->pgd + pgd_index(address))
  422. /* Find an entry in the second-level page table.. */
  423. static inline pmd_t * pmd_offset(pgd_t * dir, unsigned long address)
  424. {
  425. return (pmd_t *) dir;
  426. }
  427. /* Find an entry in the third-level page table.. */ 
  428. static inline pte_t * pte_offset(pmd_t * dir, unsigned long address)
  429. {
  430. return (pte_t *) pmd_page(*dir) + ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1));
  431. }
  432. extern pgd_t swapper_pg_dir[1024];
  433. extern void paging_init(void);
  434. /*
  435.  * When flushing the tlb entry for a page, we also need to flush the hash
  436.  * table entry.  flush_hash_page is assembler (for speed) in hashtable.S.
  437.  */
  438. extern int flush_hash_page(unsigned context, unsigned long va, pte_t *ptep);
  439. /* Add an HPTE to the hash table */
  440. extern void add_hash_page(unsigned context, unsigned long va, pte_t *ptep);
  441. /*
  442.  * Encode and decode a swap entry.
  443.  * Note that the bits we use in a PTE for representing a swap entry
  444.  * must not include the _PAGE_PRESENT bit, or the _PAGE_HASHPTE bit
  445.  * (if used).  -- paulus
  446.  */
  447. #define SWP_TYPE(entry) ((entry).val & 0x3f)
  448. #define SWP_OFFSET(entry) ((entry).val >> 6)
  449. #define SWP_ENTRY(type, offset) ((swp_entry_t) { (type) | ((offset) << 6) })
  450. #define pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 2 })
  451. #define swp_entry_to_pte(x) ((pte_t) { (x).val << 2 })
  452. /* CONFIG_APUS */
  453. /* For virtual address to physical address conversion */
  454. extern void cache_clear(__u32 addr, int length);
  455. extern void cache_push(__u32 addr, int length);
  456. extern int mm_end_of_chunk (unsigned long addr, int len);
  457. extern unsigned long iopa(unsigned long addr);
  458. extern unsigned long mm_ptov(unsigned long addr) __attribute__ ((const));
  459. /* Values for nocacheflag and cmode */
  460. /* These are not used by the APUS kernel_map, but prevents
  461.    compilation errors. */
  462. #define IOMAP_FULL_CACHING 0
  463. #define IOMAP_NOCACHE_SER 1
  464. #define IOMAP_NOCACHE_NONSER 2
  465. #define IOMAP_NO_COPYBACK 3
  466. /*
  467.  * Map some physical address range into the kernel address space.
  468.  */
  469. extern unsigned long kernel_map(unsigned long paddr, unsigned long size,
  470. int nocacheflag, unsigned long *memavailp );
  471. /*
  472.  * Set cache mode of (kernel space) address range. 
  473.  */
  474. extern void kernel_set_cachemode (unsigned long address, unsigned long size,
  475.                                  unsigned int cmode);
  476. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  477. #define kern_addr_valid(addr) (1)
  478. #define io_remap_page_range remap_page_range 
  479. /*
  480.  * No page table caches to initialise
  481.  */
  482. #define pgtable_cache_init() do { } while (0)
  483. #endif /* __ASSEMBLY__ */
  484. #endif /* _PPC_PGTABLE_H */
  485. #endif /* __KERNEL__ */