30 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * cxd2880_dtv.h4 * Sony CXD2880 DVB-T2/T tuner + demodulator driver5 * DTV related definitions6 *7 * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation8 */9 10#ifndef CXD2880_DTV_H11#define CXD2880_DTV_H12 13enum cxd2880_dtv_sys {14 CXD2880_DTV_SYS_UNKNOWN,15 CXD2880_DTV_SYS_DVBT,16 CXD2880_DTV_SYS_DVBT2,17 CXD2880_DTV_SYS_ANY18};19 20enum cxd2880_dtv_bandwidth {21 CXD2880_DTV_BW_UNKNOWN = 0,22 CXD2880_DTV_BW_1_7_MHZ = 1,23 CXD2880_DTV_BW_5_MHZ = 5,24 CXD2880_DTV_BW_6_MHZ = 6,25 CXD2880_DTV_BW_7_MHZ = 7,26 CXD2880_DTV_BW_8_MHZ = 827};28 29#endif30