blob: 0f7e9dfcd73f897463aef3ea3a00f343c2519ad7 [file] [log] [blame]
Steven Tothd19770e2007-03-11 20:44:05 -03001/*
2 * Driver for the Conexant CX23885 PCIe bridge
3 *
4 * Copyright (c) 2006 Steven Toth <stoth@hauppauge.com>
5 *
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.
10 *
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 *
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/device.h>
25#include <linux/fs.h>
26#include <linux/kthread.h>
27#include <linux/file.h>
28#include <linux/suspend.h>
29
30#include "cx23885.h"
Steven Tothd19770e2007-03-11 20:44:05 -030031#include <media/v4l2-common.h>
32
33#include "s5h1409.h"
34#include "mt2131.h"
Michael Krufky3ba71d22007-12-07 01:40:36 -030035#include "tda8290.h"
Michael Krufky9bc37ca2007-09-08 15:17:13 -030036#include "lgdt330x.h"
Steven Tothd1987d52007-12-18 01:57:06 -030037#include "xc5000.h"
Michael Krufky9bc37ca2007-09-08 15:17:13 -030038#include "dvb-pll.h"
Michael Krufky07b4a832007-12-18 01:09:11 -030039#include "tuner-xc2028.h"
40#include "tuner-xc2028-types.h"
Steven Tothd19770e2007-03-11 20:44:05 -030041
Steven Toth2e52f212007-09-04 21:32:41 -030042static unsigned int debug = 0;
Steven Tothd19770e2007-03-11 20:44:05 -030043
44#define dprintk(level,fmt, arg...) if (debug >= level) \
45 printk(KERN_DEBUG "%s: " fmt, dev->name, ## arg)
46
47/* ------------------------------------------------------------------ */
48
Michael Krufky3ba71d22007-12-07 01:40:36 -030049static unsigned int alt_tuner;
50module_param(alt_tuner, int, 0644);
51MODULE_PARM_DESC(alt_tuner, "Enable alternate tuner configuration");
52
53/* ------------------------------------------------------------------ */
54
Steven Tothd19770e2007-03-11 20:44:05 -030055static int dvb_buf_setup(struct videobuf_queue *q,
56 unsigned int *count, unsigned int *size)
57{
58 struct cx23885_tsport *port = q->priv_data;
59
60 port->ts_packet_size = 188 * 4;
61 port->ts_packet_count = 32;
62
63 *size = port->ts_packet_size * port->ts_packet_count;
64 *count = 32;
65 return 0;
66}
67
Michael Krufky44a64812007-03-20 23:00:18 -030068static int dvb_buf_prepare(struct videobuf_queue *q,
69 struct videobuf_buffer *vb, enum v4l2_field field)
Steven Tothd19770e2007-03-11 20:44:05 -030070{
71 struct cx23885_tsport *port = q->priv_data;
Michael Krufky44a64812007-03-20 23:00:18 -030072 return cx23885_buf_prepare(q, port, (struct cx23885_buffer*)vb, field);
Steven Tothd19770e2007-03-11 20:44:05 -030073}
74
75static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
76{
77 struct cx23885_tsport *port = q->priv_data;
78 cx23885_buf_queue(port, (struct cx23885_buffer*)vb);
79}
80
Michael Krufky44a64812007-03-20 23:00:18 -030081static void dvb_buf_release(struct videobuf_queue *q,
82 struct videobuf_buffer *vb)
Steven Tothd19770e2007-03-11 20:44:05 -030083{
84 cx23885_free_buffer(q, (struct cx23885_buffer*)vb);
85}
86
Steven Tothd1987d52007-12-18 01:57:06 -030087static int cx23885_request_firmware(struct dvb_frontend *fe,
88 const struct firmware **fw, char *name)
89{
90 struct cx23885_tsport *port = fe->dvb->priv;
91 struct cx23885_dev *dev = port->dev;
92
93 dprintk(1, "%s(?,?,%s)\n", __FUNCTION__, name);
94
95 return request_firmware(fw, name, &dev->pci->dev);
96}
97
98static int hauppauge_hvr1500q_tuner_reset(struct dvb_frontend *fe)
99{
100 struct cx23885_tsport *port = fe->dvb->priv;
101 struct cx23885_dev *dev = port->dev;
102
103 dprintk(1, "%s()\n", __FUNCTION__);
104
105 /* Drive the tuner into reset back back */
106 cx_clear(GP0_IO, 0x00000004);
107 mdelay(200);
108 cx_set(GP0_IO, 0x00000004);
109
110 return 0;
111}
112
Steven Tothd19770e2007-03-11 20:44:05 -0300113static struct videobuf_queue_ops dvb_qops = {
114 .buf_setup = dvb_buf_setup,
115 .buf_prepare = dvb_buf_prepare,
116 .buf_queue = dvb_buf_queue,
117 .buf_release = dvb_buf_release,
118};
119
Steven Toth86184e02007-09-04 21:40:47 -0300120static struct s5h1409_config hauppauge_generic_config = {
Steven Tothd19770e2007-03-11 20:44:05 -0300121 .demod_address = 0x32 >> 1,
122 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothfc959be2007-09-08 19:08:17 -0300123 .gpio = S5H1409_GPIO_ON,
Michael Krufky2b032382007-12-13 10:04:10 -0300124 .qam_if = 44000,
Steven Tothfc959be2007-09-08 19:08:17 -0300125 .inversion = S5H1409_INVERSION_OFF,
126 .status_mode = S5H1409_DEMODLOCKING
127};
128
Michael Krufky3ba71d22007-12-07 01:40:36 -0300129static struct s5h1409_config hauppauge_ezqam_config = {
130 .demod_address = 0x32 >> 1,
131 .output_mode = S5H1409_SERIAL_OUTPUT,
132 .gpio = S5H1409_GPIO_OFF,
133 .qam_if = 4000,
134 .inversion = S5H1409_INVERSION_ON,
135 .status_mode = S5H1409_DEMODLOCKING
136};
137
Steven Tothfc959be2007-09-08 19:08:17 -0300138static struct s5h1409_config hauppauge_hvr1800lp_config = {
139 .demod_address = 0x32 >> 1,
140 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothd19770e2007-03-11 20:44:05 -0300141 .gpio = S5H1409_GPIO_OFF,
Michael Krufky2b032382007-12-13 10:04:10 -0300142 .qam_if = 44000,
Steven Tothfe4751632007-03-20 15:27:53 -0300143 .inversion = S5H1409_INVERSION_OFF,
144 .status_mode = S5H1409_DEMODLOCKING
Steven Tothd19770e2007-03-11 20:44:05 -0300145};
146
Michael Krufky07b4a832007-12-18 01:09:11 -0300147static struct s5h1409_config hauppauge_hvr1500_config = {
148 .demod_address = 0x32 >> 1,
149 .output_mode = S5H1409_SERIAL_OUTPUT,
150 .gpio = S5H1409_GPIO_OFF,
151 .inversion = S5H1409_INVERSION_OFF,
152 .status_mode = S5H1409_DEMODLOCKING
153};
154
Steven Toth86184e02007-09-04 21:40:47 -0300155static struct mt2131_config hauppauge_generic_tunerconfig = {
Steven Totha77743b2007-08-22 21:01:20 -0300156 0x61
157};
158
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300159static struct lgdt330x_config fusionhdtv_5_express = {
160 .demod_address = 0x0e,
161 .demod_chip = LGDT3303,
162 .serial_mpeg = 0x40,
163};
164
Steven Tothd1987d52007-12-18 01:57:06 -0300165static struct s5h1409_config hauppauge_hvr1500q_config = {
166 .demod_address = 0x32 >> 1,
167 .output_mode = S5H1409_SERIAL_OUTPUT,
168 .gpio = S5H1409_GPIO_ON,
169 .qam_if = 44000,
170 .inversion = S5H1409_INVERSION_OFF,
171 .status_mode = S5H1409_DEMODLOCKING
172};
173
174static struct xc5000_config hauppauge_hvr1500q_tunerconfig = {
Steven Tothe12671cf2007-12-20 01:14:43 -0300175 .i2c_address = 0x61,
176 .if_khz = 5380,
Steven Tothd1987d52007-12-18 01:57:06 -0300177 .request_firmware = cx23885_request_firmware,
Steven Tothe12671cf2007-12-20 01:14:43 -0300178 .tuner_reset = hauppauge_hvr1500q_tuner_reset
Steven Tothd1987d52007-12-18 01:57:06 -0300179};
180
Michael Krufky07b4a832007-12-18 01:09:11 -0300181static int cx23885_hvr1500_xc3028_callback(void *ptr, int command, int arg)
182{
183 struct cx23885_tsport *port = ptr;
184 struct cx23885_dev *dev = port->dev;
185
186 switch (command) {
187 case XC2028_TUNER_RESET:
188 /* Send the tuner in then out of reset */
189 /* GPIO-2 xc3028 tuner */
190 dprintk(1, "%s: XC2028_TUNER_RESET %d\n", __FUNCTION__, arg);
191
192 cx_set(GP0_IO, 0x00040000);
193 cx_clear(GP0_IO, 0x00000004);
194 msleep(5);
195
196 cx_set(GP0_IO, 0x00040004);
197 msleep(5);
198 break;
199 case XC2028_RESET_CLK:
200 dprintk(1, "%s: XC2028_RESET_CLK %d\n", __FUNCTION__, arg);
201 break;
202 default:
203 dprintk(1, "%s: unknown command %d, arg %d\n", __FUNCTION__,
204 command, arg);
205 return -EINVAL;
206 }
207
208 return 0;
209}
210
Steven Tothd19770e2007-03-11 20:44:05 -0300211static int dvb_register(struct cx23885_tsport *port)
212{
213 struct cx23885_dev *dev = port->dev;
Michael Krufkyf139fa72007-09-09 03:55:34 -0300214 struct cx23885_i2c *i2c_bus = NULL;
Steven Tothd19770e2007-03-11 20:44:05 -0300215
216 /* init struct videobuf_dvb */
217 port->dvb.name = dev->name;
218
219 /* init frontend */
220 switch (dev->board) {
Steven Totha77743b2007-08-22 21:01:20 -0300221 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300222 i2c_bus = &dev->i2c_bus[0];
Steven Tothd19770e2007-03-11 20:44:05 -0300223 port->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Toth86184e02007-09-04 21:40:47 -0300224 &hauppauge_generic_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300225 &i2c_bus->i2c_adap);
Steven Tothd19770e2007-03-11 20:44:05 -0300226 if (port->dvb.frontend != NULL) {
Michael Krufky44a64812007-03-20 23:00:18 -0300227 dvb_attach(mt2131_attach, port->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300228 &i2c_bus->i2c_adap,
Steven Toth86184e02007-09-04 21:40:47 -0300229 &hauppauge_generic_tunerconfig, 0);
Steven Tothd19770e2007-03-11 20:44:05 -0300230 }
231 break;
Michael Krufky3ba71d22007-12-07 01:40:36 -0300232 case CX23885_BOARD_HAUPPAUGE_HVR1800:
233 i2c_bus = &dev->i2c_bus[0];
234 switch (alt_tuner) {
235 case 1:
236 port->dvb.frontend =
237 dvb_attach(s5h1409_attach,
238 &hauppauge_ezqam_config,
239 &i2c_bus->i2c_adap);
240 if (port->dvb.frontend != NULL) {
241 dvb_attach(tda829x_attach, port->dvb.frontend,
242 &dev->i2c_bus[1].i2c_adap, 0x42,
243 NULL);
244 }
245 break;
246 case 0:
247 default:
248 port->dvb.frontend =
249 dvb_attach(s5h1409_attach,
250 &hauppauge_generic_config,
251 &i2c_bus->i2c_adap);
252 if (port->dvb.frontend != NULL)
253 dvb_attach(mt2131_attach, port->dvb.frontend,
254 &i2c_bus->i2c_adap,
255 &hauppauge_generic_tunerconfig, 0);
256 break;
257 }
258 break;
Steven Tothfc959be2007-09-08 19:08:17 -0300259 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300260 i2c_bus = &dev->i2c_bus[0];
Steven Tothfc959be2007-09-08 19:08:17 -0300261 port->dvb.frontend = dvb_attach(s5h1409_attach,
262 &hauppauge_hvr1800lp_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300263 &i2c_bus->i2c_adap);
Steven Tothfc959be2007-09-08 19:08:17 -0300264 if (port->dvb.frontend != NULL) {
265 dvb_attach(mt2131_attach, port->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300266 &i2c_bus->i2c_adap,
Steven Tothfc959be2007-09-08 19:08:17 -0300267 &hauppauge_generic_tunerconfig, 0);
268 }
269 break;
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300270 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300271 i2c_bus = &dev->i2c_bus[0];
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300272 port->dvb.frontend = dvb_attach(lgdt330x_attach,
273 &fusionhdtv_5_express,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300274 &i2c_bus->i2c_adap);
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300275 if (port->dvb.frontend != NULL) {
Michael Krufkyf139fa72007-09-09 03:55:34 -0300276 dvb_attach(dvb_pll_attach, port->dvb.frontend, 0x61,
277 &i2c_bus->i2c_adap, DVB_PLL_LG_TDVS_H06XF);
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300278 }
279 break;
Steven Tothd1987d52007-12-18 01:57:06 -0300280 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
281 i2c_bus = &dev->i2c_bus[1];
282 port->dvb.frontend = dvb_attach(s5h1409_attach,
283 &hauppauge_hvr1500q_config,
284 &dev->i2c_bus[0].i2c_adap);
285 if (port->dvb.frontend != NULL) {
286 dvb_attach(xc5000_attach, port->dvb.frontend,
287 &i2c_bus->i2c_adap,
288 &hauppauge_hvr1500q_tunerconfig);
289 }
290 break;
Michael Krufky07b4a832007-12-18 01:09:11 -0300291 case CX23885_BOARD_HAUPPAUGE_HVR1500:
292 i2c_bus = &dev->i2c_bus[1];
293 port->dvb.frontend = dvb_attach(s5h1409_attach,
294 &hauppauge_hvr1500_config,
295 &dev->i2c_bus[0].i2c_adap);
296 if (port->dvb.frontend != NULL) {
297 struct dvb_frontend *fe;
298 struct xc2028_config cfg = {
299 .i2c_adap = &i2c_bus->i2c_adap,
300 .i2c_addr = 0x61,
301 .video_dev = port,
302 .callback = cx23885_hvr1500_xc3028_callback,
303 };
304 static struct xc2028_ctrl ctl = {
305 .fname = "xc3028-v27.fw",
306 .max_len = 64,
307 .scode_table = OREN538,
308 };
309
310 fe = dvb_attach(xc2028_attach,
311 port->dvb.frontend, &cfg);
312 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
313 fe->ops.tuner_ops.set_config(fe, &ctl);
314 }
315 break;
Steven Tothd19770e2007-03-11 20:44:05 -0300316 default:
317 printk("%s: The frontend of your DVB/ATSC card isn't supported yet\n",
318 dev->name);
319 break;
320 }
321 if (NULL == port->dvb.frontend) {
322 printk("%s: frontend initialization failed\n", dev->name);
323 return -1;
324 }
325
326 /* Put the analog decoder in standby to keep it quiet */
Michael Krufkyf139fa72007-09-09 03:55:34 -0300327 cx23885_call_i2c_clients(i2c_bus, TUNER_SET_STANDBY, NULL);
Steven Tothd19770e2007-03-11 20:44:05 -0300328
Michael Krufky3ba71d22007-12-07 01:40:36 -0300329 if (port->dvb.frontend->ops.analog_ops.standby)
330 port->dvb.frontend->ops.analog_ops.standby(port->dvb.frontend);
331
Steven Tothd19770e2007-03-11 20:44:05 -0300332 /* register everything */
Michael Krufky44a64812007-03-20 23:00:18 -0300333 return videobuf_dvb_register(&port->dvb, THIS_MODULE, port,
334 &dev->pci->dev);
Steven Tothd19770e2007-03-11 20:44:05 -0300335}
336
337int cx23885_dvb_register(struct cx23885_tsport *port)
338{
339 struct cx23885_dev *dev = port->dev;
340 int err;
341
Michael Krufky44a64812007-03-20 23:00:18 -0300342 dprintk(1, "%s\n", __FUNCTION__);
343 dprintk(1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n",
Steven Tothd19770e2007-03-11 20:44:05 -0300344 dev->board,
345 dev->name,
346 dev->pci_bus,
347 dev->pci_slot);
348
349 err = -ENODEV;
Steven Tothd19770e2007-03-11 20:44:05 -0300350
351 /* dvb stuff */
352 printk("%s: cx23885 based dvb card\n", dev->name);
Mauro Carvalho Chehabaecfde52007-10-08 09:04:09 -0300353 videobuf_queue_pci_init(&port->dvb.dvbq, &dvb_qops, dev->pci, &port->slock,
Michael Krufky44a64812007-03-20 23:00:18 -0300354 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP,
355 sizeof(struct cx23885_buffer), port);
Steven Tothd19770e2007-03-11 20:44:05 -0300356 err = dvb_register(port);
357 if (err != 0)
358 printk("%s() dvb_register failed err = %d\n", __FUNCTION__, err);
359
Steven Tothd19770e2007-03-11 20:44:05 -0300360 return err;
361}
362
363int cx23885_dvb_unregister(struct cx23885_tsport *port)
364{
365 /* dvb */
366 if(port->dvb.frontend)
367 videobuf_dvb_unregister(&port->dvb);
368
369 return 0;
370}
Michael Krufky44a64812007-03-20 23:00:18 -0300371
372/*
373 * Local variables:
374 * c-basic-offset: 8
375 * End:
376 * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off
377*/