firmware.h 503 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2022, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef _MSM_VIDC_FIRMWARE_H_
  7. #define _MSM_VIDC_FIRMWARE_H_
  8. struct msm_vidc_core;
  9. int fw_load(struct msm_vidc_core *core);
  10. int fw_unload(struct msm_vidc_core *core);
  11. int fw_suspend(struct msm_vidc_core *core);
  12. int fw_resume(struct msm_vidc_core *core);
  13. void fw_coredump(struct msm_vidc_core *core);
  14. #endif