blob: 4f97c3d15a3c3eab6369d4b59b99bb4d36db85af [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 Driver for ST STV0299 demodulator
4
5 Copyright (C) 2001-2002 Convergence Integrated Media GmbH
6 <ralph@convergence.de>,
7 <holger@convergence.de>,
8 <js@convergence.de>
9
10
11 Philips SU1278/SH
12
13 Copyright (C) 2002 by Peter Schildmann <peter.schildmann@web.de>
14
15
16 LG TDQF-S001F
17
18 Copyright (C) 2002 Felix Domke <tmbinc@elitedvb.net>
19 & Andreas Oberritter <obi@linuxtv.org>
20
21
22 Support for Samsung TBMU24112IMB used on Technisat SkyStar2 rev. 2.6B
23
24 Copyright (C) 2003 Vadim Catana <skystar@moldova.cc>:
25
26 Support for Philips SU1278 on Technotrend hardware
27
28 Copyright (C) 2004 Andrew de Quincey <adq_dvb@lidskialf.net>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31*/
32
33#ifndef STV0299_H
34#define STV0299_H
35
36#include <linux/dvb/frontend.h>
Mauro Carvalho Chehabfada1932017-12-28 13:03:51 -050037#include <media/dvb_frontend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Oliver Endrissda2c7f62008-04-20 22:13:37 -030039#define STV0299_LOCKOUTPUT_0 0
40#define STV0299_LOCKOUTPUT_1 1
41#define STV0299_LOCKOUTPUT_CF 2
42#define STV0299_LOCKOUTPUT_LK 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define STV0299_VOLT13_OP0 0
45#define STV0299_VOLT13_OP1 1
46
47struct stv0299_config
48{
49 /* the demodulator's i2c address */
50 u8 demod_address;
51
52 /* inittab - array of pairs of values.
53 * First of each pair is the register, second is the value.
54 * List should be terminated with an 0xff, 0xff pair.
55 */
lawrence rust2e4e98e2010-08-25 09:50:20 -030056 const u8* inittab;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 /* master clock to use */
59 u32 mclk;
60
61 /* does the inversion require inversion? */
62 u8 invert:1;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 /* Skip reinitialisation? */
65 u8 skip_reinit:1;
66
67 /* LOCK OUTPUT setting */
68 u8 lock_output:2;
69
70 /* Is 13v controlled by OP0 or OP1? */
71 u8 volt13_op0_op1:1;
72
Oliver Endrisse84b1332008-04-20 21:57:34 -030073 /* Turn-off OP0? */
74 u8 op0_off:1;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /* minimum delay before retuning */
77 int min_delay_ms;
78
79 /* Set the symbol rate */
Igor M. Liplianine4aab642008-09-23 15:43:57 -030080 int (*set_symbol_rate)(struct dvb_frontend *fe, u32 srate, u32 ratio);
81
82 /* Set device param to start dma */
83 int (*set_ts_params)(struct dvb_frontend *fe, int is_punctured);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Arnd Bergmann9b174522015-02-18 14:12:42 -030086#if IS_REACHABLE(CONFIG_DVB_STV0299)
Igor M. Liplianine4aab642008-09-23 15:43:57 -030087extern struct dvb_frontend *stv0299_attach(const struct stv0299_config *config,
88 struct i2c_adapter *i2c);
Andrew de Quincey102a3422006-08-08 09:10:08 -030089#else
Igor M. Liplianine4aab642008-09-23 15:43:57 -030090static inline struct dvb_frontend *stv0299_attach(const struct stv0299_config *config,
91 struct i2c_adapter *i2c)
Andrew de Quincey102a3422006-08-08 09:10:08 -030092{
Harvey Harrison271ddbf2008-04-08 23:20:00 -030093 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
Andrew de Quincey102a3422006-08-08 09:10:08 -030094 return NULL;
95}
96#endif // CONFIG_DVB_STV0299
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Andrew de Quinceyc10d14d2006-08-08 09:10:08 -030098static inline int stv0299_writereg(struct dvb_frontend *fe, u8 reg, u8 val) {
99 int r = 0;
100 u8 buf[] = {reg, val};
101 if (fe->ops.write)
102 r = fe->ops.write(fe, buf, 2);
103 return r;
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#endif // STV0299_H