mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 02:01:36 +03:00
This patch addresses design review comments for FSM - Add comment to update design doc on FSM update - Create wrapper function to check bootcmd complete status - move bootstrapping functions to dce_bootstrap.c file - Fix sw resource init/deinit function name Bug 3583331 Signed-off-by: Mahesh Kumar <mahkumar@nvidia.com> Change-Id: I77f05135f7ec1882922907f8acef50def639d26d Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2758902 Reviewed-by: Santosh Galma <galmar@nvidia.com> Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: svc_kernel_abi <svc_kernel_abi@nvidia.com> Reviewed-by: Arun Swain <arswain@nvidia.com> GVS: Gerrit_Virtual_Submit
102 lines
2.1 KiB
C
102 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 2019-2022, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*/
|
|
|
|
#include <dce.h>
|
|
#include <dce-util-common.h>
|
|
|
|
/**
|
|
* dce_driver_init - Initializes the various sw components
|
|
* and few hw elements dce.
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
*
|
|
* Return : 0 if successful.
|
|
*/
|
|
int dce_driver_init(struct tegra_dce *d)
|
|
{
|
|
int ret = 0;
|
|
|
|
ret = dce_boot_interface_init(d);
|
|
if (ret) {
|
|
dce_err(d, "dce boot interface init failed");
|
|
goto err_boot_interface_init;
|
|
}
|
|
|
|
ret = dce_admin_init(d);
|
|
if (ret) {
|
|
dce_err(d, "dce admin interface init failed");
|
|
goto err_admin_interface_init;
|
|
}
|
|
|
|
ret = dce_client_init(d);
|
|
if (ret) {
|
|
dce_err(d, "dce client workqueue init failed");
|
|
goto err_client_init;
|
|
}
|
|
|
|
ret = dce_work_cond_sw_resource_init(d);
|
|
if (ret) {
|
|
dce_err(d, "dce sw resource init failed");
|
|
goto err_sw_init;
|
|
}
|
|
|
|
ret = dce_fsm_init(d);
|
|
if (ret) {
|
|
dce_err(d, "dce FSM init failed");
|
|
goto err_fsm_init;
|
|
}
|
|
|
|
dce_fsm_start(d);
|
|
|
|
return ret;
|
|
|
|
err_fsm_init:
|
|
dce_work_cond_sw_resource_deinit(d);
|
|
err_sw_init:
|
|
dce_client_deinit(d);
|
|
err_client_init:
|
|
dce_admin_deinit(d);
|
|
err_admin_interface_init:
|
|
dce_boot_interface_deinit(d);
|
|
err_boot_interface_init:
|
|
d->boot_status |= DCE_STATUS_FAILED;
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* dce_driver_deinit - Release various sw resources
|
|
* associated with dce.
|
|
*
|
|
* @d : Pointer to tegra_dce struct.
|
|
*
|
|
* Return : Void
|
|
*/
|
|
|
|
void dce_driver_deinit(struct tegra_dce *d)
|
|
{
|
|
/* TODO : Reset DCE ? */
|
|
dce_fsm_stop(d);
|
|
|
|
dce_fsm_deinit(d);
|
|
|
|
dce_work_cond_sw_resource_deinit(d);
|
|
|
|
dce_client_deinit(d);
|
|
|
|
dce_admin_deinit(d);
|
|
|
|
dce_boot_interface_deinit(d);
|
|
|
|
dce_release_fw(d, d->fw_data);
|
|
}
|