xref: /linux/drivers/media/platform/rockchip/rkcif/rkcif-capture-mipi.h (revision 24f171c7e145f43b9f187578e89b0982ce87e54c)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Rockchip Camera Interface (CIF) Driver
4  *
5  * Copyright (C) 2018 Rockchip Electronics Co., Ltd.
6  * Copyright (C) 2025 Michael Riesch <michael.riesch@wolfvision.net>
7  * Copyright (C) 2025 Collabora, Ltd.
8  */
9 
10 #ifndef _RKCIF_CAPTURE_MIPI_H
11 #define _RKCIF_CAPTURE_MIPI_H
12 
13 #include "rkcif-common.h"
14 
15 extern const struct rkcif_mipi_match_data rkcif_rk3568_vicap_mipi_match_data;
16 
17 int rkcif_mipi_register(struct rkcif_device *rkcif);
18 
19 void rkcif_mipi_unregister(struct rkcif_device *rkcif);
20 
21 irqreturn_t rkcif_mipi_isr(int irq, void *ctx);
22 
23 #endif
24