mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +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
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/*
|
|
* Copyright (c) 2019-2022, NVIDIA CORPORATION & AFFILIATES. 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.
|
|
*/
|
|
|
|
#ifndef DCE_WORKER_H
|
|
#define DCE_WORKER_H
|
|
|
|
#include <dce-cond.h>
|
|
#include <dce-lock.h>
|
|
#include <dce-thread.h>
|
|
|
|
struct tegra_dce;
|
|
|
|
#define DCE_WAIT_BOOT_COMPLETE 0
|
|
#define DCE_WAIT_BOOT_CMD 1
|
|
#define DCE_WAIT_ADMIN_IPC 2
|
|
#define DCE_WAIT_SC7_ENTER 3
|
|
#define DCE_WAIT_LOG 4
|
|
#define DCE_MAX_WAIT 5
|
|
|
|
struct dce_wait_cond {
|
|
atomic_t complete;
|
|
struct dce_cond cond_wait;
|
|
};
|
|
|
|
int dce_work_cond_sw_resource_init(struct tegra_dce *d);
|
|
void dce_work_cond_sw_resource_deinit(struct tegra_dce *d);
|
|
void dce_schedule_boot_complete_wait_worker(struct tegra_dce *d);
|
|
int dce_wait_interruptible(struct tegra_dce *d, u32 msg_id);
|
|
void dce_wakeup_interruptible(struct tegra_dce *d, u32 msg_id);
|
|
|
|
#endif
|