All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lucas Tanure <tanure@linux.com>
To: Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Jerome Brunet <jbrunet@baylibre.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Kevin Hilman <khilman@baylibre.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Nick <nick@khadas.com>, Artem <art@khadas.com>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-amlogic@lists.infradead.org, linux-clk@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-serial@vger.kernel.org, Lucas Tanure <tanure@linux.com>
Subject: [PATCH 5/6] tty: serial: meson: Added T7 SOC compatibility
Date: Thu, 15 Jun 2023 19:29:37 +0100	[thread overview]
Message-ID: <20230615182938.18487-6-tanure@linux.com> (raw)
In-Reply-To: <20230615182938.18487-1-tanure@linux.com>

Make UART driver compatible with T7 SOC UART.

Signed-off-by: Lucas Tanure <tanure@linux.com>
---
 drivers/tty/serial/meson_uart.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/tty/serial/meson_uart.c b/drivers/tty/serial/meson_uart.c
index 2501db5a7aaf..0208f9a6ba7e 100644
--- a/drivers/tty/serial/meson_uart.c
+++ b/drivers/tty/serial/meson_uart.c
@@ -796,6 +796,10 @@ static const struct of_device_id meson_uart_dt_match[] = {
 		.compatible = "amlogic,meson-s4-uart",
 		.data = (void *)&meson_g12a_uart_data,
 	},
+	{
+		.compatible = "amlogic,meson-t7-uart",
+		.data = (void *)&meson_g12a_uart_data,
+	},
 	{ /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, meson_uart_dt_match);
--
2.41.0


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

WARNING: multiple messages have this Message-ID (diff)
From: Lucas Tanure <tanure@linux.com>
To: Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Jerome Brunet <jbrunet@baylibre.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Kevin Hilman <khilman@baylibre.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Nick <nick@khadas.com>, Artem <art@khadas.com>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-amlogic@lists.infradead.org, linux-clk@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-serial@vger.kernel.org, Lucas Tanure <tanure@linux.com>
Subject: [PATCH 5/6] tty: serial: meson: Added T7 SOC compatibility
Date: Thu, 15 Jun 2023 19:29:37 +0100	[thread overview]
Message-ID: <20230615182938.18487-6-tanure@linux.com> (raw)
In-Reply-To: <20230615182938.18487-1-tanure@linux.com>

Make UART driver compatible with T7 SOC UART.

Signed-off-by: Lucas Tanure <tanure@linux.com>
---
 drivers/tty/serial/meson_uart.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/tty/serial/meson_uart.c b/drivers/tty/serial/meson_uart.c
index 2501db5a7aaf..0208f9a6ba7e 100644
--- a/drivers/tty/serial/meson_uart.c
+++ b/drivers/tty/serial/meson_uart.c
@@ -796,6 +796,10 @@ static const struct of_device_id meson_uart_dt_match[] = {
 		.compatible = "amlogic,meson-s4-uart",
 		.data = (void *)&meson_g12a_uart_data,
 	},
+	{
+		.compatible = "amlogic,meson-t7-uart",
+		.data = (void *)&meson_g12a_uart_data,
+	},
 	{ /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, meson_uart_dt_match);
--
2.41.0


WARNING: multiple messages have this Message-ID (diff)
From: Lucas Tanure <tanure@linux.com>
To: Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Jerome Brunet <jbrunet@baylibre.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Kevin Hilman <khilman@baylibre.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Nick <nick@khadas.com>, Artem <art@khadas.com>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-amlogic@lists.infradead.org, linux-clk@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-serial@vger.kernel.org, Lucas Tanure <tanure@linux.com>
Subject: [PATCH 5/6] tty: serial: meson: Added T7 SOC compatibility
Date: Thu, 15 Jun 2023 19:29:37 +0100	[thread overview]
Message-ID: <20230615182938.18487-6-tanure@linux.com> (raw)
In-Reply-To: <20230615182938.18487-1-tanure@linux.com>

Make UART driver compatible with T7 SOC UART.

Signed-off-by: Lucas Tanure <tanure@linux.com>
---
 drivers/tty/serial/meson_uart.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/tty/serial/meson_uart.c b/drivers/tty/serial/meson_uart.c
index 2501db5a7aaf..0208f9a6ba7e 100644
--- a/drivers/tty/serial/meson_uart.c
+++ b/drivers/tty/serial/meson_uart.c
@@ -796,6 +796,10 @@ static const struct of_device_id meson_uart_dt_match[] = {
 		.compatible = "amlogic,meson-s4-uart",
 		.data = (void *)&meson_g12a_uart_data,
 	},
