* [PATCH net-next v2] net: wwan: Expose secondary AT port on DATA1
@ 2023-04-17 6:07 Jaime Breva via B4 Relay
2023-04-17 6:55 ` Stephan Gerhold
2023-04-19 12:00 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Jaime Breva via B4 Relay @ 2023-04-17 6:07 UTC (permalink / raw)
To: Stephan Gerhold, Loic Poulain, Sergey Ryazanov, Johannes Berg,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: netdev, linux-remoteproc, linux-kernel, Jaime Breva
From: Jaime Breva <jbreva@nayarsystems.com>
Our use-case needs two AT ports available:
One for running a ppp daemon, and another one for management
This patch enables a second AT port on DATA1
Signed-off-by: Jaime Breva <jbreva@nayarsystems.com>
---
Changes in v2:
- Modified subject prefix to be netdev list compliant
- Link to v1: https://lore.kernel.org/r/20230414-rpmsg-wwan-secondary-at-port-v1-1-6d7307527911@nayarsystems.com
---
drivers/net/wwan/rpmsg_wwan_ctrl.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/wwan/rpmsg_wwan_ctrl.c b/drivers/net/wwan/rpmsg_wwan_ctrl.c
index 31c24420ab2e..e964bdeea2b3 100644
--- a/drivers/net/wwan/rpmsg_wwan_ctrl.c
+++ b/drivers/net/wwan/rpmsg_wwan_ctrl.c
@@ -149,6 +149,7 @@ static const struct rpmsg_device_id rpmsg_wwan_ctrl_id_table[] = {
/* RPMSG channels for Qualcomm SoCs with integrated modem */
{ .name = "DATA5_CNTL", .driver_data = WWAN_PORT_QMI },
{ .name = "DATA4", .driver_data = WWAN_PORT_AT },
+ { .name = "DATA1", .driver_data = WWAN_PORT_AT },
{},
};
MODULE_DEVICE_TABLE(rpmsg, rpmsg_wwan_ctrl_id_table);
---
base-commit: c9c3395d5e3dcc6daee66c6908354d47bf98cb0c
change-id: 20230414-rpmsg-wwan-secondary-at-port-db72a66ce74a
Best regards,
--
Jaime Breva <jbreva@nayarsystems.com>
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH net-next v2] net: wwan: Expose secondary AT port on DATA1
2023-04-17 6:07 [PATCH net-next v2] net: wwan: Expose secondary AT port on DATA1 Jaime Breva via B4 Relay
@ 2023-04-17 6:55 ` Stephan Gerhold
2023-04-19 12:00 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Stephan Gerhold @ 2023-04-17 6:55 UTC (permalink / raw)
To: jbreva
Cc: Loic Poulain, Sergey Ryazanov, Johannes Berg, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, netdev,
linux-remoteproc, linux-kernel
On Mon, Apr 17, 2023 at 08:07:24AM +0200, Jaime Breva via B4 Relay wrote:
> From: Jaime Breva <jbreva@nayarsystems.com>
>
> Our use-case needs two AT ports available:
> One for running a ppp daemon, and another one for management
>
> This patch enables a second AT port on DATA1
>
> Signed-off-by: Jaime Breva <jbreva@nayarsystems.com>
For future patch resubmissions please pick up already given review tags
when you resend new versions (b4 trailers can help you with this).
Acked-by: Stephan Gerhold <stephan@gerhold.net>
Thanks,
Stephan
> ---
> Changes in v2:
> - Modified subject prefix to be netdev list compliant
> - Link to v1: https://lore.kernel.org/r/20230414-rpmsg-wwan-secondary-at-port-v1-1-6d7307527911@nayarsystems.com
> ---
> drivers/net/wwan/rpmsg_wwan_ctrl.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/net/wwan/rpmsg_wwan_ctrl.c b/drivers/net/wwan/rpmsg_wwan_ctrl.c
> index 31c24420ab2e..e964bdeea2b3 100644
> --- a/drivers/net/wwan/rpmsg_wwan_ctrl.c
> +++ b/drivers/net/wwan/rpmsg_wwan_ctrl.c
> @@ -149,6 +149,7 @@ static const struct rpmsg_device_id rpmsg_wwan_ctrl_id_table[] = {
> /* RPMSG channels for Qualcomm SoCs with integrated modem */
> { .name = "DATA5_CNTL", .driver_data = WWAN_PORT_QMI },
> { .name = "DATA4", .driver_data = WWAN_PORT_AT },
> + { .name = "DATA1", .driver_data = WWAN_PORT_AT },
> {},
> };
> MODULE_DEVICE_TABLE(rpmsg, rpmsg_wwan_ctrl_id_table);
>
> ---
> base-commit: c9c3395d5e3dcc6daee66c6908354d47bf98cb0c
> change-id: 20230414-rpmsg-wwan-secondary-at-port-db72a66ce74a
>
> Best regards,
> --
> Jaime Breva <jbreva@nayarsystems.com>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH net-next v2] net: wwan: Expose secondary AT port on DATA1
2023-04-17 6:07 [PATCH net-next v2] net: wwan: Expose secondary AT port on DATA1 Jaime Breva via B4 Relay
2023-04-17 6:55 ` Stephan Gerhold
@ 2023-04-19 12:00 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-04-19 12:00 UTC (permalink / raw)
To: Jaime Breva via B4 Relay
Cc: stephan, loic.poulain, ryazanov.s.a, johannes, davem, edumazet,
kuba, pabeni, netdev, linux-remoteproc, linux-kernel, jbreva
Hello:
This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Mon, 17 Apr 2023 08:07:24 +0200 you wrote:
> From: Jaime Breva <jbreva@nayarsystems.com>
>
> Our use-case needs two AT ports available:
> One for running a ppp daemon, and another one for management
>
> This patch enables a second AT port on DATA1
>
> [...]
Here is the summary with links:
- [net-next,v2] net: wwan: Expose secondary AT port on DATA1
https://git.kernel.org/netdev/net-next/c/158441884772
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-04-19 12:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-17 6:07 [PATCH net-next v2] net: wwan: Expose secondary AT port on DATA1 Jaime Breva via B4 Relay
2023-04-17 6:55 ` Stephan Gerhold
2023-04-19 12:00 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox