Commit d4df7890 authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Kalle Valo

ath6kl: Remove struct hif_scatter_req_priv

Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent c630d18a
...@@ -177,7 +177,8 @@ struct hif_scatter_req { ...@@ -177,7 +177,8 @@ struct hif_scatter_req {
struct htc_endpoint *ep; struct htc_endpoint *ep;
int scat_entries; int scat_entries;
struct hif_scatter_req_priv *req_priv; struct bus_request *busrequest;
struct scatterlist *sgentries;
/* bounce buffer for upper layers to copy to/from */ /* bounce buffer for upper layers to copy to/from */
u8 *virt_dma_buf; u8 *virt_dma_buf;
...@@ -190,11 +191,6 @@ struct hif_dev_scat_sup_info { ...@@ -190,11 +191,6 @@ struct hif_dev_scat_sup_info {
int max_xfer_szper_scatreq; int max_xfer_szper_scatreq;
}; };
struct hif_scatter_req_priv {
struct bus_request *busrequest;
struct scatterlist sgentries[MAX_SCATTER_ENTRIES_PER_REQ];
};
struct ath6kl_hif_ops { struct ath6kl_hif_ops {
int (*read_write_sync)(struct ath6kl *ar, u32 addr, u8 *buf, int (*read_write_sync)(struct ath6kl *ar, u32 addr, u8 *buf,
u32 len, u32 request); u32 len, u32 request);
......
...@@ -163,7 +163,6 @@ static void ath6kl_sdio_free_bus_req(struct ath6kl_sdio *ar_sdio, ...@@ -163,7 +163,6 @@ static void ath6kl_sdio_free_bus_req(struct ath6kl_sdio *ar_sdio,
} }
static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req, static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req,
struct hif_scatter_req_priv *s_req_priv,
struct mmc_data *data) struct mmc_data *data)
{ {
struct scatterlist *sg; struct scatterlist *sg;
...@@ -182,7 +181,7 @@ static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req, ...@@ -182,7 +181,7 @@ static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req,
MMC_DATA_READ; MMC_DATA_READ;
/* fill SG entries */ /* fill SG entries */
sg = s_req_priv->sgentries; sg = scat_req->sgentries;
sg_init_table(sg, scat_req->scat_entries); sg_init_table(sg, scat_req->scat_entries);
/* assemble SG list */ /* assemble SG list */
...@@ -206,7 +205,7 @@ static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req, ...@@ -206,7 +205,7 @@ static void ath6kl_sdio_setup_scat_data(struct hif_scatter_req *scat_req,
} }
/* set scatter-gather table for request */ /* set scatter-gather table for request */
data->sg = s_req_priv->sgentries; data->sg = scat_req->sgentries;
data->sg_len = scat_req->scat_entries; data->sg_len = scat_req->scat_entries;
} }
...@@ -226,7 +225,7 @@ static int ath6kl_sdio_scat_rw(struct ath6kl_sdio *ar_sdio, ...@@ -226,7 +225,7 @@ static int ath6kl_sdio_scat_rw(struct ath6kl_sdio *ar_sdio,
memset(&cmd, 0, sizeof(struct mmc_command)); memset(&cmd, 0, sizeof(struct mmc_command));
memset(&data, 0, sizeof(struct mmc_data)); memset(&data, 0, sizeof(struct mmc_data));
ath6kl_sdio_setup_scat_data(scat_req, scat_req->req_priv, &data); ath6kl_sdio_setup_scat_data(scat_req, &data);
opcode = (scat_req->req & HIF_FIXED_ADDRESS) ? opcode = (scat_req->req & HIF_FIXED_ADDRESS) ?
CMD53_ARG_FIXED_ADDRESS : CMD53_ARG_INCR_ADDRESS; CMD53_ARG_FIXED_ADDRESS : CMD53_ARG_INCR_ADDRESS;
...@@ -282,11 +281,10 @@ static void ath6kl_sdio_cleanup_scat_resource(struct ath6kl_sdio *ar_sdio) ...@@ -282,11 +281,10 @@ static void ath6kl_sdio_cleanup_scat_resource(struct ath6kl_sdio *ar_sdio)
list_del(&s_req->list); list_del(&s_req->list);
spin_unlock_irqrestore(&ar_sdio->scat_lock, flag); spin_unlock_irqrestore(&ar_sdio->scat_lock, flag);
if (s_req->req_priv && s_req->req_priv->busrequest) if (s_req->busrequest)
ath6kl_sdio_free_bus_req(ar_sdio, ath6kl_sdio_free_bus_req(ar_sdio, s_req->busrequest);
s_req->req_priv->busrequest);
kfree(s_req->virt_dma_buf); kfree(s_req->virt_dma_buf);
kfree(s_req->req_priv); kfree(s_req->sgentries);
kfree(s_req); kfree(s_req);
spin_lock_irqsave(&ar_sdio->scat_lock, flag); spin_lock_irqsave(&ar_sdio->scat_lock, flag);
...@@ -300,7 +298,7 @@ static int ath6kl_sdio_setup_scat_resource(struct ath6kl_sdio *ar_sdio, ...@@ -300,7 +298,7 @@ static int ath6kl_sdio_setup_scat_resource(struct ath6kl_sdio *ar_sdio,
{ {
struct hif_scatter_req *s_req; struct hif_scatter_req *s_req;
struct bus_request *bus_req; struct bus_request *bus_req;
int i, scat_req_sz, scat_list_sz; int i, scat_req_sz, scat_list_sz, sg_sz;
/* check if host supports scatter and it meets our requirements */ /* check if host supports scatter and it meets our requirements */
if (ar_sdio->func->card->host->max_segs < MAX_SCATTER_ENTRIES_PER_REQ) { if (ar_sdio->func->card->host->max_segs < MAX_SCATTER_ENTRIES_PER_REQ) {
...@@ -318,16 +316,18 @@ static int ath6kl_sdio_setup_scat_resource(struct ath6kl_sdio *ar_sdio, ...@@ -318,16 +316,18 @@ static int ath6kl_sdio_setup_scat_resource(struct ath6kl_sdio *ar_sdio,
sizeof(struct hif_scatter_item); sizeof(struct hif_scatter_item);
scat_req_sz = sizeof(*s_req) + scat_list_sz; scat_req_sz = sizeof(*s_req) + scat_list_sz;
sg_sz = sizeof(struct scatterlist) * MAX_SCATTER_ENTRIES_PER_REQ;
for (i = 0; i < MAX_SCATTER_REQUESTS; i++) { for (i = 0; i < MAX_SCATTER_REQUESTS; i++) {
/* allocate the scatter request */ /* allocate the scatter request */
s_req = kzalloc(scat_req_sz, GFP_KERNEL); s_req = kzalloc(scat_req_sz, GFP_KERNEL);
if (!s_req) if (!s_req)
goto fail_setup_scat; goto fail_setup_scat;
/* allocate the private request blob */ /* allocate sglist */
s_req->req_priv = kzalloc(sizeof(*s_req->req_priv), GFP_KERNEL); s_req->sgentries = kzalloc(sg_sz, GFP_KERNEL);
if (!s_req->req_priv) { if (!s_req->sgentries) {
kfree(s_req); kfree(s_req);
goto fail_setup_scat; goto fail_setup_scat;
} }
...@@ -335,14 +335,14 @@ static int ath6kl_sdio_setup_scat_resource(struct ath6kl_sdio *ar_sdio, ...@@ -335,14 +335,14 @@ static int ath6kl_sdio_setup_scat_resource(struct ath6kl_sdio *ar_sdio,
/* allocate a bus request for this scatter request */ /* allocate a bus request for this scatter request */
bus_req = ath6kl_sdio_alloc_busreq(ar_sdio); bus_req = ath6kl_sdio_alloc_busreq(ar_sdio);
if (!bus_req) { if (!bus_req) {
kfree(s_req->req_priv); kfree(s_req->sgentries);
kfree(s_req); kfree(s_req);
goto fail_setup_scat; goto fail_setup_scat;
} }
/* assign the scatter request to this bus request */ /* assign the scatter request to this bus request */
bus_req->scat_req = s_req; bus_req->scat_req = s_req;
s_req->req_priv->busrequest = bus_req; s_req->busrequest = bus_req;
/* add it to the scatter pool */ /* add it to the scatter pool */
hif_scatter_req_add(ar_sdio->ar, s_req); hif_scatter_req_add(ar_sdio->ar, s_req);
} }
...@@ -627,7 +627,6 @@ static int ath6kl_sdio_async_rw_scatter(struct ath6kl *ar, ...@@ -627,7 +627,6 @@ static int ath6kl_sdio_async_rw_scatter(struct ath6kl *ar,
struct hif_scatter_req *scat_req) struct hif_scatter_req *scat_req)
{ {
struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar); struct ath6kl_sdio *ar_sdio = ath6kl_sdio_priv(ar);
struct hif_scatter_req_priv *req_priv = scat_req->req_priv;
u32 request = scat_req->req; u32 request = scat_req->req;
int status = 0; int status = 0;
unsigned long flags; unsigned long flags;
...@@ -641,11 +640,11 @@ static int ath6kl_sdio_async_rw_scatter(struct ath6kl *ar, ...@@ -641,11 +640,11 @@ static int ath6kl_sdio_async_rw_scatter(struct ath6kl *ar,
if (request & HIF_SYNCHRONOUS) { if (request & HIF_SYNCHRONOUS) {
sdio_claim_host(ar_sdio->func); sdio_claim_host(ar_sdio->func);
status = ath6kl_sdio_scat_rw(ar_sdio, req_priv->busrequest); status = ath6kl_sdio_scat_rw(ar_sdio, scat_req->busrequest);
sdio_release_host(ar_sdio->func); sdio_release_host(ar_sdio->func);
} else { } else {
spin_lock_irqsave(&ar_sdio->wr_async_lock, flags); spin_lock_irqsave(&ar_sdio->wr_async_lock, flags);
list_add_tail(&req_priv->busrequest->list, &ar_sdio->wr_asyncq); list_add_tail(&scat_req->busrequest->list, &ar_sdio->wr_asyncq);
spin_unlock_irqrestore(&ar_sdio->wr_async_lock, flags); spin_unlock_irqrestore(&ar_sdio->wr_async_lock, flags);
queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work); queue_work(ar->ath6kl_wq, &ar_sdio->wr_async_work);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment