dts: bindings: serial: uart-controller: expand parity type support

Enhanced uart-controller.yaml to expand parity type support,
now including 'mark' and 'space' options.

Signed-off-by: Cong Nguyen Huu <cong.nguyenhuu@nxp.com>
This commit is contained in:
Cong Nguyen Huu 2025-04-22 12:55:03 +07:00 committed by Benjamin Cabé
commit 92b57ac654

View file

@ -18,11 +18,14 @@ properties:
type: string type: string
description: | description: |
Configures the parity of the adapter. Enumeration id 0 for none, 1 for odd Configures the parity of the adapter. Enumeration id 0 for none, 1 for odd
and 2 for even parity. Default to none if not specified. and 2 for even parity, 3 for mark parity and 4 for space parity.
Default to none if not specified.
enum: enum:
- "none" - "none"
- "odd" - "odd"
- "even" - "even"
- "mark"
- "space"
default: "none" default: "none"
stop-bits: stop-bits:
type: string type: string