Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * cxd2880_integ.h
0004  * Sony CXD2880 DVB-T2/T tuner + demodulator driver
0005  * integration layer common interface
0006  *
0007  * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation
0008  */
0009 
0010 #ifndef CXD2880_INTEG_H
0011 #define CXD2880_INTEG_H
0012 
0013 #include "cxd2880_tnrdmd.h"
0014 
0015 #define CXD2880_TNRDMD_WAIT_INIT_TIMEOUT    500
0016 #define CXD2880_TNRDMD_WAIT_INIT_INTVL  10
0017 
0018 #define CXD2880_TNRDMD_WAIT_AGC_STABLE      100
0019 
0020 int cxd2880_integ_init(struct cxd2880_tnrdmd *tnr_dmd);
0021 
0022 int cxd2880_integ_cancel(struct cxd2880_tnrdmd *tnr_dmd);
0023 
0024 int cxd2880_integ_check_cancellation(struct cxd2880_tnrdmd
0025                      *tnr_dmd);
0026 
0027 #endif