forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'RPMSG-WWAN-CTRL-driver'
Stephan Gerhold says: ==================== net: wwan: Add RPMSG WWAN CTRL driver This patch series adds a WWAN "control" driver for the remote processor messaging (rpmsg) subsystem. This subsystem allows communicating with an integrated modem DSP on many Qualcomm SoCs, e.g. MSM8916 or MSM8974. The driver is a fairly simple glue layer between WWAN and RPMSG and is mostly based on the existing mhi_wwan_ctrl.c and rpmsg_char.c. For more information, see commit message in PATCH 2/3. I already posted a RFC for this a while ago: https://lore.kernel.org/linux-arm-msm/[email protected]/ and now I'm looking for some feedback for the actual changes. :) Changes in v3: - PATCH 2/3: Clarify commit message - PATCH 3/3: Fix build error for cdc-wdm.c, use extra tx_blocking() op instead v2: https://lore.kernel.org/netdev/[email protected]/ Changes in v2: Only in PATCH 3/3 - Fix EPOLLOUT being always set even if poll op is defined - Rename poll() op -> tx_poll() since it should be only used for TX v1: https://lore.kernel.org/netdev/[email protected]/ ==================== Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
8 changed files
with
219 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15587,6 +15587,13 @@ F: include/linux/rpmsg/ | |
F: include/uapi/linux/rpmsg.h | ||
F: samples/rpmsg/ | ||
|
||
REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER | ||
M: Stephan Gerhold <[email protected]> | ||
L: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/net/wwan/rpmsg_wwan_ctrl.c | ||
|
||
RENESAS CLOCK DRIVERS | ||
M: Geert Uytterhoeven <[email protected]> | ||
L: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
/* Copyright (c) 2021, Stephan Gerhold <[email protected]> */ | ||
#include <linux/kernel.h> | ||
#include <linux/mod_devicetable.h> | ||
#include <linux/module.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/rpmsg.h> | ||
#include <linux/wwan.h> | ||
|
||
struct rpmsg_wwan_dev { | ||
/* Lower level is a rpmsg dev, upper level is a wwan port */ | ||
struct rpmsg_device *rpdev; | ||
struct wwan_port *wwan_port; | ||
struct rpmsg_endpoint *ept; | ||
}; | ||
|
||
static int rpmsg_wwan_ctrl_callback(struct rpmsg_device *rpdev, | ||
void *buf, int len, void *priv, u32 src) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan = priv; | ||
struct sk_buff *skb; | ||
|
||
skb = alloc_skb(len, GFP_ATOMIC); | ||
if (!skb) | ||
return -ENOMEM; | ||
|
||
skb_put_data(skb, buf, len); | ||
wwan_port_rx(rpwwan->wwan_port, skb); | ||
return 0; | ||
} | ||
|
||
static int rpmsg_wwan_ctrl_start(struct wwan_port *port) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan = wwan_port_get_drvdata(port); | ||
struct rpmsg_channel_info chinfo = { | ||
.src = rpwwan->rpdev->src, | ||
.dst = RPMSG_ADDR_ANY, | ||
}; | ||
|
||
strncpy(chinfo.name, rpwwan->rpdev->id.name, RPMSG_NAME_SIZE); | ||
rpwwan->ept = rpmsg_create_ept(rpwwan->rpdev, rpmsg_wwan_ctrl_callback, | ||
rpwwan, chinfo); | ||
if (!rpwwan->ept) | ||
return -EREMOTEIO; | ||
|
||
return 0; | ||
} | ||
|
||
static void rpmsg_wwan_ctrl_stop(struct wwan_port *port) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan = wwan_port_get_drvdata(port); | ||
|
||
rpmsg_destroy_ept(rpwwan->ept); | ||
rpwwan->ept = NULL; | ||
} | ||
|
||
static int rpmsg_wwan_ctrl_tx(struct wwan_port *port, struct sk_buff *skb) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan = wwan_port_get_drvdata(port); | ||
int ret; | ||
|
||
ret = rpmsg_trysend(rpwwan->ept, skb->data, skb->len); | ||
if (ret) | ||
return ret; | ||
|
||
consume_skb(skb); | ||
return 0; | ||
} | ||
|
||
static int rpmsg_wwan_ctrl_tx_blocking(struct wwan_port *port, struct sk_buff *skb) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan = wwan_port_get_drvdata(port); | ||
int ret; | ||
|
||
ret = rpmsg_send(rpwwan->ept, skb->data, skb->len); | ||
if (ret) | ||
return ret; | ||
|
||
consume_skb(skb); | ||
return 0; | ||
} | ||
|
||
static __poll_t rpmsg_wwan_ctrl_tx_poll(struct wwan_port *port, | ||
struct file *filp, poll_table *wait) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan = wwan_port_get_drvdata(port); | ||
|
||
return rpmsg_poll(rpwwan->ept, filp, wait); | ||
} | ||
|
||
static const struct wwan_port_ops rpmsg_wwan_pops = { | ||
.start = rpmsg_wwan_ctrl_start, | ||
.stop = rpmsg_wwan_ctrl_stop, | ||
.tx = rpmsg_wwan_ctrl_tx, | ||
.tx_blocking = rpmsg_wwan_ctrl_tx_blocking, | ||
.tx_poll = rpmsg_wwan_ctrl_tx_poll, | ||
}; | ||
|
||
static struct device *rpmsg_wwan_find_parent(struct device *dev) | ||
{ | ||
/* Select first platform device as parent for the WWAN ports. | ||
* On Qualcomm platforms this is usually the platform device that | ||
* represents the modem remote processor. This might need to be | ||
* adjusted when adding device IDs for other platforms. | ||
*/ | ||
for (dev = dev->parent; dev; dev = dev->parent) { | ||
if (dev_is_platform(dev)) | ||
return dev; | ||
} | ||
return NULL; | ||
} | ||
|
||
static int rpmsg_wwan_ctrl_probe(struct rpmsg_device *rpdev) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan; | ||
struct wwan_port *port; | ||
struct device *parent; | ||
|
||
parent = rpmsg_wwan_find_parent(&rpdev->dev); | ||
if (!parent) | ||
return -ENODEV; | ||
|
||
rpwwan = devm_kzalloc(&rpdev->dev, sizeof(*rpwwan), GFP_KERNEL); | ||
if (!rpwwan) | ||
return -ENOMEM; | ||
|
||
rpwwan->rpdev = rpdev; | ||
dev_set_drvdata(&rpdev->dev, rpwwan); | ||
|
||
/* Register as a wwan port, id.driver_data contains wwan port type */ | ||
port = wwan_create_port(parent, rpdev->id.driver_data, | ||
&rpmsg_wwan_pops, rpwwan); | ||
if (IS_ERR(port)) | ||
return PTR_ERR(port); | ||
|
||
rpwwan->wwan_port = port; | ||
|
||
return 0; | ||
}; | ||
|
||
static void rpmsg_wwan_ctrl_remove(struct rpmsg_device *rpdev) | ||
{ | ||
struct rpmsg_wwan_dev *rpwwan = dev_get_drvdata(&rpdev->dev); | ||
|
||
wwan_remove_port(rpwwan->wwan_port); | ||
} | ||
|
||
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 }, | ||
{}, | ||
}; | ||
MODULE_DEVICE_TABLE(rpmsg, rpmsg_wwan_ctrl_id_table); | ||
|
||
static struct rpmsg_driver rpmsg_wwan_ctrl_driver = { | ||
.drv.name = "rpmsg_wwan_ctrl", | ||
.id_table = rpmsg_wwan_ctrl_id_table, | ||
.probe = rpmsg_wwan_ctrl_probe, | ||
.remove = rpmsg_wwan_ctrl_remove, | ||
}; | ||
module_rpmsg_driver(rpmsg_wwan_ctrl_driver); | ||
|
||
MODULE_LICENSE("GPL v2"); | ||
MODULE_DESCRIPTION("RPMSG WWAN CTRL Driver"); | ||
MODULE_AUTHOR("Stephan Gerhold <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters