power5+-pmu.c 18 KB

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