2 * NXP TDA10071 + Conexant CX24118A DVB-S/S2 demodulator + tuner driver
4 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include "dvb_frontend.h"
26 #include <linux/firmware.h>
28 #define LOG_PREFIX "tda10071"
31 #define dbg(f, arg...) \
33 printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
35 #define err(f, arg...) printk(KERN_ERR LOG_PREFIX": " f "\n" , ## arg)
37 #define info(f, arg...) printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
39 #define warn(f, arg...) printk(KERN_WARNING LOG_PREFIX": " f "\n" , ## arg)
41 struct tda10071_priv
{
42 struct i2c_adapter
*i2c
;
43 struct dvb_frontend fe
;
44 struct tda10071_config cfg
;
49 fe_status_t fe_status
;
50 fe_delivery_system_t delivery_system
;
51 bool warm
; /* FW running */
54 static struct tda10071_modcod
{
55 fe_delivery_system_t delivery_system
;
56 fe_modulation_t modulation
;
59 } TDA10071_MODCOD
[] = {
61 { SYS_DVBS2
, QPSK
, FEC_AUTO
, 0x00 },
62 { SYS_DVBS2
, QPSK
, FEC_1_2
, 0x04 },
63 { SYS_DVBS2
, QPSK
, FEC_3_5
, 0x05 },
64 { SYS_DVBS2
, QPSK
, FEC_2_3
, 0x06 },
65 { SYS_DVBS2
, QPSK
, FEC_3_4
, 0x07 },
66 { SYS_DVBS2
, QPSK
, FEC_4_5
, 0x08 },
67 { SYS_DVBS2
, QPSK
, FEC_5_6
, 0x09 },
68 { SYS_DVBS2
, QPSK
, FEC_8_9
, 0x0a },
69 { SYS_DVBS2
, QPSK
, FEC_9_10
, 0x0b },
71 { SYS_DVBS2
, PSK_8
, FEC_3_5
, 0x0c },
72 { SYS_DVBS2
, PSK_8
, FEC_2_3
, 0x0d },
73 { SYS_DVBS2
, PSK_8
, FEC_3_4
, 0x0e },
74 { SYS_DVBS2
, PSK_8
, FEC_5_6
, 0x0f },
75 { SYS_DVBS2
, PSK_8
, FEC_8_9
, 0x10 },
76 { SYS_DVBS2
, PSK_8
, FEC_9_10
, 0x11 },
78 { SYS_DVBS
, QPSK
, FEC_AUTO
, 0x2d },
79 { SYS_DVBS
, QPSK
, FEC_1_2
, 0x2e },
80 { SYS_DVBS
, QPSK
, FEC_2_3
, 0x2f },
81 { SYS_DVBS
, QPSK
, FEC_3_4
, 0x30 },
82 { SYS_DVBS
, QPSK
, FEC_5_6
, 0x31 },
83 { SYS_DVBS
, QPSK
, FEC_7_8
, 0x32 },
86 struct tda10071_reg_val_mask
{
92 /* firmware filename */
93 #define TDA10071_DEFAULT_FIRMWARE "dvb-fe-tda10071.fw"
95 /* firmware commands */
96 #define CMD_DEMOD_INIT 0x10
97 #define CMD_CHANGE_CHANNEL 0x11
98 #define CMD_MPEG_CONFIG 0x13
99 #define CMD_TUNER_INIT 0x15
100 #define CMD_GET_AGCACC 0x1a
102 #define CMD_LNB_CONFIG 0x20
103 #define CMD_LNB_SEND_DISEQC 0x21
104 #define CMD_LNB_SET_DC_LEVEL 0x22
105 #define CMD_LNB_PCB_CONFIG 0x23
106 #define CMD_LNB_SEND_TONEBURST 0x24
107 #define CMD_LNB_UPDATE_REPLY 0x25
109 #define CMD_GET_FW_VERSION 0x35
110 #define CMD_SET_SLEEP_MODE 0x36
111 #define CMD_BER_CONTROL 0x3e
112 #define CMD_BER_UPDATE_COUNTERS 0x3f
114 /* firmare command struct */
115 #define TDA10071_ARGLEN 0x1e
116 struct tda10071_cmd
{
117 u8 args
[TDA10071_ARGLEN
];
122 #endif /* TDA10071_PRIV */