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/timer/snps,arc-timer.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 Synopsys ARC Local Timer with Interrupt Capabilities
    2 - Found on all ARC CPUs (ARC700/ARCHS)
    3 - Can be optionally programmed to interrupt on Limit
    4 - Two idential copies TIMER0 and TIMER1 exist in ARC cores and historically
    5   TIMER0 used as clockevent provider (true for all ARC cores)
    6   TIMER1 used for clocksource (mandatory for ARC700, optional for ARC HS)
    7 
    8 Required properties:
    9 
   10 - compatible : should be "snps,arc-timer"
   11 - interrupts : single Interrupt going into parent intc
   12                (16 for ARCHS cores, 3 for ARC700 cores)
   13 - clocks     : phandle to the source clock
   14 
   15 Example:
   16 
   17         timer0 {
   18                 compatible = "snps,arc-timer";
   19                 interrupts = <3>;
   20                 interrupt-parent = <&core_intc>;
   21                 clocks = <&core_clk>;
   22         };
   23 
   24         timer1 {
   25                 compatible = "snps,arc-timer";
   26                 clocks = <&core_clk>;
   27         };

Cache object: 0ad8f19ad16e3e172f1e680235a9b399


[ 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.