1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * cxd2880_dtv.h
4 * Sony CXD2880 DVB-T2/T tuner + demodulator driver
5 * DTV related definitions
6 *
7 * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation
8 */
9
10#ifndef CXD2880_DTV_H
11#define CXD2880_DTV_H
12
13enum cxd2880_dtv_sys {
14	CXD2880_DTV_SYS_UNKNOWN,
15	CXD2880_DTV_SYS_DVBT,
16	CXD2880_DTV_SYS_DVBT2,
17	CXD2880_DTV_SYS_ANY
18};
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 = 8
27};
28
29#endif
30