rmnet_core: Add IPA driver support for low-latency framework

Allows the use of the LL channel on IPA based targetds. MHI specific
functionality is split into the new rmnet_ll_mhi.c file, and IPA is
placed in rmnet_ll_ipa.c. rmnet_ll.c works as a generic interface to the
core rmnet module, and handles calling specific functions in the active
HW module to provide the low latency channel functionality.

Change-Id: Id3e77b8433134872eba09818fc662fc109687d80
Signed-off-by: Sean Tranchetti <stranche@codeaurora.org>
This commit is contained in:
Sean Tranchetti
2021-02-12 13:20:25 -08:00
committed by Subash Abhinov Kasiviswanathan
szülő b8552944d5
commit aeba491583
7 fájl változott, egészen pontosan 463 új sor hozzáadva és 260 régi sor törölve

Fájl megtekintése

@@ -12,69 +12,33 @@
* RmNet Low Latency channel handlers
*/
#include <linux/device.h>
#include <linux/netdevice.h>
#include <linux/of.h>
#include <linux/skbuff.h>
#include <linux/mhi.h>
#include <linux/if_ether.h>
#include <linux/mm.h>
#include <linux/list.h>
#include <linux/version.h>
#include "rmnet_ll.h"
#include "rmnet_ll_core.h"
#define RMNET_LL_DEFAULT_MRU 0x8000
#define RMNET_LL_MAX_RECYCLE_ITER 16
struct rmnet_ll_buffer {
struct list_head list;
struct page *page;
bool temp_alloc;
bool submitted;
};
struct rmnet_ll_buffer_pool {
struct list_head buf_list;
/* Protect access to the recycle buffer pool */
spinlock_t pool_lock;
struct list_head *last;
u32 pool_size;
};
struct rmnet_ll_endpoint {
struct rmnet_ll_buffer_pool buf_pool;
struct mhi_device *mhi_dev;
struct net_device *mhi_netdev;
u32 dev_mru;
u32 page_order;
u32 buf_len;
};
static struct rmnet_ll_endpoint *rmnet_ll_ep;
static struct rmnet_ll_stats rmnet_ll_stats;
/* For TX synch with MHI via mhi_queue_transfer() */
/* For TX sync with DMA operations */
static DEFINE_SPINLOCK(rmnet_ll_tx_lock);
/* Client operations for respective underlying HW */
extern struct rmnet_ll_client_ops rmnet_ll_client;
static void rmnet_ll_buffers_submit(struct rmnet_ll_endpoint *ll_ep,
struct list_head *buf_list)
{
struct rmnet_ll_buffer *ll_buf;
int rc;
list_for_each_entry(ll_buf, buf_list, list) {
if (ll_buf->submitted)
continue;
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0)
rc = mhi_queue_transfer(ll_ep->mhi_dev, DMA_FROM_DEVICE,
page_address(ll_buf->page),
ll_ep->buf_len, MHI_EOT);
#else
rc = mhi_queue_buf(ll_ep->mhi_dev, DMA_FROM_DEVICE,
page_address(ll_buf->page),
ll_ep->buf_len, MHI_EOT);
#endif
if (rc) {
if (!rmnet_ll_client.buffer_queue ||
rmnet_ll_client.buffer_queue(ll_ep, ll_buf)) {
rmnet_ll_stats.rx_queue_err++;
/* Don't leak the page if we're not storing it */
if (ll_buf->temp_alloc)
@@ -106,7 +70,7 @@ rmnet_ll_buffer_alloc(struct rmnet_ll_endpoint *ll_ep, gfp_t gfp)
return ll_buf;
}
static int rmnet_ll_buffer_pool_alloc(struct rmnet_ll_endpoint *ll_ep)
int rmnet_ll_buffer_pool_alloc(struct rmnet_ll_endpoint *ll_ep)
{
spin_lock_init(&ll_ep->buf_pool.pool_lock);
INIT_LIST_HEAD(&ll_ep->buf_pool.buf_list);
@@ -115,7 +79,7 @@ static int rmnet_ll_buffer_pool_alloc(struct rmnet_ll_endpoint *ll_ep)
return 0;
}
static void rmnet_ll_buffer_pool_free(struct rmnet_ll_endpoint *ll_ep)
void rmnet_ll_buffer_pool_free(struct rmnet_ll_endpoint *ll_ep)
{
struct rmnet_ll_buffer *ll_buf, *tmp;
list_for_each_entry_safe(ll_buf, tmp, &ll_ep->buf_pool.buf_list, list) {
@@ -126,17 +90,16 @@ static void rmnet_ll_buffer_pool_free(struct rmnet_ll_endpoint *ll_ep)
ll_ep->buf_pool.last = NULL;
}
static void rmnet_ll_buffers_recycle(struct rmnet_ll_endpoint *ll_ep)
void rmnet_ll_buffers_recycle(struct rmnet_ll_endpoint *ll_ep)
{
struct rmnet_ll_buffer *ll_buf, *tmp;
LIST_HEAD(buf_list);
int num_tre, count = 0, iter = 0;
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0)
num_tre = mhi_get_no_free_descriptors(ll_ep->mhi_dev, DMA_FROM_DEVICE);
#else
num_tre = mhi_get_free_desc_count(ll_ep->mhi_dev, DMA_FROM_DEVICE);
#endif
if (!rmnet_ll_client.query_free_descriptors)
goto out;
num_tre = rmnet_ll_client.query_free_descriptors(ll_ep);
if (!num_tre)
goto out;
@@ -178,182 +141,12 @@ out:
return;
}
static void rmnet_ll_rx(struct mhi_device *mhi_dev, struct mhi_result *res)
{
struct rmnet_ll_endpoint *ll_ep = dev_get_drvdata(&mhi_dev->dev);
struct rmnet_ll_buffer *ll_buf;
struct sk_buff *skb;
/* Get the buffer struct back for our page information */
ll_buf = res->buf_addr + ll_ep->buf_len;
ll_buf->submitted = false;
if (res->transaction_status) {
rmnet_ll_stats.rx_status_err++;
goto err;
} else if (!res->bytes_xferd) {
rmnet_ll_stats.rx_null++;
goto err;
}
/* Store this away so we don't have to look it up every time */
if (!ll_ep->mhi_netdev) {
ll_ep->mhi_netdev = dev_get_by_name(&init_net, "rmnet_mhi0");
if (!ll_ep->mhi_netdev)
goto err;
}
skb = alloc_skb(0, GFP_ATOMIC);
if (!skb) {
rmnet_ll_stats.rx_oom++;
goto err;
}
/* Build the SKB and pass it off to the stack */
skb_add_rx_frag(skb, 0, ll_buf->page, 0, res->bytes_xferd,
ll_ep->buf_len);
if (!ll_buf->temp_alloc)
get_page(ll_buf->page);
skb->dev = ll_ep->mhi_netdev;
skb->protocol = htons(ETH_P_MAP);
/* Mark this as arriving on the LL channel. Allows rmnet to skip
* module handling as needed.
*/
skb->priority = 0xda1a;
rmnet_ll_stats.rx_pkts++;
netif_rx(skb);
rmnet_ll_buffers_recycle(ll_ep);
return;
err:
/* Go, and never darken my towels again! */
if (ll_buf->temp_alloc)
put_page(ll_buf->page);
}
static void rmnet_ll_tx_complete(struct mhi_device *mhi_dev,
struct mhi_result *res)
{
struct sk_buff *skb = res->buf_addr;
/* Check the result and free the SKB */
if (res->transaction_status)
rmnet_ll_stats.tx_complete_err++;
else
rmnet_ll_stats.tx_complete++;
dev_kfree_skb_any(skb);
}
static int rmnet_ll_probe(struct mhi_device *mhi_dev,
const struct mhi_device_id *id)
{
struct rmnet_ll_endpoint *ll_ep;
int rc;
/* Allocate space for our state from the managed pool tied to the life
* of the mhi device.
*/
ll_ep = devm_kzalloc(&mhi_dev->dev, sizeof(*ll_ep), GFP_KERNEL);
if (!ll_ep)
return -ENOMEM;
/* Hold on to the mhi_dev so we can send data to it later */
ll_ep->mhi_dev = mhi_dev;
/* Grab the MRU of the device so we know the size of the pages we need
* to allocate for the pool.
*/
rc = of_property_read_u32(mhi_dev->dev.of_node, "mhi,mru",
&ll_ep->dev_mru);
if (rc || !ll_ep->dev_mru)
/* Use our default mru */
ll_ep->dev_mru = RMNET_LL_DEFAULT_MRU;
ll_ep->page_order = get_order(ll_ep->dev_mru);
/* We store some stuff at the end of the page, so don't let the HW
* use that part of it.
*/
ll_ep->buf_len = ll_ep->dev_mru - sizeof(struct rmnet_ll_buffer);
/* Tell MHI to initialize the UL/DL channels for transfer */
rc = mhi_prepare_for_transfer(mhi_dev);
if (rc) {
pr_err("%s(): Failed to prepare device for transfer: 0x%x\n",
__func__, rc);
return rc;
}
rc = rmnet_ll_buffer_pool_alloc(ll_ep);
if (rc) {
pr_err("%s(): Failed to allocate buffer pool: %d\n", __func__,
rc);
mhi_unprepare_from_transfer(mhi_dev);
return rc;
}
rmnet_ll_buffers_recycle(ll_ep);
/* Not a fan of storing this pointer in two locations, but I've yet to
* come up with any other good way of accessing it on the TX path from
* rmnet otherwise, since we won't have any references to the mhi_dev.
*/
dev_set_drvdata(&mhi_dev->dev, ll_ep);
rmnet_ll_ep = ll_ep;
return 0;
}
static void rmnet_ll_remove(struct mhi_device *mhi_dev)
{
struct rmnet_ll_endpoint *ll_ep;
ll_ep = dev_get_drvdata(&mhi_dev->dev);
/* Remove our private data form the device. No need to free it though.
* It will be freed once the mhi_dev is released since it was alloced
* from a managed pool.
*/
dev_set_drvdata(&mhi_dev->dev, NULL);
rmnet_ll_ep = NULL;
rmnet_ll_buffer_pool_free(ll_ep);
}
static const struct mhi_device_id rmnet_ll_channel_table[] = {
{
.chan = "RMNET_DATA_LL",
},
{},
};
static struct mhi_driver rmnet_ll_driver = {
.probe = rmnet_ll_probe,
.remove = rmnet_ll_remove,
.dl_xfer_cb = rmnet_ll_rx,
.ul_xfer_cb = rmnet_ll_tx_complete,
.id_table = rmnet_ll_channel_table,
.driver = {
.name = "rmnet_ll",
.owner = THIS_MODULE,
},
};
int rmnet_ll_send_skb(struct sk_buff *skb)
{
struct rmnet_ll_endpoint *ll_ep = rmnet_ll_ep;
int rc = -ENODEV;
int rc;
/* Lock to prevent multiple sends at the same time. mhi_queue_transfer()
* cannot be called in parallel for the same DMA direction.
*/
spin_lock_bh(&rmnet_ll_tx_lock);
if (ll_ep)
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 10, 0)
rc = mhi_queue_transfer(ll_ep->mhi_dev, DMA_TO_DEVICE, skb,
skb->len, MHI_EOT);
#else
rc = mhi_queue_skb(ll_ep->mhi_dev, DMA_TO_DEVICE, skb,
skb->len, MHI_EOT);
#endif
rc = rmnet_ll_client.tx(skb);
spin_unlock_bh(&rmnet_ll_tx_lock);
if (rc)
rmnet_ll_stats.tx_queue_err++;
@@ -370,10 +163,10 @@ struct rmnet_ll_stats *rmnet_ll_get_stats(void)
int rmnet_ll_init(void)
{
return mhi_driver_register(&rmnet_ll_driver);
return rmnet_ll_client.init();
}
void rmnet_ll_exit(void)
{
mhi_driver_unregister(&rmnet_ll_driver);
rmnet_ll_client.exit();
}