CCN.txt 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ARM Cache Coherent Network
  2. ==========================
  3. CCN-504 is a ring-bus interconnect consisting of 11 crosspoints
  4. (XPs), with each crosspoint supporting up to two device ports,
  5. so nodes (devices) 0 and 1 are connected to crosspoint 0,
  6. nodes 2 and 3 to crosspoint 1 etc.
  7. PMU (perf) driver
  8. -----------------
  9. The CCN driver registers a perf PMU driver, which provides
  10. description of available events and configuration options
  11. in sysfs, see /sys/bus/event_source/devices/ccn*.
  12. The "format" directory describes format of the config, config1
  13. and config2 fields of the perf_event_attr structure. The "events"
  14. directory provides configuration templates for all documented
  15. events, that can be used with perf tool. For example "xp_valid_flit"
  16. is an equivalent of "type=0x8,event=0x4". Other parameters must be
  17. explicitly specified. For events originating from device, "node"
  18. defines its index. All crosspoint events require "xp" (index),
  19. "port" (device port number) and "vc" (virtual channel ID) and
  20. "dir" (direction). Watchpoints (special "event" value 0xfe) also
  21. require comparator values ("cmp_l" and "cmp_h") and "mask", being
  22. index of the comparator mask.
  23. Masks are defined separately from the event description
  24. (due to limited number of the config values) in the "cmp_mask"
  25. directory, with first 8 configurable by user and additional
  26. 4 hardcoded for the most frequent use cases.
  27. Cycle counter is described by a "type" value 0xff and does
  28. not require any other settings.
  29. The driver also provides a "cpumask" sysfs attribute, which contains
  30. a single CPU ID, of the processor which will be used to handle all
  31. the CCN PMU events. It is recommended that the user space tools
  32. request the events on this processor (if not, the perf_event->cpu value
  33. will be overwritten anyway). In case of this processor being offlined,
  34. the events are migrated to another one and the attribute is updated.
  35. Example of perf tool use:
  36. / # perf list | grep ccn
  37. ccn/cycles/ [Kernel PMU event]
  38. <...>
  39. ccn/xp_valid_flit,xp=?,port=?,vc=?,dir=?/ [Kernel PMU event]
  40. <...>
  41. / # perf stat -a -e ccn/cycles/,ccn/xp_valid_flit,xp=1,port=0,vc=1,dir=1/ \
  42. sleep 1
  43. The driver does not support sampling, therefore "perf record" will
  44. not work. Per-task (without "-a") perf sessions are not supported.