Files
CoolPi-Armbian-Rockchip-RK3…/drivers/media/i2c/tp2855.h
2025-02-04 12:41:12 -06:00

25 lines
417 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* tp2855 driver
*
* Copyright (C) 2024 Rockchip Electronics Co., Ltd.
*
*/
#ifndef _TP2855_H_
#define _TP2855_H_
enum tp2855_support_reso {
TP2855_CVSTD_720P_60 = 0,
TP2855_CVSTD_720P_50,
TP2855_CVSTD_1080P_30,
TP2855_CVSTD_1080P_25,
TP2855_CVSTD_720P_30,
TP2855_CVSTD_720P_25,
TP2855_CVSTD_SD,
TP2855_CVSTD_OTHER,
};
int tp2855_sensor_mod_init(void);
#endif