perf.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  1. /*
  2. * Parisc performance counters
  3. * Copyright (C) 2001 Randolph Chung <tausq@debian.org>
  4. *
  5. * This code is derived, with permission, from HP/UX sources.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2, or (at your option)
  10. * any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. /*
  22. * Edited comment from original sources:
  23. *
  24. * This driver programs the PCX-U/PCX-W performance counters
  25. * on the PA-RISC 2.0 chips. The driver keeps all images now
  26. * internally to the kernel to hopefully eliminate the possibility
  27. * of a bad image halting the CPU. Also, there are different
  28. * images for the PCX-W and later chips vs the PCX-U chips.
  29. *
  30. * Only 1 process is allowed to access the driver at any time,
  31. * so the only protection that is needed is at open and close.
  32. * A variable "perf_enabled" is used to hold the state of the
  33. * driver. The spinlock "perf_lock" is used to protect the
  34. * modification of the state during open/close operations so
  35. * multiple processes don't get into the driver simultaneously.
  36. *
  37. * This driver accesses the processor directly vs going through
  38. * the PDC INTRIGUE calls. This is done to eliminate bugs introduced
  39. * in various PDC revisions. The code is much more maintainable
  40. * and reliable this way vs having to debug on every version of PDC
  41. * on every box.
  42. */
  43. #include <linux/capability.h>
  44. #include <linux/init.h>
  45. #include <linux/proc_fs.h>
  46. #include <linux/miscdevice.h>
  47. #include <linux/spinlock.h>
  48. #include <linux/uaccess.h>
  49. #include <asm/perf.h>
  50. #include <asm/parisc-device.h>
  51. #include <asm/processor.h>
  52. #include <asm/runway.h>
  53. #include <asm/io.h> /* for __raw_read() */
  54. #include "perf_images.h"
  55. #define MAX_RDR_WORDS 24
  56. #define PERF_VERSION 2 /* derived from hpux's PI v2 interface */
  57. /* definition of RDR regs */
  58. struct rdr_tbl_ent {
  59. uint16_t width;
  60. uint8_t num_words;
  61. uint8_t write_control;
  62. };
  63. static int perf_processor_interface __read_mostly = UNKNOWN_INTF;
  64. static int perf_enabled __read_mostly;
  65. static DEFINE_SPINLOCK(perf_lock);
  66. struct parisc_device *cpu_device __read_mostly;
  67. /* RDRs to write for PCX-W */
  68. static const int perf_rdrs_W[] =
  69. { 0, 1, 4, 5, 6, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, -1 };
  70. /* RDRs to write for PCX-U */
  71. static const int perf_rdrs_U[] =
  72. { 0, 1, 4, 5, 6, 7, 16, 17, 18, 20, 21, 22, 23, 24, 25, -1 };
  73. /* RDR register descriptions for PCX-W */
  74. static const struct rdr_tbl_ent perf_rdr_tbl_W[] = {
  75. { 19, 1, 8 }, /* RDR 0 */
  76. { 16, 1, 16 }, /* RDR 1 */
  77. { 72, 2, 0 }, /* RDR 2 */
  78. { 81, 2, 0 }, /* RDR 3 */
  79. { 328, 6, 0 }, /* RDR 4 */
  80. { 160, 3, 0 }, /* RDR 5 */
  81. { 336, 6, 0 }, /* RDR 6 */
  82. { 164, 3, 0 }, /* RDR 7 */
  83. { 0, 0, 0 }, /* RDR 8 */
  84. { 35, 1, 0 }, /* RDR 9 */
  85. { 6, 1, 0 }, /* RDR 10 */
  86. { 18, 1, 0 }, /* RDR 11 */
  87. { 13, 1, 0 }, /* RDR 12 */
  88. { 8, 1, 0 }, /* RDR 13 */
  89. { 8, 1, 0 }, /* RDR 14 */
  90. { 8, 1, 0 }, /* RDR 15 */
  91. { 1530, 24, 0 }, /* RDR 16 */
  92. { 16, 1, 0 }, /* RDR 17 */
  93. { 4, 1, 0 }, /* RDR 18 */
  94. { 0, 0, 0 }, /* RDR 19 */
  95. { 152, 3, 24 }, /* RDR 20 */
  96. { 152, 3, 24 }, /* RDR 21 */
  97. { 233, 4, 48 }, /* RDR 22 */
  98. { 233, 4, 48 }, /* RDR 23 */
  99. { 71, 2, 0 }, /* RDR 24 */
  100. { 71, 2, 0 }, /* RDR 25 */
  101. { 11, 1, 0 }, /* RDR 26 */
  102. { 18, 1, 0 }, /* RDR 27 */
  103. { 128, 2, 0 }, /* RDR 28 */
  104. { 0, 0, 0 }, /* RDR 29 */
  105. { 16, 1, 0 }, /* RDR 30 */
  106. { 16, 1, 0 }, /* RDR 31 */
  107. };
  108. /* RDR register descriptions for PCX-U */
  109. static const struct rdr_tbl_ent perf_rdr_tbl_U[] = {
  110. { 19, 1, 8 }, /* RDR 0 */
  111. { 32, 1, 16 }, /* RDR 1 */
  112. { 20, 1, 0 }, /* RDR 2 */
  113. { 0, 0, 0 }, /* RDR 3 */
  114. { 344, 6, 0 }, /* RDR 4 */
  115. { 176, 3, 0 }, /* RDR 5 */
  116. { 336, 6, 0 }, /* RDR 6 */
  117. { 0, 0, 0 }, /* RDR 7 */
  118. { 0, 0, 0 }, /* RDR 8 */
  119. { 0, 0, 0 }, /* RDR 9 */
  120. { 28, 1, 0 }, /* RDR 10 */
  121. { 33, 1, 0 }, /* RDR 11 */
  122. { 0, 0, 0 }, /* RDR 12 */
  123. { 230, 4, 0 }, /* RDR 13 */
  124. { 32, 1, 0 }, /* RDR 14 */
  125. { 128, 2, 0 }, /* RDR 15 */
  126. { 1494, 24, 0 }, /* RDR 16 */
  127. { 18, 1, 0 }, /* RDR 17 */
  128. { 4, 1, 0 }, /* RDR 18 */
  129. { 0, 0, 0 }, /* RDR 19 */
  130. { 158, 3, 24 }, /* RDR 20 */
  131. { 158, 3, 24 }, /* RDR 21 */
  132. { 194, 4, 48 }, /* RDR 22 */
  133. { 194, 4, 48 }, /* RDR 23 */
  134. { 71, 2, 0 }, /* RDR 24 */
  135. { 71, 2, 0 }, /* RDR 25 */
  136. { 28, 1, 0 }, /* RDR 26 */
  137. { 33, 1, 0 }, /* RDR 27 */
  138. { 88, 2, 0 }, /* RDR 28 */
  139. { 32, 1, 0 }, /* RDR 29 */
  140. { 24, 1, 0 }, /* RDR 30 */
  141. { 16, 1, 0 }, /* RDR 31 */
  142. };
  143. /*
  144. * A non-zero write_control in the above tables is a byte offset into
  145. * this array.
  146. */
  147. static const uint64_t perf_bitmasks[] = {
  148. 0x0000000000000000ul, /* first dbl word must be zero */
  149. 0xfdffe00000000000ul, /* RDR0 bitmask */
  150. 0x003f000000000000ul, /* RDR1 bitmask */
  151. 0x00fffffffffffffful, /* RDR20-RDR21 bitmask (152 bits) */
  152. 0xfffffffffffffffful,
  153. 0xfffffffc00000000ul,
  154. 0xfffffffffffffffful, /* RDR22-RDR23 bitmask (233 bits) */
  155. 0xfffffffffffffffful,
  156. 0xfffffffffffffffcul,
  157. 0xff00000000000000ul
  158. };
  159. /*
  160. * Write control bitmasks for Pa-8700 processor given
  161. * some things have changed slightly.
  162. */
  163. static const uint64_t perf_bitmasks_piranha[] = {
  164. 0x0000000000000000ul, /* first dbl word must be zero */
  165. 0xfdffe00000000000ul, /* RDR0 bitmask */
  166. 0x003f000000000000ul, /* RDR1 bitmask */
  167. 0x00fffffffffffffful, /* RDR20-RDR21 bitmask (158 bits) */
  168. 0xfffffffffffffffful,
  169. 0xfffffffc00000000ul,
  170. 0xfffffffffffffffful, /* RDR22-RDR23 bitmask (210 bits) */
  171. 0xfffffffffffffffful,
  172. 0xfffffffffffffffful,
  173. 0xfffc000000000000ul
  174. };
  175. static const uint64_t *bitmask_array; /* array of bitmasks to use */
  176. /******************************************************************************
  177. * Function Prototypes
  178. *****************************************************************************/
  179. static int perf_config(uint32_t *image_ptr);
  180. static int perf_release(struct inode *inode, struct file *file);
  181. static int perf_open(struct inode *inode, struct file *file);
  182. static ssize_t perf_read(struct file *file, char __user *buf, size_t cnt, loff_t *ppos);
  183. static ssize_t perf_write(struct file *file, const char __user *buf,
  184. size_t count, loff_t *ppos);
  185. static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
  186. static void perf_start_counters(void);
  187. static int perf_stop_counters(uint32_t *raddr);
  188. static const struct rdr_tbl_ent * perf_rdr_get_entry(uint32_t rdr_num);
  189. static int perf_rdr_read_ubuf(uint32_t rdr_num, uint64_t *buffer);
  190. static int perf_rdr_clear(uint32_t rdr_num);
  191. static int perf_write_image(uint64_t *memaddr);
  192. static void perf_rdr_write(uint32_t rdr_num, uint64_t *buffer);
  193. /* External Assembly Routines */
  194. extern uint64_t perf_rdr_shift_in_W (uint32_t rdr_num, uint16_t width);
  195. extern uint64_t perf_rdr_shift_in_U (uint32_t rdr_num, uint16_t width);
  196. extern void perf_rdr_shift_out_W (uint32_t rdr_num, uint64_t buffer);
  197. extern void perf_rdr_shift_out_U (uint32_t rdr_num, uint64_t buffer);
  198. extern void perf_intrigue_enable_perf_counters (void);
  199. extern void perf_intrigue_disable_perf_counters (void);
  200. /******************************************************************************
  201. * Function Definitions
  202. *****************************************************************************/
  203. /*
  204. * configure:
  205. *
  206. * Configure the cpu with a given data image. First turn off the counters,
  207. * then download the image, then turn the counters back on.
  208. */
  209. static int perf_config(uint32_t *image_ptr)
  210. {
  211. long error;
  212. uint32_t raddr[4];
  213. /* Stop the counters*/
  214. error = perf_stop_counters(raddr);
  215. if (error != 0) {
  216. printk("perf_config: perf_stop_counters = %ld\n", error);
  217. return -EINVAL;
  218. }
  219. printk("Preparing to write image\n");
  220. /* Write the image to the chip */
  221. error = perf_write_image((uint64_t *)image_ptr);
  222. if (error != 0) {
  223. printk("perf_config: DOWNLOAD = %ld\n", error);
  224. return -EINVAL;
  225. }
  226. printk("Preparing to start counters\n");
  227. /* Start the counters */
  228. perf_start_counters();
  229. return sizeof(uint32_t);
  230. }
  231. /*
  232. * Open the device and initialize all of its memory. The device is only
  233. * opened once, but can be "queried" by multiple processes that know its
  234. * file descriptor.
  235. */
  236. static int perf_open(struct inode *inode, struct file *file)
  237. {
  238. spin_lock(&perf_lock);
  239. if (perf_enabled) {
  240. spin_unlock(&perf_lock);
  241. return -EBUSY;
  242. }
  243. perf_enabled = 1;
  244. spin_unlock(&perf_lock);
  245. return 0;
  246. }
  247. /*
  248. * Close the device.
  249. */
  250. static int perf_release(struct inode *inode, struct file *file)
  251. {
  252. spin_lock(&perf_lock);
  253. perf_enabled = 0;
  254. spin_unlock(&perf_lock);
  255. return 0;
  256. }
  257. /*
  258. * Read does nothing for this driver
  259. */
  260. static ssize_t perf_read(struct file *file, char __user *buf, size_t cnt, loff_t *ppos)
  261. {
  262. return 0;
  263. }
  264. /*
  265. * write:
  266. *
  267. * This routine downloads the image to the chip. It must be
  268. * called on the processor that the download should happen
  269. * on.
  270. */
  271. static ssize_t perf_write(struct file *file, const char __user *buf,
  272. size_t count, loff_t *ppos)
  273. {
  274. size_t image_size;
  275. uint32_t image_type;
  276. uint32_t interface_type;
  277. uint32_t test;
  278. if (perf_processor_interface == ONYX_INTF)
  279. image_size = PCXU_IMAGE_SIZE;
  280. else if (perf_processor_interface == CUDA_INTF)
  281. image_size = PCXW_IMAGE_SIZE;
  282. else
  283. return -EFAULT;
  284. if (!capable(CAP_SYS_ADMIN))
  285. return -EACCES;
  286. if (count != sizeof(uint32_t))
  287. return -EIO;
  288. if (copy_from_user(&image_type, buf, sizeof(uint32_t)))
  289. return -EFAULT;
  290. /* Get the interface type and test type */
  291. interface_type = (image_type >> 16) & 0xffff;
  292. test = (image_type & 0xffff);
  293. /* Make sure everything makes sense */
  294. /* First check the machine type is correct for
  295. the requested image */
  296. if (((perf_processor_interface == CUDA_INTF) &&
  297. (interface_type != CUDA_INTF)) ||
  298. ((perf_processor_interface == ONYX_INTF) &&
  299. (interface_type != ONYX_INTF)))
  300. return -EINVAL;
  301. /* Next check to make sure the requested image
  302. is valid */
  303. if (((interface_type == CUDA_INTF) &&
  304. (test >= MAX_CUDA_IMAGES)) ||
  305. ((interface_type == ONYX_INTF) &&
  306. (test >= MAX_ONYX_IMAGES)))
  307. return -EINVAL;
  308. /* Copy the image into the processor */
  309. if (interface_type == CUDA_INTF)
  310. return perf_config(cuda_images[test]);
  311. else
  312. return perf_config(onyx_images[test]);
  313. return count;
  314. }
  315. /*
  316. * Patch the images that need to know the IVA addresses.
  317. */
  318. static void perf_patch_images(void)
  319. {
  320. #if 0 /* FIXME!! */
  321. /*
  322. * NOTE: this routine is VERY specific to the current TLB image.
  323. * If the image is changed, this routine might also need to be changed.
  324. */
  325. extern void $i_itlb_miss_2_0();
  326. extern void $i_dtlb_miss_2_0();
  327. extern void PA2_0_iva();
  328. /*
  329. * We can only use the lower 32-bits, the upper 32-bits should be 0
  330. * anyway given this is in the kernel
  331. */
  332. uint32_t itlb_addr = (uint32_t)&($i_itlb_miss_2_0);
  333. uint32_t dtlb_addr = (uint32_t)&($i_dtlb_miss_2_0);
  334. uint32_t IVAaddress = (uint32_t)&PA2_0_iva;
  335. if (perf_processor_interface == ONYX_INTF) {
  336. /* clear last 2 bytes */
  337. onyx_images[TLBMISS][15] &= 0xffffff00;
  338. /* set 2 bytes */
  339. onyx_images[TLBMISS][15] |= (0x000000ff&((dtlb_addr) >> 24));
  340. onyx_images[TLBMISS][16] = (dtlb_addr << 8)&0xffffff00;
  341. onyx_images[TLBMISS][17] = itlb_addr;
  342. /* clear last 2 bytes */
  343. onyx_images[TLBHANDMISS][15] &= 0xffffff00;
  344. /* set 2 bytes */
  345. onyx_images[TLBHANDMISS][15] |= (0x000000ff&((dtlb_addr) >> 24));
  346. onyx_images[TLBHANDMISS][16] = (dtlb_addr << 8)&0xffffff00;
  347. onyx_images[TLBHANDMISS][17] = itlb_addr;
  348. /* clear last 2 bytes */
  349. onyx_images[BIG_CPI][15] &= 0xffffff00;
  350. /* set 2 bytes */
  351. onyx_images[BIG_CPI][15] |= (0x000000ff&((dtlb_addr) >> 24));
  352. onyx_images[BIG_CPI][16] = (dtlb_addr << 8)&0xffffff00;
  353. onyx_images[BIG_CPI][17] = itlb_addr;
  354. onyx_images[PANIC][15] &= 0xffffff00; /* clear last 2 bytes */
  355. onyx_images[PANIC][15] |= (0x000000ff&((IVAaddress) >> 24)); /* set 2 bytes */
  356. onyx_images[PANIC][16] = (IVAaddress << 8)&0xffffff00;
  357. } else if (perf_processor_interface == CUDA_INTF) {
  358. /* Cuda interface */
  359. cuda_images[TLBMISS][16] =
  360. (cuda_images[TLBMISS][16]&0xffff0000) |
  361. ((dtlb_addr >> 8)&0x0000ffff);
  362. cuda_images[TLBMISS][17] =
  363. ((dtlb_addr << 24)&0xff000000) | ((itlb_addr >> 16)&0x000000ff);
  364. cuda_images[TLBMISS][18] = (itlb_addr << 16)&0xffff0000;
  365. cuda_images[TLBHANDMISS][16] =
  366. (cuda_images[TLBHANDMISS][16]&0xffff0000) |
  367. ((dtlb_addr >> 8)&0x0000ffff);
  368. cuda_images[TLBHANDMISS][17] =
  369. ((dtlb_addr << 24)&0xff000000) | ((itlb_addr >> 16)&0x000000ff);
  370. cuda_images[TLBHANDMISS][18] = (itlb_addr << 16)&0xffff0000;
  371. cuda_images[BIG_CPI][16] =
  372. (cuda_images[BIG_CPI][16]&0xffff0000) |
  373. ((dtlb_addr >> 8)&0x0000ffff);
  374. cuda_images[BIG_CPI][17] =
  375. ((dtlb_addr << 24)&0xff000000) | ((itlb_addr >> 16)&0x000000ff);
  376. cuda_images[BIG_CPI][18] = (itlb_addr << 16)&0xffff0000;
  377. } else {
  378. /* Unknown type */
  379. }
  380. #endif
  381. }
  382. /*
  383. * ioctl routine
  384. * All routines effect the processor that they are executed on. Thus you
  385. * must be running on the processor that you wish to change.
  386. */
  387. static long perf_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  388. {
  389. long error_start;
  390. uint32_t raddr[4];
  391. int error = 0;
  392. switch (cmd) {
  393. case PA_PERF_ON:
  394. /* Start the counters */
  395. perf_start_counters();
  396. break;
  397. case PA_PERF_OFF:
  398. error_start = perf_stop_counters(raddr);
  399. if (error_start != 0) {
  400. printk(KERN_ERR "perf_off: perf_stop_counters = %ld\n", error_start);
  401. error = -EFAULT;
  402. break;
  403. }
  404. /* copy out the Counters */
  405. if (copy_to_user((void __user *)arg, raddr,
  406. sizeof (raddr)) != 0) {
  407. error = -EFAULT;
  408. break;
  409. }
  410. break;
  411. case PA_PERF_VERSION:
  412. /* Return the version # */
  413. error = put_user(PERF_VERSION, (int *)arg);
  414. break;
  415. default:
  416. error = -ENOTTY;
  417. }
  418. return error;
  419. }
  420. static const struct file_operations perf_fops = {
  421. .llseek = no_llseek,
  422. .read = perf_read,
  423. .write = perf_write,
  424. .unlocked_ioctl = perf_ioctl,
  425. .compat_ioctl = perf_ioctl,
  426. .open = perf_open,
  427. .release = perf_release
  428. };
  429. static struct miscdevice perf_dev = {
  430. MISC_DYNAMIC_MINOR,
  431. PA_PERF_DEV,
  432. &perf_fops
  433. };
  434. /*
  435. * Initialize the module
  436. */
  437. static int __init perf_init(void)
  438. {
  439. int ret;
  440. /* Determine correct processor interface to use */
  441. bitmask_array = perf_bitmasks;
  442. if (boot_cpu_data.cpu_type == pcxu ||
  443. boot_cpu_data.cpu_type == pcxu_) {
  444. perf_processor_interface = ONYX_INTF;
  445. } else if (boot_cpu_data.cpu_type == pcxw ||
  446. boot_cpu_data.cpu_type == pcxw_ ||
  447. boot_cpu_data.cpu_type == pcxw2 ||
  448. boot_cpu_data.cpu_type == mako ||
  449. boot_cpu_data.cpu_type == mako2) {
  450. perf_processor_interface = CUDA_INTF;
  451. if (boot_cpu_data.cpu_type == pcxw2 ||
  452. boot_cpu_data.cpu_type == mako ||
  453. boot_cpu_data.cpu_type == mako2)
  454. bitmask_array = perf_bitmasks_piranha;
  455. } else {
  456. perf_processor_interface = UNKNOWN_INTF;
  457. printk("Performance monitoring counters not supported on this processor\n");
  458. return -ENODEV;
  459. }
  460. ret = misc_register(&perf_dev);
  461. if (ret) {
  462. printk(KERN_ERR "Performance monitoring counters: "
  463. "cannot register misc device.\n");
  464. return ret;
  465. }
  466. /* Patch the images to match the system */
  467. perf_patch_images();
  468. /* TODO: this only lets us access the first cpu.. what to do for SMP? */
  469. cpu_device = per_cpu(cpu_data, 0).dev;
  470. printk("Performance monitoring counters enabled for %s\n",
  471. per_cpu(cpu_data, 0).dev->name);
  472. return 0;
  473. }
  474. device_initcall(perf_init);
  475. /*
  476. * perf_start_counters(void)
  477. *
  478. * Start the counters.
  479. */
  480. static void perf_start_counters(void)
  481. {
  482. /* Enable performance monitor counters */
  483. perf_intrigue_enable_perf_counters();
  484. }
  485. /*
  486. * perf_stop_counters
  487. *
  488. * Stop the performance counters and save counts
  489. * in a per_processor array.
  490. */
  491. static int perf_stop_counters(uint32_t *raddr)
  492. {
  493. uint64_t userbuf[MAX_RDR_WORDS];
  494. /* Disable performance counters */
  495. perf_intrigue_disable_perf_counters();
  496. if (perf_processor_interface == ONYX_INTF) {
  497. uint64_t tmp64;
  498. /*
  499. * Read the counters
  500. */
  501. if (!perf_rdr_read_ubuf(16, userbuf))
  502. return -13;
  503. /* Counter0 is bits 1398 to 1429 */
  504. tmp64 = (userbuf[21] << 22) & 0x00000000ffc00000;
  505. tmp64 |= (userbuf[22] >> 42) & 0x00000000003fffff;
  506. /* OR sticky0 (bit 1430) to counter0 bit 32 */
  507. tmp64 |= (userbuf[22] >> 10) & 0x0000000080000000;
  508. raddr[0] = (uint32_t)tmp64;
  509. /* Counter1 is bits 1431 to 1462 */
  510. tmp64 = (userbuf[22] >> 9) & 0x00000000ffffffff;
  511. /* OR sticky1 (bit 1463) to counter1 bit 32 */
  512. tmp64 |= (userbuf[22] << 23) & 0x0000000080000000;
  513. raddr[1] = (uint32_t)tmp64;
  514. /* Counter2 is bits 1464 to 1495 */
  515. tmp64 = (userbuf[22] << 24) & 0x00000000ff000000;
  516. tmp64 |= (userbuf[23] >> 40) & 0x0000000000ffffff;
  517. /* OR sticky2 (bit 1496) to counter2 bit 32 */
  518. tmp64 |= (userbuf[23] >> 8) & 0x0000000080000000;
  519. raddr[2] = (uint32_t)tmp64;
  520. /* Counter3 is bits 1497 to 1528 */
  521. tmp64 = (userbuf[23] >> 7) & 0x00000000ffffffff;
  522. /* OR sticky3 (bit 1529) to counter3 bit 32 */
  523. tmp64 |= (userbuf[23] << 25) & 0x0000000080000000;
  524. raddr[3] = (uint32_t)tmp64;
  525. /*
  526. * Zero out the counters
  527. */
  528. /*
  529. * The counters and sticky-bits comprise the last 132 bits
  530. * (1398 - 1529) of RDR16 on a U chip. We'll zero these
  531. * out the easy way: zero out last 10 bits of dword 21,
  532. * all of dword 22 and 58 bits (plus 6 don't care bits) of
  533. * dword 23.
  534. */
  535. userbuf[21] &= 0xfffffffffffffc00ul; /* 0 to last 10 bits */
  536. userbuf[22] = 0;
  537. userbuf[23] = 0;
  538. /*
  539. * Write back the zeroed bytes + the image given
  540. * the read was destructive.
  541. */
  542. perf_rdr_write(16, userbuf);
  543. } else {
  544. /*
  545. * Read RDR-15 which contains the counters and sticky bits
  546. */
  547. if (!perf_rdr_read_ubuf(15, userbuf)) {
  548. return -13;
  549. }
  550. /*
  551. * Clear out the counters
  552. */
  553. perf_rdr_clear(15);
  554. /*
  555. * Copy the counters
  556. */
  557. raddr[0] = (uint32_t)((userbuf[0] >> 32) & 0x00000000ffffffffUL);
  558. raddr[1] = (uint32_t)(userbuf[0] & 0x00000000ffffffffUL);
  559. raddr[2] = (uint32_t)((userbuf[1] >> 32) & 0x00000000ffffffffUL);
  560. raddr[3] = (uint32_t)(userbuf[1] & 0x00000000ffffffffUL);
  561. }
  562. return 0;
  563. }
  564. /*
  565. * perf_rdr_get_entry
  566. *
  567. * Retrieve a pointer to the description of what this
  568. * RDR contains.
  569. */
  570. static const struct rdr_tbl_ent * perf_rdr_get_entry(uint32_t rdr_num)
  571. {
  572. if (perf_processor_interface == ONYX_INTF) {
  573. return &perf_rdr_tbl_U[rdr_num];
  574. } else {
  575. return &perf_rdr_tbl_W[rdr_num];
  576. }
  577. }
  578. /*
  579. * perf_rdr_read_ubuf
  580. *
  581. * Read the RDR value into the buffer specified.
  582. */
  583. static int perf_rdr_read_ubuf(uint32_t rdr_num, uint64_t *buffer)
  584. {
  585. uint64_t data, data_mask = 0;
  586. uint32_t width, xbits, i;
  587. const struct rdr_tbl_ent *tentry;
  588. tentry = perf_rdr_get_entry(rdr_num);
  589. if ((width = tentry->width) == 0)
  590. return 0;
  591. /* Clear out buffer */
  592. i = tentry->num_words;
  593. while (i--) {
  594. buffer[i] = 0;
  595. }
  596. /* Check for bits an even number of 64 */
  597. if ((xbits = width & 0x03f) != 0) {
  598. data_mask = 1;
  599. data_mask <<= (64 - xbits);
  600. data_mask--;
  601. }
  602. /* Grab all of the data */
  603. i = tentry->num_words;
  604. while (i--) {
  605. if (perf_processor_interface == ONYX_INTF) {
  606. data = perf_rdr_shift_in_U(rdr_num, width);
  607. } else {
  608. data = perf_rdr_shift_in_W(rdr_num, width);
  609. }
  610. if (xbits) {
  611. buffer[i] |= (data << (64 - xbits));
  612. if (i) {
  613. buffer[i-1] |= ((data >> xbits) & data_mask);
  614. }
  615. } else {
  616. buffer[i] = data;
  617. }
  618. }
  619. return 1;
  620. }
  621. /*
  622. * perf_rdr_clear
  623. *
  624. * Zero out the given RDR register
  625. */
  626. static int perf_rdr_clear(uint32_t rdr_num)
  627. {
  628. const struct rdr_tbl_ent *tentry;
  629. int32_t i;
  630. tentry = perf_rdr_get_entry(rdr_num);
  631. if (tentry->width == 0) {
  632. return -1;
  633. }
  634. i = tentry->num_words;
  635. while (i--) {
  636. if (perf_processor_interface == ONYX_INTF) {
  637. perf_rdr_shift_out_U(rdr_num, 0UL);
  638. } else {
  639. perf_rdr_shift_out_W(rdr_num, 0UL);
  640. }
  641. }
  642. return 0;
  643. }
  644. /*
  645. * perf_write_image
  646. *
  647. * Write the given image out to the processor
  648. */
  649. static int perf_write_image(uint64_t *memaddr)
  650. {
  651. uint64_t buffer[MAX_RDR_WORDS];
  652. uint64_t *bptr;
  653. uint32_t dwords;
  654. const uint32_t *intrigue_rdr;
  655. const uint64_t *intrigue_bitmask;
  656. uint64_t tmp64;
  657. void __iomem *runway;
  658. const struct rdr_tbl_ent *tentry;
  659. int i;
  660. /* Clear out counters */
  661. if (perf_processor_interface == ONYX_INTF) {
  662. perf_rdr_clear(16);
  663. /* Toggle performance monitor */
  664. perf_intrigue_enable_perf_counters();
  665. perf_intrigue_disable_perf_counters();
  666. intrigue_rdr = perf_rdrs_U;
  667. } else {
  668. perf_rdr_clear(15);
  669. intrigue_rdr = perf_rdrs_W;
  670. }
  671. /* Write all RDRs */
  672. while (*intrigue_rdr != -1) {
  673. tentry = perf_rdr_get_entry(*intrigue_rdr);
  674. perf_rdr_read_ubuf(*intrigue_rdr, buffer);
  675. bptr = &buffer[0];
  676. dwords = tentry->num_words;
  677. if (tentry->write_control) {
  678. intrigue_bitmask = &bitmask_array[tentry->write_control >> 3];
  679. while (dwords--) {
  680. tmp64 = *intrigue_bitmask & *memaddr++;
  681. tmp64 |= (~(*intrigue_bitmask++)) & *bptr;
  682. *bptr++ = tmp64;
  683. }
  684. } else {
  685. while (dwords--) {
  686. *bptr++ = *memaddr++;
  687. }
  688. }
  689. perf_rdr_write(*intrigue_rdr, buffer);
  690. intrigue_rdr++;
  691. }
  692. /*
  693. * Now copy out the Runway stuff which is not in RDRs
  694. */
  695. if (cpu_device == NULL)
  696. {
  697. printk(KERN_ERR "write_image: cpu_device not yet initialized!\n");
  698. return -1;
  699. }
  700. runway = ioremap_nocache(cpu_device->hpa.start, 4096);
  701. if (!runway) {
  702. pr_err("perf_write_image: ioremap failed!\n");
  703. return -ENOMEM;
  704. }
  705. /* Merge intrigue bits into Runway STATUS 0 */
  706. tmp64 = __raw_readq(runway + RUNWAY_STATUS) & 0xffecfffffffffffful;
  707. __raw_writeq(tmp64 | (*memaddr++ & 0x0013000000000000ul),
  708. runway + RUNWAY_STATUS);
  709. /* Write RUNWAY DEBUG registers */
  710. for (i = 0; i < 8; i++) {
  711. __raw_writeq(*memaddr++, runway + RUNWAY_DEBUG);
  712. }
  713. return 0;
  714. }
  715. /*
  716. * perf_rdr_write
  717. *
  718. * Write the given RDR register with the contents
  719. * of the given buffer.
  720. */
  721. static void perf_rdr_write(uint32_t rdr_num, uint64_t *buffer)
  722. {
  723. const struct rdr_tbl_ent *tentry;
  724. int32_t i;
  725. printk("perf_rdr_write\n");
  726. tentry = perf_rdr_get_entry(rdr_num);
  727. if (tentry->width == 0) { return; }
  728. i = tentry->num_words;
  729. while (i--) {
  730. if (perf_processor_interface == ONYX_INTF) {
  731. perf_rdr_shift_out_U(rdr_num, buffer[i]);
  732. } else {
  733. perf_rdr_shift_out_W(rdr_num, buffer[i]);
  734. }
  735. }
  736. printk("perf_rdr_write done\n");
  737. }