1include: [uart-controller.yaml, pinctrl-device.yaml]
2
3properties:
4  reg:
5    required: true
6
7  interrupts:
8    required: true
9
10  pinctrl-0:
11    required: true
12
13  disable-rx:
14    type: boolean
15    description: |
16      Disable UART reception capabilities (only required to disable reception
17      if CONFIG_PINCTRL is enabled).
18
19  current-speed:
20    description: |
21      Initial baud rate setting for UART. Only a fixed set of baud
22      rates are selectable on these devices.
23    enum:
24      - 1200
25      - 2400
26      - 4800
27      - 9600
28      - 14400
29      - 19200
30      - 28800
31      - 31250
32      - 38400
33      - 56000
34      - 57600
35      - 76800
36      - 115200
37      - 230400
38      - 250000
39      - 460800
40      - 921600
41      - 1000000
42