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/maxim,max310x.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 * Maxim MAX310X advanced Universal Asynchronous Receiver-Transmitter (UART)
    2 
    3 Required properties:
    4 - compatible: Should be one of the following:
    5   - "maxim,max3107" for Maxim MAX3107,
    6   - "maxim,max3108" for Maxim MAX3108,
    7   - "maxim,max3109" for Maxim MAX3109,
    8   - "maxim,max14830" for Maxim MAX14830.
    9 - reg: SPI chip select number.
   10 - interrupts: Specifies the interrupt source of the parent interrupt
   11   controller. The format of the interrupt specifier depends on the
   12   parent interrupt controller.
   13 - clocks: phandle to the IC source clock.
   14 - clock-names: Should be "xtal" if clock is an external crystal or
   15   "osc" if an external clock source is used.
   16 
   17 Optional properties:
   18 - gpio-controller: Marks the device node as a GPIO controller.
   19 - #gpio-cells: Should be two. The first cell is the GPIO number and
   20   the second cell is used to specify the GPIO polarity:
   21     0 = active high,
   22     1 = active low.
   23 
   24 Example:
   25 
   26 / {
   27         clocks {
   28                 spi_uart_clk: osc_max14830 {
   29                         compatible = "fixed-clock";
   30                         #clock-cells = <0>;
   31                         clock-frequency = <3686400>;
   32                 };
   33 
   34         };
   35 };
   36 
   37 &spi0 {
   38         max14830: max14830@0 {
   39                 compatible = "maxim,max14830";
   40                 reg = <0>;
   41                 clocks = <&spi_uart_clk>;
   42                 clock-names = "osc";
   43                 interrupt-parent = <&gpio3>;
   44                 interrupts = <7 IRQ_TYPE_LEVEL_LOW>;
   45                 gpio-controller;
   46                 #gpio-cells = <2>;
   47         };
   48 };

Cache object: 8e34f0b5a3e255a682fc301d81639c28


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