7024-Add-APIs-to-setup-HugeTLB-mappings-for-USDPAA.patch 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. From 2dcd28f7b4f5b92686da45f4ec46802026fb8573 Mon Sep 17 00:00:00 2001
  2. From: Roy Pledge <Roy.Pledge@freescale.com>
  3. Date: Mon, 11 Jul 2016 14:34:59 +0800
  4. Subject: [PATCH 24/70] Add APIs to setup HugeTLB mappings for USDPAA
  5. commit 189653d40d5dc41b8bd4cfb61f766bd8a89b1e34
  6. [context adjustment]
  7. Signed-off-by: Zhao Qiang <qiang.zhao@nxp.com>
  8. ---
  9. arch/powerpc/mm/fsl_booke_mmu.c | 14 +++++++++++++-
  10. arch/powerpc/mm/mmu_decl.h | 6 ++++++
  11. 2 files changed, 19 insertions(+), 1 deletion(-)
  12. --- a/arch/powerpc/mm/fsl_booke_mmu.c
  13. +++ b/arch/powerpc/mm/fsl_booke_mmu.c
  14. @@ -105,7 +105,7 @@ unsigned long p_mapped_by_tlbcam(phys_ad
  15. * an unsigned long (for example, 32-bit implementations cannot support a 4GB
  16. * size).
  17. */
  18. -static void settlbcam(int index, unsigned long virt, phys_addr_t phys,
  19. +void settlbcam(int index, unsigned long virt, phys_addr_t phys,
  20. unsigned long size, unsigned long flags, unsigned int pid)
  21. {
  22. unsigned int tsize;
  23. @@ -143,6 +143,18 @@ static void settlbcam(int index, unsigne
  24. tlbcam_addrs[index].phys = phys;
  25. }
  26. +void cleartlbcam(unsigned long virt, unsigned int pid)
  27. +{
  28. + int i = 0;
  29. + for (i = 0; i < NUM_TLBCAMS; i++) {
  30. + if (tlbcam_addrs[i].start == virt) {
  31. + TLBCAM[i].MAS1 = 0;
  32. + loadcam_entry(i);
  33. + return;
  34. + }
  35. + }
  36. +}
  37. +
  38. unsigned long calc_cam_sz(unsigned long ram, unsigned long virt,
  39. phys_addr_t phys)
  40. {
  41. --- a/arch/powerpc/mm/mmu_decl.h
  42. +++ b/arch/powerpc/mm/mmu_decl.h
  43. @@ -91,6 +91,12 @@ extern void _tlbia(void);
  44. #endif /* CONFIG_PPC_MMU_NOHASH */
  45. +void settlbcam(int index, unsigned long virt, phys_addr_t phys,
  46. + unsigned long size, unsigned long flags, unsigned int pid);
  47. +
  48. +void cleartlbcam(unsigned long virt, unsigned int pid);
  49. +
  50. +
  51. #ifdef CONFIG_PPC32
  52. extern void mapin_ram(void);