-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'arc-v3.13-rc1-part2' of git://git.kernel.org/pub/scm/linux…
…/kernel/git/vgupta/arc Pull second set of ARC changes from Vineet Gupta: - Support for Perf from Mischa - Enabling GPIO/Pinctrl drivers for Abilis TB10x platform - New defconfig for buildroot * tag 'arc-v3.13-rc1-part2' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc: ARC: [plat-arcfpga] Add defconfig without initramfs location ARC: perf: ARC 700 PMU doesn't support sampling events ARC: Add documentation on DT binding for ARC700 PMU ARC: Add perf support for ARC700 cores ARC: [TB10x] Updates for GPIO and pinctrl
- Loading branch information
Showing
12 changed files
with
838 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
* ARC Performance Monitor Unit | ||
|
||
The ARC 700 can be configured with a pipeline performance monitor for counting | ||
CPU and cache events like cache misses and hits. | ||
|
||
Note that: | ||
* ARC 700 refers to a family of ARC processor cores; | ||
- There is only one type of PMU available for the whole family; | ||
- The PMU may support different sets of events; supported events are probed | ||
at boot time, as required by the reference manual. | ||
|
||
* The ARC 700 PMU does not support interrupts; although HW events may be | ||
counted, the HW events themselves cannot serve as a trigger for a sample. | ||
|
||
Required properties: | ||
|
||
- compatible : should contain | ||
"snps,arc700-pmu" | ||
|
||
Example: | ||
|
||
pmu { | ||
compatible = "snps,arc700-pmu"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.