2014-04-15 04:51:32 +04:00
|
|
|
/*
|
2014-11-15 00:19:37 +03:00
|
|
|
* Silicon Labs Si2146/2147/2148/2157/2158 silicon tuner driver
|
2014-04-15 04:51:32 +04: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 04:58:10 +04:00
|
|
|
#ifndef SI2157_PRIV_H
|
|
|
|
#define SI2157_PRIV_H
|
|
|
|
|
2014-07-13 17:52:20 +04:00
|
|
|
#include <linux/firmware.h>
|
2014-04-11 04:58:10 +04:00
|
|
|
#include "si2157.h"
|
|
|
|
|
|
|
|
/* state struct */
|
2014-12-05 23:46:30 +03:00
|
|
|
struct si2157_dev {
|
2014-04-11 04:58:10 +04:00
|
|
|
struct mutex i2c_mutex;
|
|
|
|
struct dvb_frontend *fe;
|
|
|
|
bool active;
|
2014-08-25 22:07:03 +04:00
|
|
|
bool fw_loaded;
|
2014-07-15 23:34:36 +04:00
|
|
|
bool inversion;
|
2014-11-24 09:57:33 +03:00
|
|
|
u8 chiptype;
|
2015-02-28 18:25:23 +03:00
|
|
|
u32 if_frequency;
|
2014-04-11 04:58:10 +04:00
|
|
|
};
|
|
|
|
|
2014-11-24 09:57:33 +03:00
|
|
|
#define SI2157_CHIPTYPE_SI2157 0
|
|
|
|
#define SI2157_CHIPTYPE_SI2146 1
|
|
|
|
|
|
|
|
/* firmware command struct */
|
2014-04-11 04:58:10 +04:00
|
|
|
#define SI2157_ARGLEN 30
|
|
|
|
struct si2157_cmd {
|
|
|
|
u8 args[SI2157_ARGLEN];
|
2014-07-10 13:02:53 +04:00
|
|
|
unsigned wlen;
|
|
|
|
unsigned rlen;
|
2014-04-11 04:58:10 +04:00
|
|
|
};
|
|
|
|
|
2014-07-13 17:52:20 +04:00
|
|
|
#define SI2158_A20_FIRMWARE "dvb-tuner-si2158-a20-01.fw"
|
|
|
|
|
2014-04-11 04:58:10 +04:00
|
|
|
#endif
|