2019-05-19 21:51:31 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-09-02 08:09:21 +08:00
|
|
|
/*
|
|
|
|
* Elonics E4000 silicon tuner driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef E4000_H
|
|
|
|
#define E4000_H
|
|
|
|
|
2017-12-29 02:03:51 +08:00
|
|
|
#include <media/dvb_frontend.h>
|
2012-09-02 08:09:21 +08:00
|
|
|
|
2013-10-16 06:22:45 +08:00
|
|
|
/*
|
|
|
|
* I2C address
|
|
|
|
* 0x64, 0x65, 0x66, 0x67
|
|
|
|
*/
|
2012-09-02 08:09:21 +08:00
|
|
|
struct e4000_config {
|
|
|
|
/*
|
2013-10-16 06:22:45 +08:00
|
|
|
* frontend
|
2012-09-02 08:09:21 +08:00
|
|
|
*/
|
2013-10-16 06:22:45 +08:00
|
|
|
struct dvb_frontend *fe;
|
2012-09-02 08:09:21 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* clock
|
|
|
|
*/
|
|
|
|
u32 clock;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|