pgtable.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847
  1. #ifdef __KERNEL__
  2. #ifndef _PPC_PGTABLE_H
  3. #define _PPC_PGTABLE_H
  4. #include <asm-generic/4level-fixup.h>
  5. #include <linux/config.h>
  6. #ifndef __ASSEMBLY__
  7. #include <linux/sched.h>
  8. #include <linux/threads.h>
  9. #include <asm/processor.h> /* For TASK_SIZE */
  10. #include <asm/mmu.h>
  11. #include <asm/page.h>
  12. struct mm_struct;
  13. extern unsigned long va_to_phys(unsigned long address);
  14. extern pte_t *va_to_pte(unsigned long address);
  15. extern unsigned long ioremap_bot, ioremap_base;
  16. #endif /* __ASSEMBLY__ */
  17. /*
  18. * The PowerPC MMU uses a hash table containing PTEs, together with
  19. * a set of 16 segment registers (on 32-bit implementations), to define
  20. * the virtual to physical address mapping.
  21. *
  22. * We use the hash table as an extended TLB, i.e. a cache of currently
  23. * active mappings. We maintain a two-level page table tree, much
  24. * like that used by the i386, for the sake of the Linux memory
  25. * management code. Low-level assembler code in hashtable.S
  26. * (procedure hash_page) is responsible for extracting ptes from the
  27. * tree and putting them into the hash table when necessary, and
  28. * updating the accessed and modified bits in the page table tree.
  29. */
  30. /*
  31. * The PowerPC MPC8xx uses a TLB with hardware assisted, software tablewalk.
  32. * We also use the two level tables, but we can put the real bits in them
  33. * needed for the TLB and tablewalk. These definitions require Mx_CTR.PPM = 0,
  34. * Mx_CTR.PPCS = 0, and MD_CTR.TWAM = 1. The level 2 descriptor has
  35. * additional page protection (when Mx_CTR.PPCS = 1) that allows TLB hit
  36. * based upon user/super access. The TLB does not have accessed nor write
  37. * protect. We assume that if the TLB get loaded with an entry it is
  38. * accessed, and overload the changed bit for write protect. We use
  39. * two bits in the software pte that are supposed to be set to zero in
  40. * the TLB entry (24 and 25) for these indicators. Although the level 1
  41. * descriptor contains the guarded and writethrough/copyback bits, we can
  42. * set these at the page level since they get copied from the Mx_TWC
  43. * register when the TLB entry is loaded. We will use bit 27 for guard, since
  44. * that is where it exists in the MD_TWC, and bit 26 for writethrough.
  45. * These will get masked from the level 2 descriptor at TLB load time, and
  46. * copied to the MD_TWC before it gets loaded.
  47. * Large page sizes added. We currently support two sizes, 4K and 8M.
  48. * This also allows a TLB hander optimization because we can directly
  49. * load the PMD into MD_TWC. The 8M pages are only used for kernel
  50. * mapping of well known areas. The PMD (PGD) entries contain control
  51. * flags in addition to the address, so care must be taken that the
  52. * software no longer assumes these are only pointers.
  53. */
  54. /*
  55. * At present, all PowerPC 400-class processors share a similar TLB
  56. * architecture. The instruction and data sides share a unified,
  57. * 64-entry, fully-associative TLB which is maintained totally under
  58. * software control. In addition, the instruction side has a
  59. * hardware-managed, 4-entry, fully-associative TLB which serves as a
  60. * first level to the shared TLB. These two TLBs are known as the UTLB
  61. * and ITLB, respectively (see "mmu.h" for definitions).
  62. */
  63. /*
  64. * The normal case is that PTEs are 32-bits and we have a 1-page
  65. * 1024-entry pgdir pointing to 1-page 1024-entry PTE pages. -- paulus
  66. *
  67. * For any >32-bit physical address platform, we can use the following
  68. * two level page table layout where the pgdir is 8KB and the MS 13 bits
  69. * are an index to the second level table. The combined pgdir/pmd first
  70. * level has 2048 entries and the second level has 512 64-bit PTE entries.
  71. * -Matt
  72. */
  73. /* PMD_SHIFT determines the size of the area mapped by the PTE pages */
  74. #define PMD_SHIFT (PAGE_SHIFT + PTE_SHIFT)
  75. #define PMD_SIZE (1UL << PMD_SHIFT)
  76. #define PMD_MASK (~(PMD_SIZE-1))
  77. /* PGDIR_SHIFT determines what a top-level page table entry can map */
  78. #define PGDIR_SHIFT PMD_SHIFT
  79. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  80. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  81. /*
  82. * entries per page directory level: our page-table tree is two-level, so
  83. * we don't really have any PMD directory.
  84. */
  85. #define PTRS_PER_PTE (1 << PTE_SHIFT)
  86. #define PTRS_PER_PMD 1
  87. #define PTRS_PER_PGD (1 << (32 - PGDIR_SHIFT))
  88. #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
  89. #define FIRST_USER_ADDRESS 0
  90. #define USER_PGD_PTRS (PAGE_OFFSET >> PGDIR_SHIFT)
  91. #define KERNEL_PGD_PTRS (PTRS_PER_PGD-USER_PGD_PTRS)
  92. #define pte_ERROR(e) \
  93. printk("%s:%d: bad pte "PTE_FMT".\n", __FILE__, __LINE__, pte_val(e))
  94. #define pmd_ERROR(e) \
  95. printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e))
  96. #define pgd_ERROR(e) \
  97. printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
  98. /*
  99. * Just any arbitrary offset to the start of the vmalloc VM area: the
  100. * current 64MB value just means that there will be a 64MB "hole" after the
  101. * physical memory until the kernel virtual memory starts. That means that
  102. * any out-of-bounds memory accesses will hopefully be caught.
  103. * The vmalloc() routines leaves a hole of 4kB between each vmalloced
  104. * area for the same reason. ;)
  105. *
  106. * We no longer map larger than phys RAM with the BATs so we don't have
  107. * to worry about the VMALLOC_OFFSET causing problems. We do have to worry
  108. * about clashes between our early calls to ioremap() that start growing down
  109. * from ioremap_base being run into the VM area allocations (growing upwards
  110. * from VMALLOC_START). For this reason we have ioremap_bot to check when
  111. * we actually run into our mappings setup in the early boot with the VM
  112. * system. This really does become a problem for machines with good amounts
  113. * of RAM. -- Cort
  114. */
  115. #define VMALLOC_OFFSET (0x1000000) /* 16M */
  116. #ifdef CONFIG_44x
  117. #include <asm/ibm44x.h>
  118. #define VMALLOC_START (((_ALIGN((long)high_memory, PPC44x_PIN_SIZE) + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
  119. #else
  120. #define VMALLOC_START ((((long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
  121. #endif
  122. #define VMALLOC_END ioremap_bot
  123. /*
  124. * Bits in a linux-style PTE. These match the bits in the
  125. * (hardware-defined) PowerPC PTE as closely as possible.
  126. */
  127. #if defined(CONFIG_40x)
  128. /* There are several potential gotchas here. The 40x hardware TLBLO
  129. field looks like this:
  130. 0 1 2 3 4 ... 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  131. RPN..................... 0 0 EX WR ZSEL....... W I M G
  132. Where possible we make the Linux PTE bits match up with this
  133. - bits 20 and 21 must be cleared, because we use 4k pages (40x can
  134. support down to 1k pages), this is done in the TLBMiss exception
  135. handler.
  136. - We use only zones 0 (for kernel pages) and 1 (for user pages)
  137. of the 16 available. Bit 24-26 of the TLB are cleared in the TLB
  138. miss handler. Bit 27 is PAGE_USER, thus selecting the correct
  139. zone.
  140. - PRESENT *must* be in the bottom two bits because swap cache
  141. entries use the top 30 bits. Because 40x doesn't support SMP
  142. anyway, M is irrelevant so we borrow it for PAGE_PRESENT. Bit 30
  143. is cleared in the TLB miss handler before the TLB entry is loaded.
  144. - All other bits of the PTE are loaded into TLBLO without
  145. modification, leaving us only the bits 20, 21, 24, 25, 26, 30 for
  146. software PTE bits. We actually use use bits 21, 24, 25, and
  147. 30 respectively for the software bits: ACCESSED, DIRTY, RW, and
  148. PRESENT.
  149. */
  150. /* Definitions for 40x embedded chips. */
  151. #define _PAGE_GUARDED 0x001 /* G: page is guarded from prefetch */
  152. #define _PAGE_FILE 0x001 /* when !present: nonlinear file mapping */
  153. #define _PAGE_PRESENT 0x002 /* software: PTE contains a translation */
  154. #define _PAGE_NO_CACHE 0x004 /* I: caching is inhibited */
  155. #define _PAGE_WRITETHRU 0x008 /* W: caching is write-through */
  156. #define _PAGE_USER 0x010 /* matches one of the zone permission bits */
  157. #define _PAGE_RW 0x040 /* software: Writes permitted */
  158. #define _PAGE_DIRTY 0x080 /* software: dirty page */
  159. #define _PAGE_HWWRITE 0x100 /* hardware: Dirty & RW, set in exception */
  160. #define _PAGE_HWEXEC 0x200 /* hardware: EX permission */
  161. #define _PAGE_ACCESSED 0x400 /* software: R: page referenced */
  162. #define _PMD_PRESENT 0x400 /* PMD points to page of PTEs */
  163. #define _PMD_BAD 0x802
  164. #define _PMD_SIZE 0x0e0 /* size field, != 0 for large-page PMD entry */
  165. #define _PMD_SIZE_4M 0x0c0
  166. #define _PMD_SIZE_16M 0x0e0
  167. #define PMD_PAGE_SIZE(pmdval) (1024 << (((pmdval) & _PMD_SIZE) >> 4))
  168. #elif defined(CONFIG_44x)
  169. /*
  170. * Definitions for PPC440
  171. *
  172. * Because of the 3 word TLB entries to support 36-bit addressing,
  173. * the attribute are difficult to map in such a fashion that they
  174. * are easily loaded during exception processing. I decided to
  175. * organize the entry so the ERPN is the only portion in the
  176. * upper word of the PTE and the attribute bits below are packed
  177. * in as sensibly as they can be in the area below a 4KB page size
  178. * oriented RPN. This at least makes it easy to load the RPN and
  179. * ERPN fields in the TLB. -Matt
  180. *
  181. * Note that these bits preclude future use of a page size
  182. * less than 4KB.
  183. *
  184. *
  185. * PPC 440 core has following TLB attribute fields;
  186. *
  187. * TLB1:
  188. * 0 1 2 3 4 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  189. * RPN................................. - - - - - - ERPN.......
  190. *
  191. * TLB2:
  192. * 0 1 2 3 4 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  193. * - - - - - - U0 U1 U2 U3 W I M G E - UX UW UR SX SW SR
  194. *
  195. * There are some constrains and options, to decide mapping software bits
  196. * into TLB entry.
  197. *
  198. * - PRESENT *must* be in the bottom three bits because swap cache
  199. * entries use the top 29 bits for TLB2.
  200. *
  201. * - FILE *must* be in the bottom three bits because swap cache
  202. * entries use the top 29 bits for TLB2.
  203. *
  204. * - CACHE COHERENT bit (M) has no effect on PPC440 core, because it
  205. * doesn't support SMP. So we can use this as software bit, like
  206. * DIRTY.
  207. *
  208. * With the PPC 44x Linux implementation, the 0-11th LSBs of the PTE are used
  209. * for memory protection related functions (see PTE structure in
  210. * include/asm-ppc/mmu.h). The _PAGE_XXX definitions in this file map to the
  211. * above bits. Note that the bit values are CPU specific, not architecture
  212. * specific.
  213. *
  214. * The kernel PTE entry holds an arch-dependent swp_entry structure under
  215. * certain situations. In other words, in such situations some portion of
  216. * the PTE bits are used as a swp_entry. In the PPC implementation, the
  217. * 3-24th LSB are shared with swp_entry, however the 0-2nd three LSB still
  218. * hold protection values. That means the three protection bits are
  219. * reserved for both PTE and SWAP entry at the most significant three
  220. * LSBs.
  221. *
  222. * There are three protection bits available for SWAP entry:
  223. * _PAGE_PRESENT
  224. * _PAGE_FILE
  225. * _PAGE_HASHPTE (if HW has)
  226. *
  227. * So those three bits have to be inside of 0-2nd LSB of PTE.
  228. *
  229. */
  230. #define _PAGE_PRESENT 0x00000001 /* S: PTE valid */
  231. #define _PAGE_RW 0x00000002 /* S: Write permission */
  232. #define _PAGE_FILE 0x00000004 /* S: nonlinear file mapping */
  233. #define _PAGE_ACCESSED 0x00000008 /* S: Page referenced */
  234. #define _PAGE_HWWRITE 0x00000010 /* H: Dirty & RW */
  235. #define _PAGE_HWEXEC 0x00000020 /* H: Execute permission */
  236. #define _PAGE_USER 0x00000040 /* S: User page */
  237. #define _PAGE_ENDIAN 0x00000080 /* H: E bit */
  238. #define _PAGE_GUARDED 0x00000100 /* H: G bit */
  239. #define _PAGE_DIRTY 0x00000200 /* S: Page dirty */
  240. #define _PAGE_NO_CACHE 0x00000400 /* H: I bit */
  241. #define _PAGE_WRITETHRU 0x00000800 /* H: W bit */
  242. /* TODO: Add large page lowmem mapping support */
  243. #define _PMD_PRESENT 0
  244. #define _PMD_PRESENT_MASK (PAGE_MASK)
  245. #define _PMD_BAD (~PAGE_MASK)
  246. /* ERPN in a PTE never gets cleared, ignore it */
  247. #define _PTE_NONE_MASK 0xffffffff00000000ULL
  248. #elif defined(CONFIG_FSL_BOOKE)
  249. /*
  250. MMU Assist Register 3:
  251. 32 33 34 35 36 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63
  252. RPN...................... 0 0 U0 U1 U2 U3 UX SX UW SW UR SR
  253. - PRESENT *must* be in the bottom three bits because swap cache
  254. entries use the top 29 bits.
  255. - FILE *must* be in the bottom three bits because swap cache
  256. entries use the top 29 bits.
  257. */
  258. /* Definitions for FSL Book-E Cores */
  259. #define _PAGE_PRESENT 0x00001 /* S: PTE contains a translation */
  260. #define _PAGE_USER 0x00002 /* S: User page (maps to UR) */
  261. #define _PAGE_FILE 0x00002 /* S: when !present: nonlinear file mapping */
  262. #define _PAGE_ACCESSED 0x00004 /* S: Page referenced */
  263. #define _PAGE_HWWRITE 0x00008 /* H: Dirty & RW, set in exception */
  264. #define _PAGE_RW 0x00010 /* S: Write permission */
  265. #define _PAGE_HWEXEC 0x00020 /* H: UX permission */
  266. #define _PAGE_ENDIAN 0x00040 /* H: E bit */
  267. #define _PAGE_GUARDED 0x00080 /* H: G bit */
  268. #define _PAGE_COHERENT 0x00100 /* H: M bit */
  269. #define _PAGE_NO_CACHE 0x00200 /* H: I bit */
  270. #define _PAGE_WRITETHRU 0x00400 /* H: W bit */
  271. #ifdef CONFIG_PTE_64BIT
  272. #define _PAGE_DIRTY 0x08000 /* S: Page dirty */
  273. /* ERPN in a PTE never gets cleared, ignore it */
  274. #define _PTE_NONE_MASK 0xffffffffffff0000ULL
  275. #else
  276. #define _PAGE_DIRTY 0x00800 /* S: Page dirty */
  277. #endif
  278. #define _PMD_PRESENT 0
  279. #define _PMD_PRESENT_MASK (PAGE_MASK)
  280. #define _PMD_BAD (~PAGE_MASK)
  281. #elif defined(CONFIG_8xx)
  282. /* Definitions for 8xx embedded chips. */
  283. #define _PAGE_PRESENT 0x0001 /* Page is valid */
  284. #define _PAGE_FILE 0x0002 /* when !present: nonlinear file mapping */
  285. #define _PAGE_NO_CACHE 0x0002 /* I: cache inhibit */
  286. #define _PAGE_SHARED 0x0004 /* No ASID (context) compare */
  287. /* These five software bits must be masked out when the entry is loaded
  288. * into the TLB.
  289. */
  290. #define _PAGE_EXEC 0x0008 /* software: i-cache coherency required */
  291. #define _PAGE_GUARDED 0x0010 /* software: guarded access */
  292. #define _PAGE_DIRTY 0x0020 /* software: page changed */
  293. #define _PAGE_RW 0x0040 /* software: user write access allowed */
  294. #define _PAGE_ACCESSED 0x0080 /* software: page referenced */
  295. /* Setting any bits in the nibble with the follow two controls will
  296. * require a TLB exception handler change. It is assumed unused bits
  297. * are always zero.
  298. */
  299. #define _PAGE_HWWRITE 0x0100 /* h/w write enable: never set in Linux PTE */
  300. #define _PAGE_USER 0x0800 /* One of the PP bits, the other is USER&~RW */
  301. #define _PMD_PRESENT 0x0001
  302. #define _PMD_BAD 0x0ff0
  303. #define _PMD_PAGE_MASK 0x000c
  304. #define _PMD_PAGE_8M 0x000c
  305. /*
  306. * The 8xx TLB miss handler allegedly sets _PAGE_ACCESSED in the PTE
  307. * for an address even if _PAGE_PRESENT is not set, as a performance
  308. * optimization. This is a bug if you ever want to use swap unless
  309. * _PAGE_ACCESSED is 2, which it isn't, or unless you have 8xx-specific
  310. * definitions for __swp_entry etc. below, which would be gross.
  311. * -- paulus
  312. */
  313. #define _PTE_NONE_MASK _PAGE_ACCESSED
  314. #else /* CONFIG_6xx */
  315. /* Definitions for 60x, 740/750, etc. */
  316. #define _PAGE_PRESENT 0x001 /* software: pte contains a translation */
  317. #define _PAGE_HASHPTE 0x002 /* hash_page has made an HPTE for this pte */
  318. #define _PAGE_FILE 0x004 /* when !present: nonlinear file mapping */
  319. #define _PAGE_USER 0x004 /* usermode access allowed */
  320. #define _PAGE_GUARDED 0x008 /* G: prohibit speculative access */
  321. #define _PAGE_COHERENT 0x010 /* M: enforce memory coherence (SMP systems) */
  322. #define _PAGE_NO_CACHE 0x020 /* I: cache inhibit */
  323. #define _PAGE_WRITETHRU 0x040 /* W: cache write-through */
  324. #define _PAGE_DIRTY 0x080 /* C: page changed */
  325. #define _PAGE_ACCESSED 0x100 /* R: page referenced */
  326. #define _PAGE_EXEC 0x200 /* software: i-cache coherency required */
  327. #define _PAGE_RW 0x400 /* software: user write access allowed */
  328. #define _PTE_NONE_MASK _PAGE_HASHPTE
  329. #define _PMD_PRESENT 0
  330. #define _PMD_PRESENT_MASK (PAGE_MASK)
  331. #define _PMD_BAD (~PAGE_MASK)
  332. #endif
  333. /*
  334. * Some bits are only used on some cpu families...
  335. */
  336. #ifndef _PAGE_HASHPTE
  337. #define _PAGE_HASHPTE 0
  338. #endif
  339. #ifndef _PTE_NONE_MASK
  340. #define _PTE_NONE_MASK 0
  341. #endif
  342. #ifndef _PAGE_SHARED
  343. #define _PAGE_SHARED 0
  344. #endif
  345. #ifndef _PAGE_HWWRITE
  346. #define _PAGE_HWWRITE 0
  347. #endif
  348. #ifndef _PAGE_HWEXEC
  349. #define _PAGE_HWEXEC 0
  350. #endif
  351. #ifndef _PAGE_EXEC
  352. #define _PAGE_EXEC 0
  353. #endif
  354. #ifndef _PMD_PRESENT_MASK
  355. #define _PMD_PRESENT_MASK _PMD_PRESENT
  356. #endif
  357. #ifndef _PMD_SIZE
  358. #define _PMD_SIZE 0
  359. #define PMD_PAGE_SIZE(pmd) bad_call_to_PMD_PAGE_SIZE()
  360. #endif
  361. #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  362. /*
  363. * Note: the _PAGE_COHERENT bit automatically gets set in the hardware
  364. * PTE if CONFIG_SMP is defined (hash_page does this); there is no need
  365. * to have it in the Linux PTE, and in fact the bit could be reused for
  366. * another purpose. -- paulus.
  367. */
  368. #ifdef CONFIG_44x
  369. #define _PAGE_BASE (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_GUARDED)
  370. #else
  371. #define _PAGE_BASE (_PAGE_PRESENT | _PAGE_ACCESSED)
  372. #endif
  373. #define _PAGE_WRENABLE (_PAGE_RW | _PAGE_DIRTY | _PAGE_HWWRITE)
  374. #define _PAGE_KERNEL (_PAGE_BASE | _PAGE_SHARED | _PAGE_WRENABLE)
  375. #ifdef CONFIG_PPC_STD_MMU
  376. /* On standard PPC MMU, no user access implies kernel read/write access,
  377. * so to write-protect kernel memory we must turn on user access */
  378. #define _PAGE_KERNEL_RO (_PAGE_BASE | _PAGE_SHARED | _PAGE_USER)
  379. #else
  380. #define _PAGE_KERNEL_RO (_PAGE_BASE | _PAGE_SHARED)
  381. #endif
  382. #define _PAGE_IO (_PAGE_KERNEL | _PAGE_NO_CACHE | _PAGE_GUARDED)
  383. #define _PAGE_RAM (_PAGE_KERNEL | _PAGE_HWEXEC)
  384. #if defined(CONFIG_KGDB) || defined(CONFIG_XMON) || defined(CONFIG_BDI_SWITCH)
  385. /* We want the debuggers to be able to set breakpoints anywhere, so
  386. * don't write protect the kernel text */
  387. #define _PAGE_RAM_TEXT _PAGE_RAM
  388. #else
  389. #define _PAGE_RAM_TEXT (_PAGE_KERNEL_RO | _PAGE_HWEXEC)
  390. #endif
  391. #define PAGE_NONE __pgprot(_PAGE_BASE)
  392. #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
  393. #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  394. #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
  395. #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
  396. #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
  397. #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  398. #define PAGE_KERNEL __pgprot(_PAGE_RAM)
  399. #define PAGE_KERNEL_NOCACHE __pgprot(_PAGE_IO)
  400. /*
  401. * The PowerPC can only do execute protection on a segment (256MB) basis,
  402. * not on a page basis. So we consider execute permission the same as read.
  403. * Also, write permissions imply read permissions.
  404. * This is the closest we can get..
  405. */
  406. #define __P000 PAGE_NONE
  407. #define __P001 PAGE_READONLY_X
  408. #define __P010 PAGE_COPY
  409. #define __P011 PAGE_COPY_X
  410. #define __P100 PAGE_READONLY
  411. #define __P101 PAGE_READONLY_X
  412. #define __P110 PAGE_COPY
  413. #define __P111 PAGE_COPY_X
  414. #define __S000 PAGE_NONE
  415. #define __S001 PAGE_READONLY_X
  416. #define __S010 PAGE_SHARED
  417. #define __S011 PAGE_SHARED_X
  418. #define __S100 PAGE_READONLY
  419. #define __S101 PAGE_READONLY_X
  420. #define __S110 PAGE_SHARED
  421. #define __S111 PAGE_SHARED_X
  422. #ifndef __ASSEMBLY__
  423. /* Make sure we get a link error if PMD_PAGE_SIZE is ever called on a
  424. * kernel without large page PMD support */
  425. extern unsigned long bad_call_to_PMD_PAGE_SIZE(void);
  426. /*
  427. * Conversions between PTE values and page frame numbers.
  428. */
  429. /* in some case we want to additionaly adjust where the pfn is in the pte to
  430. * allow room for more flags */
  431. #if defined(CONFIG_FSL_BOOKE) && defined(CONFIG_PTE_64BIT)
  432. #define PFN_SHIFT_OFFSET (PAGE_SHIFT + 8)
  433. #else
  434. #define PFN_SHIFT_OFFSET (PAGE_SHIFT)
  435. #endif
  436. #define pte_pfn(x) (pte_val(x) >> PFN_SHIFT_OFFSET)
  437. #define pte_page(x) pfn_to_page(pte_pfn(x))
  438. #define pfn_pte(pfn, prot) __pte(((pte_basic_t)(pfn) << PFN_SHIFT_OFFSET) |\
  439. pgprot_val(prot))
  440. #define mk_pte(page, prot) pfn_pte(page_to_pfn(page), prot)
  441. /*
  442. * ZERO_PAGE is a global shared page that is always zero: used
  443. * for zero-mapped memory areas etc..
  444. */
  445. extern unsigned long empty_zero_page[1024];
  446. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  447. #endif /* __ASSEMBLY__ */
  448. #define pte_none(pte) ((pte_val(pte) & ~_PTE_NONE_MASK) == 0)
  449. #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
  450. #define pte_clear(mm,addr,ptep) do { set_pte_at((mm), (addr), (ptep), __pte(0)); } while (0)
  451. #define pmd_none(pmd) (!pmd_val(pmd))
  452. #define pmd_bad(pmd) (pmd_val(pmd) & _PMD_BAD)
  453. #define pmd_present(pmd) (pmd_val(pmd) & _PMD_PRESENT_MASK)
  454. #define pmd_clear(pmdp) do { pmd_val(*(pmdp)) = 0; } while (0)
  455. #ifndef __ASSEMBLY__
  456. /*
  457. * The "pgd_xxx()" functions here are trivial for a folded two-level
  458. * setup: the pgd is never bad, and a pmd always exists (as it's folded
  459. * into the pgd entry)
  460. */
  461. static inline int pgd_none(pgd_t pgd) { return 0; }
  462. static inline int pgd_bad(pgd_t pgd) { return 0; }
  463. static inline int pgd_present(pgd_t pgd) { return 1; }
  464. #define pgd_clear(xp) do { } while (0)
  465. #define pgd_page(pgd) \
  466. ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
  467. /*
  468. * The following only work if pte_present() is true.
  469. * Undefined behaviour if not..
  470. */
  471. static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; }
  472. static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
  473. static inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; }
  474. static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
  475. static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
  476. static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
  477. static inline void pte_uncache(pte_t pte) { pte_val(pte) |= _PAGE_NO_CACHE; }
  478. static inline void pte_cache(pte_t pte) { pte_val(pte) &= ~_PAGE_NO_CACHE; }
  479. static inline pte_t pte_rdprotect(pte_t pte) {
  480. pte_val(pte) &= ~_PAGE_USER; return pte; }
  481. static inline pte_t pte_wrprotect(pte_t pte) {
  482. pte_val(pte) &= ~(_PAGE_RW | _PAGE_HWWRITE); return pte; }
  483. static inline pte_t pte_exprotect(pte_t pte) {
  484. pte_val(pte) &= ~_PAGE_EXEC; return pte; }
  485. static inline pte_t pte_mkclean(pte_t pte) {
  486. pte_val(pte) &= ~(_PAGE_DIRTY | _PAGE_HWWRITE); return pte; }
  487. static inline pte_t pte_mkold(pte_t pte) {
  488. pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
  489. static inline pte_t pte_mkread(pte_t pte) {
  490. pte_val(pte) |= _PAGE_USER; return pte; }
  491. static inline pte_t pte_mkexec(pte_t pte) {
  492. pte_val(pte) |= _PAGE_USER | _PAGE_EXEC; return pte; }
  493. static inline pte_t pte_mkwrite(pte_t pte) {
  494. pte_val(pte) |= _PAGE_RW; return pte; }
  495. static inline pte_t pte_mkdirty(pte_t pte) {
  496. pte_val(pte) |= _PAGE_DIRTY; return pte; }
  497. static inline pte_t pte_mkyoung(pte_t pte) {
  498. pte_val(pte) |= _PAGE_ACCESSED; return pte; }
  499. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  500. {
  501. pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot);
  502. return pte;
  503. }
  504. /*
  505. * When flushing the tlb entry for a page, we also need to flush the hash
  506. * table entry. flush_hash_pages is assembler (for speed) in hashtable.S.
  507. */
  508. extern int flush_hash_pages(unsigned context, unsigned long va,
  509. unsigned long pmdval, int count);
  510. /* Add an HPTE to the hash table */
  511. extern void add_hash_page(unsigned context, unsigned long va,
  512. unsigned long pmdval);
  513. /*
  514. * Atomic PTE updates.
  515. *
  516. * pte_update clears and sets bit atomically, and returns
  517. * the old pte value. In the 64-bit PTE case we lock around the
  518. * low PTE word since we expect ALL flag bits to be there
  519. */
  520. #ifndef CONFIG_PTE_64BIT
  521. static inline unsigned long pte_update(pte_t *p, unsigned long clr,
  522. unsigned long set)
  523. {
  524. unsigned long old, tmp;
  525. __asm__ __volatile__("\
  526. 1: lwarx %0,0,%3\n\
  527. andc %1,%0,%4\n\
  528. or %1,%1,%5\n"
  529. PPC405_ERR77(0,%3)
  530. " stwcx. %1,0,%3\n\
  531. bne- 1b"
  532. : "=&r" (old), "=&r" (tmp), "=m" (*p)
  533. : "r" (p), "r" (clr), "r" (set), "m" (*p)
  534. : "cc" );
  535. return old;
  536. }
  537. #else
  538. static inline unsigned long long pte_update(pte_t *p, unsigned long clr,
  539. unsigned long set)
  540. {
  541. unsigned long long old;
  542. unsigned long tmp;
  543. __asm__ __volatile__("\
  544. 1: lwarx %L0,0,%4\n\
  545. lwzx %0,0,%3\n\
  546. andc %1,%L0,%5\n\
  547. or %1,%1,%6\n"
  548. PPC405_ERR77(0,%3)
  549. " stwcx. %1,0,%4\n\
  550. bne- 1b"
  551. : "=&r" (old), "=&r" (tmp), "=m" (*p)
  552. : "r" (p), "r" ((unsigned long)(p) + 4), "r" (clr), "r" (set), "m" (*p)
  553. : "cc" );
  554. return old;
  555. }
  556. #endif
  557. /*
  558. * set_pte stores a linux PTE into the linux page table.
  559. * On machines which use an MMU hash table we avoid changing the
  560. * _PAGE_HASHPTE bit.
  561. */
  562. static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
  563. pte_t *ptep, pte_t pte)
  564. {
  565. #if _PAGE_HASHPTE != 0
  566. pte_update(ptep, ~_PAGE_HASHPTE, pte_val(pte) & ~_PAGE_HASHPTE);
  567. #else
  568. *ptep = pte;
  569. #endif
  570. }
  571. /*
  572. * 2.6 calles this without flushing the TLB entry, this is wrong
  573. * for our hash-based implementation, we fix that up here
  574. */
  575. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
  576. static inline int __ptep_test_and_clear_young(unsigned int context, unsigned long addr, pte_t *ptep)
  577. {
  578. unsigned long old;
  579. old = pte_update(ptep, _PAGE_ACCESSED, 0);
  580. #if _PAGE_HASHPTE != 0
  581. if (old & _PAGE_HASHPTE) {
  582. unsigned long ptephys = __pa(ptep) & PAGE_MASK;
  583. flush_hash_pages(context, addr, ptephys, 1);
  584. }
  585. #endif
  586. return (old & _PAGE_ACCESSED) != 0;
  587. }
  588. #define ptep_test_and_clear_young(__vma, __addr, __ptep) \
  589. __ptep_test_and_clear_young((__vma)->vm_mm->context, __addr, __ptep)
  590. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_DIRTY
  591. static inline int ptep_test_and_clear_dirty(struct vm_area_struct *vma,
  592. unsigned long addr, pte_t *ptep)
  593. {
  594. return (pte_update(ptep, (_PAGE_DIRTY | _PAGE_HWWRITE), 0) & _PAGE_DIRTY) != 0;
  595. }
  596. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
  597. static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
  598. pte_t *ptep)
  599. {
  600. return __pte(pte_update(ptep, ~_PAGE_HASHPTE, 0));
  601. }
  602. #define __HAVE_ARCH_PTEP_SET_WRPROTECT
  603. static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr,
  604. pte_t *ptep)
  605. {
  606. pte_update(ptep, (_PAGE_RW | _PAGE_HWWRITE), 0);
  607. }
  608. #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
  609. static inline void __ptep_set_access_flags(pte_t *ptep, pte_t entry, int dirty)
  610. {
  611. unsigned long bits = pte_val(entry) &
  612. (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW);
  613. pte_update(ptep, 0, bits);
  614. }
  615. #define ptep_set_access_flags(__vma, __address, __ptep, __entry, __dirty) \
  616. do { \
  617. __ptep_set_access_flags(__ptep, __entry, __dirty); \
  618. flush_tlb_page_nohash(__vma, __address); \
  619. } while(0)
  620. /*
  621. * Macro to mark a page protection value as "uncacheable".
  622. */
  623. #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) | _PAGE_NO_CACHE | _PAGE_GUARDED))
  624. struct file;
  625. extern pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
  626. unsigned long size, pgprot_t vma_prot);
  627. #define __HAVE_PHYS_MEM_ACCESS_PROT
  628. #define __HAVE_ARCH_PTE_SAME
  629. #define pte_same(A,B) (((pte_val(A) ^ pte_val(B)) & ~_PAGE_HASHPTE) == 0)
  630. /*
  631. * Note that on Book E processors, the pmd contains the kernel virtual
  632. * (lowmem) address of the pte page. The physical address is less useful
  633. * because everything runs with translation enabled (even the TLB miss
  634. * handler). On everything else the pmd contains the physical address
  635. * of the pte page. -- paulus
  636. */
  637. #ifndef CONFIG_BOOKE
  638. #define pmd_page_kernel(pmd) \
  639. ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
  640. #define pmd_page(pmd) \
  641. (mem_map + (pmd_val(pmd) >> PAGE_SHIFT))
  642. #else
  643. #define pmd_page_kernel(pmd) \
  644. ((unsigned long) (pmd_val(pmd) & PAGE_MASK))
  645. #define pmd_page(pmd) \
  646. (mem_map + (__pa(pmd_val(pmd)) >> PAGE_SHIFT))
  647. #endif
  648. /* to find an entry in a kernel page-table-directory */
  649. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  650. /* to find an entry in a page-table-directory */
  651. #define pgd_index(address) ((address) >> PGDIR_SHIFT)
  652. #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
  653. /* Find an entry in the second-level page table.. */
  654. static inline pmd_t * pmd_offset(pgd_t * dir, unsigned long address)
  655. {
  656. return (pmd_t *) dir;
  657. }
  658. /* Find an entry in the third-level page table.. */
  659. #define pte_index(address) \
  660. (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  661. #define pte_offset_kernel(dir, addr) \
  662. ((pte_t *) pmd_page_kernel(*(dir)) + pte_index(addr))
  663. #define pte_offset_map(dir, addr) \
  664. ((pte_t *) kmap_atomic(pmd_page(*(dir)), KM_PTE0) + pte_index(addr))
  665. #define pte_offset_map_nested(dir, addr) \
  666. ((pte_t *) kmap_atomic(pmd_page(*(dir)), KM_PTE1) + pte_index(addr))
  667. #define pte_unmap(pte) kunmap_atomic(pte, KM_PTE0)
  668. #define pte_unmap_nested(pte) kunmap_atomic(pte, KM_PTE1)
  669. extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
  670. extern void paging_init(void);
  671. /*
  672. * Encode and decode a swap entry.
  673. * Note that the bits we use in a PTE for representing a swap entry
  674. * must not include the _PAGE_PRESENT bit, the _PAGE_FILE bit, or the
  675. *_PAGE_HASHPTE bit (if used). -- paulus
  676. */
  677. #define __swp_type(entry) ((entry).val & 0x1f)
  678. #define __swp_offset(entry) ((entry).val >> 5)
  679. #define __swp_entry(type, offset) ((swp_entry_t) { (type) | ((offset) << 5) })
  680. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 })
  681. #define __swp_entry_to_pte(x) ((pte_t) { (x).val << 3 })
  682. /* Encode and decode a nonlinear file mapping entry */
  683. #define PTE_FILE_MAX_BITS 29
  684. #define pte_to_pgoff(pte) (pte_val(pte) >> 3)
  685. #define pgoff_to_pte(off) ((pte_t) { ((off) << 3) | _PAGE_FILE })
  686. /* CONFIG_APUS */
  687. /* For virtual address to physical address conversion */
  688. extern void cache_clear(__u32 addr, int length);
  689. extern void cache_push(__u32 addr, int length);
  690. extern int mm_end_of_chunk (unsigned long addr, int len);
  691. extern unsigned long iopa(unsigned long addr);
  692. extern unsigned long mm_ptov(unsigned long addr) __attribute_const__;
  693. /* Values for nocacheflag and cmode */
  694. /* These are not used by the APUS kernel_map, but prevents
  695. compilation errors. */
  696. #define KERNELMAP_FULL_CACHING 0
  697. #define KERNELMAP_NOCACHE_SER 1
  698. #define KERNELMAP_NOCACHE_NONSER 2
  699. #define KERNELMAP_NO_COPYBACK 3
  700. /*
  701. * Map some physical address range into the kernel address space.
  702. */
  703. extern unsigned long kernel_map(unsigned long paddr, unsigned long size,
  704. int nocacheflag, unsigned long *memavailp );
  705. /*
  706. * Set cache mode of (kernel space) address range.
  707. */
  708. extern void kernel_set_cachemode (unsigned long address, unsigned long size,
  709. unsigned int cmode);
  710. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  711. #define kern_addr_valid(addr) (1)
  712. #ifdef CONFIG_PHYS_64BIT
  713. extern int remap_pfn_range(struct vm_area_struct *vma, unsigned long from,
  714. unsigned long paddr, unsigned long size, pgprot_t prot);
  715. static inline int io_remap_pfn_range(struct vm_area_struct *vma,
  716. unsigned long vaddr,
  717. unsigned long pfn,
  718. unsigned long size,
  719. pgprot_t prot)
  720. {
  721. phys_addr_t paddr64 = fixup_bigphys_addr(pfn << PAGE_SHIFT, size);
  722. return remap_pfn_range(vma, vaddr, paddr64 >> PAGE_SHIFT, size, prot);
  723. }
  724. #else
  725. #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
  726. remap_pfn_range(vma, vaddr, pfn, size, prot)
  727. #endif
  728. #define MK_IOSPACE_PFN(space, pfn) (pfn)
  729. #define GET_IOSPACE(pfn) 0
  730. #define GET_PFN(pfn) (pfn)
  731. /*
  732. * No page table caches to initialise
  733. */
  734. #define pgtable_cache_init() do { } while (0)
  735. extern int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep);
  736. #include <asm-generic/pgtable.h>
  737. #endif /* !__ASSEMBLY__ */
  738. #endif /* _PPC_PGTABLE_H */
  739. #endif /* __KERNEL__ */