mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
1621633323
Based on 2 normalized pattern(s): 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 you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 51 franklin street fifth floor boston ma 02110 1301 usa 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 [no]_[pad]_[ctrl] 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 you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 51 franklin street fifth floor boston ma 02110 1301 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 176 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Jilayne Lovejoy <opensource@jilayne.com> Reviewed-by: Steve Winslow <swinslow@gmail.com> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190519154040.652910950@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
42 lines
955 B
C
42 lines
955 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* NXP TDA10071 + Conexant CX24118A DVB-S/S2 demodulator + tuner driver
|
|
*
|
|
* Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
|
|
*/
|
|
|
|
#ifndef TDA10071_H
|
|
#define TDA10071_H
|
|
|
|
#include <linux/dvb/frontend.h>
|
|
|
|
/*
|
|
* I2C address
|
|
* 0x05, 0x55,
|
|
*/
|
|
|
|
/**
|
|
* struct tda10071_platform_data - Platform data for the tda10071 driver
|
|
* @clk: Clock frequency.
|
|
* @i2c_wr_max: Max bytes I2C adapter can write at once.
|
|
* @ts_mode: TS mode.
|
|
* @spec_inv: Input spectrum inversion.
|
|
* @pll_multiplier: PLL multiplier.
|
|
* @tuner_i2c_addr: CX24118A tuner I2C address (0x14, 0x54, ...).
|
|
* @get_dvb_frontend: Get DVB frontend.
|
|
*/
|
|
struct tda10071_platform_data {
|
|
u32 clk;
|
|
u16 i2c_wr_max;
|
|
#define TDA10071_TS_SERIAL 0
|
|
#define TDA10071_TS_PARALLEL 1
|
|
u8 ts_mode;
|
|
bool spec_inv;
|
|
u8 pll_multiplier;
|
|
u8 tuner_i2c_addr;
|
|
|
|
struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *);
|
|
};
|
|
|
|
#endif /* TDA10071_H */
|