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/nds32/cpus.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 * Andestech Processor Binding
    2 
    3 This binding specifies what properties must be available in the device tree
    4 representation of a Andestech Processor Core, which is the root node in the
    5 tree.
    6 
    7 Required properties:
    8 
    9         - compatible:
   10                 Usage: required
   11                 Value type: <string>
   12                 Definition: Should be "andestech,<core_name>", "andestech,nds32v3" as fallback.
   13                 Must contain "andestech,nds32v3" as the most generic value, in addition to
   14                 one of the following identifiers for a particular CPU core:
   15                 "andestech,n13"
   16                 "andestech,n15"
   17                 "andestech,d15"
   18                 "andestech,n10"
   19                 "andestech,d10"
   20         - device_type
   21                 Usage: required
   22                 Value type: <string>
   23                 Definition: must be "cpu"
   24         - reg: Contains CPU index.
   25         - clock-frequency: Contains the clock frequency for CPU, in Hz.
   26 
   27 * Examples
   28 
   29 / {
   30         cpus {
   31                 cpu@0 {
   32                         device_type = "cpu";
   33                         compatible = "andestech,n13", "andestech,nds32v3";
   34                         reg = <0x0>;
   35                         clock-frequency = <60000000>
   36                 };
   37         };
   38 };

Cache object: 3c7309f79ad87e624bf7aa4082dbe766


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