/* * Copyright (c) 2015-2018 The Linux Foundation. All rights reserved. * * Permission to use, copy, modify, and/or distribute this software for * any purpose with or without fee is hereby granted, provided that the * above copyright notice and this permission notice appear in all * copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. */ #include "targcfg.h" #include "qdf_lock.h" #include "qdf_status.h" #include "qdf_status.h" #include /* qdf_atomic_read */ #include #include "hif_io32.h" #include #include "regtable.h" #define ATH_MODULE_NAME hif #include #include "hif_main.h" #include "ce_api.h" #include "ce_bmi.h" #include "qdf_trace.h" #include "hif_debug.h" #include "bmi_msg.h" #include "qdf_module.h" /* Track a BMI transaction that is in progress */ #ifndef BIT #define BIT(n) (1 << (n)) #endif enum { BMI_REQ_SEND_DONE = BIT(0), /* the bmi tx completion */ BMI_RESP_RECV_DONE = BIT(1), /* the bmi respond is received */ }; struct BMI_transaction { struct HIF_CE_state *hif_state; qdf_semaphore_t bmi_transaction_sem; uint8_t *bmi_request_host; /* Req BMI msg in Host addr space */ qdf_dma_addr_t bmi_request_CE; /* Req BMI msg in CE addr space */ uint32_t bmi_request_length; /* Length of BMI request */ uint8_t *bmi_response_host; /* Rsp BMI msg in Host addr space */ qdf_dma_addr_t bmi_response_CE; /* Rsp BMI msg in CE addr space */ unsigned int bmi_response_length; /* Length of received response */ unsigned int bmi_timeout_ms; uint32_t bmi_transaction_flags; /* flags for the transcation */ }; /* * send/recv completion functions for BMI. * NB: The "net_buf" parameter is actually just a * straight buffer, not an sk_buff. */ void hif_bmi_send_done(struct CE_handle *copyeng, void *ce_context, void *transfer_context, qdf_dma_addr_t data, unsigned int nbytes, unsigned int transfer_id, unsigned int sw_index, unsigned int hw_index, uint32_t toeplitz_hash_result) { struct BMI_transaction *transaction = (struct BMI_transaction *)transfer_context; #ifdef BMI_RSP_POLLING /* * Fix EV118783, Release a semaphore after sending * no matter whether a response is been expecting now. */ qdf_semaphore_release(&transaction->bmi_transaction_sem); #else /* * If a response is anticipated, we'll complete the * transaction if the response has been received. * If no response is anticipated, complete the * transaction now. */ transaction->bmi_transaction_flags |= BMI_REQ_SEND_DONE; /* resp is't needed or has already been received, * never assume resp comes later then this */ if (!transaction->bmi_response_CE || (transaction->bmi_transaction_flags & BMI_RESP_RECV_DONE)) { qdf_semaphore_release(&transaction->bmi_transaction_sem); } #endif } #ifndef BMI_RSP_POLLING void hif_bmi_recv_data(struct CE_handle *copyeng, void *ce_context, void *transfer_context, qdf_dma_addr_t data, unsigned int nbytes, unsigned int transfer_id, unsigned int flags) { struct BMI_transaction *transaction = (struct BMI_transaction *)transfer_context; transaction->bmi_response_length = nbytes; transaction->bmi_transaction_flags |= BMI_RESP_RECV_DONE; /* when both send/recv are done, the sem can be released */ if (transaction->bmi_transaction_flags & BMI_REQ_SEND_DONE) qdf_semaphore_release(&transaction->bmi_transaction_sem); } #endif /* Timeout for BMI message exchange */ #define HIF_EXCHANGE_BMI_MSG_TIMEOUT 6000 QDF_STATUS hif_exchange_bmi_msg(struct hif_opaque_softc *hif_ctx, qdf_dma_addr_t bmi_cmd_da, qdf_dma_addr_t bmi_rsp_da, uint8_t *bmi_request, uint32_t request_length, uint8_t *bmi_response, uint32_t *bmi_response_lengthp, uint32_t TimeoutMS) { struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx); struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(hif_ctx); struct HIF_CE_pipe_info *send_pipe_info = &(hif_state->pipe_info[BMI_CE_NUM_TO_TARG]); struct CE_handle *ce_send_hdl = send_pipe_info->ce_hdl; qdf_dma_addr_t CE_request, CE_response = 0; struct BMI_transaction *transaction = NULL; int status = QDF_STATUS_SUCCESS; struct HIF_CE_pipe_info *recv_pipe_info = &(hif_state->pipe_info[BMI_CE_NUM_TO_HOST]); struct CE_handle *ce_recv = recv_pipe_info->ce_hdl; unsigned int mux_id = 0; unsigned int transaction_id = 0xffff; unsigned int user_flags = 0; #ifdef BMI_RSP_POLLING qdf_dma_addr_t buf; unsigned int completed_nbytes, id, flags; int i; #endif transaction = (struct BMI_transaction *)qdf_mem_malloc(sizeof(*transaction)); if (unlikely(!transaction)) { HIF_ERROR("%s: no memory", __func__); return QDF_STATUS_E_NOMEM; } transaction_id = (mux_id & MUX_ID_MASK) | (transaction_id & TRANSACTION_ID_MASK); #ifdef QCA_WIFI_3_0 user_flags &= DESC_DATA_FLAG_MASK; #endif A_TARGET_ACCESS_LIKELY(scn); /* Initialize bmi_transaction_sem to block */ qdf_semaphore_init(&transaction->bmi_transaction_sem); qdf_semaphore_acquire(&transaction->bmi_transaction_sem); transaction->hif_state = hif_state; transaction->bmi_request_host = bmi_request; transaction->bmi_request_length = request_length; transaction->bmi_response_length = 0; transaction->bmi_timeout_ms = TimeoutMS; transaction->bmi_transaction_flags = 0; /* * CE_request = dma_map_single(dev, * (void *)bmi_request, request_length, DMA_TO_DEVICE); */ CE_request = bmi_cmd_da; transaction->bmi_request_CE = CE_request; if (bmi_response) { /* * CE_response = dma_map_single(dev, bmi_response, * BMI_DATASZ_MAX, DMA_FROM_DEVICE); */ CE_response = bmi_rsp_da; transaction->bmi_response_host = bmi_response; transaction->bmi_response_CE = CE_response; /* dma_cache_sync(dev, bmi_response, * BMI_DATASZ_MAX, DMA_FROM_DEVICE); */ qdf_mem_dma_sync_single_for_device(scn->qdf_dev, CE_response, BMI_DATASZ_MAX, DMA_FROM_DEVICE); ce_recv_buf_enqueue(ce_recv, transaction, transaction->bmi_response_CE); /* NB: see HIF_BMI_recv_done */ } else { transaction->bmi_response_host = NULL; transaction->bmi_response_CE = 0; } /* dma_cache_sync(dev, bmi_request, request_length, DMA_TO_DEVICE); */ qdf_mem_dma_sync_single_for_device(scn->qdf_dev, CE_request, request_length, DMA_TO_DEVICE); status = ce_send(ce_send_hdl, transaction, CE_request, request_length, transaction_id, 0, user_flags); ASSERT(status == QDF_STATUS_SUCCESS); /* NB: see hif_bmi_send_done */ /* TBDXXX: handle timeout */ /* Wait for BMI request/response transaction to complete */ /* Always just wait for BMI request here if * BMI_RSP_POLLING is defined */ if (qdf_semaphore_acquire_timeout (&transaction->bmi_transaction_sem, HIF_EXCHANGE_BMI_MSG_TIMEOUT)) { HIF_ERROR("%s: Fatal error, BMI transaction timeout. Please check the HW interface!!", __func__); qdf_mem_free(transaction); return QDF_STATUS_E_TIMEOUT; } if (bmi_response) { #ifdef BMI_RSP_POLLING /* Fix EV118783, do not wait a semaphore for the BMI response * since the relative interruption may be lost. * poll the BMI response instead. */ i = 0; while (ce_completed_recv_next( ce_recv, NULL, NULL, &buf, &completed_nbytes, &id, &flags) != QDF_STATUS_SUCCESS) { if (i++ > BMI_RSP_TO_MILLISEC) { HIF_ERROR("%s:error, can't get bmi response", __func__); status = QDF_STATUS_E_BUSY; break; } OS_DELAY(1000); } if ((status == QDF_STATUS_SUCCESS) && bmi_response_lengthp) *bmi_response_lengthp = completed_nbytes; #else if ((status == QDF_STATUS_SUCCESS) && bmi_response_lengthp) { *bmi_response_lengthp = transaction->bmi_response_length; } #endif } /* dma_unmap_single(dev, transaction->bmi_request_CE, * request_length, DMA_TO_DEVICE); * bus_unmap_single(scn->sc_osdev, * transaction->bmi_request_CE, * request_length, BUS_DMA_TODEVICE); */ if (status != QDF_STATUS_SUCCESS) { qdf_dma_addr_t unused_buffer; unsigned int unused_nbytes; unsigned int unused_id; unsigned int toeplitz_hash_result; ce_cancel_send_next(ce_send_hdl, NULL, NULL, &unused_buffer, &unused_nbytes, &unused_id, &toeplitz_hash_result); } A_TARGET_ACCESS_UNLIKELY(scn); qdf_mem_free(transaction); return status; } qdf_export_symbol(hif_exchange_bmi_msg); #ifdef BMI_RSP_POLLING #define BMI_RSP_CB_REGISTER 0 #else #define BMI_RSP_CB_REGISTER 1 #endif /** * hif_register_bmi_callbacks() - register bmi callbacks * @hif_sc: hif context * * Bmi phase uses different copy complete callbacks than mission mode. */ void hif_register_bmi_callbacks(struct hif_opaque_softc *hif_ctx) { struct HIF_CE_pipe_info *pipe_info; struct hif_softc *hif_sc = HIF_GET_SOFTC(hif_ctx); struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(hif_sc); /* * Initially, establish CE completion handlers for use with BMI. * These are overwritten with generic handlers after we exit BMI phase. */ pipe_info = &hif_state->pipe_info[BMI_CE_NUM_TO_TARG]; ce_send_cb_register(pipe_info->ce_hdl, hif_bmi_send_done, pipe_info, 0); if (BMI_RSP_CB_REGISTER) { pipe_info = &hif_state->pipe_info[BMI_CE_NUM_TO_HOST]; ce_recv_cb_register( pipe_info->ce_hdl, hif_bmi_recv_data, pipe_info, 0); } }