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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/pgtable.h
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Hartmut Penner (hp@de.ibm.com)
  7.  *               Ulrich Weigand (weigand@de.ibm.com)
  8.  *               Martin Schwidefsky (schwidefsky@de.ibm.com)
  9.  *
  10.  *  Derived from "include/asm-i386/pgtable.h"
  11.  */
  12. #ifndef _ASM_S390_PGTABLE_H
  13. #define _ASM_S390_PGTABLE_H
  14. /*
  15.  * The Linux memory management assumes a three-level page table setup. On
  16.  * the S390, we use that, but "fold" the mid level into the top-level page
  17.  * table, so that we physically have the same two-level page table as the
  18.  * S390 mmu expects.
  19.  *
  20.  * The "pgd_xxx()" functions are trivial for a folded two-level
  21.  * setup: the pgd is never bad, and a pmd always exists (as it's folded
  22.  * into the pgd entry)
  23.  *
  24.  * This file contains the functions and defines necessary to modify and use
  25.  * the S390 page table tree.
  26.  */
  27. #ifndef __ASSEMBLY__
  28. #include <asm/processor.h>
  29. #include <linux/threads.h>
  30. extern pgd_t swapper_pg_dir[] __attribute__ ((aligned (4096)));
  31. extern void paging_init(void);
  32. /* Caches aren't brain-dead on S390. */
  33. #define flush_cache_all()                       do { } while (0)
  34. #define flush_cache_mm(mm)                      do { } while (0)
  35. #define flush_cache_range(mm, start, end)       do { } while (0)
  36. #define flush_cache_page(vma, vmaddr)           do { } while (0)
  37. #define flush_page_to_ram(page)                 do { } while (0)
  38. #define flush_dcache_page(page) do { } while (0)
  39. #define flush_icache_range(start, end)          do { } while (0)
  40. #define flush_icache_page(vma,pg)               do { } while (0)
  41. /*
  42.  * The S390 doesn't have any external MMU info: the kernel page
  43.  * tables contain all the necessary information.
  44.  */
  45. #define update_mmu_cache(vma, address, pte)     do { } while (0)
  46. /*
  47.  * ZERO_PAGE is a global shared page that is always zero: used
  48.  * for zero-mapped memory areas etc..
  49.  */
  50. extern char empty_zero_page[PAGE_SIZE];
  51. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  52. #endif /* !__ASSEMBLY__ */
  53. /*
  54.  * PMD_SHIFT determines the size of the area a second-level page
  55.  * table can map
  56.  */
  57. #define PMD_SHIFT       22
  58. #define PMD_SIZE        (1UL << PMD_SHIFT)
  59. #define PMD_MASK        (~(PMD_SIZE-1))
  60. /* PGDIR_SHIFT determines what a third-level page table entry can map */
  61. #define PGDIR_SHIFT     22
  62. #define PGDIR_SIZE      (1UL << PGDIR_SHIFT)
  63. #define PGDIR_MASK      (~(PGDIR_SIZE-1))
  64. /*
  65.  * entries per page directory level: the S390 is two-level, so
  66.  * we don't really have any PMD directory physically.
  67.  * for S390 segment-table entries are combined to one PGD
  68.  * that leads to 1024 pte per pgd
  69.  */
  70. #define PTRS_PER_PTE    1024
  71. #define PTRS_PER_PMD    1
  72. #define PTRS_PER_PGD    512
  73. /*
  74.  * pgd entries used up by user/kernel:
  75.  */
  76. #define USER_PTRS_PER_PGD  512
  77. #define USER_PGD_PTRS      512
  78. #define KERNEL_PGD_PTRS    512
  79. #define FIRST_USER_PGD_NR  0
  80. #define pte_ERROR(e) 
  81. printk("%s:%d: bad pte %08lx.n", __FILE__, __LINE__, pte_val(e))
  82. #define pmd_ERROR(e) 
  83. printk("%s:%d: bad pmd %08lx.n", __FILE__, __LINE__, pmd_val(e))
  84. #define pgd_ERROR(e) 
  85. printk("%s:%d: bad pgd %08lx.n", __FILE__, __LINE__, pgd_val(e))
  86. #ifndef __ASSEMBLY__
  87. /*
  88.  * Just any arbitrary offset to the start of the vmalloc VM area: the
  89.  * current 8MB value just means that there will be a 8MB "hole" after the
  90.  * physical memory until the kernel virtual memory starts.  That means that
  91.  * any out-of-bounds memory accesses will hopefully be caught.
  92.  * The vmalloc() routines leaves a hole of 4kB between each vmalloced
  93.  * area for the same reason. ;)
  94.  */
  95. #define VMALLOC_OFFSET  (8*1024*1024)
  96. #define VMALLOC_START   (((unsigned long) high_memory + VMALLOC_OFFSET) 
  97.  & ~(VMALLOC_OFFSET-1))
  98. #define VMALLOC_VMADDR(x) ((unsigned long)(x))
  99. #define VMALLOC_END     (0x7fffffffL)
  100. /*
  101.  * A pagetable entry of S390 has following format:
  102.  *  |   PFRA          |    |  OS  |
  103.  * 0                   0IP0
  104.  * 00000000001111111111222222222233
  105.  * 01234567890123456789012345678901
  106.  *
  107.  * I Page-Invalid Bit:    Page is not available for address-translation
  108.  * P Page-Protection Bit: Store access not possible for page
  109.  *
  110.  * A segmenttable entry of S390 has following format:
  111.  *  |   P-table origin      |  |PTL
  112.  * 0                         IC
  113.  * 00000000001111111111222222222233
  114.  * 01234567890123456789012345678901
  115.  *
  116.  * I Segment-Invalid Bit:    Segment is not available for address-translation
  117.  * C Common-Segment Bit:     Segment is not private (PoP 3-30)
  118.  * PTL Page-Table-Length:    Page-table length (PTL+1*16 entries -> up to 256)
  119.  *
  120.  * The segmenttable origin of S390 has following format:
  121.  *
  122.  *  |S-table origin   |     | STL |
  123.  * X                   **GPS
  124.  * 00000000001111111111222222222233
  125.  * 01234567890123456789012345678901
  126.  *
  127.  * X Space-Switch event:
  128.  * G Segment-Invalid Bit:     *
  129.  * P Private-Space Bit:       Segment is not private (PoP 3-30)
  130.  * S Storage-Alteration:
  131.  * STL Segment-Table-Length:  Segment-table length (STL+1*16 entries -> up to 2048)
  132.  *
  133.  * A storage key has the following format:
  134.  * | ACC |F|R|C|0|
  135.  *  0   3 4 5 6 7
  136.  * ACC: access key
  137.  * F  : fetch protection bit
  138.  * R  : referenced bit
  139.  * C  : changed bit
  140.  */
  141. /* Bits in the page table entry */
  142. #define _PAGE_PRESENT   0x001          /* Software                         */
  143. #define _PAGE_MKCLEAR   0x002          /* Software                         */
  144. #define _PAGE_RO        0x200          /* HW read-only                     */
  145. #define _PAGE_INVALID   0x400          /* HW invalid                       */
  146. /* Bits in the segment table entry */
  147. #define _PAGE_TABLE_LEN 0xf            /* only full page-tables            */
  148. #define _PAGE_TABLE_COM 0x10           /* common page-table                */
  149. #define _PAGE_TABLE_INV 0x20           /* invalid page-table               */
  150. #define _SEG_PRESENT    0x001          /* Software (overlap with PTL)      */
  151. /* Bits int the storage key */
  152. #define _PAGE_CHANGED    0x02          /* HW changed bit                   */
  153. #define _PAGE_REFERENCED 0x04          /* HW referenced bit                */
  154. #define _USER_SEG_TABLE_LEN    0x7f    /* user-segment-table up to 2 GB    */
  155. #define _KERNEL_SEG_TABLE_LEN  0x7f    /* kernel-segment-table up to 2 GB  */
  156. /*
  157.  * User and Kernel pagetables are identical
  158.  */
  159. #define _PAGE_TABLE     (_PAGE_TABLE_LEN )
  160. #define _KERNPG_TABLE   (_PAGE_TABLE_LEN )
  161. /*
  162.  * The Kernel segment-tables includes the User segment-table
  163.  */
  164. #define _SEGMENT_TABLE  (_USER_SEG_TABLE_LEN|0x80000000|0x100)
  165. #define _KERNSEG_TABLE  (_KERNEL_SEG_TABLE_LEN)
  166. /*
  167.  * No mapping available
  168.  */
  169. #define PAGE_INVALID  __pgprot(_PAGE_INVALID)
  170. #define PAGE_NONE     __pgprot(_PAGE_PRESENT | _PAGE_INVALID)
  171. #define PAGE_COPY     __pgprot(_PAGE_PRESENT | _PAGE_RO)
  172. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_RO)
  173. #define PAGE_SHARED   __pgprot(_PAGE_PRESENT)
  174. #define PAGE_KERNEL   __pgprot(_PAGE_PRESENT)
  175. /*
  176.  * The S390 can't do page protection for execute, and considers that the
  177.  * same are read. Also, write permissions imply read permissions. This is
  178.  * the closest we can get..
  179.  */
  180.          /*xwr*/
  181. #define __P000  PAGE_NONE
  182. #define __P001  PAGE_READONLY
  183. #define __P010  PAGE_COPY
  184. #define __P011  PAGE_COPY
  185. #define __P100  PAGE_READONLY
  186. #define __P101  PAGE_READONLY
  187. #define __P110  PAGE_COPY
  188. #define __P111  PAGE_COPY
  189. #define __S000  PAGE_NONE
  190. #define __S001  PAGE_READONLY
  191. #define __S010  PAGE_SHARED
  192. #define __S011  PAGE_SHARED
  193. #define __S100  PAGE_READONLY
  194. #define __S101  PAGE_READONLY
  195. #define __S110  PAGE_SHARED
  196. #define __S111  PAGE_SHARED
  197. /*
  198.  * Certain architectures need to do special things when PTEs
  199.  * within a page table are directly modified.  Thus, the following
  200.  * hook is made available.
  201.  */
  202. extern inline void set_pte(pte_t *pteptr, pte_t pteval)
  203. {
  204. if ((pte_val(pteval) & (_PAGE_MKCLEAR|_PAGE_INVALID))
  205.     == _PAGE_MKCLEAR) 
  206. {
  207. pte_val(pteval) &= ~_PAGE_MKCLEAR;
  208.                
  209. asm volatile ("sske %0,%1" 
  210. : : "d" (0), "a" (pte_val(pteval)));
  211. }
  212. *pteptr = pteval;
  213. }
  214. /*
  215.  * Permanent address of a page.
  216.  */
  217. #define page_address(page) ((page)->virtual)
  218. #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
  219. /*
  220.  * pgd/pmd/pte query functions
  221.  */
  222. extern inline int pgd_present(pgd_t pgd) { return 1; }
  223. extern inline int pgd_none(pgd_t pgd)    { return 0; }
  224. extern inline int pgd_bad(pgd_t pgd)     { return 0; }
  225. extern inline int pmd_present(pmd_t pmd) { return pmd_val(pmd) & _SEG_PRESENT; }
  226. extern inline int pmd_none(pmd_t pmd)    { return pmd_val(pmd) & _PAGE_TABLE_INV; }
  227. extern inline int pmd_bad(pmd_t pmd)
  228. {
  229. return (pmd_val(pmd) & (~PAGE_MASK & ~_PAGE_TABLE_INV)) != _PAGE_TABLE;
  230. }
  231. extern inline int pte_present(pte_t pte) { return pte_val(pte) & _PAGE_PRESENT; }
  232. extern inline int pte_none(pte_t pte)
  233. {
  234. return ((pte_val(pte) & 
  235.                 (_PAGE_INVALID | _PAGE_RO | _PAGE_PRESENT)) == _PAGE_INVALID);
  236. }
  237. #define pte_same(a,b) (pte_val(a) == pte_val(b))
  238. /*
  239.  * query functions pte_write/pte_dirty/pte_young only work if
  240.  * pte_present() is true. Undefined behaviour if not..
  241.  */
  242. extern inline int pte_write(pte_t pte)
  243. {
  244. return (pte_val(pte) & _PAGE_RO) == 0;
  245. }
  246. extern inline int pte_dirty(pte_t pte)
  247. {
  248. int skey;
  249. asm volatile ("iske %0,%1" : "=d" (skey) : "a" (pte_val(pte)));
  250. return skey & _PAGE_CHANGED;
  251. }
  252. extern inline int pte_young(pte_t pte)
  253. {
  254. int skey;
  255. asm volatile ("iske %0,%1" : "=d" (skey) : "a" (pte_val(pte)));
  256. return skey & _PAGE_REFERENCED;
  257. }
  258. /*
  259.  * pgd/pmd/pte modification functions
  260.  */
  261. extern inline void pgd_clear(pgd_t * pgdp)      { }
  262. extern inline void pmd_clear(pmd_t * pmdp)
  263. {
  264. pmd_val(pmdp[0]) = _PAGE_TABLE_INV;
  265. pmd_val(pmdp[1]) = _PAGE_TABLE_INV;
  266. pmd_val(pmdp[2]) = _PAGE_TABLE_INV;
  267. pmd_val(pmdp[3]) = _PAGE_TABLE_INV;
  268. }
  269. extern inline void pte_clear(pte_t *ptep)
  270. {
  271. pte_val(*ptep) = _PAGE_INVALID; 
  272. }
  273. #define PTE_INIT(x) pte_clear(x)
  274. /*
  275.  * The following pte modification functions only work if
  276.  * pte_present() is true. Undefined behaviour if not..
  277.  */
  278. extern inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  279. {
  280. pte_val(pte) = (pte_val(pte) & PAGE_MASK) | pgprot_val(newprot);
  281. return pte;
  282. }
  283. extern inline pte_t pte_wrprotect(pte_t pte)
  284. {
  285. pte_val(pte) |= _PAGE_RO;
  286. return pte;
  287. }
  288. extern inline pte_t pte_mkwrite(pte_t pte) 
  289. {
  290. pte_val(pte) &= ~_PAGE_RO;
  291. return pte;
  292. }
  293. extern inline pte_t pte_mkclean(pte_t pte)
  294. {
  295. /* The only user of pte_mkclean is the fork() code.
  296.    We must *not* clear the *physical* page dirty bit
  297.    just because fork() wants to clear the dirty bit in
  298.    *one* of the page's mappings.  So we just do nothing. */
  299. return pte;
  300. }
  301. extern inline pte_t pte_mkdirty(pte_t pte)
  302. {
  303. /* We can't set the changed bit atomically. For now we
  304.          * set (!) the page referenced bit. */
  305. asm volatile ("sske %0,%1" 
  306.               : : "d" (_PAGE_CHANGED|_PAGE_REFERENCED),
  307.           "a" (pte_val(pte)));
  308. pte_val(pte) &= ~_PAGE_MKCLEAR;
  309. return pte;
  310. }
  311. extern inline pte_t pte_mkold(pte_t pte)
  312. {
  313. asm volatile ("rrbe 0,%0" : : "a" (pte_val(pte)) : "cc" );
  314. return pte;
  315. }
  316. extern inline pte_t pte_mkyoung(pte_t pte)
  317. {
  318. /* To set the referenced bit we read the first word from the real
  319.  * page with a special instruction: load using real address (lura).
  320.  * Isn't S/390 a nice architecture ?! */
  321. asm volatile ("lura 0,%0" : : "a" (pte_val(pte) & PAGE_MASK) : "0" );
  322. return pte;
  323. }
  324. static inline int ptep_test_and_clear_young(pte_t *ptep)
  325. {
  326. int ccode;
  327. asm volatile ("rrbe 0,%1nt"
  328.       "ipm  %0nt"
  329.       "srl  %0,28nt" 
  330.                       : "=d" (ccode) : "a" (pte_val(*ptep)) : "cc" );
  331. return ccode & 2;
  332. }
  333. static inline int ptep_test_and_clear_dirty(pte_t *ptep)
  334. {
  335. int skey;
  336. asm volatile ("iske %0,%1" : "=d" (skey) : "a" (*ptep));
  337. if ((skey & _PAGE_CHANGED) == 0)
  338. return 0;
  339. /* We can't clear the changed bit atomically. For now we
  340.          * clear (!) the page referenced bit. */
  341. asm volatile ("sske %0,%1" 
  342.               : : "d" (0), "a" (*ptep));
  343. return 1;
  344. }
  345. static inline pte_t ptep_get_and_clear(pte_t *ptep)
  346. {
  347. pte_t pte = *ptep;
  348. pte_clear(ptep);
  349. return pte;
  350. }
  351. static inline void ptep_set_wrprotect(pte_t *ptep)
  352. {
  353. pte_t old_pte = *ptep;
  354. set_pte(ptep, pte_wrprotect(old_pte));
  355. }
  356. static inline void ptep_mkdirty(pte_t *ptep)
  357. {
  358. pte_mkdirty(*ptep);
  359. }
  360. /*
  361.  * Conversion functions: convert a page and protection to a page entry,
  362.  * and a page entry and page directory to the page they refer to.
  363.  */
  364. extern inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
  365. {
  366. pte_t __pte;
  367. pte_val(__pte) = physpage + pgprot_val(pgprot);
  368. return __pte;
  369. }
  370. #define mk_pte(pg, pgprot)                                                
  371. ({                                                                        
  372. struct page *__page = (pg);                                       
  373. unsigned long __physpage = __pa((__page-mem_map) << PAGE_SHIFT);  
  374. pte_t __pte = mk_pte_phys(__physpage, (pgprot));                  
  375.                                                                   
  376. if (__page != ZERO_PAGE(__physpage)) {                            
  377. int __users = page_count(__page);                         
  378. __users -= !!__page->buffers + !!__page->mapping;         
  379.                                                                   
  380. if (__users == 1)                                         
  381. pte_val(__pte) |= _PAGE_MKCLEAR;                  
  382.         }                                                                 
  383.                                                                   
  384. __pte;                                                            
  385. })
  386. #define pte_page(x) (mem_map+(unsigned long)((pte_val(x) >> PAGE_SHIFT)))
  387. #define pmd_page(pmd) 
  388.         ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
  389. /* to find an entry in a page-table-directory */
  390. #define pgd_index(address) ((address >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
  391. #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
  392. /* to find an entry in a kernel page-table-directory */
  393. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  394. /* Find an entry in the second-level page table.. */
  395. extern inline pmd_t * pmd_offset(pgd_t * dir, unsigned long address)
  396. {
  397.         return (pmd_t *) dir;
  398. }
  399. /* Find an entry in the third-level page table.. */
  400. #define pte_offset(pmd, address) 
  401.         ((pte_t *) (pmd_page(*pmd) + ((address>>10) & ((PTRS_PER_PTE-1)<<2))))
  402. /*
  403.  * A page-table entry has some bits we have to treat in a special way.
  404.  * Bits 0, 20 and bit 23 have to be zero, otherwise an specification
  405.  * exception will occur instead of a page translation exception. The
  406.  * specifiation exception has the bad habit not to store necessary
  407.  * information in the lowcore.
  408.  * Bit 21 and bit 22 are the page invalid bit and the page protection
  409.  * bit. We set both to indicate a swapped page.
  410.  * Bit 31 is used as the software page present bit. If a page is
  411.  * swapped this obviously has to be zero.
  412.  * This leaves the bits 1-19 and bits 24-30 to store type and offset.
  413.  * We use the 7 bits from 24-30 for the type and the 19 bits from 1-19
  414.  * for the offset.
  415.  * 0|     offset      |0110|type |0
  416.  * 00000000001111111111222222222233
  417.  * 01234567890123456789012345678901
  418.  */
  419. extern inline pte_t mk_swap_pte(unsigned long type, unsigned long offset)
  420. {
  421. pte_t pte;
  422. pte_val(pte) = (type << 1) | (offset << 12) | _PAGE_INVALID | _PAGE_RO;
  423. pte_val(pte) &= 0x7ffff6fe;  /* better to be paranoid */
  424. return pte;
  425. }
  426. #define SWP_TYPE(entry) (((entry).val >> 1) & 0x3f)
  427. #define SWP_OFFSET(entry) (((entry).val >> 12) & 0x7FFFF )
  428. #define SWP_ENTRY(type,offset) ((swp_entry_t) { pte_val(mk_swap_pte((type),(offset))) })
  429. #define pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  430. #define swp_entry_to_pte(x) ((pte_t) { (x).val })
  431. #endif /* !__ASSEMBLY__ */
  432. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  433. #define PageSkip(page)          (0)
  434. #define kern_addr_valid(addr)   (1)
  435. /*
  436.  * No page table caches to initialise
  437.  */
  438. #define pgtable_cache_init() do { } while (0)
  439. #endif /* _S390_PAGE_H */