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