blob: 2f016d8968bd6e0fa328eb27a4d4ce7851dbb6a6 [file] [log] [blame]
description: Atmel SAM0 SERCOM UART driver
compatible: "atmel,sam0-uart"
include: uart-controller.yaml
properties:
reg:
required: true
interrupts:
required: true
clocks:
required: true
clock-names:
required: true
rxpo:
type: int
required: true
description: Receive Data Pinout
txpo:
type: int
required: true
description: Transmit Data Pinout
collision-detection:
type: boolean
description: Enable collision detection for half-duplex mode.
pinctrl-0:
type: phandles
description: |
PORT pin configuration for RXD & TRD signals. We expect that
the phandles will reference pinctrl nodes. These nodes will
have a nodelabel that matches the Atmel SoC HAL defines and
be of the form p<port><pin><periph>_<inst>_<signal>.
For example the SERCOM0 on SAMR21 would be
pinctrl-0 = <&pa5d_sercom0_pad1 &pa4d_sercom0_pad0>;
required: true
dmas:
description: |
Optional TX & RX dma specifiers. Each specifier will have a phandle
reference to the dmac controller, the channel number, and peripheral
trigger source.
For example dmas for TX, RX on SERCOM3
dmas = <&dmac 0 0xb>, <&dmac 0 0xa>;
dma-names:
description: |
Required if the dmas property exists. This should be "tx" and "rx"
to match the dmas property.
For example
dma-names = "tx", "rx";