xref: /linux/drivers/media/platform/amd/isp4/isp4.h (revision 4e5e7a7ddb4ab9ac35928d7dc72efc8797639dc3)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2025 Advanced Micro Devices, Inc.
4  */
5 
6 #ifndef _ISP4_H_
7 #define _ISP4_H_
8 
9 #include <drm/amd/isp.h>
10 #include "isp4_subdev.h"
11 
12 struct isp4_device {
13 	struct v4l2_device v4l2_dev;
14 	struct isp4_subdev isp_subdev;
15 	struct media_device mdev;
16 };
17 
18 void isp4_intr_enable(struct isp4_subdev *isp_subdev, u32 index, bool enable);
19 
20 #endif /* _ISP4_H_ */
21