pr_util.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Cell Broadband Engine OProfile Support
  3. *
  4. * (C) Copyright IBM Corporation 2006
  5. *
  6. * Author: Maynard Johnson <maynardj@us.ibm.com>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. #ifndef PR_UTIL_H
  14. #define PR_UTIL_H
  15. #include <linux/cpumask.h>
  16. #include <linux/oprofile.h>
  17. #include <asm/cell-pmu.h>
  18. #include <asm/cell-regs.h>
  19. #include <asm/spu.h>
  20. /* Defines used for sync_start */
  21. #define SKIP_GENERIC_SYNC 0
  22. #define SYNC_START_ERROR -1
  23. #define DO_GENERIC_SYNC 1
  24. struct spu_overlay_info { /* map of sections within an SPU overlay */
  25. unsigned int vma; /* SPU virtual memory address from elf */
  26. unsigned int size; /* size of section from elf */
  27. unsigned int offset; /* offset of section into elf file */
  28. unsigned int buf;
  29. };
  30. struct vma_to_fileoffset_map { /* map of sections within an SPU program */
  31. struct vma_to_fileoffset_map *next; /* list pointer */
  32. unsigned int vma; /* SPU virtual memory address from elf */
  33. unsigned int size; /* size of section from elf */
  34. unsigned int offset; /* offset of section into elf file */
  35. unsigned int guard_ptr;
  36. unsigned int guard_val;
  37. /*
  38. * The guard pointer is an entry in the _ovly_buf_table,
  39. * computed using ovly.buf as the index into the table. Since
  40. * ovly.buf values begin at '1' to reference the first (or 0th)
  41. * entry in the _ovly_buf_table, the computation subtracts 1
  42. * from ovly.buf.
  43. * The guard value is stored in the _ovly_buf_table entry and
  44. * is an index (starting at 1) back to the _ovly_table entry
  45. * that is pointing at this _ovly_buf_table entry. So, for
  46. * example, for an overlay scenario with one overlay segment
  47. * and two overlay sections:
  48. * - Section 1 points to the first entry of the
  49. * _ovly_buf_table, which contains a guard value
  50. * of '1', referencing the first (index=0) entry of
  51. * _ovly_table.
  52. * - Section 2 points to the second entry of the
  53. * _ovly_buf_table, which contains a guard value
  54. * of '2', referencing the second (index=1) entry of
  55. * _ovly_table.
  56. */
  57. };
  58. /* The three functions below are for maintaining and accessing
  59. * the vma-to-fileoffset map.
  60. */
  61. struct vma_to_fileoffset_map *create_vma_map(const struct spu *spu,
  62. u64 objectid);
  63. unsigned int vma_map_lookup(struct vma_to_fileoffset_map *map,
  64. unsigned int vma, const struct spu *aSpu,
  65. int *grd_val);
  66. void vma_map_free(struct vma_to_fileoffset_map *map);
  67. /*
  68. * Entry point for SPU profiling.
  69. * cycles_reset is the SPU_CYCLES count value specified by the user.
  70. */
  71. int start_spu_profiling(unsigned int cycles_reset);
  72. void stop_spu_profiling(void);
  73. /* add the necessary profiling hooks */
  74. int spu_sync_start(void);
  75. /* remove the hooks */
  76. int spu_sync_stop(void);
  77. /* Record SPU program counter samples to the oprofile event buffer. */
  78. void spu_sync_buffer(int spu_num, unsigned int *samples,
  79. int num_samples);
  80. void set_spu_profiling_frequency(unsigned int freq_khz, unsigned int cycles_reset);
  81. #endif /* PR_UTIL_H */