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/serial/brcm,bcm6345-uart.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 * BCM63xx UART
    2 
    3 Required properties:
    4 
    5 - compatible: "brcm,bcm6345-uart"
    6 
    7 - reg: The base address of the UART register bank.
    8 
    9 - interrupts: A single interrupt specifier.
   10 
   11 - clocks: Clock driving the hardware; used to figure out the baud rate
   12   divisor.
   13 
   14 
   15 Optional properties:
   16 
   17 - clock-names: Should be "refclk".
   18 
   19 Example:
   20 
   21         uart0: serial@14e00520 {
   22                 compatible = "brcm,bcm6345-uart";
   23                 reg = <0x14e00520 0x18>;
   24                 interrupt-parent = <&periph_intc>;
   25                 interrupts = <2>;
   26                 clocks = <&periph_clk>;
   27                 clock-names = "refclk";
   28         };
   29 
   30         clocks {
   31                 periph_clk: periph_clk@0 {
   32                         compatible = "fixed-clock";
   33                         #clock-cells = <0>;
   34                         clock-frequency = <54000000>;
   35                 };
   36         };

Cache object: cd35aa84bdcf8397a50125a4fbdadd0a


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