From: <liu.qingtao2@zte.com.cn>
To: <krzk@kernel.org>, <gregkh@linuxfoundation.org>,
<jirislaby@kernel.org>, <robh@kernel.org>, <krzk+dt@kernel.org>,
<conor+dt@kernel.org>, <marex@nabladev.com>, <pjw@kernel.org>,
<palmer@dabbelt.com>, <aou@eecs.berkeley.edu>, <alex@ghiti.fr>,
<rdunlap@infradead.org>, <geert+renesas@glider.be>,
<quic_zongjian@quicinc.com>, <arturs.artamonovs@analog.com>,
<robert.marko@sartura.hr>, <hvilleneuve@dimonoff.com>,
<thierry.bultel.yh@bp.renesas.com>, <julianbraha@gmail.com>,
<flavra@baylibre.com>, <prabhakar.mahadev-lad.rj@bp.renesas.com>,
<linux-serial@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<devicetree@vger.kernel.org>, <linux-riscv@lists.infradead.org>,
<liu.wenhong35@zte.com.cn>, <liu.fei16@zte.com.cn>,
<dai.hualiang@zte.com.cn>, <deng.weixian@zte.com.cn>,
<jia.yunxiang@zte.com.cn>, <he.yilin@zte.com.cn>,
<bai.lu5@zte.com.cn>, <yang.susheng@zte.com.cn>,
<shen.lin1@zte.com.cn>, <zuo.jiang@zte.com.cn>,
<hu.shengming@zte.com.cn>, <gao.rui@zte.com.cn>,
<tan.hu@zte.com.cn>, <liu.qingtao2@zte.com.cn>
Subject: [PATCH v2 1/2] Add ZTE LRX UART driver
Date: Wed, 13 May 2026 16:46:51 +0800 (CST) [thread overview]
Message-ID: <202605130851.64D8prqc083672@mse-fl1.zte.com.cn> (raw)
From 08610be731b6fc3919d5eebfd2ff9d67f38a094c Mon Sep 17 00:00:00 2001
From: Wenhong Liu <liu.wenhong35@zte.com.cn>
Date: Tue, 28 Apr 2026 22:30:31 +0800
Subject: [PATCH v2 1/2] dt-bindings: serial: Add zte,lrx-uart
Add devicetree binding for ZTE LRX UART controller.
Co-developed-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
Signed-off-by: Qingtao Liu <liu.qingtao2@zte.com.cn>
Signed-off-by: Wenhong Liu <liu.wenhong35@zte.com.cn>
---
../bindings/serial/zte,lrx-uart.yaml | 51 +++++++++++++++++++
MAINTAINERS | 8 +++
2 files changed, 59 insertions(+)
create mode 100644 Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml
diff --git a/Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml b/Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml
new file mode 100644
index 000000000000..20f470f04257
--- /dev/null
+++ b/Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml
@@ -0,0 +1,51 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/serial/zte,lrx-uart.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ZTE LRX UART
+
+maintainers:
+ - Wenhong Liu <liu.wenhong35@zte.com.cn>
+ - Qingtao Liu <liu.qingtao2@zte.com.cn>
+
+allOf:
+ - $ref: serial.yaml#
+
+properties:
+ compatible:
+ const: zte,lrx-uart
+
+ reg:
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ clocks:
+ maxItems: 1
+
+ current-speed:
+ description:
+ Initial baud rate configuration for the UART. This is a required
+ property to configure the serial port baud rate at boot time.
+
+required:
+ - compatible
+ - reg
+ - interrupts
+ - clocks
+ - current-speed
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ serial@e0001800 {
+ compatible = "zte,lrx-uart";
+ reg = <0xe0001800 0x100>;
+ interrupts = <18>;
+ clocks = <&clk_uart0>;
+ current-speed = <115200>;
+ };
diff --git a/MAINTAINERS b/MAINTAINERS
index 0dfad67f66c0..79be2dde3b71 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -29494,6 +29494,14 @@ F: include/linux/zswap.h
F: mm/zswap.c
F: tools/testing/selftests/cgroup/test_zswap.c
+ZTE LRX SERIAL DRIVER
+M: Wenhong Liu <liu.wenhong35@zte.com.cn>
+R: Qingtao Liu <liu.qingtao2@zte.com.cn>
+L: linux-serial@vger.kernel.org
+S: Maintained
+F: Documentation/devicetree/bindings/serial/zte,lrx-uart.yaml
+F: drivers/tty/serial/lrx_uart.c
+
SENARYTECH AUDIO CODEC DRIVER
M: bo liu <bo.liu@senarytech.com>
S: Maintained
--
2.27.0
next reply other threads:[~2026-05-13 8:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 8:46 liu.qingtao2 [this message]
2026-05-13 8:59 ` [PATCH v2 1/2] Add ZTE LRX UART driver Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202605130851.64D8prqc083672@mse-fl1.zte.com.cn \
--to=liu.qingtao2@zte.com.cn \
--cc=alex@ghiti.fr \
--cc=aou@eecs.berkeley.edu \
--cc=arturs.artamonovs@analog.com \
--cc=bai.lu5@zte.com.cn \
--cc=conor+dt@kernel.org \
--cc=dai.hualiang@zte.com.cn \
--cc=deng.weixian@zte.com.cn \
--cc=devicetree@vger.kernel.org \
--cc=flavra@baylibre.com \
--cc=gao.rui@zte.com.cn \
--cc=geert+renesas@glider.be \
--cc=gregkh@linuxfoundation.org \
--cc=he.yilin@zte.com.cn \
--cc=hu.shengming@zte.com.cn \
--cc=hvilleneuve@dimonoff.com \
--cc=jia.yunxiang@zte.com.cn \
--cc=jirislaby@kernel.org \
--cc=julianbraha@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-serial@vger.kernel.org \
--cc=liu.fei16@zte.com.cn \
--cc=liu.wenhong35@zte.com.cn \
--cc=marex@nabladev.com \
--cc=palmer@dabbelt.com \
--cc=pjw@kernel.org \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=quic_zongjian@quicinc.com \
--cc=rdunlap@infradead.org \
--cc=robert.marko@sartura.hr \
--cc=robh@kernel.org \
--cc=shen.lin1@zte.com.cn \
--cc=tan.hu@zte.com.cn \
--cc=thierry.bultel.yh@bp.renesas.com \
--cc=yang.susheng@zte.com.cn \
--cc=zuo.jiang@zte.com.cn \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox