op_model_7450.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * arch/powerpc/oprofile/op_model_7450.c
  3. *
  4. * Freescale 745x/744x oprofile support, based on fsl_booke support
  5. * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM
  6. *
  7. * Copyright (c) 2004 Freescale Semiconductor, Inc
  8. *
  9. * Author: Andy Fleming
  10. * Maintainer: Kumar Gala <galak@kernel.crashing.org>
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * as published by the Free Software Foundation; either version
  15. * 2 of the License, or (at your option) any later version.
  16. */
  17. #include <linux/oprofile.h>
  18. #include <linux/init.h>
  19. #include <linux/smp.h>
  20. #include <asm/ptrace.h>
  21. #include <asm/processor.h>
  22. #include <asm/cputable.h>
  23. #include <asm/page.h>
  24. #include <asm/pmc.h>
  25. #include <asm/oprofile_impl.h>
  26. static unsigned long reset_value[OP_MAX_COUNTER];
  27. static int oprofile_running;
  28. static u32 mmcr0_val, mmcr1_val, mmcr2_val, num_pmcs;
  29. #define MMCR0_PMC1_SHIFT 6
  30. #define MMCR0_PMC2_SHIFT 0
  31. #define MMCR1_PMC3_SHIFT 27
  32. #define MMCR1_PMC4_SHIFT 22
  33. #define MMCR1_PMC5_SHIFT 17
  34. #define MMCR1_PMC6_SHIFT 11
  35. #define mmcr0_event1(event) \
  36. ((event << MMCR0_PMC1_SHIFT) & MMCR0_PMC1SEL)
  37. #define mmcr0_event2(event) \
  38. ((event << MMCR0_PMC2_SHIFT) & MMCR0_PMC2SEL)
  39. #define mmcr1_event3(event) \
  40. ((event << MMCR1_PMC3_SHIFT) & MMCR1_PMC3SEL)
  41. #define mmcr1_event4(event) \
  42. ((event << MMCR1_PMC4_SHIFT) & MMCR1_PMC4SEL)
  43. #define mmcr1_event5(event) \
  44. ((event << MMCR1_PMC5_SHIFT) & MMCR1_PMC5SEL)
  45. #define mmcr1_event6(event) \
  46. ((event << MMCR1_PMC6_SHIFT) & MMCR1_PMC6SEL)
  47. #define MMCR0_INIT (MMCR0_FC | MMCR0_FCS | MMCR0_FCP | MMCR0_FCM1 | MMCR0_FCM0)
  48. /* Unfreezes the counters on this CPU, enables the interrupt,
  49. * enables the counters to trigger the interrupt, and sets the
  50. * counters to only count when the mark bit is not set.
  51. */
  52. static void pmc_start_ctrs(void)
  53. {
  54. u32 mmcr0 = mfspr(SPRN_MMCR0);
  55. mmcr0 &= ~(MMCR0_FC | MMCR0_FCM0);
  56. mmcr0 |= (MMCR0_FCECE | MMCR0_PMC1CE | MMCR0_PMCnCE | MMCR0_PMXE);
  57. mtspr(SPRN_MMCR0, mmcr0);
  58. }
  59. /* Disables the counters on this CPU, and freezes them */
  60. static void pmc_stop_ctrs(void)
  61. {
  62. u32 mmcr0 = mfspr(SPRN_MMCR0);
  63. mmcr0 |= MMCR0_FC;
  64. mmcr0 &= ~(MMCR0_FCECE | MMCR0_PMC1CE | MMCR0_PMCnCE | MMCR0_PMXE);
  65. mtspr(SPRN_MMCR0, mmcr0);
  66. }
  67. /* Configures the counters on this CPU based on the global
  68. * settings */
  69. static int fsl7450_cpu_setup(struct op_counter_config *ctr)
  70. {
  71. /* freeze all counters */
  72. pmc_stop_ctrs();
  73. mtspr(SPRN_MMCR0, mmcr0_val);
  74. mtspr(SPRN_MMCR1, mmcr1_val);
  75. if (num_pmcs > 4)
  76. mtspr(SPRN_MMCR2, mmcr2_val);
  77. return 0;
  78. }
  79. /* Configures the global settings for the countes on all CPUs. */
  80. static int fsl7450_reg_setup(struct op_counter_config *ctr,
  81. struct op_system_config *sys,
  82. int num_ctrs)
  83. {
  84. int i;
  85. num_pmcs = num_ctrs;
  86. /* Our counters count up, and "count" refers to
  87. * how much before the next interrupt, and we interrupt
  88. * on overflow. So we calculate the starting value
  89. * which will give us "count" until overflow.
  90. * Then we set the events on the enabled counters */
  91. for (i = 0; i < num_ctrs; ++i)
  92. reset_value[i] = 0x80000000UL - ctr[i].count;
  93. /* Set events for Counters 1 & 2 */
  94. mmcr0_val = MMCR0_INIT | mmcr0_event1(ctr[0].event)
  95. | mmcr0_event2(ctr[1].event);
  96. /* Setup user/kernel bits */
  97. if (sys->enable_kernel)
  98. mmcr0_val &= ~(MMCR0_FCS);
  99. if (sys->enable_user)
  100. mmcr0_val &= ~(MMCR0_FCP);
  101. /* Set events for Counters 3-6 */
  102. mmcr1_val = mmcr1_event3(ctr[2].event)
  103. | mmcr1_event4(ctr[3].event);
  104. if (num_ctrs > 4)
  105. mmcr1_val |= mmcr1_event5(ctr[4].event)
  106. | mmcr1_event6(ctr[5].event);
  107. mmcr2_val = 0;
  108. return 0;
  109. }
  110. /* Sets the counters on this CPU to the chosen values, and starts them */
  111. static int fsl7450_start(struct op_counter_config *ctr)
  112. {
  113. int i;
  114. mtmsr(mfmsr() | MSR_PMM);
  115. for (i = 0; i < num_pmcs; ++i) {
  116. if (ctr[i].enabled)
  117. classic_ctr_write(i, reset_value[i]);
  118. else
  119. classic_ctr_write(i, 0);
  120. }
  121. /* Clear the freeze bit, and enable the interrupt.
  122. * The counters won't actually start until the rfi clears
  123. * the PMM bit */
  124. pmc_start_ctrs();
  125. oprofile_running = 1;
  126. return 0;
  127. }
  128. /* Stop the counters on this CPU */
  129. static void fsl7450_stop(void)
  130. {
  131. /* freeze counters */
  132. pmc_stop_ctrs();
  133. oprofile_running = 0;
  134. mb();
  135. }
  136. /* Handle the interrupt on this CPU, and log a sample for each
  137. * event that triggered the interrupt */
  138. static void fsl7450_handle_interrupt(struct pt_regs *regs,
  139. struct op_counter_config *ctr)
  140. {
  141. unsigned long pc;
  142. int is_kernel;
  143. int val;
  144. int i;
  145. /* set the PMM bit (see comment below) */
  146. mtmsr(mfmsr() | MSR_PMM);
  147. pc = mfspr(SPRN_SIAR);
  148. is_kernel = is_kernel_addr(pc);
  149. for (i = 0; i < num_pmcs; ++i) {
  150. val = classic_ctr_read(i);
  151. if (val < 0) {
  152. if (oprofile_running && ctr[i].enabled) {
  153. oprofile_add_ext_sample(pc, regs, i, is_kernel);
  154. classic_ctr_write(i, reset_value[i]);
  155. } else {
  156. classic_ctr_write(i, 0);
  157. }
  158. }
  159. }
  160. /* The freeze bit was set by the interrupt. */
  161. /* Clear the freeze bit, and reenable the interrupt.
  162. * The counters won't actually start until the rfi clears
  163. * the PM/M bit */
  164. pmc_start_ctrs();
  165. }
  166. struct op_powerpc_model op_model_7450= {
  167. .reg_setup = fsl7450_reg_setup,
  168. .cpu_setup = fsl7450_cpu_setup,
  169. .start = fsl7450_start,
  170. .stop = fsl7450_stop,
  171. .handle_interrupt = fsl7450_handle_interrupt,
  172. };