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/brcm,bcm2835-system-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 BCM2835 System Timer
    2 
    3 The System Timer peripheral provides four 32-bit timer channels and a
    4 single 64-bit free running counter. Each channel has an output compare
    5 register, which is compared against the 32 least significant bits of the
    6 free running counter values, and generates an interrupt.
    7 
    8 Required properties:
    9 
   10 - compatible : should be "brcm,bcm2835-system-timer"
   11 - reg : Specifies base physical address and size of the registers.
   12 - interrupts : A list of 4 interrupt sinks; one per timer channel.
   13 - clock-frequency : The frequency of the clock that drives the counter, in Hz.
   14 
   15 Example:
   16 
   17 timer {
   18         compatible = "brcm,bcm2835-system-timer";
   19         reg = <0x7e003000 0x1000>;
   20         interrupts = <1 0>, <1 1>, <1 2>, <1 3>;
   21         clock-frequency = <1000000>;
   22 };

Cache object: f89ad2af35979143e4830896781e5884


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