mmu_decl.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  * Declarations of procedures and variables shared between files
  6.  * in arch/ppc/mm/.
  7.  * 
  8.  *  Derived from arch/ppc/mm/init.c:
  9.  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  10.  *
  11.  *  Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
  12.  *  and Cort Dougan (PReP) (cort@cs.nmt.edu)
  13.  *    Copyright (C) 1996 Paul Mackerras
  14.  *  Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
  15.  *
  16.  *  Derived from "arch/i386/mm/init.c"
  17.  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
  18.  *
  19.  *  This program is free software; you can redistribute it and/or
  20.  *  modify it under the terms of the GNU General Public License
  21.  *  as published by the Free Software Foundation; either version
  22.  *  2 of the License, or (at your option) any later version.
  23.  *
  24.  */
  25. extern void mapin_ram(void);
  26. extern void bat_mapin_ram(unsigned long bat2, unsigned long bat3);
  27. extern void adjust_total_lowmem(void);
  28. extern int map_page(unsigned long va, unsigned long pa, int flags);
  29. extern void setbat(int index, unsigned long virt, unsigned long phys,
  30.    unsigned int size, int flags);
  31. extern void reserve_phys_mem(unsigned long start, unsigned long size);
  32. extern int __map_without_bats;
  33. extern void *end_of_DRAM;
  34. extern unsigned long ioremap_base;
  35. extern unsigned long ioremap_bot;
  36. extern unsigned int rtas_data, rtas_size;
  37. extern unsigned long total_memory;
  38. extern unsigned long total_lowmem;
  39. extern unsigned long ram_phys_base;
  40. extern int mem_init_done;
  41. extern PTE *Hash, *Hash_end;
  42. extern unsigned long Hash_size, Hash_mask;
  43. /* ...and now those things that may be slightly different between processor
  44.  * architectures.  -- Dan
  45.  */
  46. #if defined(CONFIG_8xx)
  47. #define flush_HPTE(X, va, pg) _tlbie(va)
  48. #define MMU_init_hw() do { } while(0)
  49. #elif defined(CONFIG_4xx)
  50. #define flush_HPTE(X, va, pg) _tlbie(va)
  51. extern void MMU_init_hw(void);
  52. #else
  53. /* anything except 4xx or 8xx */
  54. extern void MMU_init_hw(void);
  55. /* Be careful....this needs to be updated if we ever encounter 603 SMPs,
  56.  * which includes all new 82xx processors.  We need tlbie/tlbsync here
  57.  * in that case (I think). -- Dan.
  58.  */
  59. static inline void flush_HPTE(unsigned context, unsigned long va, pte_t *pg)
  60. {
  61. if ((Hash != 0) &&
  62.     (cur_cpu_spec[0]->cpu_features & CPU_FTR_HPTE_TABLE))
  63. flush_hash_page(0, va, pg);
  64. else
  65. _tlbie(va);
  66. }
  67. #endif