brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 35d81cc Raw
46 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * cxd2880_tnrdmd_dvbt.h4 * Sony CXD2880 DVB-T2/T tuner + demodulator driver5 * control interface for DVB-T6 *7 * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation8 */9 10#ifndef CXD2880_TNRDMD_DVBT_H11#define CXD2880_TNRDMD_DVBT_H12 13#include "cxd2880_common.h"14#include "cxd2880_tnrdmd.h"15 16struct cxd2880_dvbt_tune_param {17	u32 center_freq_khz;18	enum cxd2880_dtv_bandwidth bandwidth;19	enum cxd2880_dvbt_profile profile;20};21 22int cxd2880_tnrdmd_dvbt_tune1(struct cxd2880_tnrdmd *tnr_dmd,23			      struct cxd2880_dvbt_tune_param24			      *tune_param);25 26int cxd2880_tnrdmd_dvbt_tune2(struct cxd2880_tnrdmd *tnr_dmd,27			      struct cxd2880_dvbt_tune_param28			      *tune_param);29 30int cxd2880_tnrdmd_dvbt_sleep_setting(struct cxd2880_tnrdmd31				      *tnr_dmd);32 33int cxd2880_tnrdmd_dvbt_check_demod_lock(struct cxd2880_tnrdmd34					 *tnr_dmd,35					 enum36					 cxd2880_tnrdmd_lock_result37					 *lock);38 39int cxd2880_tnrdmd_dvbt_check_ts_lock(struct cxd2880_tnrdmd40				      *tnr_dmd,41				      enum42				      cxd2880_tnrdmd_lock_result43				      *lock);44 45#endif46