Path: blob/master/Documentation/devicetree/bindings/csky/pmu.txt
26308 views
===============================1C-SKY Performance Monitor Units2===============================34C-SKY Performance Monitor is designed for ck807/ck810/ck860 SMP soc and5it could count cpu's events for helping analysis performance issues.67============================8PMU node bindings definition9============================1011Description: Describes PMU1213PROPERTIES1415- compatible16Usage: required17Value type: <string>18Definition: must be "csky,csky-pmu"19- interrupts20Usage: required21Value type: <u32 IRQ_TYPE_XXX>22Definition: must be pmu irq num defined by soc23- count-width24Usage: optional25Value type: <u32>26Definition: the width of pmu counter2728Examples:29---------30#include <dt-bindings/interrupt-controller/irq.h>3132pmu: performace-monitor {33compatible = "csky,csky-pmu";34interrupts = <23 IRQ_TYPE_EDGE_RISING>;35interrupt-parent = <&intc>;36count-width = <48>;37};383940