2019-05-26 23:55:06 -07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2013-01-07 05:37:30 -07: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 11:03:51 -07:00
|
|
|
#include <media/dvb_frontend.h>
|
2013-01-07 05:37:30 -07:00
|
|
|
|
2016-11-06 17:00:45 -07:00
|
|
|
/**
|
|
|
|
* struct it913x_platform_data - Platform data for the it913x driver
|
|
|
|
* @regmap: af9033 demod driver regmap.
|
2021-03-09 05:28:11 -07:00
|
|
|
* @fe: af9033 demod driver DVB frontend.
|
2016-11-06 17:00:45 -07:00
|
|
|
* @role: Chip role, single or dual configuration.
|
2014-08-26 13:14:16 -07:00
|
|
|
*/
|
|
|
|
|
2016-11-06 17:00:45 -07:00
|
|
|
struct it913x_platform_data {
|
|
|
|
struct regmap *regmap;
|
|
|
|
struct dvb_frontend *fe;
|
2014-08-26 23:59:27 -07:00
|
|
|
#define IT913X_ROLE_SINGLE 0
|
|
|
|
#define IT913X_ROLE_DUAL_MASTER 1
|
|
|
|
#define IT913X_ROLE_DUAL_SLAVE 2
|
|
|
|
unsigned int role:2;
|
2014-08-26 13:14:16 -07:00
|
|
|
};
|
2013-01-07 05:37:30 -07:00
|
|
|
|
|
|
|
#endif
|