mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
- Updates licenses for DCE-KMD files that are shared with HVRTOS.
- Update from GPL-2.0 to MIT as we use these files in both
open source and closed source context.
JIRA TDS-16741
Change-Id: Icf7aeb737f2f3b294bb9ff9c36d5ed7220c13dea
Signed-off-by: anupamg <anupamg@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3293404
GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
Reviewed-by: svcacv <svcacv@nvidia.com>
Reviewed-by: Vinod Gopalakrishnakurup <vinodg@nvidia.com>
557 lines
14 KiB
C
557 lines
14 KiB
C
// SPDX-License-Identifier: MIT
|
|
/*
|
|
* SPDX-FileCopyrightText: Copyright (c) 2022-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <dce.h>
|
|
#include <dce-os-utils.h>
|
|
|
|
struct dce_event_process_struct {
|
|
enum dce_fsm_event_id_type event;
|
|
int (*fsm_event_handle)(struct tegra_dce *d, void *params);
|
|
};
|
|
|
|
/*
|
|
* Please update FSM design Document, whenever updating below event table
|
|
*/
|
|
static struct dce_event_process_struct event_process_table[] = {
|
|
{
|
|
.event = EVENT_ID_DCE_FSM_START,
|
|
.fsm_event_handle = dce_handle_fsm_start_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_BOOT_COMPLETE_REQUESTED,
|
|
.fsm_event_handle = dce_handle_boot_complete_requested_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_BOOT_COMPLETE_RECEIVED,
|
|
.fsm_event_handle = dce_handle_boot_complete_received_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_BOOT_CMD_MSG_REQUESTED,
|
|
.fsm_event_handle = dce_handle_boot_cmd_requested_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_BOOT_CMD_MSG_RECEIVED,
|
|
.fsm_event_handle = dce_handle_boot_cmd_received_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_ADMIN_IPC_MSG_REQUESTED,
|
|
.fsm_event_handle = dce_admin_handle_ipc_requested_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_ADMIN_IPC_MSG_RECEIVED,
|
|
.fsm_event_handle = dce_admin_handle_ipc_received_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_SC7_ENTER_REQUESTED,
|
|
.fsm_event_handle = dce_pm_handle_sc7_enter_requested_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_SC7_ENTERED_RECEIVED,
|
|
.fsm_event_handle = dce_pm_handle_sc7_enter_received_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_SC7_EXIT_RECEIVED,
|
|
.fsm_event_handle = dce_pm_handle_sc7_exit_received_event,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_LOG_REQUESTED,
|
|
.fsm_event_handle = dce_handle_event_stub,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_LOG_READY_RECEIVED,
|
|
.fsm_event_handle = dce_handle_event_stub,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_ABORT_RECEIVED,
|
|
.fsm_event_handle = dce_handle_event_stub,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_CRASH_LOG_RECEIVED,
|
|
.fsm_event_handle = dce_handle_event_stub,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_LOG_OVERFLOW_RECEIVED,
|
|
.fsm_event_handle = dce_handle_event_stub,
|
|
},
|
|
{
|
|
.event = EVENT_ID_DCE_FSM_STOP,
|
|
.fsm_event_handle = dce_handle_event_stub,
|
|
},
|
|
};
|
|
|
|
#define DCE_MAX_EVENTS_IDS (sizeof(event_process_table) / \
|
|
sizeof(struct dce_event_process_struct))
|
|
|
|
/**
|
|
* dce_handle_fsm_start_event - Callback handler function for FSM_START event.
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
* @params : callback params
|
|
*
|
|
* Return : 0 if successful else error code
|
|
*/
|
|
int dce_handle_fsm_start_event(struct tegra_dce *d, void *params)
|
|
{
|
|
DCE_WARN_ON_NOT_NULL(params);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* dce_handle_event_stub - Stub callback handler function.
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
* @params : callback params
|
|
*
|
|
* Return : 0 if successful
|
|
*/
|
|
int dce_handle_event_stub(struct tegra_dce *d, void *params)
|
|
{
|
|
DCE_WARN_ON_NOT_NULL(params);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* dce_fsm_set_state - Set the FSM state based on event
|
|
*
|
|
* This Function is called with Mutex held.
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
* @event : Event for which FSM state need to be set
|
|
*
|
|
* Return : void
|
|
*
|
|
* Please update FSM design Document, whenever updating below event states
|
|
*/
|
|
static void
|
|
dce_fsm_set_state(struct tegra_dce *d,
|
|
enum dce_fsm_event_id_type event)
|
|
{
|
|
struct dce_fsm_info *fsm = &d->fsm_info;
|
|
|
|
switch (event) {
|
|
case EVENT_ID_DCE_FSM_START:
|
|
fsm->c_state = STATE_DCE_FSM_IDLE;
|
|
fsm->requested_ipcs = 0;
|
|
break;
|
|
|
|
case EVENT_ID_DCE_BOOT_COMPLETE_REQUESTED:
|
|
fsm->c_state = STATE_DCE_BOOT_WAIT;
|
|
fsm->requested_ipcs |= DCE_BIT(DCE_WAIT_BOOT_COMPLETE);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_BOOT_COMPLETE_RECEIVED:
|
|
fsm->c_state = STATE_DCE_FSM_IDLE;
|
|
fsm->requested_ipcs &= ~DCE_BIT(DCE_WAIT_BOOT_COMPLETE);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_BOOT_CMD_MSG_REQUESTED:
|
|
fsm->c_state = STATE_DCE_BOOTCMD_WFI;
|
|
fsm->requested_ipcs |= DCE_BIT(DCE_WAIT_BOOT_CMD);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_BOOT_CMD_MSG_RECEIVED:
|
|
fsm->c_state = STATE_DCE_FSM_IDLE;
|
|
fsm->requested_ipcs &= ~DCE_BIT(DCE_WAIT_BOOT_CMD);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_ADMIN_IPC_MSG_REQUESTED:
|
|
fsm->c_state = STATE_DCE_ADMIN_WFI;
|
|
fsm->requested_ipcs |= DCE_BIT(DCE_WAIT_ADMIN_IPC);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_ADMIN_IPC_MSG_RECEIVED:
|
|
fsm->c_state = STATE_DCE_FSM_IDLE;
|
|
fsm->requested_ipcs &= ~DCE_BIT(DCE_WAIT_ADMIN_IPC);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_SC7_ENTER_REQUESTED:
|
|
fsm->c_state = STATE_DCE_SC7_ENTER_WFI;
|
|
fsm->requested_ipcs |= DCE_BIT(DCE_WAIT_SC7_ENTER);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_SC7_ENTERED_RECEIVED:
|
|
fsm->c_state = STATE_DCE_SC7_ENTERED;
|
|
fsm->requested_ipcs &= ~DCE_BIT(DCE_WAIT_SC7_ENTER);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_SC7_EXIT_RECEIVED:
|
|
fsm->c_state = STATE_DCE_FSM_IDLE;
|
|
fsm->requested_ipcs = 0;
|
|
break;
|
|
|
|
case EVENT_ID_DCE_LOG_REQUESTED:
|
|
fsm->c_state = STATE_DCE_LOG_READY_WFI;
|
|
fsm->requested_ipcs |= DCE_BIT(DCE_WAIT_LOG);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_LOG_READY_RECEIVED:
|
|
fsm->c_state = STATE_DCE_FSM_IDLE;
|
|
fsm->requested_ipcs &= ~DCE_BIT(DCE_WAIT_LOG);
|
|
break;
|
|
|
|
case EVENT_ID_DCE_FSM_STOP:
|
|
fsm->c_state = STATE_DCE_INVALID;
|
|
break;
|
|
|
|
case EVENT_ID_DCE_ABORT_RECEIVED:
|
|
case EVENT_ID_DCE_CRASH_LOG_RECEIVED:
|
|
case EVENT_ID_DCE_LOG_OVERFLOW_RECEIVED:
|
|
dce_os_debug(d, "DCE Abort received");
|
|
fsm->c_state = STATE_DCE_ABORT;
|
|
/*
|
|
* TODO: error handling
|
|
* wake-up any waiting process avoid kernel watchdog
|
|
* trigger and crash
|
|
*/
|
|
break;
|
|
default:
|
|
dce_os_err(d, "INVALID EVENT [%d]", event);
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
* dce_fsm_validate_event - Validate event agaist current FSM state
|
|
*
|
|
* @d : Pointer to tegra_dce struct
|
|
* @event : Posted FSM event
|
|
*
|
|
* @return : ESUCCESS if event valid else error code
|
|
*
|
|
* Please update FSM design Document, whenever updating below event validation
|
|
*/
|
|
static int
|
|
dce_fsm_validate_event(struct tegra_dce *d,
|
|
enum dce_fsm_event_id_type event)
|
|
{
|
|
int ret = 0;
|
|
struct dce_fsm_info *fsm = &d->fsm_info;
|
|
enum dce_fsm_state curr_state;
|
|
|
|
if (event > EVENT_ID_DCE_FSM_STOP) {
|
|
dce_os_err(d, "Invalid event received [%d]\n", event);
|
|
return -EINVAL;
|
|
}
|
|
|
|
// Should we check This??
|
|
if (fsm->initialized == false) {
|
|
dce_os_err(d, "FSM is not initialized yet\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
curr_state = fsm->c_state;
|
|
dce_os_debug(d, "Called for event [%d], curr_state:[%d]", event, curr_state);
|
|
switch (curr_state) {
|
|
case STATE_DCE_INVALID:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_FSM_START:
|
|
ret = 0;
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
case STATE_DCE_FSM_IDLE:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_BOOT_COMPLETE_RECEIVED:
|
|
case EVENT_ID_DCE_BOOT_CMD_MSG_RECEIVED:
|
|
case EVENT_ID_DCE_ADMIN_IPC_MSG_RECEIVED:
|
|
case EVENT_ID_DCE_SC7_ENTERED_RECEIVED:
|
|
case EVENT_ID_DCE_LOG_READY_RECEIVED:
|
|
case EVENT_ID_DCE_FSM_START:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
default:
|
|
ret = 0;
|
|
break;
|
|
}
|
|
break;
|
|
case STATE_DCE_BOOT_WAIT:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_BOOT_COMPLETE_RECEIVED:
|
|
case EVENT_ID_DCE_ABORT_RECEIVED:
|
|
case EVENT_ID_DCE_CRASH_LOG_RECEIVED:
|
|
case EVENT_ID_DCE_SC7_ENTER_REQUESTED: // TODO: Do we need this here
|
|
case EVENT_ID_DCE_LOG_OVERFLOW_RECEIVED:
|
|
case EVENT_ID_DCE_FSM_STOP:
|
|
ret = 0;
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
case STATE_DCE_BOOTCMD_WFI:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_BOOT_CMD_MSG_RECEIVED:
|
|
case EVENT_ID_DCE_ABORT_RECEIVED:
|
|
case EVENT_ID_DCE_CRASH_LOG_RECEIVED:
|
|
case EVENT_ID_DCE_SC7_ENTER_REQUESTED:
|
|
case EVENT_ID_DCE_LOG_OVERFLOW_RECEIVED:
|
|
case EVENT_ID_DCE_FSM_STOP:
|
|
ret = 0;
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
case STATE_DCE_ADMIN_WFI:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_ADMIN_IPC_MSG_RECEIVED:
|
|
case EVENT_ID_DCE_ABORT_RECEIVED:
|
|
case EVENT_ID_DCE_CRASH_LOG_RECEIVED:
|
|
case EVENT_ID_DCE_SC7_ENTER_REQUESTED:
|
|
case EVENT_ID_DCE_LOG_OVERFLOW_RECEIVED:
|
|
case EVENT_ID_DCE_FSM_STOP:
|
|
ret = 0;
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
case STATE_DCE_SC7_ENTER_WFI:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_SC7_ENTERED_RECEIVED:
|
|
case EVENT_ID_DCE_ABORT_RECEIVED:
|
|
case EVENT_ID_DCE_CRASH_LOG_RECEIVED:
|
|
case EVENT_ID_DCE_LOG_OVERFLOW_RECEIVED:
|
|
case EVENT_ID_DCE_FSM_STOP:
|
|
ret = 0;
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
case STATE_DCE_LOG_READY_WFI:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_LOG_READY_RECEIVED:
|
|
case EVENT_ID_DCE_ABORT_RECEIVED:
|
|
case EVENT_ID_DCE_CRASH_LOG_RECEIVED:
|
|
case EVENT_ID_DCE_SC7_ENTER_REQUESTED:
|
|
case EVENT_ID_DCE_LOG_OVERFLOW_RECEIVED:
|
|
case EVENT_ID_DCE_FSM_STOP:
|
|
ret = 0;
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
case STATE_DCE_SC7_ENTERED:
|
|
switch (event) {
|
|
case EVENT_ID_DCE_SC7_EXIT_RECEIVED:
|
|
ret = 0;
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid event received [%d] state:[%d]\n",
|
|
event, curr_state);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
break;
|
|
default:
|
|
dce_os_err(d, "Invalid state:[%d] event received [%d]\n", curr_state,
|
|
event);
|
|
|
|
}
|
|
|
|
if (ret) {
|
|
dce_os_err(d, "dce event handling failed for event[%d] curr state [%d]",
|
|
event, curr_state);
|
|
goto done;
|
|
}
|
|
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* dce_fsm_get_event_index : Get index of event in event_process_table
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
* @event : event for which index is requested
|
|
* @return : index of event in event_process_table or DCE_MAX_EVENTS_IDS
|
|
*/
|
|
static u32
|
|
dce_fsm_get_event_index(struct tegra_dce *d,
|
|
enum dce_fsm_event_id_type event)
|
|
{
|
|
u32 id;
|
|
|
|
if (d == NULL)
|
|
dce_os_warn(NULL, "DCE struct is expected to be valid\n");
|
|
|
|
for (id = 0; id < DCE_MAX_EVENTS_IDS; id++) {
|
|
struct dce_event_process_struct *e =
|
|
&event_process_table[id];
|
|
|
|
if (e->event == event)
|
|
break;
|
|
}
|
|
|
|
return id;
|
|
}
|
|
|
|
/**
|
|
* dce_fsm_post - Post event to FSM
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
* @event : Event for which FSM state need to be set.
|
|
* @data : Event specific data to pass to the callback function.
|
|
*
|
|
* Return : 0 if successful else error code.
|
|
*/
|
|
int dce_fsm_post_event(struct tegra_dce *d,
|
|
enum dce_fsm_event_id_type event,
|
|
void *data)
|
|
{
|
|
u32 id;
|
|
int ret = 0;
|
|
enum dce_fsm_state prev_state;
|
|
struct dce_fsm_info *fsm = &d->fsm_info;
|
|
|
|
dce_os_mutex_lock(&fsm->lock);
|
|
|
|
ret = dce_fsm_validate_event(d, event);
|
|
if (ret) {
|
|
dce_os_mutex_unlock(&fsm->lock);
|
|
goto out;
|
|
}
|
|
|
|
prev_state = fsm->c_state;
|
|
dce_fsm_set_state(d, event);
|
|
dce_os_mutex_unlock(&fsm->lock);
|
|
|
|
/*
|
|
* call callback function with mutex unlocked
|
|
*/
|
|
id = dce_fsm_get_event_index(d, event);
|
|
if ((id < DCE_MAX_EVENTS_IDS) &&
|
|
(event_process_table[id].fsm_event_handle != NULL)) {
|
|
ret = event_process_table[id].fsm_event_handle(d, data);
|
|
if (ret) {
|
|
dce_os_mutex_lock(&fsm->lock);
|
|
dce_os_err(d, "Callback failed: Resetting state old:new [%d:%d]",
|
|
prev_state, fsm->c_state);
|
|
fsm->c_state = prev_state;
|
|
dce_os_mutex_unlock(&fsm->lock);
|
|
}
|
|
}
|
|
out:
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* dce_fsm_start - Schedule a work to start the FSM
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
*
|
|
* Return : void.
|
|
*/
|
|
void dce_fsm_start(struct tegra_dce *d)
|
|
{
|
|
int ret = dce_os_wq_work_schedule(d, NULL /* default WQ */,
|
|
d->dce_bootstrap_work);
|
|
if (ret)
|
|
dce_os_err(d, "Failed schedule bootstrap work");
|
|
}
|
|
|
|
/**
|
|
* dce_fsm_stop - Post dce_fsm_stop event
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
*
|
|
* Return : void.
|
|
*/
|
|
void dce_fsm_stop(struct tegra_dce *d)
|
|
{
|
|
dce_fsm_post_event(d, EVENT_ID_DCE_FSM_STOP, NULL);
|
|
}
|
|
|
|
/**
|
|
* dce_fsm_init_unlocked - Init the FSM
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
*
|
|
* Return : 0 if successful else error code.
|
|
*
|
|
* Note: This function is not thread safe and should be called only once
|
|
* during initialization.
|
|
*/
|
|
int dce_fsm_init_unlocked(struct tegra_dce *d)
|
|
{
|
|
int ret = 0;
|
|
struct dce_fsm_info *fsm = &d->fsm_info;
|
|
|
|
fsm->c_state = STATE_DCE_INVALID;
|
|
ret = dce_os_mutex_init(&fsm->lock);
|
|
if (ret) {
|
|
dce_os_err(d, "dce mutex initialization failed for FSM");
|
|
return ret;
|
|
}
|
|
|
|
fsm->d = d;
|
|
fsm->initialized = true;
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* dce_fsm_deinit_unlocked - DeInit the FSM
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
*
|
|
* Return : void
|
|
*
|
|
* Note: This function is not thread safe and should be called only once
|
|
* during de-initialization.
|
|
*/
|
|
void dce_fsm_deinit_unlocked(struct tegra_dce *d)
|
|
{
|
|
struct dce_fsm_info *fsm = &d->fsm_info;
|
|
|
|
fsm->initialized = false;
|
|
|
|
dce_os_mutex_destroy(&fsm->lock);
|
|
}
|