+	{
+		.compatible = "amlogic,meson-t7-uart",
+		.data = (void *)&meson_g12a_uart_data,
+	},
 	{ /* sentinel */ },
 };
 MODULE_DEVICE_TABLE(of, meson_uart_dt_match);
--
2.41.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2023-06-15 18:30 UTC|newest]

Thread overview: 73+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-15 18:29 [PATCH 0/6] Add Amlogic A311D2 and Khadas Vim4 Board Support Lucas Tanure
2023-06-15 18:29 ` Lucas Tanure
2023-06-15 18:29 ` Lucas Tanure
2023-06-15 18:29 ` [PATCH 1/6] dt-bindings: arm: amlogic: add Amlogic T7 based Khadas VIM4 bindings Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 21:27   ` Conor Dooley
2023-06-15 21:27     ` Conor Dooley
2023-06-15 21:27     ` Conor Dooley
2023-06-15 18:29 ` [PATCH 2/6] dt-bindings: clock: Bindings for Meson T7 clock controller Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 19:47   ` Rob Herring
2023-06-15 19:47     ` Rob Herring
2023-06-15 19:47     ` Rob Herring
2023-06-15 21:41   ` Conor Dooley
2023-06-15 21:41     ` Conor Dooley
2023-06-15 21:41     ` Conor Dooley
2023-06-18 17:39     ` Lucas Tanure
2023-06-18 17:39       ` Lucas Tanure
2023-06-18 17:39       ` Lucas Tanure
2023-06-18 19:16       ` Conor Dooley
2023-06-18 19:16         ` Conor Dooley
2023-06-18 19:16         ` Conor Dooley
2023-06-15 18:29 ` [PATCH 3/6] clk: meson: t7: add peripheral " Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-16  7:21   ` Jerome Brunet
2023-06-16  7:21     ` Jerome Brunet
2023-06-16 11:23   ` kernel test robot
2023-06-16 11:23     ` kernel test robot
2023-06-16 11:23     ` kernel test robot
2023-06-18 17:42     ` Lucas Tanure
2023-06-18 17:42       ` Lucas Tanure
2023-06-18 17:42       ` Lucas Tanure
2023-06-21  4:41   ` kernel test robot
2023-06-21  4:41     ` kernel test robot
2023-06-21  4:41     ` kernel test robot
2023-06-15 18:29 ` [PATCH 4/6] dt-bindings: serial: amlogic, meson-uart: support T7 Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 21:25   ` Conor Dooley
2023-06-15 21:25     ` Conor Dooley
2023-06-15 21:25     ` Conor Dooley
2023-06-18 17:37     ` Lucas Tanure
2023-06-18 17:37       ` Lucas Tanure
2023-06-18 17:37       ` Lucas Tanure
2023-06-18 19:18       ` Conor Dooley
2023-06-18 19:18         ` Conor Dooley
2023-06-18 19:18         ` Conor Dooley
2023-06-15 18:29 ` Lucas Tanure [this message]
2023-06-15 18:29   ` [PATCH 5/6] tty: serial: meson: Added T7 SOC compatibility Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 23:30   ` Yixun Lan
2023-06-15 23:30     ` Yixun Lan
2023-06-15 23:30     ` Yixun Lan
2023-06-18 17:40     ` Lucas Tanure
2023-06-18 17:40       ` Lucas Tanure
2023-06-18 17:40       ` Lucas Tanure
2023-06-18 19:15       ` Conor Dooley
2023-06-18 19:15         ` Conor Dooley
2023-06-18 19:15         ` Conor Dooley
2023-06-15 18:29 ` [PATCH 6/6] arm64: dts: meson-t7-a311d2-khadas-vim4: add initial device-tree Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-15 18:29   ` Lucas Tanure
2023-06-16  0:01   ` Yixun Lan
2023-06-16  0:01     ` Yixun Lan
2023-06-16  0:01     ` Yixun Lan
2023-06-18 17:41     ` Lucas Tanure
2023-06-18 17:41       ` Lucas Tanure
2023-06-18 17:41       ` Lucas Tanure
2023-06-18 17:44       ` Lucas Tanure
2023-06-18 17:44         ` Lucas Tanure
2023-06-18 17:44         ` Lucas Tanure

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=20230615182938.18487-6-tanure@linux.com \
    --to=tanure@linux.com \
    --cc=art@khadas.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jbrunet@baylibre.com \
    --cc=khilman@baylibre.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=neil.armstrong@linaro.org \
    --cc=nick@khadas.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.