power5+-pmu.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. /*
  2. * Performance counter support for POWER5+/++ (not POWER5) processors.
  3. *
  4. * Copyright 2009 Paul Mackerras, 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 <linux/kernel.h>
  12. #include <linux/perf_event.h>
  13. #include <linux/string.h>
  14. #include <asm/reg.h>
  15. #include <asm/cputable.h>
  16. /*
  17. * Bits in event code for POWER5+ (POWER5 GS) and POWER5++ (POWER5 GS DD3)
  18. */
  19. #define PM_PMC_SH 20 /* PMC number (1-based) for direct events */
  20. #define PM_PMC_MSK 0xf
  21. #define PM_PMC_MSKS (PM_PMC_MSK << PM_PMC_SH)
  22. #define PM_UNIT_SH 16 /* TTMMUX number and setting - unit select */
  23. #define PM_UNIT_MSK 0xf
  24. #define PM_BYTE_SH 12 /* Byte number of event bus to use */
  25. #define PM_BYTE_MSK 7
  26. #define PM_GRS_SH 8 /* Storage subsystem mux select */
  27. #define PM_GRS_MSK 7
  28. #define PM_BUSEVENT_MSK 0x80 /* Set if event uses event bus */
  29. #define PM_PMCSEL_MSK 0x7f
  30. /* Values in PM_UNIT field */
  31. #define PM_FPU 0
  32. #define PM_ISU0 1
  33. #define PM_IFU 2
  34. #define PM_ISU1 3
  35. #define PM_IDU 4
  36. #define PM_ISU0_ALT 6
  37. #define PM_GRS 7
  38. #define PM_LSU0 8
  39. #define PM_LSU1 0xc
  40. #define PM_LASTUNIT 0xc
  41. /*
  42. * Bits in MMCR1 for POWER5+
  43. */
  44. #define MMCR1_TTM0SEL_SH 62
  45. #define MMCR1_TTM1SEL_SH 60
  46. #define MMCR1_TTM2SEL_SH 58
  47. #define MMCR1_TTM3SEL_SH 56
  48. #define MMCR1_TTMSEL_MSK 3
  49. #define MMCR1_TD_CP_DBG0SEL_SH 54
  50. #define MMCR1_TD_CP_DBG1SEL_SH 52
  51. #define MMCR1_TD_CP_DBG2SEL_SH 50
  52. #define MMCR1_TD_CP_DBG3SEL_SH 48
  53. #define MMCR1_GRS_L2SEL_SH 46
  54. #define MMCR1_GRS_L2SEL_MSK 3
  55. #define MMCR1_GRS_L3SEL_SH 44
  56. #define MMCR1_GRS_L3SEL_MSK 3
  57. #define MMCR1_GRS_MCSEL_SH 41
  58. #define MMCR1_GRS_MCSEL_MSK 7
  59. #define MMCR1_GRS_FABSEL_SH 39
  60. #define MMCR1_GRS_FABSEL_MSK 3
  61. #define MMCR1_PMC1_ADDER_SEL_SH 35
  62. #define MMCR1_PMC2_ADDER_SEL_SH 34
  63. #define MMCR1_PMC3_ADDER_SEL_SH 33
  64. #define MMCR1_PMC4_ADDER_SEL_SH 32
  65. #define MMCR1_PMC1SEL_SH 25
  66. #define MMCR1_PMC2SEL_SH 17
  67. #define MMCR1_PMC3SEL_SH 9
  68. #define MMCR1_PMC4SEL_SH 1
  69. #define MMCR1_PMCSEL_SH(n) (MMCR1_PMC1SEL_SH - (n) * 8)
  70. #define MMCR1_PMCSEL_MSK 0x7f
  71. /*
  72. * Layout of constraint bits:
  73. * 6666555555555544444444443333333333222222222211111111110000000000
  74. * 3210987654321098765432109876543210987654321098765432109876543210
  75. * [ ><><>< ><> <><>[ > < >< >< >< ><><><><><><>
  76. * NC G0G1G2 G3 T0T1 UC B0 B1 B2 B3 P6P5P4P3P2P1
  77. *
  78. * NC - number of counters
  79. * 51: NC error 0x0008_0000_0000_0000
  80. * 48-50: number of events needing PMC1-4 0x0007_0000_0000_0000
  81. *
  82. * G0..G3 - GRS mux constraints
  83. * 46-47: GRS_L2SEL value
  84. * 44-45: GRS_L3SEL value
  85. * 41-44: GRS_MCSEL value
  86. * 39-40: GRS_FABSEL value
  87. * Note that these match up with their bit positions in MMCR1
  88. *
  89. * T0 - TTM0 constraint
  90. * 36-37: TTM0SEL value (0=FPU, 2=IFU, 3=ISU1) 0x30_0000_0000
  91. *
  92. * T1 - TTM1 constraint
  93. * 34-35: TTM1SEL value (0=IDU, 3=GRS) 0x0c_0000_0000
  94. *
  95. * UC - unit constraint: can't have all three of FPU|IFU|ISU1, ISU0, IDU|GRS
  96. * 33: UC3 error 0x02_0000_0000
  97. * 32: FPU|IFU|ISU1 events needed 0x01_0000_0000
  98. * 31: ISU0 events needed 0x01_8000_0000
  99. * 30: IDU|GRS events needed 0x00_4000_0000
  100. *
  101. * B0
  102. * 24-27: Byte 0 event source 0x0f00_0000
  103. * Encoding as for the event code
  104. *
  105. * B1, B2, B3
  106. * 20-23, 16-19, 12-15: Byte 1, 2, 3 event sources
  107. *
  108. * P6
  109. * 11: P6 error 0x800
  110. * 10-11: Count of events needing PMC6
  111. *
  112. * P1..P5
  113. * 0-9: Count of events needing PMC1..PMC5
  114. */
  115. static const int grsel_shift[8] = {
  116. MMCR1_GRS_L2SEL_SH, MMCR1_GRS_L2SEL_SH, MMCR1_GRS_L2SEL_SH,
  117. MMCR1_GRS_L3SEL_SH, MMCR1_GRS_L3SEL_SH, MMCR1_GRS_L3SEL_SH,
  118. MMCR1_GRS_MCSEL_SH, MMCR1_GRS_FABSEL_SH
  119. };
  120. /* Masks and values for using events from the various units */
  121. static unsigned long unit_cons[PM_LASTUNIT+1][2] = {
  122. [PM_FPU] = { 0x3200000000ul, 0x0100000000ul },
  123. [PM_ISU0] = { 0x0200000000ul, 0x0080000000ul },
  124. [PM_ISU1] = { 0x3200000000ul, 0x3100000000ul },
  125. [PM_IFU] = { 0x3200000000ul, 0x2100000000ul },
  126. [PM_IDU] = { 0x0e00000000ul, 0x0040000000ul },
  127. [PM_GRS] = { 0x0e00000000ul, 0x0c40000000ul },
  128. };
  129. static int power5p_get_constraint(u64 event, unsigned long *maskp,
  130. unsigned long *valp)
  131. {
  132. int pmc, byte, unit, sh;
  133. int bit, fmask;
  134. unsigned long mask = 0, value = 0;
  135. pmc = (event >> PM_PMC_SH) & PM_PMC_MSK;
  136. if (pmc) {
  137. if (pmc > 6)
  138. return -1;
  139. sh = (pmc - 1) * 2;
  140. mask |= 2 << sh;
  141. value |= 1 << sh;
  142. if (pmc >= 5 && !(event == 0x500009 || event == 0x600005))
  143. return -1;
  144. }
  145. if (event & PM_BUSEVENT_MSK) {
  146. unit = (event >> PM_UNIT_SH) & PM_UNIT_MSK;
  147. if (unit > PM_LASTUNIT)
  148. return -1;
  149. if (unit == PM_ISU0_ALT)
  150. unit = PM_ISU0;
  151. mask |= unit_cons[unit][0];
  152. value |= unit_cons[unit][1];
  153. byte = (event >> PM_BYTE_SH) & PM_BYTE_MSK;
  154. if (byte >= 4) {
  155. if (unit != PM_LSU1)
  156. return -1;
  157. /* Map LSU1 low word (bytes 4-7) to unit LSU1+1 */
  158. ++unit;
  159. byte &= 3;
  160. }
  161. if (unit == PM_GRS) {
  162. bit = event & 7;
  163. fmask = (bit == 6)? 7: 3;
  164. sh = grsel_shift[bit];
  165. mask |= (unsigned long)fmask << sh;
  166. value |= (unsigned long)((event >> PM_GRS_SH) & fmask)
  167. << sh;
  168. }
  169. /* Set byte lane select field */
  170. mask |= 0xfUL << (24 - 4 * byte);
  171. value |= (unsigned long)unit << (24 - 4 * byte);
  172. }
  173. if (pmc < 5) {
  174. /* need a counter from PMC1-4 set */
  175. mask |= 0x8000000000000ul;
  176. value |= 0x1000000000000ul;
  177. }
  178. *maskp = mask;
  179. *valp = value;
  180. return 0;
  181. }
  182. static int power5p_limited_pmc_event(u64 event)
  183. {
  184. int pmc = (event >> PM_PMC_SH) & PM_PMC_MSK;
  185. return pmc == 5 || pmc == 6;
  186. }
  187. #define MAX_ALT 3 /* at most 3 alternatives for any event */
  188. static const unsigned int event_alternatives[][MAX_ALT] = {
  189. { 0x100c0, 0x40001f }, /* PM_GCT_FULL_CYC */
  190. { 0x120e4, 0x400002 }, /* PM_GRP_DISP_REJECT */
  191. { 0x230e2, 0x323087 }, /* PM_BR_PRED_CR */
  192. { 0x230e3, 0x223087, 0x3230a0 }, /* PM_BR_PRED_TA */
  193. { 0x410c7, 0x441084 }, /* PM_THRD_L2MISS_BOTH_CYC */
  194. { 0x800c4, 0xc20e0 }, /* PM_DTLB_MISS */
  195. { 0xc50c6, 0xc60e0 }, /* PM_MRK_DTLB_MISS */
  196. { 0x100005, 0x600005 }, /* PM_RUN_CYC */
  197. { 0x100009, 0x200009 }, /* PM_INST_CMPL */
  198. { 0x200015, 0x300015 }, /* PM_LSU_LMQ_SRQ_EMPTY_CYC */
  199. { 0x300009, 0x400009 }, /* PM_INST_DISP */
  200. };
  201. /*
  202. * Scan the alternatives table for a match and return the
  203. * index into the alternatives table if found, else -1.
  204. */
  205. static int find_alternative(unsigned int event)
  206. {
  207. int i, j;
  208. for (i = 0; i < ARRAY_SIZE(event_alternatives); ++i) {
  209. if (event < event_alternatives[i][0])
  210. break;
  211. for (j = 0; j < MAX_ALT && event_alternatives[i][j]; ++j)
  212. if (event == event_alternatives[i][j])
  213. return i;
  214. }
  215. return -1;
  216. }
  217. static const unsigned char bytedecode_alternatives[4][4] = {
  218. /* PMC 1 */ { 0x21, 0x23, 0x25, 0x27 },
  219. /* PMC 2 */ { 0x07, 0x17, 0x0e, 0x1e },
  220. /* PMC 3 */ { 0x20, 0x22, 0x24, 0x26 },
  221. /* PMC 4 */ { 0x07, 0x17, 0x0e, 0x1e }
  222. };
  223. /*
  224. * Some direct events for decodes of event bus byte 3 have alternative
  225. * PMCSEL values on other counters. This returns the alternative
  226. * event code for those that do, or -1 otherwise. This also handles
  227. * alternative PCMSEL values for add events.
  228. */
  229. static s64 find_alternative_bdecode(u64 event)
  230. {
  231. int pmc, altpmc, pp, j;
  232. pmc = (event >> PM_PMC_SH) & PM_PMC_MSK;
  233. if (pmc == 0 || pmc > 4)
  234. return -1;
  235. altpmc = 5 - pmc; /* 1 <-> 4, 2 <-> 3 */
  236. pp = event & PM_PMCSEL_MSK;
  237. for (j = 0; j < 4; ++j) {
  238. if (bytedecode_alternatives[pmc - 1][j] == pp) {
  239. return (event & ~(PM_PMC_MSKS | PM_PMCSEL_MSK)) |
  240. (altpmc << PM_PMC_SH) |
  241. bytedecode_alternatives[altpmc - 1][j];
  242. }
  243. }
  244. /* new decode alternatives for power5+ */
  245. if (pmc == 1 && (pp == 0x0d || pp == 0x0e))
  246. return event + (2 << PM_PMC_SH) + (0x2e - 0x0d);
  247. if (pmc == 3 && (pp == 0x2e || pp == 0x2f))
  248. return event - (2 << PM_PMC_SH) - (0x2e - 0x0d);
  249. /* alternative add event encodings */
  250. if (pp == 0x10 || pp == 0x28)
  251. return ((event ^ (0x10 ^ 0x28)) & ~PM_PMC_MSKS) |
  252. (altpmc << PM_PMC_SH);
  253. return -1;
  254. }
  255. static int power5p_get_alternatives(u64 event, unsigned int flags, u64 alt[])
  256. {
  257. int i, j, nalt = 1;
  258. int nlim;
  259. s64 ae;
  260. alt[0] = event;
  261. nalt = 1;
  262. nlim = power5p_limited_pmc_event(event);
  263. i = find_alternative(event);
  264. if (i >= 0) {
  265. for (j = 0; j < MAX_ALT; ++j) {
  266. ae = event_alternatives[i][j];
  267. if (ae && ae != event)
  268. alt[nalt++] = ae;
  269. nlim += power5p_limited_pmc_event(ae);
  270. }
  271. } else {
  272. ae = find_alternative_bdecode(event);
  273. if (ae > 0)
  274. alt[nalt++] = ae;
  275. }
  276. if (flags & PPMU_ONLY_COUNT_RUN) {
  277. /*
  278. * We're only counting in RUN state,
  279. * so PM_CYC is equivalent to PM_RUN_CYC
  280. * and PM_INST_CMPL === PM_RUN_INST_CMPL.
  281. * This doesn't include alternatives that don't provide
  282. * any extra flexibility in assigning PMCs (e.g.
  283. * 0x100005 for PM_RUN_CYC vs. 0xf for PM_CYC).
  284. * Note that even with these additional alternatives
  285. * we never end up with more than 3 alternatives for any event.
  286. */
  287. j = nalt;
  288. for (i = 0; i < nalt; ++i) {
  289. switch (alt[i]) {
  290. case 0xf: /* PM_CYC */
  291. alt[j++] = 0x600005; /* PM_RUN_CYC */
  292. ++nlim;
  293. break;
  294. case 0x600005: /* PM_RUN_CYC */
  295. alt[j++] = 0xf;
  296. break;
  297. case 0x100009: /* PM_INST_CMPL */
  298. alt[j++] = 0x500009; /* PM_RUN_INST_CMPL */
  299. ++nlim;
  300. break;
  301. case 0x500009: /* PM_RUN_INST_CMPL */
  302. alt[j++] = 0x100009; /* PM_INST_CMPL */
  303. alt[j++] = 0x200009;
  304. break;
  305. }
  306. }
  307. nalt = j;
  308. }
  309. if (!(flags & PPMU_LIMITED_PMC_OK) && nlim) {
  310. /* remove the limited PMC events */
  311. j = 0;
  312. for (i = 0; i < nalt; ++i) {
  313. if (!power5p_limited_pmc_event(alt[i])) {
  314. alt[j] = alt[i];
  315. ++j;
  316. }
  317. }
  318. nalt = j;
  319. } else if ((flags & PPMU_LIMITED_PMC_REQD) && nlim < nalt) {
  320. /* remove all but the limited PMC events */
  321. j = 0;
  322. for (i = 0; i < nalt; ++i) {
  323. if (power5p_limited_pmc_event(alt[i])) {
  324. alt[j] = alt[i];
  325. ++j;
  326. }
  327. }
  328. nalt = j;
  329. }
  330. return nalt;
  331. }
  332. /*
  333. * Map of which direct events on which PMCs are marked instruction events.
  334. * Indexed by PMCSEL value, bit i (LE) set if PMC i is a marked event.
  335. * Bit 0 is set if it is marked for all PMCs.
  336. * The 0x80 bit indicates a byte decode PMCSEL value.
  337. */
  338. static unsigned char direct_event_is_marked[0x28] = {
  339. 0, /* 00 */
  340. 0x1f, /* 01 PM_IOPS_CMPL */
  341. 0x2, /* 02 PM_MRK_GRP_DISP */
  342. 0xe, /* 03 PM_MRK_ST_CMPL, PM_MRK_ST_GPS, PM_MRK_ST_CMPL_INT */
  343. 0, /* 04 */
  344. 0x1c, /* 05 PM_MRK_BRU_FIN, PM_MRK_INST_FIN, PM_MRK_CRU_FIN */
  345. 0x80, /* 06 */
  346. 0x80, /* 07 */
  347. 0, 0, 0,/* 08 - 0a */
  348. 0x18, /* 0b PM_THRESH_TIMEO, PM_MRK_GRP_TIMEO */
  349. 0, /* 0c */
  350. 0x80, /* 0d */
  351. 0x80, /* 0e */
  352. 0, /* 0f */
  353. 0, /* 10 */
  354. 0x14, /* 11 PM_MRK_GRP_BR_REDIR, PM_MRK_GRP_IC_MISS */
  355. 0, /* 12 */
  356. 0x10, /* 13 PM_MRK_GRP_CMPL */
  357. 0x1f, /* 14 PM_GRP_MRK, PM_MRK_{FXU,FPU,LSU}_FIN */
  358. 0x2, /* 15 PM_MRK_GRP_ISSUED */
  359. 0x80, /* 16 */
  360. 0x80, /* 17 */
  361. 0, 0, 0, 0, 0,
  362. 0x80, /* 1d */
  363. 0x80, /* 1e */
  364. 0, /* 1f */
  365. 0x80, /* 20 */
  366. 0x80, /* 21 */
  367. 0x80, /* 22 */
  368. 0x80, /* 23 */
  369. 0x80, /* 24 */
  370. 0x80, /* 25 */
  371. 0x80, /* 26 */
  372. 0x80, /* 27 */
  373. };
  374. /*
  375. * Returns 1 if event counts things relating to marked instructions
  376. * and thus needs the MMCRA_SAMPLE_ENABLE bit set, or 0 if not.
  377. */
  378. static int power5p_marked_instr_event(u64 event)
  379. {
  380. int pmc, psel;
  381. int bit, byte, unit;
  382. u32 mask;
  383. pmc = (event >> PM_PMC_SH) & PM_PMC_MSK;
  384. psel = event & PM_PMCSEL_MSK;
  385. if (pmc >= 5)
  386. return 0;
  387. bit = -1;
  388. if (psel < sizeof(direct_event_is_marked)) {
  389. if (direct_event_is_marked[psel] & (1 << pmc))
  390. return 1;
  391. if (direct_event_is_marked[psel] & 0x80)
  392. bit = 4;
  393. else if (psel == 0x08)
  394. bit = pmc - 1;
  395. else if (psel == 0x10)
  396. bit = 4 - pmc;
  397. else if (psel == 0x1b && (pmc == 1 || pmc == 3))
  398. bit = 4;
  399. } else if ((psel & 0x48) == 0x40) {
  400. bit = psel & 7;
  401. } else if (psel == 0x28) {
  402. bit = pmc - 1;
  403. } else if (pmc == 3 && (psel == 0x2e || psel == 0x2f)) {
  404. bit = 4;
  405. }
  406. if (!(event & PM_BUSEVENT_MSK) || bit == -1)
  407. return 0;
  408. byte = (event >> PM_BYTE_SH) & PM_BYTE_MSK;
  409. unit = (event >> PM_UNIT_SH) & PM_UNIT_MSK;
  410. if (unit == PM_LSU0) {
  411. /* byte 1 bits 0-7, byte 2 bits 0,2-4,6 */
  412. mask = 0x5dff00;
  413. } else if (unit == PM_LSU1 && byte >= 4) {
  414. byte -= 4;
  415. /* byte 5 bits 6-7, byte 6 bits 0,4, byte 7 bits 0-4,6 */
  416. mask = 0x5f11c000;
  417. } else
  418. return 0;
  419. return (mask >> (byte * 8 + bit)) & 1;
  420. }
  421. static int power5p_compute_mmcr(u64 event[], int n_ev,
  422. unsigned int hwc[], unsigned long mmcr[], struct perf_event *pevents[])
  423. {
  424. unsigned long mmcr1 = 0;
  425. unsigned long mmcra = 0;
  426. unsigned int pmc, unit, byte, psel;
  427. unsigned int ttm;
  428. int i, isbus, bit, grsel;
  429. unsigned int pmc_inuse = 0;
  430. unsigned char busbyte[4];
  431. unsigned char unituse[16];
  432. int ttmuse;
  433. if (n_ev > 6)
  434. return -1;
  435. /* First pass to count resource use */
  436. memset(busbyte, 0, sizeof(busbyte));
  437. memset(unituse, 0, sizeof(unituse));
  438. for (i = 0; i < n_ev; ++i) {
  439. pmc = (event[i] >> PM_PMC_SH) & PM_PMC_MSK;
  440. if (pmc) {
  441. if (pmc > 6)
  442. return -1;
  443. if (pmc_inuse & (1 << (pmc - 1)))
  444. return -1;
  445. pmc_inuse |= 1 << (pmc - 1);
  446. }
  447. if (event[i] & PM_BUSEVENT_MSK) {
  448. unit = (event[i] >> PM_UNIT_SH) & PM_UNIT_MSK;
  449. byte = (event[i] >> PM_BYTE_SH) & PM_BYTE_MSK;
  450. if (unit > PM_LASTUNIT)
  451. return -1;
  452. if (unit == PM_ISU0_ALT)
  453. unit = PM_ISU0;
  454. if (byte >= 4) {
  455. if (unit != PM_LSU1)
  456. return -1;
  457. ++unit;
  458. byte &= 3;
  459. }
  460. if (busbyte[byte] && busbyte[byte] != unit)
  461. return -1;
  462. busbyte[byte] = unit;
  463. unituse[unit] = 1;
  464. }
  465. }
  466. /*
  467. * Assign resources and set multiplexer selects.
  468. *
  469. * PM_ISU0 can go either on TTM0 or TTM1, but that's the only
  470. * choice we have to deal with.
  471. */
  472. if (unituse[PM_ISU0] &
  473. (unituse[PM_FPU] | unituse[PM_IFU] | unituse[PM_ISU1])) {
  474. unituse[PM_ISU0_ALT] = 1; /* move ISU to TTM1 */
  475. unituse[PM_ISU0] = 0;
  476. }
  477. /* Set TTM[01]SEL fields. */
  478. ttmuse = 0;
  479. for (i = PM_FPU; i <= PM_ISU1; ++i) {
  480. if (!unituse[i])
  481. continue;
  482. if (ttmuse++)
  483. return -1;
  484. mmcr1 |= (unsigned long)i << MMCR1_TTM0SEL_SH;
  485. }
  486. ttmuse = 0;
  487. for (; i <= PM_GRS; ++i) {
  488. if (!unituse[i])
  489. continue;
  490. if (ttmuse++)
  491. return -1;
  492. mmcr1 |= (unsigned long)(i & 3) << MMCR1_TTM1SEL_SH;
  493. }
  494. if (ttmuse > 1)
  495. return -1;
  496. /* Set byte lane select fields, TTM[23]SEL and GRS_*SEL. */
  497. for (byte = 0; byte < 4; ++byte) {
  498. unit = busbyte[byte];
  499. if (!unit)
  500. continue;
  501. if (unit == PM_ISU0 && unituse[PM_ISU0_ALT]) {
  502. /* get ISU0 through TTM1 rather than TTM0 */
  503. unit = PM_ISU0_ALT;
  504. } else if (unit == PM_LSU1 + 1) {
  505. /* select lower word of LSU1 for this byte */
  506. mmcr1 |= 1ul << (MMCR1_TTM3SEL_SH + 3 - byte);
  507. }
  508. ttm = unit >> 2;
  509. mmcr1 |= (unsigned long)ttm
  510. << (MMCR1_TD_CP_DBG0SEL_SH - 2 * byte);
  511. }
  512. /* Second pass: assign PMCs, set PMCxSEL and PMCx_ADDER_SEL fields */
  513. for (i = 0; i < n_ev; ++i) {
  514. pmc = (event[i] >> PM_PMC_SH) & PM_PMC_MSK;
  515. unit = (event[i] >> PM_UNIT_SH) & PM_UNIT_MSK;
  516. byte = (event[i] >> PM_BYTE_SH) & PM_BYTE_MSK;
  517. psel = event[i] & PM_PMCSEL_MSK;
  518. isbus = event[i] & PM_BUSEVENT_MSK;
  519. if (!pmc) {
  520. /* Bus event or any-PMC direct event */
  521. for (pmc = 0; pmc < 4; ++pmc) {
  522. if (!(pmc_inuse & (1 << pmc)))
  523. break;
  524. }
  525. if (pmc >= 4)
  526. return -1;
  527. pmc_inuse |= 1 << pmc;
  528. } else if (pmc <= 4) {
  529. /* Direct event */
  530. --pmc;
  531. if (isbus && (byte & 2) &&
  532. (psel == 8 || psel == 0x10 || psel == 0x28))
  533. /* add events on higher-numbered bus */
  534. mmcr1 |= 1ul << (MMCR1_PMC1_ADDER_SEL_SH - pmc);
  535. } else {
  536. /* Instructions or run cycles on PMC5/6 */
  537. --pmc;
  538. }
  539. if (isbus && unit == PM_GRS) {
  540. bit = psel & 7;
  541. grsel = (event[i] >> PM_GRS_SH) & PM_GRS_MSK;
  542. mmcr1 |= (unsigned long)grsel << grsel_shift[bit];
  543. }
  544. if (power5p_marked_instr_event(event[i]))
  545. mmcra |= MMCRA_SAMPLE_ENABLE;
  546. if ((psel & 0x58) == 0x40 && (byte & 1) != ((pmc >> 1) & 1))
  547. /* select alternate byte lane */
  548. psel |= 0x10;
  549. if (pmc <= 3)
  550. mmcr1 |= psel << MMCR1_PMCSEL_SH(pmc);
  551. hwc[i] = pmc;
  552. }
  553. /* Return MMCRx values */
  554. mmcr[0] = 0;
  555. if (pmc_inuse & 1)
  556. mmcr[0] = MMCR0_PMC1CE;
  557. if (pmc_inuse & 0x3e)
  558. mmcr[0] |= MMCR0_PMCjCE;
  559. mmcr[1] = mmcr1;
  560. mmcr[2] = mmcra;
  561. return 0;
  562. }
  563. static void power5p_disable_pmc(unsigned int pmc, unsigned long mmcr[])
  564. {
  565. if (pmc <= 3)
  566. mmcr[1] &= ~(0x7fUL << MMCR1_PMCSEL_SH(pmc));
  567. }
  568. static int power5p_generic_events[] = {
  569. [PERF_COUNT_HW_CPU_CYCLES] = 0xf,
  570. [PERF_COUNT_HW_INSTRUCTIONS] = 0x100009,
  571. [PERF_COUNT_HW_CACHE_REFERENCES] = 0x1c10a8, /* LD_REF_L1 */
  572. [PERF_COUNT_HW_CACHE_MISSES] = 0x3c1088, /* LD_MISS_L1 */
  573. [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = 0x230e4, /* BR_ISSUED */
  574. [PERF_COUNT_HW_BRANCH_MISSES] = 0x230e5, /* BR_MPRED_CR */
  575. };
  576. #define C(x) PERF_COUNT_HW_CACHE_##x
  577. /*
  578. * Table of generalized cache-related events.
  579. * 0 means not supported, -1 means nonsensical, other values
  580. * are event codes.
  581. */
  582. static int power5p_cache_events[C(MAX)][C(OP_MAX)][C(RESULT_MAX)] = {
  583. [C(L1D)] = { /* RESULT_ACCESS RESULT_MISS */
  584. [C(OP_READ)] = { 0x1c10a8, 0x3c1088 },
  585. [C(OP_WRITE)] = { 0x2c10a8, 0xc10c3 },
  586. [C(OP_PREFETCH)] = { 0xc70e7, -1 },
  587. },
  588. [C(L1I)] = { /* RESULT_ACCESS RESULT_MISS */
  589. [C(OP_READ)] = { 0, 0 },
  590. [C(OP_WRITE)] = { -1, -1 },
  591. [C(OP_PREFETCH)] = { 0, 0 },
  592. },
  593. [C(LL)] = { /* RESULT_ACCESS RESULT_MISS */
  594. [C(OP_READ)] = { 0, 0 },
  595. [C(OP_WRITE)] = { 0, 0 },
  596. [C(OP_PREFETCH)] = { 0xc50c3, 0 },
  597. },
  598. [C(DTLB)] = { /* RESULT_ACCESS RESULT_MISS */
  599. [C(OP_READ)] = { 0xc20e4, 0x800c4 },
  600. [C(OP_WRITE)] = { -1, -1 },
  601. [C(OP_PREFETCH)] = { -1, -1 },
  602. },
  603. [C(ITLB)] = { /* RESULT_ACCESS RESULT_MISS */
  604. [C(OP_READ)] = { 0, 0x800c0 },
  605. [C(OP_WRITE)] = { -1, -1 },
  606. [C(OP_PREFETCH)] = { -1, -1 },
  607. },
  608. [C(BPU)] = { /* RESULT_ACCESS RESULT_MISS */
  609. [C(OP_READ)] = { 0x230e4, 0x230e5 },
  610. [C(OP_WRITE)] = { -1, -1 },
  611. [C(OP_PREFETCH)] = { -1, -1 },
  612. },
  613. [C(NODE)] = { /* RESULT_ACCESS RESULT_MISS */
  614. [C(OP_READ)] = { -1, -1 },
  615. [C(OP_WRITE)] = { -1, -1 },
  616. [C(OP_PREFETCH)] = { -1, -1 },
  617. },
  618. };
  619. static struct power_pmu power5p_pmu = {
  620. .name = "POWER5+/++",
  621. .n_counter = 6,
  622. .max_alternatives = MAX_ALT,
  623. .add_fields = 0x7000000000055ul,
  624. .test_adder = 0x3000040000000ul,
  625. .compute_mmcr = power5p_compute_mmcr,
  626. .get_constraint = power5p_get_constraint,
  627. .get_alternatives = power5p_get_alternatives,
  628. .disable_pmc = power5p_disable_pmc,
  629. .limited_pmc_event = power5p_limited_pmc_event,
  630. .flags = PPMU_LIMITED_PMC5_6 | PPMU_HAS_SSLOT,
  631. .n_generic = ARRAY_SIZE(power5p_generic_events),
  632. .generic_events = power5p_generic_events,
  633. .cache_events = &power5p_cache_events,
  634. };
  635. static int __init init_power5p_pmu(void)
  636. {
  637. if (!cur_cpu_spec->oprofile_cpu_type ||
  638. (strcmp(cur_cpu_spec->oprofile_cpu_type, "ppc64/power5+")
  639. && strcmp(cur_cpu_spec->oprofile_cpu_type, "ppc64/power5++")))
  640. return -ENODEV;
  641. return register_power_pmu(&power5p_pmu);
  642. }
  643. early_initcall(init_power5p_pmu);