2019-05-27 09:55:06 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2013-01-07 16:37:30 +04:00
|
|
|
/*
|
|
|
|
* ITE Tech IT9137 silicon tuner driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Malcolm Priestley (tvboxspy@gmail.com)
|
|
|
|
* IT9137 Copyright (C) ITE Tech Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IT913X_H
|
|
|
|
#define IT913X_H
|
|
|
|
|
2017-12-28 21:03:51 +03:00
|
|
|
#include <media/dvb_frontend.h>
|
2013-01-07 16:37:30 +04:00
|
|
|
|
2016-11-07 03:00:45 +03:00
|
|
|
/**
|
|
|
|
* struct it913x_platform_data - Platform data for the it913x driver
|
|
|
|
* @regmap: af9033 demod driver regmap.
|
2021-03-09 15:28:11 +03:00
|
|
|
* @fe: af9033 demod driver DVB frontend.
|
2016-11-07 03:00:45 +03:00
|
|
|
* @role: Chip role, single or dual configuration.
|
2014-08-27 00:14:16 +04:00
|
|
|
*/
|
|
|
|
|
2016-11-07 03:00:45 +03:00
|
|
|
struct it913x_platform_data {
|
|
|
|
struct regmap *regmap;
|
|
|
|
struct dvb_frontend *fe;
|
2014-08-27 10:59:27 +04:00
|
|
|
#define IT913X_ROLE_SINGLE 0
|
|
|
|
#define IT913X_ROLE_DUAL_MASTER 1
|
|
|
|
#define IT913X_ROLE_DUAL_SLAVE 2
|
|
|
|
unsigned int role:2;
|
2014-08-27 00:14:16 +04:00
|
|
|
};
|
2013-01-07 16:37:30 +04:00
|
|
|
|
|
|
|
#endif
|