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/cpufreq/cpufreq-spear.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 SPEAr cpufreq driver
    2 -------------------
    3 
    4 SPEAr SoC cpufreq driver for CPU frequency scaling.
    5 It supports both uniprocessor (UP) and symmetric multiprocessor (SMP) systems
    6 which share clock across all CPUs.
    7 
    8 Required properties:
    9 - cpufreq_tbl: Table of frequencies CPU could be transitioned into, in the
   10   increasing order.
   11 
   12 Optional properties:
   13 - clock-latency: Specify the possible maximum transition latency for clock, in
   14   unit of nanoseconds.
   15 
   16 Both required and optional properties listed above must be defined under node
   17 /cpus/cpu@0.
   18 
   19 Examples:
   20 --------
   21 cpus {
   22 
   23         <...>
   24 
   25         cpu@0 {
   26                 compatible = "arm,cortex-a9";
   27                 reg = <0>;
   28 
   29                 <...>
   30 
   31                 cpufreq_tbl = < 166000
   32                                 200000
   33                                 250000
   34                                 300000
   35                                 400000
   36                                 500000
   37                                 600000 >;
   38         };
   39 
   40         <...>
   41 
   42 };

Cache object: cc8ada49de27e3bde5c2d591772abf10


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