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/qcom,msm-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 * MSM Timer
    2 
    3 Properties:
    4 
    5 - compatible : Should at least contain "qcom,msm-timer". More specific
    6                properties specify which subsystem the timers are paired with.
    7 
    8                "qcom,kpss-timer" - krait subsystem
    9                "qcom,scss-timer" - scorpion subsystem
   10 
   11 - interrupts : Interrupts for the debug timer, the first general purpose
   12                timer, and optionally a second general purpose timer, and
   13                optionally as well, 2 watchdog interrupts, in that order.
   14 
   15 - reg : Specifies the base address of the timer registers.
   16 
   17 - clocks: Reference to the parent clocks, one per output clock. The parents
   18           must appear in the same order as the clock names.
   19 
   20 - clock-names: The name of the clocks as free-form strings. They should be in
   21                the same order as the clocks.
   22 
   23 - clock-frequency : The frequency of the debug timer and the general purpose
   24                     timer(s) in Hz in that order.
   25 
   26 Optional:
   27 
   28 - cpu-offset : per-cpu offset used when the timer is accessed without the
   29                CPU remapping facilities. The offset is
   30                cpu-offset + (0x10000 * cpu-nr).
   31 
   32 Example:
   33 
   34        timer@200a000 {
   35                compatible = "qcom,scss-timer", "qcom,msm-timer";
   36                interrupts = <1 1 0x301>,
   37                             <1 2 0x301>,
   38                             <1 3 0x301>,
   39                             <1 4 0x301>,
   40                             <1 5 0x301>;
   41                reg = <0x0200a000 0x100>;
   42                clock-frequency = <19200000>,
   43                                  <32768>;
   44                clocks = <&sleep_clk>;
   45                clock-names = "sleep";
   46                cpu-offset = <0x40000>;
   47        };

Cache object: 6f38a91385fe30e413e25bd3af2c462e


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