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/mips/cavium/uctl.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 * UCTL USB controller glue
    2 
    3 Properties:
    4 - compatible: "cavium,octeon-6335-uctl"
    5 
    6   Compatibility with all cn6XXX SOCs.
    7 
    8 - reg: The base address of the UCTL register bank.
    9 
   10 - #address-cells: Must be <2>.
   11 
   12 - #size-cells: Must be <2>.
   13 
   14 - ranges: Empty to signify direct mapping of the children.
   15 
   16 - refclk-frequency: A single cell containing the reference clock
   17   frequency in Hz.
   18 
   19 - refclk-type: A string describing the reference clock connection
   20   either "crystal" or "external".
   21 
   22 Example:
   23         uctl@118006f000000 {
   24                 compatible = "cavium,octeon-6335-uctl";
   25                 reg = <0x11800 0x6f000000 0x0 0x100>;
   26                 ranges; /* Direct mapping */
   27                 #address-cells = <2>;
   28                 #size-cells = <2>;
   29                 /* 12MHz, 24MHz and 48MHz allowed */
   30                 refclk-frequency = <24000000>;
   31                 /* Either "crystal" or "external" */
   32                 refclk-type = "crystal";
   33 
   34                 ehci@16f0000000000 {
   35                         compatible = "cavium,octeon-6335-ehci","usb-ehci";
   36                         reg = <0x16f00 0x00000000 0x0 0x100>;
   37                         interrupts = <0 56>;
   38                         big-endian-regs;
   39                 };
   40                 ohci@16f0000000400 {
   41                         compatible = "cavium,octeon-6335-ohci","usb-ohci";
   42                         reg = <0x16f00 0x00000400 0x0 0x100>;
   43                         interrupts = <0 56>;
   44                         big-endian-regs;
   45                 };
   46         };

Cache object: 6ff61d7169a8ee778cbb42d66b0eb411


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