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/ti,davinci-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 * Device tree bindings for Texas Instruments DaVinci timer
    2 
    3 This document provides bindings for the 64-bit timer in the DaVinci
    4 architecture devices. The timer can be configured as a general-purpose 64-bit
    5 timer, dual general-purpose 32-bit timers. When configured as dual 32-bit
    6 timers, each half can operate in conjunction (chain mode) or independently
    7 (unchained mode) of each other.
    8 
    9 The timer is a free running up-counter and can generate interrupts when the
   10 counter reaches preset counter values.
   11 
   12 Also see ../watchdog/davinci-wdt.txt for timers that are configurable as
   13 watchdog timers.
   14 
   15 Required properties:
   16 
   17 - compatible : should be "ti,da830-timer".
   18 - reg : specifies base physical address and count of the registers.
   19 - interrupts : interrupts generated by the timer.
   20 - interrupt-names: should be "tint12", "tint34", "cmpint0", "cmpint1",
   21                    "cmpint2", "cmpint3", "cmpint4", "cmpint5", "cmpint6",
   22                    "cmpint7" ("cmpintX" may be omitted if not present in the
   23                    hardware).
   24 - clocks : the clock feeding the timer clock.
   25 
   26 Example:
   27 
   28         clocksource: timer@20000 {
   29                 compatible = "ti,da830-timer";
   30                 reg = <0x20000 0x1000>;
   31                 interrupts = <21>, <22>, <74>, <75>, <76>, <77>, <78>, <79>,
   32                              <80>, <81>;
   33                 interrupt-names = "tint12", "tint34", "cmpint0", "cmpint1",
   34                                   "cmpint2", "cmpint3", "cmpint4", "cmpint5",
   35                                   "cmpint6", "cmpint7";
   36                 clocks = <&pll0_auxclk>;
   37         };

Cache object: fc4237a1aea33470b4c929ad472bc847


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