bhrb.S 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Basic assembly code to read BHRB entries
  3. *
  4. * Copyright 2013 Anshuman Khandual, IBM Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #include <asm/ppc_asm.h>
  12. #include <asm/ppc-opcode.h>
  13. .text
  14. .balign 8
  15. /* r3 = n (where n = [0-31])
  16. * The maximum number of BHRB entries supported with PPC_MFBHRBE instruction
  17. * is 1024. We have limited number of table entries here as POWER8 implements
  18. * 32 BHRB entries.
  19. */
  20. /* .global read_bhrb */
  21. _GLOBAL(read_bhrb)
  22. cmpldi r3,31
  23. bgt 1f
  24. ld r4,bhrb_table@got(r2)
  25. sldi r3,r3,3
  26. add r3,r4,r3
  27. mtctr r3
  28. bctr
  29. 1: li r3,0
  30. blr
  31. #define MFBHRB_TABLE1(n) PPC_MFBHRBE(R3,n); blr
  32. #define MFBHRB_TABLE2(n) MFBHRB_TABLE1(n); MFBHRB_TABLE1(n+1)
  33. #define MFBHRB_TABLE4(n) MFBHRB_TABLE2(n); MFBHRB_TABLE2(n+2)
  34. #define MFBHRB_TABLE8(n) MFBHRB_TABLE4(n); MFBHRB_TABLE4(n+4)
  35. #define MFBHRB_TABLE16(n) MFBHRB_TABLE8(n); MFBHRB_TABLE8(n+8)
  36. #define MFBHRB_TABLE32(n) MFBHRB_TABLE16(n); MFBHRB_TABLE16(n+16)
  37. bhrb_table:
  38. MFBHRB_TABLE32(0)