Re: [PATCH v2 2/2] dt-bindings: serial: Document WK2xxx SPI UART bindings

From: Krzysztof Kozlowski

Date: Sat Sep 05 2026 - 03:32:02 EST


On 04/09/2026 11:33, zjzhao@xxxxxxxxx wrote:
> From: zjzhao <zjzhao@xxxxxxxxx>
>
> Add a DT binding for the WK2xxx SPI to UART bridge ICs (WK2124, WK2132,
> WK2168, WK2202 and WK2204) from WKmic (Chengdu Weikai Microelectronics).
> Each UART channel is described by a serial@N child node that carries its
> own serial and RS-485 properties. Also register the wkmic vendor prefix.
>
> Signed-off-by: zjzhao <zjzhao@xxxxxxxxx>

Same problems as v1...

1. Name is a copied login.

2. drop second/last, redundant "bindings". The "dt-bindings" prefix is
already stating that these are bindings.
See also:
https://elixir.bootlin.com/linux/v7.1-rc7/source/Documentation/devicetree/bindings/submitting-patches.rst#L23

3. Please organize the patch documenting the compatible (DT bindings)
before the patch using that compatible.
See also:
https://elixir.bootlin.com/linux/v6.14-rc6/source/Documentation/devicetree/bindings/submitting-patches.rst#L46

> ---
> .../bindings/serial/wkmic,wk2xxx.yaml | 115 ++++++++++++++++++
> .../devicetree/bindings/vendor-prefixes.yaml | 2 +
> 2 files changed, 117 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/serial/wkmic,wk2xxx.yaml

Filename: wkmic,wk2124.yaml as explained in writing bindings.

>
> diff --git a/Documentation/devicetree/bindings/serial/wkmic,wk2xxx.yaml b/Documentation/devicetree/bindings/serial/wkmic,wk2xxx.yaml
> new file mode 100644
> index 000000000000..c781482c0f2d
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/serial/wkmic,wk2xxx.yaml
> @@ -0,0 +1,115 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/serial/wkmic,wk2xxx.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: WKmic WK2xxx SPI to UART bridge
> +
> +maintainers:
> + - EDATEC Technology Co., Ltd. <zjzhao@xxxxxxxxx>
> +
> +description:
> + The WK2xxx family (WK2124, WK2132, WK2168, WK2202 and WK2204) are SPI to
> + UART bridge ICs from WKmic (Chengdu Weikai Microelectronics). Each IC
> + exposes two or four full-duplex UART channels with 256-byte RX/TX FIFOs
> + through a single SPI slave interface and one interrupt line. Each channel
> + is described by a "serial@N" child node that carries its own serial and
> + RS-485 properties.
> +
> +properties:
> + compatible:
> + enum:
> + - wkmic,wk2124
> + - wkmic,wk2132
> + - wkmic,wk2168
> + - wkmic,wk2202
> + - wkmic,wk2204
> +
> + reg:
> + maxItems: 1
> +
> + interrupts:
> + description:
> + When missing, the device driver uses polling instead.
> + maxItems: 1
> +
> + clock-frequency:
> + description:
> + Crystal or external clock frequency for the IC in Hz. The WK2xxx has
> + no internal clock, so this must match the connected crystal.

Then this is a clock input, no? Use proper clocks in such case. Property
is discouraged.

> + default: 11059200
> + minimum: 1
> + maximum: 30000000
> +
> + "#address-cells":
> + const: 1
> +
> + "#size-cells":
> + const: 0
> +
> +patternProperties:
> + "^serial@[0-3]$":
> + type: object
> + description: A single UART channel of the chip.
> + allOf:
> + - $ref: /schemas/serial/serial.yaml#
> + - $ref: /schemas/serial/rs485.yaml#
> + properties:
> + reg:
> + description: UART channel number on the chip.
> + maximum: 3
> + required:
> + - reg
> + unevaluatedProperties: false
> +
> +required:
> + - compatible
> + - reg
> + - "#address-cells"
> + - "#size-cells"
> +
> +allOf:
> + - $ref: /schemas/spi/spi-peripheral-props.yaml#
> +
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - wkmic,wk2132
> + - wkmic,wk2202
> + then:
> + patternProperties:
> + "^serial@[23]$": false
> +
> +unevaluatedProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/interrupt-controller/irq.h>
> + spi {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + serial@0 {
> + compatible = "wkmic,wk2132";
> + reg = <0>;
> + spi-max-frequency = <10000000>;
> + clock-frequency = <11059200>;
> + interrupt-parent = <&gpio>;
> + interrupts = <24 IRQ_TYPE_LEVEL_LOW>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + serial@0 {
> + reg = <0>;
> + };
> +
> + serial@1 {
> + reg = <1>;
> + rs485-rts-active-low;
> + linux,rs485-enabled-at-boot-time;
> + };
> + };
> + };
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> index ba2002969373..654fc8525559 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> @@ -1907,6 +1907,8 @@ patternProperties:
> description: Wireless Tag (qiming yunduan)
> "^wits,.*":
> description: Shenzhen Merrii Technology Co., Ltd. (WITS)
> + "^wkmic,.*":
> + description: Chengdu Weikai Microelectronics Co., Ltd.

What is the website URL?

> "^wlf,.*":
> description: Wolfson Microelectronics
> "^wm,.*":


Best regards,
Krzysztof