The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/csky/pmu.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 ===============================
    2 C-SKY Performance Monitor Units
    3 ===============================
    4 
    5 C-SKY Performance Monitor is designed for ck807/ck810/ck860 SMP soc and
    6 it could count cpu's events for helping analysis performance issues.
    7 
    8 ============================
    9 PMU node bindings definition
   10 ============================
   11 
   12         Description: Describes PMU
   13 
   14         PROPERTIES
   15 
   16         - compatible
   17                 Usage: required
   18                 Value type: <string>
   19                 Definition: must be "csky,csky-pmu"
   20         - interrupts
   21                 Usage: required
   22                 Value type: <u32 IRQ_TYPE_XXX>
   23                 Definition: must be pmu irq num defined by soc
   24         - count-width
   25                 Usage: optional
   26                 Value type: <u32>
   27                 Definition: the width of pmu counter
   28 
   29 Examples:
   30 ---------
   31 #include <dt-bindings/interrupt-controller/irq.h>
   32 
   33         pmu: performace-monitor {
   34                 compatible = "csky,csky-pmu";
   35                 interrupts = <23 IRQ_TYPE_EDGE_RISING>;
   36                 interrupt-parent = <&intc>;
   37                 count-width = <48>;
   38         };

Cache object: 3a5403d7c4c0977e287249404a8ba120


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.