2014-04-15 08:51:32 +08:00
|
|
|
/*
|
2014-11-15 05:19:37 +08:00
|
|
|
* Silicon Labs Si2146/2147/2148/2157/2158 silicon tuner driver
|
2014-04-15 08:51:32 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-04-11 08:58:10 +08:00
|
|
|
#ifndef SI2157_PRIV_H
|
|
|
|
#define SI2157_PRIV_H
|
|
|
|
|
2014-07-13 21:52:20 +08:00
|
|
|
#include <linux/firmware.h>
|
2016-02-12 04:06:36 +08:00
|
|
|
#include <media/v4l2-mc.h>
|
2014-04-11 08:58:10 +08:00
|
|
|
#include "si2157.h"
|
|
|
|
|
|
|
|
/* state struct */
|
2014-12-06 04:46:30 +08:00
|
|
|
struct si2157_dev {
|
2014-04-11 08:58:10 +08:00
|
|
|
struct mutex i2c_mutex;
|
|
|
|
struct dvb_frontend *fe;
|
|
|
|
bool active;
|
2014-07-16 03:34:36 +08:00
|
|
|
bool inversion;
|
2014-11-24 14:57:33 +08:00
|
|
|
u8 chiptype;
|
2015-05-06 00:54:17 +08:00
|
|
|
u8 if_port;
|
2015-02-28 23:25:23 +08:00
|
|
|
u32 if_frequency;
|
2014-09-07 22:20:34 +08:00
|
|
|
struct delayed_work stat_work;
|
2016-02-12 04:06:36 +08:00
|
|
|
|
|
|
|
#if defined(CONFIG_MEDIA_CONTROLLER)
|
|
|
|
struct media_device *mdev;
|
|
|
|
struct media_entity ent;
|
|
|
|
struct media_pad pad[TUNER_NUM_PADS];
|
|
|
|
#endif
|
|
|
|
|
2014-04-11 08:58:10 +08:00
|
|
|
};
|
|
|
|
|
2014-11-24 14:57:33 +08:00
|
|
|
#define SI2157_CHIPTYPE_SI2157 0
|
|
|
|
#define SI2157_CHIPTYPE_SI2146 1
|
2017-02-17 08:55:31 +08:00
|
|
|
#define SI2157_CHIPTYPE_SI2141 2
|
2014-11-24 14:57:33 +08:00
|
|
|
|
|
|
|
/* firmware command struct */
|
2014-04-11 08:58:10 +08:00
|
|
|
#define SI2157_ARGLEN 30
|
|
|
|
struct si2157_cmd {
|
|
|
|
u8 args[SI2157_ARGLEN];
|
2014-07-10 17:02:53 +08:00
|
|
|
unsigned wlen;
|
|
|
|
unsigned rlen;
|
2014-04-11 08:58:10 +08:00
|
|
|
};
|
|
|
|
|
2014-07-13 21:52:20 +08:00
|
|
|
#define SI2158_A20_FIRMWARE "dvb-tuner-si2158-a20-01.fw"
|
2017-02-17 08:55:31 +08:00
|
|
|
#define SI2141_A10_FIRMWARE "dvb-tuner-si2141-a10-01.fw"
|
2014-07-13 21:52:20 +08:00
|
|
|
|
2014-04-11 08:58:10 +08:00
|
|
|
#endif
|