blob: 07b76053a05087a5e3d4f97f9b09903116c2c66c [file] [log] [blame]
Steven Tothd19770e2007-03-11 20:44:05 -03001/*
2 * Driver for the Conexant CX23885 PCIe bridge
3 *
Steven Toth6d897612008-09-03 17:12:12 -03004 * Copyright (c) 2006 Steven Toth <stoth@linuxtv.org>
Steven Tothd19770e2007-03-11 20:44:05 -03005 *
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
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030033#include "dvb_ca_en50221.h"
Steven Tothd19770e2007-03-11 20:44:05 -030034#include "s5h1409.h"
Michael Krufky52b50452008-07-09 02:18:49 -030035#include "s5h1411.h"
Steven Tothd19770e2007-03-11 20:44:05 -030036#include "mt2131.h"
Michael Krufky3ba71d22007-12-07 01:40:36 -030037#include "tda8290.h"
Michael Krufky4041f1a2007-12-24 04:52:08 -030038#include "tda18271.h"
Michael Krufky9bc37ca2007-09-08 15:17:13 -030039#include "lgdt330x.h"
Steven Tothd1987d52007-12-18 01:57:06 -030040#include "xc5000.h"
Steven Tothb3ea0162008-04-19 01:14:19 -030041#include "tda10048.h"
Michael Krufky07b4a832007-12-18 01:09:11 -030042#include "tuner-xc2028.h"
Michael Krufky827855d2008-04-22 14:46:16 -030043#include "tuner-simple.h"
Steven Toth66762372008-04-22 15:38:26 -030044#include "dib7000p.h"
45#include "dibx000_common.h"
Steven Tothaef2d182008-08-04 21:39:53 -030046#include "zl10353.h"
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030047#include "stv0900.h"
48#include "stv6110.h"
49#include "lnbh24.h"
Igor M. Liplianin96318d02009-01-17 12:11:20 -030050#include "cx24116.h"
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030051#include "cimax2.h"
52#include "netup-eeprom.h"
53#include "netup-init.h"
Steven Tothd19770e2007-03-11 20:44:05 -030054
Steven Toth4513fc692008-01-12 11:36:36 -030055static unsigned int debug;
Steven Tothd19770e2007-03-11 20:44:05 -030056
Steven Toth4513fc692008-01-12 11:36:36 -030057#define dprintk(level, fmt, arg...)\
58 do { if (debug >= level)\
59 printk(KERN_DEBUG "%s/0: " fmt, dev->name, ## arg);\
60 } while (0)
Steven Tothd19770e2007-03-11 20:44:05 -030061
62/* ------------------------------------------------------------------ */
63
Michael Krufky3ba71d22007-12-07 01:40:36 -030064static unsigned int alt_tuner;
65module_param(alt_tuner, int, 0644);
66MODULE_PARM_DESC(alt_tuner, "Enable alternate tuner configuration");
67
Janne Grunau78e92002008-04-09 19:13:13 -030068DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
69
Michael Krufky3ba71d22007-12-07 01:40:36 -030070/* ------------------------------------------------------------------ */
71
Steven Tothd19770e2007-03-11 20:44:05 -030072static int dvb_buf_setup(struct videobuf_queue *q,
73 unsigned int *count, unsigned int *size)
74{
75 struct cx23885_tsport *port = q->priv_data;
76
77 port->ts_packet_size = 188 * 4;
78 port->ts_packet_count = 32;
79
80 *size = port->ts_packet_size * port->ts_packet_count;
81 *count = 32;
82 return 0;
83}
84
Michael Krufky44a64812007-03-20 23:00:18 -030085static int dvb_buf_prepare(struct videobuf_queue *q,
86 struct videobuf_buffer *vb, enum v4l2_field field)
Steven Tothd19770e2007-03-11 20:44:05 -030087{
88 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030089 return cx23885_buf_prepare(q, port, (struct cx23885_buffer *)vb, field);
Steven Tothd19770e2007-03-11 20:44:05 -030090}
91
92static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
93{
94 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030095 cx23885_buf_queue(port, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -030096}
97
Michael Krufky44a64812007-03-20 23:00:18 -030098static void dvb_buf_release(struct videobuf_queue *q,
99 struct videobuf_buffer *vb)
Steven Tothd19770e2007-03-11 20:44:05 -0300100{
Steven Toth9c8ced52008-10-16 20:18:44 -0300101 cx23885_free_buffer(q, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -0300102}
103
104static struct videobuf_queue_ops dvb_qops = {
105 .buf_setup = dvb_buf_setup,
106 .buf_prepare = dvb_buf_prepare,
107 .buf_queue = dvb_buf_queue,
108 .buf_release = dvb_buf_release,
109};
110
Steven Toth86184e02007-09-04 21:40:47 -0300111static struct s5h1409_config hauppauge_generic_config = {
Steven Tothd19770e2007-03-11 20:44:05 -0300112 .demod_address = 0x32 >> 1,
113 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothfc959be2007-09-08 19:08:17 -0300114 .gpio = S5H1409_GPIO_ON,
Michael Krufky2b032382007-12-13 10:04:10 -0300115 .qam_if = 44000,
Steven Tothfc959be2007-09-08 19:08:17 -0300116 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300117 .status_mode = S5H1409_DEMODLOCKING,
118 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothfc959be2007-09-08 19:08:17 -0300119};
120
Steven Tothb3ea0162008-04-19 01:14:19 -0300121static struct tda10048_config hauppauge_hvr1200_config = {
122 .demod_address = 0x10 >> 1,
123 .output_mode = TDA10048_SERIAL_OUTPUT,
124 .fwbulkwritelen = TDA10048_BULKWRITE_200,
Steven Toth484d9e02009-05-02 11:08:23 -0300125 .inversion = TDA10048_INVERSION_ON,
126 .if_freq_khz = TDA10048_IF_4300,
127 .clk_freq_khz = TDA10048_CLK_16000,
Steven Tothb3ea0162008-04-19 01:14:19 -0300128};
129
Michael Krufky3ba71d22007-12-07 01:40:36 -0300130static struct s5h1409_config hauppauge_ezqam_config = {
131 .demod_address = 0x32 >> 1,
132 .output_mode = S5H1409_SERIAL_OUTPUT,
133 .gpio = S5H1409_GPIO_OFF,
134 .qam_if = 4000,
135 .inversion = S5H1409_INVERSION_ON,
Steven Tothdfc1c082008-01-15 21:35:22 -0300136 .status_mode = S5H1409_DEMODLOCKING,
137 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300138};
139
Steven Tothfc959be2007-09-08 19:08:17 -0300140static struct s5h1409_config hauppauge_hvr1800lp_config = {
141 .demod_address = 0x32 >> 1,
142 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothd19770e2007-03-11 20:44:05 -0300143 .gpio = S5H1409_GPIO_OFF,
Michael Krufky2b032382007-12-13 10:04:10 -0300144 .qam_if = 44000,
Steven Tothfe4751632007-03-20 15:27:53 -0300145 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300146 .status_mode = S5H1409_DEMODLOCKING,
147 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd19770e2007-03-11 20:44:05 -0300148};
149
Michael Krufky07b4a832007-12-18 01:09:11 -0300150static struct s5h1409_config hauppauge_hvr1500_config = {
151 .demod_address = 0x32 >> 1,
152 .output_mode = S5H1409_SERIAL_OUTPUT,
153 .gpio = S5H1409_GPIO_OFF,
154 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300155 .status_mode = S5H1409_DEMODLOCKING,
156 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky07b4a832007-12-18 01:09:11 -0300157};
158
Steven Toth86184e02007-09-04 21:40:47 -0300159static struct mt2131_config hauppauge_generic_tunerconfig = {
Steven Totha77743b2007-08-22 21:01:20 -0300160 0x61
161};
162
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300163static struct lgdt330x_config fusionhdtv_5_express = {
164 .demod_address = 0x0e,
165 .demod_chip = LGDT3303,
166 .serial_mpeg = 0x40,
167};
168
Steven Tothd1987d52007-12-18 01:57:06 -0300169static struct s5h1409_config hauppauge_hvr1500q_config = {
170 .demod_address = 0x32 >> 1,
171 .output_mode = S5H1409_SERIAL_OUTPUT,
172 .gpio = S5H1409_GPIO_ON,
173 .qam_if = 44000,
174 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300175 .status_mode = S5H1409_DEMODLOCKING,
176 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd1987d52007-12-18 01:57:06 -0300177};
178
Michael Krufky335377b2008-05-07 01:43:10 -0300179static struct s5h1409_config dvico_s5h1409_config = {
180 .demod_address = 0x32 >> 1,
181 .output_mode = S5H1409_SERIAL_OUTPUT,
182 .gpio = S5H1409_GPIO_ON,
183 .qam_if = 44000,
184 .inversion = S5H1409_INVERSION_OFF,
185 .status_mode = S5H1409_DEMODLOCKING,
186 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
187};
188
Michael Krufky52b50452008-07-09 02:18:49 -0300189static struct s5h1411_config dvico_s5h1411_config = {
190 .output_mode = S5H1411_SERIAL_OUTPUT,
191 .gpio = S5H1411_GPIO_ON,
192 .qam_if = S5H1411_IF_44000,
193 .vsb_if = S5H1411_IF_44000,
194 .inversion = S5H1411_INVERSION_OFF,
195 .status_mode = S5H1411_DEMODLOCKING,
196 .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
197};
198
Steven Tothd1987d52007-12-18 01:57:06 -0300199static struct xc5000_config hauppauge_hvr1500q_tunerconfig = {
Steven Tothe12671cf2007-12-20 01:14:43 -0300200 .i2c_address = 0x61,
201 .if_khz = 5380,
Steven Tothd1987d52007-12-18 01:57:06 -0300202};
203
Michael Krufky335377b2008-05-07 01:43:10 -0300204static struct xc5000_config dvico_xc5000_tunerconfig = {
205 .i2c_address = 0x64,
206 .if_khz = 5380,
Michael Krufky335377b2008-05-07 01:43:10 -0300207};
208
Michael Krufky4041f1a2007-12-24 04:52:08 -0300209static struct tda829x_config tda829x_no_probe = {
210 .probe_tuner = TDA829X_DONT_PROBE,
211};
212
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300213static struct tda18271_std_map hauppauge_tda18271_std_map = {
Michael Krufkyc0dc0c12008-04-22 14:46:22 -0300214 .atsc_6 = { .if_freq = 5380, .agc_mode = 3, .std = 3,
215 .if_lvl = 6, .rfagc_top = 0x37 },
216 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 0,
217 .if_lvl = 6, .rfagc_top = 0x37 },
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300218};
219
220static struct tda18271_config hauppauge_tda18271_config = {
221 .std_map = &hauppauge_tda18271_std_map,
222 .gate = TDA18271_GATE_ANALOG,
223};
224
Steven Tothb3ea0162008-04-19 01:14:19 -0300225static struct tda18271_config hauppauge_hvr1200_tuner_config = {
226 .gate = TDA18271_GATE_ANALOG,
227};
228
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700229static struct dibx000_agc_config xc3028_agc_config = {
Steven Toth66762372008-04-22 15:38:26 -0300230 BAND_VHF | BAND_UHF, /* band_caps */
231
232 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=0,
233 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
234 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0,
235 * P_agc_nb_est=2, P_agc_write=0
236 */
237 (0 << 15) | (0 << 14) | (0 << 11) | (0 << 10) | (0 << 9) | (0 << 8) |
238 (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), /* setup */
239
240 712, /* inv_gain */
241 21, /* time_stabiliz */
242
243 0, /* alpha_level */
244 118, /* thlock */
245
246 0, /* wbd_inv */
247 2867, /* wbd_ref */
248 0, /* wbd_sel */
249 2, /* wbd_alpha */
250
251 0, /* agc1_max */
252 0, /* agc1_min */
253 39718, /* agc2_max */
254 9930, /* agc2_min */
255 0, /* agc1_pt1 */
256 0, /* agc1_pt2 */
257 0, /* agc1_pt3 */
258 0, /* agc1_slope1 */
259 0, /* agc1_slope2 */
260 0, /* agc2_pt1 */
261 128, /* agc2_pt2 */
262 29, /* agc2_slope1 */
263 29, /* agc2_slope2 */
264
265 17, /* alpha_mant */
266 27, /* alpha_exp */
267 23, /* beta_mant */
268 51, /* beta_exp */
269
270 1, /* perform_agc_softsplit */
271};
272
273/* PLL Configuration for COFDM BW_MHz = 8.000000
274 * With external clock = 30.000000 */
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700275static struct dibx000_bandwidth_config xc3028_bw_config = {
Steven Toth66762372008-04-22 15:38:26 -0300276 60000, /* internal */
277 30000, /* sampling */
278 1, /* pll_cfg: prediv */
279 8, /* pll_cfg: ratio */
280 3, /* pll_cfg: range */
281 1, /* pll_cfg: reset */
282 0, /* pll_cfg: bypass */
283 0, /* misc: refdiv */
284 0, /* misc: bypclk_div */
285 1, /* misc: IO_CLK_en_core */
286 1, /* misc: ADClkSrc */
287 0, /* misc: modulo */
288 (3 << 14) | (1 << 12) | (524 << 0), /* sad_cfg: refsel, sel, freq_15k */
289 (1 << 25) | 5816102, /* ifreq = 5.200000 MHz */
290 20452225, /* timf */
291 30000000 /* xtal_hz */
292};
293
294static struct dib7000p_config hauppauge_hvr1400_dib7000_config = {
295 .output_mpeg2_in_188_bytes = 1,
296 .hostbus_diversity = 1,
297 .tuner_is_baseband = 0,
298 .update_lna = NULL,
299
300 .agc_config_count = 1,
301 .agc = &xc3028_agc_config,
302 .bw = &xc3028_bw_config,
303
304 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
305 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
306 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
307
308 .pwm_freq_div = 0,
309 .agc_control = NULL,
310 .spur_protect = 0,
311
312 .output_mode = OUTMODE_MPEG2_SERIAL,
313};
314
Steven Tothaef2d182008-08-04 21:39:53 -0300315static struct zl10353_config dvico_fusionhdtv_xc3028 = {
316 .demod_address = 0x0f,
317 .if2 = 45600,
318 .no_tuner = 1,
Christopher Pascoed4dc6732009-04-27 11:27:04 -0300319 .disable_i2c_gate_ctrl = 1,
Steven Tothaef2d182008-08-04 21:39:53 -0300320};
321
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300322static struct stv0900_config netup_stv0900_config = {
323 .demod_address = 0x68,
324 .xtal = 27000000,
325 .clkmode = 3,/* 0-CLKI, 2-XTALI, else AUTO */
326 .diseqc_mode = 2,/* 2/3 PWM */
327 .path1_mode = 2,/*Serial continues clock */
328 .path2_mode = 2,/*Serial continues clock */
329 .tun1_maddress = 0,/* 0x60 */
330 .tun2_maddress = 3,/* 0x63 */
331 .tun1_adc = 1,/* 1 Vpp */
332 .tun2_adc = 1,/* 1 Vpp */
333};
334
335static struct stv6110_config netup_stv6110_tunerconfig_a = {
336 .i2c_address = 0x60,
337 .mclk = 27000000,
338 .iq_wiring = 0,
339};
340
341static struct stv6110_config netup_stv6110_tunerconfig_b = {
342 .i2c_address = 0x63,
343 .mclk = 27000000,
344 .iq_wiring = 1,
345};
346
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300347static int tbs_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
348{
349 struct cx23885_tsport *port = fe->dvb->priv;
350 struct cx23885_dev *dev = port->dev;
351
352 if (voltage == SEC_VOLTAGE_18)
353 cx_write(MC417_RWD, 0x00001e00);/* GPIO-13 high */
354 else if (voltage == SEC_VOLTAGE_13)
355 cx_write(MC417_RWD, 0x00001a00);/* GPIO-13 low */
356 else
357 cx_write(MC417_RWD, 0x00001800);/* GPIO-12 low */
358 return 0;
359}
360
361static struct cx24116_config tbs_cx24116_config = {
362 .demod_address = 0x05,
363};
364
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300365static struct cx24116_config tevii_cx24116_config = {
366 .demod_address = 0x55,
367};
368
Igor M. Liplianinc9b8b042009-01-17 12:23:31 -0300369static struct cx24116_config dvbworld_cx24116_config = {
370 .demod_address = 0x05,
371};
372
Steven Tothd19770e2007-03-11 20:44:05 -0300373static int dvb_register(struct cx23885_tsport *port)
374{
375 struct cx23885_dev *dev = port->dev;
Michael Krufkyf139fa72007-09-09 03:55:34 -0300376 struct cx23885_i2c *i2c_bus = NULL;
Steven Toth363c35f2008-10-11 11:05:50 -0300377 struct videobuf_dvb_frontend *fe0;
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300378 int ret;
Steven Toth363c35f2008-10-11 11:05:50 -0300379
Darron Broadf972e0bd2008-10-11 11:24:30 -0300380 /* Get the first frontend */
Darron Broad92abe9e2008-10-11 11:18:53 -0300381 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth363c35f2008-10-11 11:05:50 -0300382 if (!fe0)
383 return -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300384
385 /* init struct videobuf_dvb */
Steven Toth363c35f2008-10-11 11:05:50 -0300386 fe0->dvb.name = dev->name;
Steven Tothd19770e2007-03-11 20:44:05 -0300387
388 /* init frontend */
389 switch (dev->board) {
Steven Totha77743b2007-08-22 21:01:20 -0300390 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300391 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300392 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Toth86184e02007-09-04 21:40:47 -0300393 &hauppauge_generic_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300394 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300395 if (fe0->dvb.frontend != NULL) {
396 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300397 &i2c_bus->i2c_adap,
Steven Toth86184e02007-09-04 21:40:47 -0300398 &hauppauge_generic_tunerconfig, 0);
Steven Tothd19770e2007-03-11 20:44:05 -0300399 }
400 break;
Michael Krufky3ba71d22007-12-07 01:40:36 -0300401 case CX23885_BOARD_HAUPPAUGE_HVR1800:
402 i2c_bus = &dev->i2c_bus[0];
Darron Broad92abe9e2008-10-11 11:18:53 -0300403 switch (alt_tuner) {
Michael Krufky3ba71d22007-12-07 01:40:36 -0300404 case 1:
Steven Toth363c35f2008-10-11 11:05:50 -0300405 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300406 dvb_attach(s5h1409_attach,
407 &hauppauge_ezqam_config,
408 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300409 if (fe0->dvb.frontend != NULL) {
410 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300411 &dev->i2c_bus[1].i2c_adap, 0x42,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300412 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300413 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300414 0x60, &dev->i2c_bus[1].i2c_adap,
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300415 &hauppauge_tda18271_config);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300416 }
417 break;
418 case 0:
419 default:
Steven Toth363c35f2008-10-11 11:05:50 -0300420 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300421 dvb_attach(s5h1409_attach,
422 &hauppauge_generic_config,
423 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300424 if (fe0->dvb.frontend != NULL)
425 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300426 &i2c_bus->i2c_adap,
427 &hauppauge_generic_tunerconfig, 0);
428 break;
429 }
430 break;
Steven Tothfc959be2007-09-08 19:08:17 -0300431 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300432 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300433 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothfc959be2007-09-08 19:08:17 -0300434 &hauppauge_hvr1800lp_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300435 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300436 if (fe0->dvb.frontend != NULL) {
437 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300438 &i2c_bus->i2c_adap,
Steven Tothfc959be2007-09-08 19:08:17 -0300439 &hauppauge_generic_tunerconfig, 0);
440 }
441 break;
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300442 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300443 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300444 fe0->dvb.frontend = dvb_attach(lgdt330x_attach,
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300445 &fusionhdtv_5_express,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300446 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300447 if (fe0->dvb.frontend != NULL) {
448 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufky827855d2008-04-22 14:46:16 -0300449 &i2c_bus->i2c_adap, 0x61,
450 TUNER_LG_TDVS_H06XF);
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300451 }
452 break;
Steven Tothd1987d52007-12-18 01:57:06 -0300453 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
454 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300455 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothd1987d52007-12-18 01:57:06 -0300456 &hauppauge_hvr1500q_config,
457 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300458 if (fe0->dvb.frontend != NULL)
459 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300460 &i2c_bus->i2c_adap,
461 &hauppauge_hvr1500q_tunerconfig);
Steven Tothd1987d52007-12-18 01:57:06 -0300462 break;
Michael Krufky07b4a832007-12-18 01:09:11 -0300463 case CX23885_BOARD_HAUPPAUGE_HVR1500:
464 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300465 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky07b4a832007-12-18 01:09:11 -0300466 &hauppauge_hvr1500_config,
467 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300468 if (fe0->dvb.frontend != NULL) {
Michael Krufky07b4a832007-12-18 01:09:11 -0300469 struct dvb_frontend *fe;
470 struct xc2028_config cfg = {
471 .i2c_adap = &i2c_bus->i2c_adap,
472 .i2c_addr = 0x61,
Michael Krufky07b4a832007-12-18 01:09:11 -0300473 };
474 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300475 .fname = XC2028_DEFAULT_FIRMWARE,
Michael Krufky07b4a832007-12-18 01:09:11 -0300476 .max_len = 64,
Steven Toth52c3d292009-04-20 22:42:00 -0300477 .demod = XC3028_FE_OREN538,
Michael Krufky07b4a832007-12-18 01:09:11 -0300478 };
479
480 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300481 fe0->dvb.frontend, &cfg);
Michael Krufky07b4a832007-12-18 01:09:11 -0300482 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
483 fe->ops.tuner_ops.set_config(fe, &ctl);
484 }
485 break;
Steven Tothb3ea0162008-04-19 01:14:19 -0300486 case CX23885_BOARD_HAUPPAUGE_HVR1200:
Steven Totha780a312008-04-19 01:25:52 -0300487 case CX23885_BOARD_HAUPPAUGE_HVR1700:
Steven Tothb3ea0162008-04-19 01:14:19 -0300488 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300489 fe0->dvb.frontend = dvb_attach(tda10048_attach,
Steven Tothb3ea0162008-04-19 01:14:19 -0300490 &hauppauge_hvr1200_config,
491 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300492 if (fe0->dvb.frontend != NULL) {
493 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300494 &dev->i2c_bus[1].i2c_adap, 0x42,
495 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300496 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300497 0x60, &dev->i2c_bus[1].i2c_adap,
498 &hauppauge_hvr1200_tuner_config);
499 }
500 break;
Steven Toth66762372008-04-22 15:38:26 -0300501 case CX23885_BOARD_HAUPPAUGE_HVR1400:
502 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300503 fe0->dvb.frontend = dvb_attach(dib7000p_attach,
Steven Toth66762372008-04-22 15:38:26 -0300504 &i2c_bus->i2c_adap,
505 0x12, &hauppauge_hvr1400_dib7000_config);
Steven Toth363c35f2008-10-11 11:05:50 -0300506 if (fe0->dvb.frontend != NULL) {
Steven Toth66762372008-04-22 15:38:26 -0300507 struct dvb_frontend *fe;
508 struct xc2028_config cfg = {
509 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
510 .i2c_addr = 0x64,
Steven Toth66762372008-04-22 15:38:26 -0300511 };
512 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300513 .fname = XC3028L_DEFAULT_FIRMWARE,
Steven Toth66762372008-04-22 15:38:26 -0300514 .max_len = 64,
515 .demod = 5000,
Steven Toth9c8ced52008-10-16 20:18:44 -0300516 /* This is true for all demods with
517 v36 firmware? */
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -0300518 .type = XC2028_D2633,
Steven Toth66762372008-04-22 15:38:26 -0300519 };
520
521 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300522 fe0->dvb.frontend, &cfg);
Steven Toth66762372008-04-22 15:38:26 -0300523 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
524 fe->ops.tuner_ops.set_config(fe, &ctl);
525 }
526 break;
Michael Krufky335377b2008-05-07 01:43:10 -0300527 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
528 i2c_bus = &dev->i2c_bus[port->nr - 1];
529
Steven Toth363c35f2008-10-11 11:05:50 -0300530 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky335377b2008-05-07 01:43:10 -0300531 &dvico_s5h1409_config,
532 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300533 if (fe0->dvb.frontend == NULL)
534 fe0->dvb.frontend = dvb_attach(s5h1411_attach,
Michael Krufky52b50452008-07-09 02:18:49 -0300535 &dvico_s5h1411_config,
536 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300537 if (fe0->dvb.frontend != NULL)
538 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300539 &i2c_bus->i2c_adap,
540 &dvico_xc5000_tunerconfig);
Michael Krufky335377b2008-05-07 01:43:10 -0300541 break;
Steven Tothaef2d182008-08-04 21:39:53 -0300542 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP: {
543 i2c_bus = &dev->i2c_bus[port->nr - 1];
544
Steven Toth363c35f2008-10-11 11:05:50 -0300545 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Tothaef2d182008-08-04 21:39:53 -0300546 &dvico_fusionhdtv_xc3028,
547 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300548 if (fe0->dvb.frontend != NULL) {
Steven Tothaef2d182008-08-04 21:39:53 -0300549 struct dvb_frontend *fe;
550 struct xc2028_config cfg = {
551 .i2c_adap = &i2c_bus->i2c_adap,
552 .i2c_addr = 0x61,
Steven Tothaef2d182008-08-04 21:39:53 -0300553 };
554 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300555 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Tothaef2d182008-08-04 21:39:53 -0300556 .max_len = 64,
557 .demod = XC3028_FE_ZARLINK456,
558 };
559
Steven Toth363c35f2008-10-11 11:05:50 -0300560 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Tothaef2d182008-08-04 21:39:53 -0300561 &cfg);
562 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
563 fe->ops.tuner_ops.set_config(fe, &ctl);
564 }
565 break;
566 }
Steven Toth4c56b042008-08-12 13:30:03 -0300567 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
Igor M. Liplianin9bb1b7e2008-11-23 14:11:16 -0300568 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
Steven Toth4c56b042008-08-12 13:30:03 -0300569 i2c_bus = &dev->i2c_bus[0];
570
Steven Toth363c35f2008-10-11 11:05:50 -0300571 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Toth4c56b042008-08-12 13:30:03 -0300572 &dvico_fusionhdtv_xc3028,
573 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300574 if (fe0->dvb.frontend != NULL) {
Steven Toth4c56b042008-08-12 13:30:03 -0300575 struct dvb_frontend *fe;
576 struct xc2028_config cfg = {
577 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
578 .i2c_addr = 0x61,
Steven Toth4c56b042008-08-12 13:30:03 -0300579 };
580 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300581 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Toth4c56b042008-08-12 13:30:03 -0300582 .max_len = 64,
583 .demod = XC3028_FE_ZARLINK456,
584 };
585
Steven Toth363c35f2008-10-11 11:05:50 -0300586 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Toth4c56b042008-08-12 13:30:03 -0300587 &cfg);
588 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
589 fe->ops.tuner_ops.set_config(fe, &ctl);
590 }
591 break;
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300592 case CX23885_BOARD_TBS_6920:
593 i2c_bus = &dev->i2c_bus[0];
594
595 fe0->dvb.frontend = dvb_attach(cx24116_attach,
596 &tbs_cx24116_config,
597 &i2c_bus->i2c_adap);
598 if (fe0->dvb.frontend != NULL)
599 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
600
601 break;
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300602 case CX23885_BOARD_TEVII_S470:
603 i2c_bus = &dev->i2c_bus[1];
604
605 fe0->dvb.frontend = dvb_attach(cx24116_attach,
606 &tevii_cx24116_config,
607 &i2c_bus->i2c_adap);
608 if (fe0->dvb.frontend != NULL)
609 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
610
611 break;
Igor M. Liplianinc9b8b042009-01-17 12:23:31 -0300612 case CX23885_BOARD_DVBWORLD_2005:
613 i2c_bus = &dev->i2c_bus[1];
614
615 fe0->dvb.frontend = dvb_attach(cx24116_attach,
616 &dvbworld_cx24116_config,
617 &i2c_bus->i2c_adap);
618 break;
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300619 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
620 i2c_bus = &dev->i2c_bus[0];
621 switch (port->nr) {
622 /* port B */
623 case 1:
624 fe0->dvb.frontend = dvb_attach(stv0900_attach,
625 &netup_stv0900_config,
626 &i2c_bus->i2c_adap, 0);
627 if (fe0->dvb.frontend != NULL) {
628 if (dvb_attach(stv6110_attach,
629 fe0->dvb.frontend,
630 &netup_stv6110_tunerconfig_a,
631 &i2c_bus->i2c_adap)) {
632 if (!dvb_attach(lnbh24_attach,
633 fe0->dvb.frontend,
634 &i2c_bus->i2c_adap,
635 LNBH24_PCL, 0, 0x09))
636 printk(KERN_ERR
637 "No LNBH24 found!\n");
638
639 }
640 }
641 break;
642 /* port C */
643 case 2:
644 fe0->dvb.frontend = dvb_attach(stv0900_attach,
645 &netup_stv0900_config,
646 &i2c_bus->i2c_adap, 1);
647 if (fe0->dvb.frontend != NULL) {
648 if (dvb_attach(stv6110_attach,
649 fe0->dvb.frontend,
650 &netup_stv6110_tunerconfig_b,
651 &i2c_bus->i2c_adap)) {
652 if (!dvb_attach(lnbh24_attach,
653 fe0->dvb.frontend,
654 &i2c_bus->i2c_adap,
655 LNBH24_PCL, 0, 0x0a))
656 printk(KERN_ERR
657 "No LNBH24 found!\n");
658
659 }
660 }
661 break;
662 }
663 break;
Steven Tothd19770e2007-03-11 20:44:05 -0300664 default:
Steven Toth9c8ced52008-10-16 20:18:44 -0300665 printk(KERN_INFO "%s: The frontend of your DVB/ATSC card "
666 " isn't supported yet\n",
Steven Tothd19770e2007-03-11 20:44:05 -0300667 dev->name);
668 break;
669 }
Steven Toth363c35f2008-10-11 11:05:50 -0300670 if (NULL == fe0->dvb.frontend) {
Steven Toth9c8ced52008-10-16 20:18:44 -0300671 printk(KERN_ERR "%s: frontend initialization failed\n",
672 dev->name);
Steven Tothd19770e2007-03-11 20:44:05 -0300673 return -1;
674 }
Michael Krufkyd7cba042008-09-12 13:31:45 -0300675 /* define general-purpose callback pointer */
Steven Toth363c35f2008-10-11 11:05:50 -0300676 fe0->dvb.frontend->callback = cx23885_tuner_callback;
Steven Tothd19770e2007-03-11 20:44:05 -0300677
678 /* Put the analog decoder in standby to keep it quiet */
Hans Verkuil7c9fc9d2009-04-01 03:49:59 -0300679 call_all(dev, tuner, s_standby);
Steven Tothd19770e2007-03-11 20:44:05 -0300680
Steven Toth363c35f2008-10-11 11:05:50 -0300681 if (fe0->dvb.frontend->ops.analog_ops.standby)
682 fe0->dvb.frontend->ops.analog_ops.standby(fe0->dvb.frontend);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300683
Steven Tothd19770e2007-03-11 20:44:05 -0300684 /* register everything */
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300685 ret = videobuf_dvb_register_bus(&port->frontends, THIS_MODULE, port,
Darron Broad59b18422008-10-11 11:44:05 -0300686 &dev->pci->dev, adapter_nr, 0);
Steven Toth363c35f2008-10-11 11:05:50 -0300687
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300688 /* init CI & MAC */
689 switch (dev->board) {
690 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI: {
691 static struct netup_card_info cinfo;
692
693 netup_get_card_info(&dev->i2c_bus[0].i2c_adap, &cinfo);
694 memcpy(port->frontends.adapter.proposed_mac,
695 cinfo.port[port->nr - 1].mac, 6);
696 printk(KERN_INFO "NetUP Dual DVB-S2 CI card port%d MAC="
697 "%02X:%02X:%02X:%02X:%02X:%02X\n",
698 port->nr,
699 port->frontends.adapter.proposed_mac[0],
700 port->frontends.adapter.proposed_mac[1],
701 port->frontends.adapter.proposed_mac[2],
702 port->frontends.adapter.proposed_mac[3],
703 port->frontends.adapter.proposed_mac[4],
704 port->frontends.adapter.proposed_mac[5]);
705
706 netup_ci_init(port);
707 break;
708 }
709 }
710
711 return ret;
Steven Tothd19770e2007-03-11 20:44:05 -0300712}
713
714int cx23885_dvb_register(struct cx23885_tsport *port)
715{
Steven Toth363c35f2008-10-11 11:05:50 -0300716
717 struct videobuf_dvb_frontend *fe0;
Steven Tothd19770e2007-03-11 20:44:05 -0300718 struct cx23885_dev *dev = port->dev;
Steven Totheb0c58b2008-10-11 12:34:39 -0300719 int err, i;
Steven Tothd19770e2007-03-11 20:44:05 -0300720
Steven Totheb0c58b2008-10-11 12:34:39 -0300721 /* Here we need to allocate the correct number of frontends,
722 * as reflected in the cards struct. The reality is that currrently
723 * no cx23885 boards support this - yet. But, if we don't modify this
724 * code then the second frontend would never be allocated (later)
725 * and fail with error before the attach in dvb_register().
726 * Without these changes we risk an OOPS later. The changes here
727 * are for safety, and should provide a good foundation for the
728 * future addition of any multi-frontend cx23885 based boards.
729 */
730 printk(KERN_INFO "%s() allocating %d frontend(s)\n", __func__,
731 port->num_frontends);
Steven Toth363c35f2008-10-11 11:05:50 -0300732
Steven Totheb0c58b2008-10-11 12:34:39 -0300733 for (i = 1; i <= port->num_frontends; i++) {
Darron Broad96b7a1a2008-10-15 20:26:34 -0300734 if (videobuf_dvb_alloc_frontend(
Steven Toth9c8ced52008-10-16 20:18:44 -0300735 &port->frontends, i) == NULL) {
Steven Totheb0c58b2008-10-11 12:34:39 -0300736 printk(KERN_ERR "%s() failed to alloc\n", __func__);
737 return -ENOMEM;
738 }
Steven Tothd19770e2007-03-11 20:44:05 -0300739
Steven Totheb0c58b2008-10-11 12:34:39 -0300740 fe0 = videobuf_dvb_get_frontend(&port->frontends, i);
741 if (!fe0)
742 err = -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300743
Steven Totheb0c58b2008-10-11 12:34:39 -0300744 dprintk(1, "%s\n", __func__);
Steven Toth9c8ced52008-10-16 20:18:44 -0300745 dprintk(1, " ->probed by Card=%d Name=%s, PCI %02x:%02x\n",
Steven Totheb0c58b2008-10-11 12:34:39 -0300746 dev->board,
747 dev->name,
748 dev->pci_bus,
749 dev->pci_slot);
750
751 err = -ENODEV;
752
753 /* dvb stuff */
754 /* We have to init the queue for each frontend on a port. */
Steven Toth9c8ced52008-10-16 20:18:44 -0300755 printk(KERN_INFO "%s: cx23885 based dvb card\n", dev->name);
756 videobuf_queue_sg_init(&fe0->dvb.dvbq, &dvb_qops,
757 &dev->pci->dev, &port->slock,
Michael Krufky44a64812007-03-20 23:00:18 -0300758 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP,
759 sizeof(struct cx23885_buffer), port);
Steven Totheb0c58b2008-10-11 12:34:39 -0300760 }
Steven Tothd19770e2007-03-11 20:44:05 -0300761 err = dvb_register(port);
762 if (err != 0)
Steven Toth9c8ced52008-10-16 20:18:44 -0300763 printk(KERN_ERR "%s() dvb_register failed err = %d\n",
764 __func__, err);
Steven Tothd19770e2007-03-11 20:44:05 -0300765
Steven Tothd19770e2007-03-11 20:44:05 -0300766 return err;
767}
768
769int cx23885_dvb_unregister(struct cx23885_tsport *port)
770{
Steven Toth363c35f2008-10-11 11:05:50 -0300771 struct videobuf_dvb_frontend *fe0;
772
Steven Totheb0c58b2008-10-11 12:34:39 -0300773 /* FIXME: in an error condition where the we have
774 * an expected number of frontends (attach problem)
775 * then this might not clean up correctly, if 1
776 * is invalid.
777 * This comment only applies to future boards IF they
778 * implement MFE support.
779 */
Darron Broad92abe9e2008-10-11 11:18:53 -0300780 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth9c8ced52008-10-16 20:18:44 -0300781 if (fe0->dvb.frontend)
Steven Toth363c35f2008-10-11 11:05:50 -0300782 videobuf_dvb_unregister_bus(&port->frontends);
Steven Tothd19770e2007-03-11 20:44:05 -0300783
Hans Verkuilafd96662009-03-13 13:24:19 -0300784 switch (port->dev->board) {
785 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
786 netup_ci_exit(port);
787 break;
788 }
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300789
Steven Tothd19770e2007-03-11 20:44:05 -0300790 return 0;
791}
Michael Krufky44a64812007-03-20 23:00:18 -0300792