1 /* SPDX-License-Identifier: GPL-2.0-only 2 * 3 * Copyright (c) 2020, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2021, 2024 Qualcomm Innovation Center, Inc. All rights reserved. 5 */ 6 7 #ifndef __QAIC_SSR_H__ 8 #define __QAIC_SSR_H__ 9 10 struct drm_device; 11 struct qaic_device; 12 13 int qaic_ssr_register(void); 14 void qaic_ssr_unregister(void); 15 void qaic_clean_up_ssr(struct qaic_device *qdev); 16 int qaic_ssr_init(struct qaic_device *qdev, struct drm_device *drm); 17 #endif /* __QAIC_SSR_H__ */ 18