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,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 OMAP Timer bindings
    2 
    3 Required properties:
    4 - compatible:           Should be set to one of the below. Please note that
    5                         OMAP44xx devices have timer instances that are 100%
    6                         register compatible with OMAP3xxx devices as well as
    7                         newer timers that are not 100% register compatible.
    8                         So for OMAP44xx devices timer instances may use
    9                         different compatible strings.
   10 
   11                         ti,omap2420-timer (applicable to OMAP24xx devices)
   12                         ti,omap3430-timer (applicable to OMAP3xxx/44xx devices)
   13                         ti,omap4430-timer (applicable to OMAP44xx devices)
   14                         ti,omap5430-timer (applicable to OMAP543x devices)
   15                         ti,am335x-timer (applicable to AM335x devices)
   16                         ti,am335x-timer-1ms (applicable to AM335x devices)
   17 
   18 - reg:                  Contains timer register address range (base address and
   19                         length).
   20 - interrupts:           Contains the interrupt information for the timer. The
   21                         format is being dependent on which interrupt controller
   22                         the OMAP device uses.
   23 - ti,hwmods:            Name of the hwmod associated to the timer, "timer<X>",
   24                         where <X> is the instance number of the timer from the
   25                         HW spec.
   26 
   27 Optional properties:
   28 - ti,timer-alwon:       Indicates the timer is in an alway-on power domain.
   29 - ti,timer-dsp:         Indicates the timer can interrupt the on-chip DSP in
   30                         addition to the ARM CPU.
   31 - ti,timer-pwm:         Indicates the timer can generate a PWM output.
   32 - ti,timer-secure:      Indicates the timer is reserved on a secure OMAP device
   33                         and therefore cannot be used by the kernel.
   34 
   35 Example:
   36 
   37 timer12: timer@48304000 {
   38         compatible = "ti,omap3430-timer";
   39         reg = <0x48304000 0x400>;
   40         interrupts = <95>;
   41         ti,hwmods = "timer12"
   42         ti,timer-alwon;
   43         ti,timer-secure;
   44 };

Cache object: ece9eea4eddf97b2fd45decbf1ed9216


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