mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 16:43:08 +00:00
389ce3984b
Luis Alves submitted a TS mode patch to si2168 earlier, but the patch was rejected due to a small issue. Here is a working version. Also, setting of TS mode is moved from si2168_set_frontend to si2168_init. This patch adds the TS mode as a config option for the si2168 demod: - ts_mode added to config struct. - Possible (interesting) values are * Parallel mode = 0x06 * Serial mode = 0x03 Currently the modules using this demod only use parallel mode. Patches for these modules later in this patch series. Signed-off-by: Olli Salonen <olli.salonen@iki.fi> Reviewed-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
46 lines
1.0 KiB
C
46 lines
1.0 KiB
C
/*
|
|
* Silicon Labs Si2168 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 SI2168_H
|
|
#define SI2168_H
|
|
|
|
#include <linux/dvb/frontend.h>
|
|
/*
|
|
* I2C address
|
|
* 0x64
|
|
*/
|
|
struct si2168_config {
|
|
/*
|
|
* frontend
|
|
* returned by driver
|
|
*/
|
|
struct dvb_frontend **fe;
|
|
|
|
/*
|
|
* tuner I2C adapter
|
|
* returned by driver
|
|
*/
|
|
struct i2c_adapter **i2c_adapter;
|
|
|
|
/* TS mode */
|
|
u8 ts_mode;
|
|
};
|
|
|
|
#define SI2168_TS_PARALLEL 0x06
|
|
#define SI2168_TS_SERIAL 0x03
|
|
|
|
#endif
|