2014-09-30 12:01:47 +08:00
|
|
|
/*
|
|
|
|
* Panasonic MN88473 DVB-T/T2/C demodulator driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MN88473_PRIV_H
|
|
|
|
#define MN88473_PRIV_H
|
|
|
|
|
|
|
|
#include "dvb_frontend.h"
|
2016-09-25 06:40:19 +08:00
|
|
|
#include "dvb_math.h"
|
2014-09-30 12:01:47 +08:00
|
|
|
#include "mn88473.h"
|
2016-11-13 15:25:54 +08:00
|
|
|
#include <linux/math64.h>
|
2014-09-30 12:01:47 +08:00
|
|
|
#include <linux/firmware.h>
|
2014-10-03 11:28:18 +08:00
|
|
|
#include <linux/regmap.h>
|
2014-09-30 12:01:47 +08:00
|
|
|
|
|
|
|
#define MN88473_FIRMWARE "dvb-demod-mn88473-01.fw"
|
|
|
|
|
|
|
|
struct mn88473_dev {
|
2014-10-03 09:41:26 +08:00
|
|
|
struct i2c_client *client[3];
|
2014-10-03 11:28:18 +08:00
|
|
|
struct regmap *regmap[3];
|
2016-02-05 03:01:51 +08:00
|
|
|
struct dvb_frontend frontend;
|
2014-10-03 09:41:26 +08:00
|
|
|
u16 i2c_wr_max;
|
2016-02-05 03:01:51 +08:00
|
|
|
bool active;
|
|
|
|
u32 clk;
|
2014-09-30 12:01:47 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|