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/digicolor-usart.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 Binding for Conexant Digicolor USART
    2 
    3 Note: this binding is only applicable for using the USART peripheral as
    4 UART. USART also support synchronous serial protocols like SPI and I2S. Use
    5 the binding that matches the wiring of your system.
    6 
    7 Required properties:
    8 - compatible : should be "cnxt,cx92755-usart".
    9 - reg: Should contain USART controller registers location and length.
   10 - interrupts: Should contain a single USART controller interrupt.
   11 - clocks: Must contain phandles to the USART clock
   12   See ../clocks/clock-bindings.txt for details.
   13 
   14 Note: Each UART port should have an alias correctly numbered
   15 in "aliases" node.
   16 
   17 Example:
   18         aliases {
   19                 serial0 = &uart0;
   20         };
   21 
   22         uart0: uart@f0000740 {
   23                 compatible = "cnxt,cx92755-usart";
   24                 reg = <0xf0000740 0x20>;
   25                 clocks = <&main_clk>;
   26                 interrupts = <44>;
   27         };

Cache object: 4cd1fbd3b5acbf150e671d72997c5510


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