mmu.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. /*
  2. * PowerPC memory management structures
  3. */
  4. #ifdef __KERNEL__
  5. #ifndef _PPC_MMU_H_
  6. #define _PPC_MMU_H_
  7. #ifndef __ASSEMBLY__
  8. /*
  9. * Define physical address type. Machines using split size
  10. * virtual/physical addressing like 32-bit virtual / 36-bit
  11. * physical need a larger than native word size type. -Matt
  12. */
  13. #ifndef CONFIG_PHYS_64BIT
  14. #define PHYS_FMT "%.8lx"
  15. #else
  16. extern phys_addr_t fixup_bigphys_addr(phys_addr_t, phys_addr_t);
  17. #define PHYS_FMT "%16Lx"
  18. #endif
  19. typedef struct {
  20. unsigned long id;
  21. unsigned long vdso_base;
  22. } mm_context_t;
  23. /* Hardware Page Table Entry */
  24. typedef struct _PTE {
  25. unsigned long v:1; /* Entry is valid */
  26. unsigned long vsid:24; /* Virtual segment identifier */
  27. unsigned long h:1; /* Hash algorithm indicator */
  28. unsigned long api:6; /* Abbreviated page index */
  29. unsigned long rpn:20; /* Real (physical) page number */
  30. unsigned long :3; /* Unused */
  31. unsigned long r:1; /* Referenced */
  32. unsigned long c:1; /* Changed */
  33. unsigned long w:1; /* Write-thru cache mode */
  34. unsigned long i:1; /* Cache inhibited */
  35. unsigned long m:1; /* Memory coherence */
  36. unsigned long g:1; /* Guarded */
  37. unsigned long :1; /* Unused */
  38. unsigned long pp:2; /* Page protection */
  39. } PTE;
  40. /* Values for PP (assumes Ks=0, Kp=1) */
  41. #define PP_RWXX 0 /* Supervisor read/write, User none */
  42. #define PP_RWRX 1 /* Supervisor read/write, User read */
  43. #define PP_RWRW 2 /* Supervisor read/write, User read/write */
  44. #define PP_RXRX 3 /* Supervisor read, User read */
  45. /* Segment Register */
  46. typedef struct _SEGREG {
  47. unsigned long t:1; /* Normal or I/O type */
  48. unsigned long ks:1; /* Supervisor 'key' (normally 0) */
  49. unsigned long kp:1; /* User 'key' (normally 1) */
  50. unsigned long n:1; /* No-execute */
  51. unsigned long :4; /* Unused */
  52. unsigned long vsid:24; /* Virtual Segment Identifier */
  53. } SEGREG;
  54. /* Block Address Translation (BAT) Registers */
  55. typedef struct _P601_BATU { /* Upper part of BAT for 601 processor */
  56. unsigned long bepi:15; /* Effective page index (virtual address) */
  57. unsigned long :8; /* unused */
  58. unsigned long w:1;
  59. unsigned long i:1; /* Cache inhibit */
  60. unsigned long m:1; /* Memory coherence */
  61. unsigned long ks:1; /* Supervisor key (normally 0) */
  62. unsigned long kp:1; /* User key (normally 1) */
  63. unsigned long pp:2; /* Page access protections */
  64. } P601_BATU;
  65. typedef struct _BATU { /* Upper part of BAT (all except 601) */
  66. unsigned long bepi:15; /* Effective page index (virtual address) */
  67. unsigned long :4; /* Unused */
  68. unsigned long bl:11; /* Block size mask */
  69. unsigned long vs:1; /* Supervisor valid */
  70. unsigned long vp:1; /* User valid */
  71. } BATU;
  72. typedef struct _P601_BATL { /* Lower part of BAT for 601 processor */
  73. unsigned long brpn:15; /* Real page index (physical address) */
  74. unsigned long :10; /* Unused */
  75. unsigned long v:1; /* Valid bit */
  76. unsigned long bl:6; /* Block size mask */
  77. } P601_BATL;
  78. typedef struct _BATL { /* Lower part of BAT (all except 601) */
  79. unsigned long brpn:15; /* Real page index (physical address) */
  80. unsigned long :10; /* Unused */
  81. unsigned long w:1; /* Write-thru cache */
  82. unsigned long i:1; /* Cache inhibit */
  83. unsigned long m:1; /* Memory coherence */
  84. unsigned long g:1; /* Guarded (MBZ in IBAT) */
  85. unsigned long :1; /* Unused */
  86. unsigned long pp:2; /* Page access protections */
  87. } BATL;
  88. typedef struct _BAT {
  89. BATU batu; /* Upper register */
  90. BATL batl; /* Lower register */
  91. } BAT;
  92. typedef struct _P601_BAT {
  93. P601_BATU batu; /* Upper register */
  94. P601_BATL batl; /* Lower register */
  95. } P601_BAT;
  96. #endif /* __ASSEMBLY__ */
  97. /* Block size masks */
  98. #define BL_128K 0x000
  99. #define BL_256K 0x001
  100. #define BL_512K 0x003
  101. #define BL_1M 0x007
  102. #define BL_2M 0x00F
  103. #define BL_4M 0x01F
  104. #define BL_8M 0x03F
  105. #define BL_16M 0x07F
  106. #define BL_32M 0x0FF
  107. #define BL_64M 0x1FF
  108. #define BL_128M 0x3FF
  109. #define BL_256M 0x7FF
  110. /* BAT Access Protection */
  111. #define BPP_XX 0x00 /* No access */
  112. #define BPP_RX 0x01 /* Read only */
  113. #define BPP_RW 0x02 /* Read/write */
  114. /* Control/status registers for the MPC8xx.
  115. * A write operation to these registers causes serialized access.
  116. * During software tablewalk, the registers used perform mask/shift-add
  117. * operations when written/read. A TLB entry is created when the Mx_RPN
  118. * is written, and the contents of several registers are used to
  119. * create the entry.
  120. */
  121. #define SPRN_MI_CTR 784 /* Instruction TLB control register */
  122. #define MI_GPM 0x80000000 /* Set domain manager mode */
  123. #define MI_PPM 0x40000000 /* Set subpage protection */
  124. #define MI_CIDEF 0x20000000 /* Set cache inhibit when MMU dis */
  125. #define MI_RSV4I 0x08000000 /* Reserve 4 TLB entries */
  126. #define MI_PPCS 0x02000000 /* Use MI_RPN prob/priv state */
  127. #define MI_IDXMASK 0x00001f00 /* TLB index to be loaded */
  128. #define MI_RESETVAL 0x00000000 /* Value of register at reset */
  129. /* These are the Ks and Kp from the PowerPC books. For proper operation,
  130. * Ks = 0, Kp = 1.
  131. */
  132. #define SPRN_MI_AP 786
  133. #define MI_Ks 0x80000000 /* Should not be set */
  134. #define MI_Kp 0x40000000 /* Should always be set */
  135. /* The effective page number register. When read, contains the information
  136. * about the last instruction TLB miss. When MI_RPN is written, bits in
  137. * this register are used to create the TLB entry.
  138. */
  139. #define SPRN_MI_EPN 787
  140. #define MI_EPNMASK 0xfffff000 /* Effective page number for entry */
  141. #define MI_EVALID 0x00000200 /* Entry is valid */
  142. #define MI_ASIDMASK 0x0000000f /* ASID match value */
  143. /* Reset value is undefined */
  144. /* A "level 1" or "segment" or whatever you want to call it register.
  145. * For the instruction TLB, it contains bits that get loaded into the
  146. * TLB entry when the MI_RPN is written.
  147. */
  148. #define SPRN_MI_TWC 789
  149. #define MI_APG 0x000001e0 /* Access protection group (0) */
  150. #define MI_GUARDED 0x00000010 /* Guarded storage */
  151. #define MI_PSMASK 0x0000000c /* Mask of page size bits */
  152. #define MI_PS8MEG 0x0000000c /* 8M page size */
  153. #define MI_PS512K 0x00000004 /* 512K page size */
  154. #define MI_PS4K_16K 0x00000000 /* 4K or 16K page size */
  155. #define MI_SVALID 0x00000001 /* Segment entry is valid */
  156. /* Reset value is undefined */
  157. /* Real page number. Defined by the pte. Writing this register
  158. * causes a TLB entry to be created for the instruction TLB, using
  159. * additional information from the MI_EPN, and MI_TWC registers.
  160. */
  161. #define SPRN_MI_RPN 790
  162. /* Define an RPN value for mapping kernel memory to large virtual
  163. * pages for boot initialization. This has real page number of 0,
  164. * large page size, shared page, cache enabled, and valid.
  165. * Also mark all subpages valid and write access.
  166. */
  167. #define MI_BOOTINIT 0x000001fd
  168. #define SPRN_MD_CTR 792 /* Data TLB control register */
  169. #define MD_GPM 0x80000000 /* Set domain manager mode */
  170. #define MD_PPM 0x40000000 /* Set subpage protection */
  171. #define MD_CIDEF 0x20000000 /* Set cache inhibit when MMU dis */
  172. #define MD_WTDEF 0x10000000 /* Set writethrough when MMU dis */
  173. #define MD_RSV4I 0x08000000 /* Reserve 4 TLB entries */
  174. #define MD_TWAM 0x04000000 /* Use 4K page hardware assist */
  175. #define MD_PPCS 0x02000000 /* Use MI_RPN prob/priv state */
  176. #define MD_IDXMASK 0x00001f00 /* TLB index to be loaded */
  177. #define MD_RESETVAL 0x04000000 /* Value of register at reset */
  178. #define SPRN_M_CASID 793 /* Address space ID (context) to match */
  179. #define MC_ASIDMASK 0x0000000f /* Bits used for ASID value */
  180. /* These are the Ks and Kp from the PowerPC books. For proper operation,
  181. * Ks = 0, Kp = 1.
  182. */
  183. #define SPRN_MD_AP 794
  184. #define MD_Ks 0x80000000 /* Should not be set */
  185. #define MD_Kp 0x40000000 /* Should always be set */
  186. /* The effective page number register. When read, contains the information
  187. * about the last instruction TLB miss. When MD_RPN is written, bits in
  188. * this register are used to create the TLB entry.
  189. */
  190. #define SPRN_MD_EPN 795
  191. #define MD_EPNMASK 0xfffff000 /* Effective page number for entry */
  192. #define MD_EVALID 0x00000200 /* Entry is valid */
  193. #define MD_ASIDMASK 0x0000000f /* ASID match value */
  194. /* Reset value is undefined */
  195. /* The pointer to the base address of the first level page table.
  196. * During a software tablewalk, reading this register provides the address
  197. * of the entry associated with MD_EPN.
  198. */
  199. #define SPRN_M_TWB 796
  200. #define M_L1TB 0xfffff000 /* Level 1 table base address */
  201. #define M_L1INDX 0x00000ffc /* Level 1 index, when read */
  202. /* Reset value is undefined */
  203. /* A "level 1" or "segment" or whatever you want to call it register.
  204. * For the data TLB, it contains bits that get loaded into the TLB entry
  205. * when the MD_RPN is written. It is also provides the hardware assist
  206. * for finding the PTE address during software tablewalk.
  207. */
  208. #define SPRN_MD_TWC 797
  209. #define MD_L2TB 0xfffff000 /* Level 2 table base address */
  210. #define MD_L2INDX 0xfffffe00 /* Level 2 index (*pte), when read */
  211. #define MD_APG 0x000001e0 /* Access protection group (0) */
  212. #define MD_GUARDED 0x00000010 /* Guarded storage */
  213. #define MD_PSMASK 0x0000000c /* Mask of page size bits */
  214. #define MD_PS8MEG 0x0000000c /* 8M page size */
  215. #define MD_PS512K 0x00000004 /* 512K page size */
  216. #define MD_PS4K_16K 0x00000000 /* 4K or 16K page size */
  217. #define MD_WT 0x00000002 /* Use writethrough page attribute */
  218. #define MD_SVALID 0x00000001 /* Segment entry is valid */
  219. /* Reset value is undefined */
  220. /* Real page number. Defined by the pte. Writing this register
  221. * causes a TLB entry to be created for the data TLB, using
  222. * additional information from the MD_EPN, and MD_TWC registers.
  223. */
  224. #define SPRN_MD_RPN 798
  225. /* This is a temporary storage register that could be used to save
  226. * a processor working register during a tablewalk.
  227. */
  228. #define SPRN_M_TW 799
  229. /*
  230. * At present, all PowerPC 400-class processors share a similar TLB
  231. * architecture. The instruction and data sides share a unified,
  232. * 64-entry, fully-associative TLB which is maintained totally under
  233. * software control. In addition, the instruction side has a
  234. * hardware-managed, 4-entry, fully- associative TLB which serves as a
  235. * first level to the shared TLB. These two TLBs are known as the UTLB
  236. * and ITLB, respectively.
  237. */
  238. #define PPC4XX_TLB_SIZE 64
  239. /*
  240. * TLB entries are defined by a "high" tag portion and a "low" data
  241. * portion. On all architectures, the data portion is 32-bits.
  242. *
  243. * TLB entries are managed entirely under software control by reading,
  244. * writing, and searchoing using the 4xx-specific tlbre, tlbwr, and tlbsx
  245. * instructions.
  246. */
  247. #define TLB_LO 1
  248. #define TLB_HI 0
  249. #define TLB_DATA TLB_LO
  250. #define TLB_TAG TLB_HI
  251. /* Tag portion */
  252. #define TLB_EPN_MASK 0xFFFFFC00 /* Effective Page Number */
  253. #define TLB_PAGESZ_MASK 0x00000380
  254. #define TLB_PAGESZ(x) (((x) & 0x7) << 7)
  255. #define PAGESZ_1K 0
  256. #define PAGESZ_4K 1
  257. #define PAGESZ_16K 2
  258. #define PAGESZ_64K 3
  259. #define PAGESZ_256K 4
  260. #define PAGESZ_1M 5
  261. #define PAGESZ_4M 6
  262. #define PAGESZ_16M 7
  263. #define TLB_VALID 0x00000040 /* Entry is valid */
  264. /* Data portion */
  265. #define TLB_RPN_MASK 0xFFFFFC00 /* Real Page Number */
  266. #define TLB_PERM_MASK 0x00000300
  267. #define TLB_EX 0x00000200 /* Instruction execution allowed */
  268. #define TLB_WR 0x00000100 /* Writes permitted */
  269. #define TLB_ZSEL_MASK 0x000000F0
  270. #define TLB_ZSEL(x) (((x) & 0xF) << 4)
  271. #define TLB_ATTR_MASK 0x0000000F
  272. #define TLB_W 0x00000008 /* Caching is write-through */
  273. #define TLB_I 0x00000004 /* Caching is inhibited */
  274. #define TLB_M 0x00000002 /* Memory is coherent */
  275. #define TLB_G 0x00000001 /* Memory is guarded from prefetch */
  276. /*
  277. * PPC440 support
  278. */
  279. #define PPC44x_MMUCR_TID 0x000000ff
  280. #define PPC44x_MMUCR_STS 0x00010000
  281. #define PPC44x_TLB_PAGEID 0
  282. #define PPC44x_TLB_XLAT 1
  283. #define PPC44x_TLB_ATTRIB 2
  284. /* Page identification fields */
  285. #define PPC44x_TLB_EPN_MASK 0xfffffc00 /* Effective Page Number */
  286. #define PPC44x_TLB_VALID 0x00000200 /* Valid flag */
  287. #define PPC44x_TLB_TS 0x00000100 /* Translation address space */
  288. #define PPC44x_TLB_1K 0x00000000 /* Page sizes */
  289. #define PPC44x_TLB_4K 0x00000010
  290. #define PPC44x_TLB_16K 0x00000020
  291. #define PPC44x_TLB_64K 0x00000030
  292. #define PPC44x_TLB_256K 0x00000040
  293. #define PPC44x_TLB_1M 0x00000050
  294. #define PPC44x_TLB_16M 0x00000070
  295. #define PPC44x_TLB_256M 0x00000090
  296. /* Translation fields */
  297. #define PPC44x_TLB_RPN_MASK 0xfffffc00 /* Real Page Number */
  298. #define PPC44x_TLB_ERPN_MASK 0x0000000f
  299. /* Storage attribute and access control fields */
  300. #define PPC44x_TLB_ATTR_MASK 0x0000ff80
  301. #define PPC44x_TLB_U0 0x00008000 /* User 0 */
  302. #define PPC44x_TLB_U1 0x00004000 /* User 1 */
  303. #define PPC44x_TLB_U2 0x00002000 /* User 2 */
  304. #define PPC44x_TLB_U3 0x00001000 /* User 3 */
  305. #define PPC44x_TLB_W 0x00000800 /* Caching is write-through */
  306. #define PPC44x_TLB_I 0x00000400 /* Caching is inhibited */
  307. #define PPC44x_TLB_M 0x00000200 /* Memory is coherent */
  308. #define PPC44x_TLB_G 0x00000100 /* Memory is guarded */
  309. #define PPC44x_TLB_E 0x00000080 /* Memory is guarded */
  310. #define PPC44x_TLB_PERM_MASK 0x0000003f
  311. #define PPC44x_TLB_UX 0x00000020 /* User execution */
  312. #define PPC44x_TLB_UW 0x00000010 /* User write */
  313. #define PPC44x_TLB_UR 0x00000008 /* User read */
  314. #define PPC44x_TLB_SX 0x00000004 /* Super execution */
  315. #define PPC44x_TLB_SW 0x00000002 /* Super write */
  316. #define PPC44x_TLB_SR 0x00000001 /* Super read */
  317. /* Book-E defined page sizes */
  318. #define BOOKE_PAGESZ_1K 0
  319. #define BOOKE_PAGESZ_4K 1
  320. #define BOOKE_PAGESZ_16K 2
  321. #define BOOKE_PAGESZ_64K 3
  322. #define BOOKE_PAGESZ_256K 4
  323. #define BOOKE_PAGESZ_1M 5
  324. #define BOOKE_PAGESZ_4M 6
  325. #define BOOKE_PAGESZ_16M 7
  326. #define BOOKE_PAGESZ_64M 8
  327. #define BOOKE_PAGESZ_256M 9
  328. #define BOOKE_PAGESZ_1GB 10
  329. #define BOOKE_PAGESZ_4GB 11
  330. #define BOOKE_PAGESZ_16GB 12
  331. #define BOOKE_PAGESZ_64GB 13
  332. #define BOOKE_PAGESZ_256GB 14
  333. #define BOOKE_PAGESZ_1TB 15
  334. #ifndef CONFIG_SERIAL_TEXT_DEBUG
  335. #define PPC44x_EARLY_TLBS 1
  336. #else
  337. #define PPC44x_EARLY_TLBS 2
  338. #endif
  339. /*
  340. * Freescale Book-E MMU support
  341. */
  342. #define MAS0_TLBSEL(x) ((x << 28) & 0x30000000)
  343. #define MAS0_ESEL(x) ((x << 16) & 0x0FFF0000)
  344. #define MAS0_NV(x) ((x) & 0x00000FFF)
  345. #define MAS1_VALID 0x80000000
  346. #define MAS1_IPROT 0x40000000
  347. #define MAS1_TID(x) ((x << 16) & 0x3FFF0000)
  348. #define MAS1_TS 0x00001000
  349. #define MAS1_TSIZE(x) ((x << 8) & 0x00000F00)
  350. #define MAS2_EPN 0xFFFFF000
  351. #define MAS2_X0 0x00000040
  352. #define MAS2_X1 0x00000020
  353. #define MAS2_W 0x00000010
  354. #define MAS2_I 0x00000008
  355. #define MAS2_M 0x00000004
  356. #define MAS2_G 0x00000002
  357. #define MAS2_E 0x00000001
  358. #define MAS3_RPN 0xFFFFF000
  359. #define MAS3_U0 0x00000200
  360. #define MAS3_U1 0x00000100
  361. #define MAS3_U2 0x00000080
  362. #define MAS3_U3 0x00000040
  363. #define MAS3_UX 0x00000020
  364. #define MAS3_SX 0x00000010
  365. #define MAS3_UW 0x00000008
  366. #define MAS3_SW 0x00000004
  367. #define MAS3_UR 0x00000002
  368. #define MAS3_SR 0x00000001
  369. #define MAS4_TLBSELD(x) MAS0_TLBSEL(x)
  370. #define MAS4_TIDDSEL 0x000F0000
  371. #define MAS4_TSIZED(x) MAS1_TSIZE(x)
  372. #define MAS4_X0D 0x00000040
  373. #define MAS4_X1D 0x00000020
  374. #define MAS4_WD 0x00000010
  375. #define MAS4_ID 0x00000008
  376. #define MAS4_MD 0x00000004
  377. #define MAS4_GD 0x00000002
  378. #define MAS4_ED 0x00000001
  379. #define MAS6_SPID0 0x3FFF0000
  380. #define MAS6_SPID1 0x00007FFE
  381. #define MAS6_SAS 0x00000001
  382. #define MAS6_SPID MAS6_SPID0
  383. #define MAS7_RPN 0xFFFFFFFF
  384. #endif /* _PPC_MMU_H_ */
  385. #endif /* __KERNEL__ */