Files
android_kernel_samsung_sm86…/dp/wifi3.0/dp_umac_reset.c
Srinivas Girigowda 6eaf41462a qcacmn: Add context to the logs
Logs without meaningful message or values serves no purpose in debugging.
Hence, add more context to the logs.

Change-Id: Ia463d239a9bf26f292a11bcc71cb1379374c45e4
CRs-Fixed: 3492593
2023-05-18 18:43:13 -07:00

1026 行
29 KiB
C

/*
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. 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 <dp_internal.h>
#include <wlan_cfg.h>
#include <hif.h>
#include <dp_htt.h>
/**
* dp_get_umac_reset_intr_ctx() - Get the interrupt context to be used by
* UMAC reset feature
* @soc: DP soc object
* @intr_ctx: Interrupt context variable to be populated by this API
*
* Return: QDF_STATUS of operation
*/
static QDF_STATUS dp_get_umac_reset_intr_ctx(struct dp_soc *soc, int *intr_ctx)
{
int umac_reset_mask, i;
/**
* Go over all the contexts and check which interrupt context has
* the UMAC reset mask set.
*/
for (i = 0; i < wlan_cfg_get_num_contexts(soc->wlan_cfg_ctx); i++) {
umac_reset_mask = wlan_cfg_get_umac_reset_intr_mask(
soc->wlan_cfg_ctx, i);
if (umac_reset_mask) {
*intr_ctx = i;
return QDF_STATUS_SUCCESS;
}
}
*intr_ctx = -1;
return QDF_STATUS_E_FAILURE;
}
/**
* dp_umac_reset_send_setup_cmd(): Send the UMAC reset setup command
* @soc: dp soc object
*
* Return: QDF_STATUS of operation
*/
static QDF_STATUS
dp_umac_reset_send_setup_cmd(struct dp_soc *soc)
{
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
int msi_vector_count, ret;
uint32_t msi_base_data, msi_vector_start;
struct dp_htt_umac_reset_setup_cmd_params params;
umac_reset_ctx = &soc->umac_reset_ctx;
qdf_mem_zero(&params, sizeof(params));
ret = pld_get_user_msi_assignment(soc->osdev->dev, "DP",
&msi_vector_count, &msi_base_data,
&msi_vector_start);
if (ret) {
params.msi_data = UMAC_RESET_IPC;
} else {
params.msi_data = (umac_reset_ctx->intr_offset %
msi_vector_count) + msi_base_data;
}
params.shmem_addr_low =
qdf_get_lower_32_bits(umac_reset_ctx->shmem_paddr_aligned);
params.shmem_addr_high =
qdf_get_upper_32_bits(umac_reset_ctx->shmem_paddr_aligned);
return dp_htt_umac_reset_send_setup_cmd(soc, &params);
}
QDF_STATUS dp_soc_umac_reset_init(struct cdp_soc_t *txrx_soc)
{
struct dp_soc *soc = (struct dp_soc *)txrx_soc;
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
size_t alloc_size;
QDF_STATUS status;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
return QDF_STATUS_E_NULL_VALUE;
}
if (!soc->features.umac_hw_reset_support) {
dp_umac_reset_info("Target doesn't support the UMAC HW reset feature");
return QDF_STATUS_E_NOSUPPORT;
}
umac_reset_ctx = &soc->umac_reset_ctx;
qdf_mem_zero(umac_reset_ctx, sizeof(*umac_reset_ctx));
umac_reset_ctx->current_state = UMAC_RESET_STATE_WAIT_FOR_TRIGGER;
umac_reset_ctx->shmem_exp_magic_num = DP_UMAC_RESET_SHMEM_MAGIC_NUM;
status = dp_get_umac_reset_intr_ctx(soc, &umac_reset_ctx->intr_offset);
if (QDF_IS_STATUS_ERROR(status)) {
dp_umac_reset_err("No interrupt assignment");
return status;
}
alloc_size = sizeof(htt_umac_hang_recovery_msg_shmem_t) +
DP_UMAC_RESET_SHMEM_ALIGN - 1;
umac_reset_ctx->shmem_vaddr_unaligned =
qdf_mem_alloc_consistent(soc->osdev, soc->osdev->dev,
alloc_size,
&umac_reset_ctx->shmem_paddr_unaligned);
if (!umac_reset_ctx->shmem_vaddr_unaligned) {
dp_umac_reset_err("shmem allocation failed");
return QDF_STATUS_E_NOMEM;
}
umac_reset_ctx->shmem_vaddr_aligned = (void *)(uintptr_t)qdf_roundup(
(uint64_t)(uintptr_t)umac_reset_ctx->shmem_vaddr_unaligned,
DP_UMAC_RESET_SHMEM_ALIGN);
umac_reset_ctx->shmem_paddr_aligned = qdf_roundup(
(uint64_t)umac_reset_ctx->shmem_paddr_unaligned,
DP_UMAC_RESET_SHMEM_ALIGN);
umac_reset_ctx->shmem_size = alloc_size;
/* Write the magic number to the shared memory */
umac_reset_ctx->shmem_vaddr_aligned->magic_num =
DP_UMAC_RESET_SHMEM_MAGIC_NUM;
/* Attach the interrupts */
status = dp_umac_reset_interrupt_attach(soc);
if (QDF_IS_STATUS_ERROR(status)) {
dp_umac_reset_err("Interrupt attach failed");
qdf_mem_free_consistent(soc->osdev, soc->osdev->dev,
umac_reset_ctx->shmem_size,
umac_reset_ctx->shmem_vaddr_unaligned,
umac_reset_ctx->shmem_paddr_unaligned,
0);
return status;
}
/* Send the setup cmd to the target */
return dp_umac_reset_send_setup_cmd(soc);
}
/**
* dp_umac_reset_get_rx_event_from_shmem() - Extract the Rx event from the
* shared memory
* @umac_reset_ctx: UMAC reset context
*
* Return: Extracted Rx event in the form of enumeration umac_reset_rx_event
*/
static enum umac_reset_rx_event
dp_umac_reset_get_rx_event_from_shmem(
struct dp_soc_umac_reset_ctx *umac_reset_ctx)
{
htt_umac_hang_recovery_msg_shmem_t *shmem_vaddr;
uint32_t t2h_msg;
uint8_t num_events = 0;
enum umac_reset_rx_event rx_event;
shmem_vaddr = umac_reset_ctx->shmem_vaddr_aligned;
if (!shmem_vaddr) {
dp_umac_reset_err("Shared memory address is NULL");
goto err;
}
if (shmem_vaddr->magic_num != umac_reset_ctx->shmem_exp_magic_num) {
dp_umac_reset_err("Shared memory got corrupted");
goto err;
}
/* Read the shared memory into a local variable */
t2h_msg = shmem_vaddr->t2h_msg;
/* Clear the shared memory right away */
shmem_vaddr->t2h_msg = 0;
dp_umac_reset_debug("shmem value - t2h_msg: 0x%x", t2h_msg);
rx_event = UMAC_RESET_RX_EVENT_NONE;
if (HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_INITIATE_UMAC_RECOVERY_GET(t2h_msg)) {
rx_event |= UMAC_RESET_RX_EVENT_DO_TRIGGER_RECOVERY;
num_events++;
}
if (HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_INITIATE_TARGET_RECOVERY_SYNC_USING_UMAC_GET(t2h_msg)) {
rx_event |= UMAC_RESET_RX_EVENT_DO_TRIGGER_TR_SYNC;
num_events++;
}
if (HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_DO_PRE_RESET_GET(t2h_msg)) {
rx_event |= UMAC_RESET_RX_EVENT_DO_PRE_RESET;
num_events++;
}
if (HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_DO_POST_RESET_START_GET(t2h_msg)) {
rx_event |= UMAC_RESET_RX_EVENT_DO_POST_RESET_START;
num_events++;
}
if (HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_DO_POST_RESET_COMPLETE_GET(t2h_msg)) {
rx_event |= UMAC_RESET_RX_EVENT_DO_POST_RESET_COMPELTE;
num_events++;
}
dp_umac_reset_debug("deduced rx event: 0x%x", rx_event);
/* There should not be more than 1 event */
if (num_events > 1) {
dp_umac_reset_err("Multiple events(0x%x) got posted", rx_event);
goto err;
}
return rx_event;
err:
qdf_assert_always(0);
return UMAC_RESET_RX_EVENT_ERROR;
}
/**
* dp_umac_reset_peek_rx_event_from_shmem() - Peek the Rx event from the
* shared memory without clearing the bit
* @umac_reset_ctx: UMAC reset context
*
* Return: true if the shared memory has any valid bits set
*/
static inline bool dp_umac_reset_peek_rx_event_from_shmem(
struct dp_soc_umac_reset_ctx *umac_reset_ctx)
{
htt_umac_hang_recovery_msg_shmem_t *shmem_vaddr;
shmem_vaddr = umac_reset_ctx->shmem_vaddr_aligned;
if (!shmem_vaddr) {
dp_umac_reset_debug("Shared memory address is NULL");
goto err;
}
if (shmem_vaddr->magic_num != umac_reset_ctx->shmem_exp_magic_num) {
dp_umac_reset_debug("Shared memory got corrupted");
goto err;
}
/* Read the shared memory into a local variable */
return !!shmem_vaddr->t2h_msg;
err:
return false;
}
/**
* dp_umac_reset_get_rx_event() - Extract the Rx event
* @umac_reset_ctx: UMAC reset context
*
* Return: Extracted Rx event in the form of enumeration umac_reset_rx_event
*/
static inline enum umac_reset_rx_event
dp_umac_reset_get_rx_event(struct dp_soc_umac_reset_ctx *umac_reset_ctx)
{
return dp_umac_reset_get_rx_event_from_shmem(umac_reset_ctx);
}
/**
* dp_umac_reset_validate_n_update_state_machine_on_rx() - Validate the state
* machine for a given rx event and update the state machine
* @umac_reset_ctx: UMAC reset context
* @rx_event: Rx event
* @current_exp_state: Expected state
* @next_state: The state to which the state machine needs to be updated
*
* Return: QDF_STATUS of operation
*/
QDF_STATUS
dp_umac_reset_validate_n_update_state_machine_on_rx(
struct dp_soc_umac_reset_ctx *umac_reset_ctx,
enum umac_reset_rx_event rx_event,
enum umac_reset_state current_exp_state,
enum umac_reset_state next_state)
{
if (umac_reset_ctx->current_state != current_exp_state) {
dp_umac_reset_err("state machine validation failed on rx event: %d, current state is %d",
rx_event,
umac_reset_ctx->current_state);
if ((rx_event != UMAC_RESET_RX_EVENT_DO_TRIGGER_RECOVERY) &&
(rx_event != UMAC_RESET_RX_EVENT_DO_TRIGGER_TR_SYNC))
qdf_assert_always(0);
return QDF_STATUS_E_FAILURE;
}
/* Update the state */
umac_reset_ctx->current_state = next_state;
return QDF_STATUS_SUCCESS;
}
static bool dp_umac_reset_peek_rx_event(void *dp_ctx)
{
struct dp_intr *int_ctx = (struct dp_intr *)dp_ctx;
struct dp_soc *soc = int_ctx->soc;
struct dp_soc_umac_reset_ctx *umac_reset_ctx = &soc->umac_reset_ctx;
return dp_umac_reset_peek_rx_event_from_shmem(umac_reset_ctx);
}
/**
* dp_check_umac_reset_in_progress() - Check if Umac reset is in progress
* @soc: dp soc handle
*
* Return: true if Umac reset is in progress or false otherwise
*/
bool dp_check_umac_reset_in_progress(struct dp_soc *soc)
{
return !!soc->umac_reset_ctx.intr_ctx_bkp;
}
#if !defined(WLAN_FEATURE_11BE_MLO) || !defined(WLAN_MLO_MULTI_CHIP)
/**
* dp_umac_reset_initiate_umac_recovery() - Initiate Umac reset session
* @soc: dp soc handle
* @umac_reset_ctx: Umac reset context
* @rx_event: Rx event received
* @is_target_recovery: Flag to indicate if it is triggered for target recovery
*
* Return: status
*/
static QDF_STATUS dp_umac_reset_initiate_umac_recovery(struct dp_soc *soc,
struct dp_soc_umac_reset_ctx *umac_reset_ctx,
enum umac_reset_rx_event rx_event,
bool is_target_recovery)
{
return dp_umac_reset_validate_n_update_state_machine_on_rx(
umac_reset_ctx, rx_event,
UMAC_RESET_STATE_WAIT_FOR_TRIGGER,
UMAC_RESET_STATE_DO_TRIGGER_RECEIVED);
}
/**
* dp_umac_reset_complete_umac_recovery() - Complete Umac reset session
* @soc: dp soc handle
*
* Return: void
*/
static void dp_umac_reset_complete_umac_recovery(struct dp_soc *soc)
{
dp_umac_reset_alert("Umac reset was handled successfully on soc %pK",
soc);
}
/**
* dp_umac_reset_handle_action_cb() - Function to call action callback
* @soc: dp soc handle
* @umac_reset_ctx: Umac reset context
* @action: Action to call the callback for
*
* Return: QDF_STATUS status
*/
static QDF_STATUS dp_umac_reset_handle_action_cb(struct dp_soc *soc,
struct dp_soc_umac_reset_ctx *umac_reset_ctx,
enum umac_reset_action action)
{
QDF_STATUS status = QDF_STATUS_SUCCESS;
if (!umac_reset_ctx->rx_actions.cb[action]) {
dp_umac_reset_err("rx callback is NULL");
return QDF_STATUS_E_FAILURE;
}
status = umac_reset_ctx->rx_actions.cb[action](soc);
return QDF_STATUS_SUCCESS;
}
/**
* dp_umac_reset_post_tx_cmd() - Iterate partner socs and post Tx command
* @umac_reset_ctx: UMAC reset context
* @tx_cmd: Tx command to be posted
*
* Return: QDF status of operation
*/
static QDF_STATUS
dp_umac_reset_post_tx_cmd(struct dp_soc_umac_reset_ctx *umac_reset_ctx,
enum umac_reset_tx_cmd tx_cmd)
{
struct dp_soc *soc = container_of(umac_reset_ctx, struct dp_soc,
umac_reset_ctx);
dp_umac_reset_post_tx_cmd_via_shmem(soc, &tx_cmd, 0);
return QDF_STATUS_SUCCESS;
}
/**
* dp_umac_reset_initiator_check() - Check if soc is the Umac reset initiator
* @soc: dp soc handle
*
* Return: true if the soc is initiator or false otherwise
*/
static bool dp_umac_reset_initiator_check(struct dp_soc *soc)
{
return true;
}
/**
* dp_umac_reset_target_recovery_check() - Check if this is for target recovery
* @soc: dp soc handle
*
* Return: true if the session is for target recovery or false otherwise
*/
static bool dp_umac_reset_target_recovery_check(struct dp_soc *soc)
{
return false;
}
/**
* dp_umac_reset_is_soc_ignored() - Check if this soc is to be ignored
* @soc: dp soc handle
*
* Return: true if the soc is ignored or false otherwise
*/
static bool dp_umac_reset_is_soc_ignored(struct dp_soc *soc)
{
return false;
}
#endif
/**
* dp_umac_reset_rx_event_handler() - Main Rx event handler for UMAC reset
* @dp_ctx: Interrupt context corresponding to UMAC reset
*
* Return: 0 incase of success, else failure
*/
static int dp_umac_reset_rx_event_handler(void *dp_ctx)
{
struct dp_intr *int_ctx = (struct dp_intr *)dp_ctx;
struct dp_soc *soc = int_ctx->soc;
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
enum umac_reset_rx_event rx_event;
QDF_STATUS status = QDF_STATUS_E_INVAL;
enum umac_reset_action action = UMAC_RESET_ACTION_NONE;
bool target_recovery = false;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
goto exit;
}
umac_reset_ctx = &soc->umac_reset_ctx;
dp_umac_reset_debug("enter");
rx_event = dp_umac_reset_get_rx_event(umac_reset_ctx);
if (umac_reset_ctx->pending_action) {
if (rx_event != UMAC_RESET_RX_EVENT_NONE) {
dp_umac_reset_err("Invalid value(%u) for Rx event when "
"action %u is pending\n", rx_event,
umac_reset_ctx->pending_action);
qdf_assert_always(0);
}
}
switch (rx_event) {
case UMAC_RESET_RX_EVENT_NONE:
if (umac_reset_ctx->pending_action)
action = umac_reset_ctx->pending_action;
else
dp_umac_reset_err("Not a UMAC reset event!!");
status = QDF_STATUS_SUCCESS;
break;
case UMAC_RESET_RX_EVENT_DO_TRIGGER_TR_SYNC:
target_recovery = true;
/* Fall through */
case UMAC_RESET_RX_EVENT_DO_TRIGGER_RECOVERY:
status =
dp_umac_reset_initiate_umac_recovery(soc, umac_reset_ctx,
rx_event, target_recovery);
if (status != QDF_STATUS_SUCCESS)
break;
umac_reset_ctx->ts.trigger_start =
qdf_get_log_timestamp_usecs();
action = UMAC_RESET_ACTION_DO_TRIGGER_RECOVERY;
break;
case UMAC_RESET_RX_EVENT_DO_PRE_RESET:
status = dp_umac_reset_validate_n_update_state_machine_on_rx(
umac_reset_ctx, rx_event,
UMAC_RESET_STATE_WAIT_FOR_DO_PRE_RESET,
UMAC_RESET_STATE_DO_PRE_RESET_RECEIVED);
umac_reset_ctx->ts.pre_reset_start =
qdf_get_log_timestamp_usecs();
action = UMAC_RESET_ACTION_DO_PRE_RESET;
break;
case UMAC_RESET_RX_EVENT_DO_POST_RESET_START:
status = dp_umac_reset_validate_n_update_state_machine_on_rx(
umac_reset_ctx, rx_event,
UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_START,
UMAC_RESET_STATE_DO_POST_RESET_START_RECEIVED);
umac_reset_ctx->ts.post_reset_start =
qdf_get_log_timestamp_usecs();
action = UMAC_RESET_ACTION_DO_POST_RESET_START;
break;
case UMAC_RESET_RX_EVENT_DO_POST_RESET_COMPELTE:
status = dp_umac_reset_validate_n_update_state_machine_on_rx(
umac_reset_ctx, rx_event,
UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_COMPLETE,
UMAC_RESET_STATE_DO_POST_RESET_COMPLETE_RECEIVED);
umac_reset_ctx->ts.post_reset_complete_start =
qdf_get_log_timestamp_usecs();
action = UMAC_RESET_ACTION_DO_POST_RESET_COMPLETE;
break;
case UMAC_RESET_RX_EVENT_ERROR:
dp_umac_reset_err("Error Rx event");
goto exit;
default:
dp_umac_reset_err("Invalid value(%u) for Rx event", rx_event);
goto exit;
}
/* Call the handler for this event */
if (QDF_IS_STATUS_SUCCESS(status)) {
dp_umac_reset_handle_action_cb(soc, umac_reset_ctx, action);
}
exit:
return qdf_status_to_os_return(status);
}
QDF_STATUS dp_umac_reset_interrupt_attach(struct dp_soc *soc)
{
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
int msi_vector_count, ret;
uint32_t msi_base_data, msi_vector_start;
uint32_t umac_reset_vector, umac_reset_irq;
QDF_STATUS status;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
return QDF_STATUS_E_NULL_VALUE;
}
if (!soc->features.umac_hw_reset_support) {
dp_umac_reset_info("Target doesn't support the UMAC HW reset feature");
return QDF_STATUS_SUCCESS;
}
umac_reset_ctx = &soc->umac_reset_ctx;
if (pld_get_enable_intx(soc->osdev->dev)) {
dp_umac_reset_err("UMAC reset is not supported in legacy interrupt mode");
return QDF_STATUS_E_FAILURE;
}
ret = pld_get_user_msi_assignment(soc->osdev->dev, "DP",
&msi_vector_count, &msi_base_data,
&msi_vector_start);
if (ret) {
/* UMAC reset uses IPC interrupt for AHB devices */
status = hif_get_umac_reset_irq(soc->hif_handle,
&umac_reset_irq);
if (status) {
dp_umac_reset_err("get_umac_reset_irq failed status %d",
status);
return QDF_STATUS_E_FAILURE;
}
} else {
if (umac_reset_ctx->intr_offset < 0 ||
umac_reset_ctx->intr_offset >= WLAN_CFG_INT_NUM_CONTEXTS) {
dp_umac_reset_err("Invalid interrupt offset: %d",
umac_reset_ctx->intr_offset);
return QDF_STATUS_E_FAILURE;
}
umac_reset_vector = msi_vector_start +
(umac_reset_ctx->intr_offset % msi_vector_count);
/* Get IRQ number */
umac_reset_irq = pld_get_msi_irq(soc->osdev->dev,
umac_reset_vector);
}
/* Finally register to this IRQ from HIF layer */
return hif_register_umac_reset_handler(
soc->hif_handle,
dp_umac_reset_peek_rx_event,
dp_umac_reset_rx_event_handler,
&soc->intr_ctx[umac_reset_ctx->intr_offset],
umac_reset_irq);
}
QDF_STATUS dp_umac_reset_interrupt_detach(struct dp_soc *soc)
{
if (!soc) {
dp_umac_reset_err("DP SOC is null");
return QDF_STATUS_E_NULL_VALUE;
}
if (!soc->features.umac_hw_reset_support) {
dp_umac_reset_info("Target doesn't support the UMAC HW reset feature");
return QDF_STATUS_SUCCESS;
}
return hif_unregister_umac_reset_handler(soc->hif_handle);
}
QDF_STATUS dp_umac_reset_register_rx_action_callback(
struct dp_soc *soc,
QDF_STATUS (*handler)(struct dp_soc *soc),
enum umac_reset_action action)
{
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
return QDF_STATUS_E_NULL_VALUE;
}
if (!soc->features.umac_hw_reset_support) {
dp_umac_reset_info("Target doesn't support UMAC HW reset");
return QDF_STATUS_E_NOSUPPORT;
}
if (action >= UMAC_RESET_ACTION_MAX) {
dp_umac_reset_err("invalid action: %d", action);
return QDF_STATUS_E_INVAL;
}
umac_reset_ctx = &soc->umac_reset_ctx;
umac_reset_ctx->rx_actions.cb[action] = handler;
return QDF_STATUS_SUCCESS;
}
/**
* dp_umac_reset_post_tx_cmd_via_shmem() - Post Tx command using shared memory
* @soc: DP soc object
* @ctxt: Tx command to be posted
* @chip_id: Chip id of the mlo soc
*
* Return: None
*/
void
dp_umac_reset_post_tx_cmd_via_shmem(struct dp_soc *soc, void *ctxt, int chip_id)
{
enum umac_reset_tx_cmd tx_cmd = *((enum umac_reset_tx_cmd *)ctxt);
htt_umac_hang_recovery_msg_shmem_t *shmem_vaddr;
struct dp_soc_umac_reset_ctx *umac_reset_ctx = &soc->umac_reset_ctx;
bool initiator;
QDF_STATUS status;
if (dp_umac_reset_is_soc_ignored(soc)) {
dp_umac_reset_debug("Skipping soc (chip id %d)", chip_id);
return;
}
shmem_vaddr = umac_reset_ctx->shmem_vaddr_aligned;
if (!shmem_vaddr) {
dp_umac_reset_err("Shared memory address is NULL");
return;
}
dp_umac_reset_debug("Sending txcmd %u for chip id %u", tx_cmd, chip_id);
switch (tx_cmd) {
case UMAC_RESET_TX_CMD_TRIGGER_DONE:
/* Send htt message to the partner soc */
initiator = dp_umac_reset_initiator_check(soc);
if (!initiator)
umac_reset_ctx->current_state =
UMAC_RESET_STATE_WAIT_FOR_DO_PRE_RESET;
status = dp_htt_umac_reset_send_start_pre_reset_cmd(soc,
initiator,
!dp_umac_reset_target_recovery_check(soc));
if (status != QDF_STATUS_SUCCESS) {
dp_umac_reset_err("Unable to send Umac trigger");
qdf_assert_always(0);
} else {
dp_umac_reset_debug("Sent trigger for soc (chip_id %d)",
chip_id);
}
umac_reset_ctx->ts.trigger_done = qdf_get_log_timestamp_usecs();
break;
case UMAC_RESET_TX_CMD_PRE_RESET_DONE:
HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_PRE_RESET_DONE_SET(
shmem_vaddr->h2t_msg, 1);
umac_reset_ctx->ts.pre_reset_done =
qdf_get_log_timestamp_usecs();
break;
case UMAC_RESET_TX_CMD_POST_RESET_START_DONE:
HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_POST_RESET_START_DONE_SET(
shmem_vaddr->h2t_msg, 1);
umac_reset_ctx->ts.post_reset_done =
qdf_get_log_timestamp_usecs();
break;
case UMAC_RESET_TX_CMD_POST_RESET_COMPLETE_DONE:
HTT_UMAC_HANG_RECOVERY_MSG_SHMEM_POST_RESET_COMPLETE_DONE_SET(
shmem_vaddr->h2t_msg, 1);
umac_reset_ctx->ts.post_reset_complete_done =
qdf_get_log_timestamp_usecs();
break;
default:
dp_umac_reset_err("Invalid tx cmd: %d", tx_cmd);
return;
}
return;
}
/**
* dp_umac_reset_notify_target() - Notify the target about completion of action.
* @umac_reset_ctx: UMAC reset context
*
* This API figures out the Tx command that needs to be posted based on the
* current state in the state machine. Also, updates the state machine once the
* Tx command has been posted.
*
* Return: QDF status of operation
*/
static QDF_STATUS
dp_umac_reset_notify_target(struct dp_soc_umac_reset_ctx *umac_reset_ctx)
{
enum umac_reset_state next_state;
enum umac_reset_tx_cmd tx_cmd;
QDF_STATUS status;
switch (umac_reset_ctx->current_state) {
case UMAC_RESET_STATE_HOST_TRIGGER_DONE:
tx_cmd = UMAC_RESET_TX_CMD_TRIGGER_DONE;
next_state = UMAC_RESET_STATE_WAIT_FOR_DO_PRE_RESET;
break;
case UMAC_RESET_STATE_HOST_PRE_RESET_DONE:
tx_cmd = UMAC_RESET_TX_CMD_PRE_RESET_DONE;
next_state = UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_START;
break;
case UMAC_RESET_STATE_HOST_POST_RESET_START_DONE:
tx_cmd = UMAC_RESET_TX_CMD_POST_RESET_START_DONE;
next_state = UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_COMPLETE;
break;
case UMAC_RESET_STATE_HOST_POST_RESET_COMPLETE_DONE:
tx_cmd = UMAC_RESET_TX_CMD_POST_RESET_COMPLETE_DONE;
next_state = UMAC_RESET_STATE_WAIT_FOR_TRIGGER;
break;
default:
dp_umac_reset_err("Invalid state(%d) during Tx",
umac_reset_ctx->current_state);
qdf_assert_always(0);
return QDF_STATUS_E_FAILURE;
}
/*
* Update the state machine before sending the command to firmware
* as we might get the response from firmware even before the state
* is updated.
*/
umac_reset_ctx->current_state = next_state;
status = dp_umac_reset_post_tx_cmd(umac_reset_ctx, tx_cmd);
if (QDF_IS_STATUS_ERROR(status)) {
dp_umac_reset_err("Couldn't post Tx cmd");
qdf_assert_always(0);
return status;
}
return status;
}
/**
* dp_umac_reset_notify_completion() - Notify that a given action has been
* completed
* @soc: DP soc object
* @next_state: The state to which the state machine needs to be updated due to
* this completion
*
* Return: QDF status of operation
*/
static QDF_STATUS dp_umac_reset_notify_completion(
struct dp_soc *soc,
enum umac_reset_state next_state)
{
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
return QDF_STATUS_E_NULL_VALUE;
}
umac_reset_ctx = &soc->umac_reset_ctx;
/* Update the state first */
umac_reset_ctx->current_state = next_state;
return dp_umac_reset_notify_target(umac_reset_ctx);
}
static void dp_umac_wait_for_quiescent_state(struct dp_soc *soc)
{
enum umac_reset_state current_state;
do {
msleep(10);
barrier();
current_state = soc->umac_reset_ctx.current_state;
} while ((current_state == UMAC_RESET_STATE_DO_TRIGGER_RECEIVED) ||
(current_state == UMAC_RESET_STATE_DO_PRE_RESET_RECEIVED) ||
(current_state == UMAC_RESET_STATE_DO_POST_RESET_START_RECEIVED) ||
(current_state == UMAC_RESET_STATE_DO_POST_RESET_COMPLETE_RECEIVED));
}
QDF_STATUS dp_umac_reset_notify_action_completion(
struct dp_soc *soc,
enum umac_reset_action action)
{
enum umac_reset_state next_state;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
return QDF_STATUS_E_NULL_VALUE;
}
if (!soc->features.umac_hw_reset_support) {
dp_umac_reset_info("Target doesn't support the UMAC HW reset feature");
return QDF_STATUS_E_NOSUPPORT;
}
switch (action) {
case UMAC_RESET_ACTION_DO_TRIGGER_RECOVERY:
next_state = UMAC_RESET_STATE_HOST_TRIGGER_DONE;
break;
case UMAC_RESET_ACTION_DO_PRE_RESET:
next_state = UMAC_RESET_STATE_HOST_PRE_RESET_DONE;
break;
case UMAC_RESET_ACTION_DO_POST_RESET_START:
next_state = UMAC_RESET_STATE_HOST_POST_RESET_START_DONE;
break;
case UMAC_RESET_ACTION_DO_POST_RESET_COMPLETE:
next_state = UMAC_RESET_STATE_HOST_POST_RESET_COMPLETE_DONE;
break;
case UMAC_RESET_ACTION_ABORT:
next_state = UMAC_RESET_STATE_WAIT_FOR_TRIGGER;
break;
default:
dp_umac_reset_err("Invalid action: %u", action);
return QDF_STATUS_E_FAILURE;
}
return dp_umac_reset_notify_completion(soc, next_state);
}
/**
* dp_soc_umac_reset_deinit() - Deinitialize the umac reset module
* @txrx_soc: DP soc object
*
* Return: QDF status of operation
*/
QDF_STATUS dp_soc_umac_reset_deinit(struct cdp_soc_t *txrx_soc)
{
struct dp_soc *soc = (struct dp_soc *)txrx_soc;
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
qdf_nbuf_t nbuf_list;
if (!soc) {
dp_umac_reset_err("DP SOC is null");
return QDF_STATUS_E_NULL_VALUE;
}
if (!soc->features.umac_hw_reset_support) {
dp_umac_reset_info("No target support for UMAC reset feature");
return QDF_STATUS_E_NOSUPPORT;
}
if (dp_check_umac_reset_in_progress(soc)) {
dp_umac_reset_info("Cleaning up Umac reset context");
dp_umac_wait_for_quiescent_state(soc);
dp_resume_reo_send_cmd(soc);
dp_umac_reset_notify_action_completion(soc,
UMAC_RESET_ACTION_ABORT);
}
nbuf_list = soc->umac_reset_ctx.nbuf_list;
soc->umac_reset_ctx.nbuf_list = NULL;
while (nbuf_list) {
qdf_nbuf_t nbuf = nbuf_list->next;
qdf_nbuf_free(nbuf_list);
nbuf_list = nbuf;
}
dp_umac_reset_interrupt_detach(soc);
umac_reset_ctx = &soc->umac_reset_ctx;
qdf_mem_free_consistent(soc->osdev, soc->osdev->dev,
umac_reset_ctx->shmem_size,
umac_reset_ctx->shmem_vaddr_unaligned,
umac_reset_ctx->shmem_paddr_unaligned,
0);
return QDF_STATUS_SUCCESS;
}
static inline const char *dp_umac_reset_current_state_to_str(
enum umac_reset_state current_state)
{
switch (current_state) {
case UMAC_RESET_STATE_WAIT_FOR_TRIGGER:
return "UMAC_RESET_STATE_WAIT_FOR_TRIGGER";
case UMAC_RESET_STATE_DO_TRIGGER_RECEIVED:
return "UMAC_RESET_STATE_DO_TRIGGER_RECEIVED";
case UMAC_RESET_STATE_HOST_TRIGGER_DONE:
return "UMAC_RESET_STATE_HOST_TRIGGER_DONE";
case UMAC_RESET_STATE_WAIT_FOR_DO_PRE_RESET:
return "UMAC_RESET_STATE_WAIT_FOR_DO_PRE_RESET";
case UMAC_RESET_STATE_DO_PRE_RESET_RECEIVED:
return "UMAC_RESET_STATE_DO_PRE_RESET_RECEIVED";
case UMAC_RESET_STATE_HOST_PRE_RESET_DONE:
return "UMAC_RESET_STATE_HOST_PRE_RESET_DONE";
case UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_START:
return "UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_START";
case UMAC_RESET_STATE_DO_POST_RESET_START_RECEIVED:
return "UMAC_RESET_STATE_DO_POST_RESET_START_RECEIVED";
case UMAC_RESET_STATE_HOST_POST_RESET_START_DONE:
return "UMAC_RESET_STATE_HOST_POST_RESET_START_DONE";
case UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_COMPLETE:
return "UMAC_RESET_STATE_WAIT_FOR_DO_POST_RESET_COMPLETE";
case UMAC_RESET_STATE_DO_POST_RESET_COMPLETE_RECEIVED:
return "UMAC_RESET_STATE_DO_POST_RESET_COMPLETE_RECEIVED";
case UMAC_RESET_STATE_HOST_POST_RESET_COMPLETE_DONE:
return "UMAC_RESET_STATE_HOST_POST_RESET_COMPLETE_DONE";
default:
return "Invalid UMAC Reset state";
}
}
static inline const char *dp_umac_reset_pending_action_to_str(
enum umac_reset_rx_event pending_action)
{
switch (pending_action) {
case UMAC_RESET_RX_EVENT_NONE:
return "UMAC_RESET_RX_EVENT_NONE";
case UMAC_RESET_RX_EVENT_DO_TRIGGER_RECOVERY:
return "UMAC_RESET_RX_EVENT_DO_TRIGGER_RECOVERY";
case UMAC_RESET_RX_EVENT_DO_TRIGGER_TR_SYNC:
return "UMAC_RESET_RX_EVENT_DO_TRIGGER_TR_SYNC";
case UMAC_RESET_RX_EVENT_DO_PRE_RESET:
return "UMAC_RESET_RX_EVENT_DO_PRE_RESET";
case UMAC_RESET_RX_EVENT_DO_POST_RESET_START:
return "UMAC_RESET_RX_EVENT_DO_POST_RESET_START";
case UMAC_RESET_RX_EVENT_DO_POST_RESET_COMPELTE:
return "UMAC_RESET_RX_EVENT_DO_POST_RESET_COMPELTE";
default:
return "Invalid pending action";
}
}
QDF_STATUS dp_umac_reset_stats_print(struct dp_soc *soc)
{
struct dp_soc_umac_reset_ctx *umac_reset_ctx;
umac_reset_ctx = &soc->umac_reset_ctx;
DP_UMAC_RESET_PRINT_STATS("UMAC reset stats for soc:%pK\n"
"\t\ttrigger time :%u us\n"
"\t\tPre_reset time :%u us\n"
"\t\tPost_reset time :%u us\n"
"\t\tPost_reset_complete time :%u us\n"
"\t\tCurrent state :%s\n"
"\t\tPending action :%s",
soc,
umac_reset_ctx->ts.trigger_done -
umac_reset_ctx->ts.trigger_start,
umac_reset_ctx->ts.pre_reset_done -
umac_reset_ctx->ts.pre_reset_start,
umac_reset_ctx->ts.post_reset_done -
umac_reset_ctx->ts.post_reset_start,
umac_reset_ctx->ts.post_reset_complete_done -
umac_reset_ctx->ts.post_reset_complete_start,
dp_umac_reset_current_state_to_str(
umac_reset_ctx->current_state),
dp_umac_reset_pending_action_to_str(
umac_reset_ctx->pending_action));
return dp_mlo_umac_reset_stats_print(soc);
}