~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/serial/mvebu-uart.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 * Marvell UART : Non standard UART used in some of Marvell EBU SoCs
  2                  e.g., Armada-3700.
  3 
  4 Required properties:
  5 - compatible:
  6     - "marvell,armada-3700-uart" for the standard variant of the UART
  7       (32 bytes FIFO, no DMA, level interrupts, 8-bit access to the
  8       FIFO), called also UART1.
  9     - "marvell,armada-3700-uart-ext" for the extended variant of the
 10       UART (128 bytes FIFO, DMA, front interrupts, 8-bit or 32-bit
 11       accesses to the FIFO), called also UART2.
 12 - reg: offset and length of the register set for the device.
 13 - clocks: UART reference clock used to derive the baudrate. If no clock
 14       is provided (possible only with the "marvell,armada-3700-uart"
 15       compatible string for backward compatibility), it will only work
 16       if the baudrate was initialized by the bootloader and no baudrate
 17       change will then be possible. When provided it should be UART1-clk
 18       for standard variant of UART and UART2-clk for extended variant
 19       of UART. TBG clock (with UART TBG divisors d1=d2=1) or xtal clock
 20       should not be used and are supported only for backward compatibility.
 21 - interrupts:
 22     - Must contain three elements for the standard variant of the IP
 23       (marvell,armada-3700-uart): "uart-sum", "uart-tx" and "uart-rx",
 24       respectively the UART sum interrupt, the UART TX interrupt and
 25       UART RX interrupt. A corresponding interrupt-names property must
 26       be defined.
 27     - Must contain two elements for the extended variant of the IP
 28       (marvell,armada-3700-uart-ext): "uart-tx" and "uart-rx",
 29       respectively the UART TX interrupt and the UART RX interrupt. A
 30       corresponding interrupt-names property must be defined.
 31     - For backward compatibility reasons, a single element interrupts
 32       property is also supported for the standard variant of the IP,
 33       containing only the UART sum interrupt. This form is deprecated
 34       and should no longer be used.
 35 
 36 Example:
 37         uart0: serial@12000 {
 38                 compatible = "marvell,armada-3700-uart";
 39                 reg = <0x12000 0x18>;
 40                 clocks = <&uartclk 0>;
 41                 interrupts =
 42                 <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>,
 43                 <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
 44                 <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>;
 45                 interrupt-names = "uart-sum", "uart-tx", "uart-rx";
 46         };
 47 
 48         uart1: serial@12200 {
 49                 compatible = "marvell,armada-3700-uart-ext";
 50                 reg = <0x12200 0x30>;
 51                 clocks = <&uartclk 1>;
 52                 interrupts =
 53                 <GIC_SPI 30 IRQ_TYPE_EDGE_RISING>,
 54                 <GIC_SPI 31 IRQ_TYPE_EDGE_RISING>;
 55                 interrupt-names = "uart-tx", "uart-rx";
 56         };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php