Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Bt8xx based DVB adapter driver
0004  *
0005  * Copyright (C) 2002,2003 Florian Schirmer <jolt@tuxbox.org>
0006  * Copyright (C) 2002 Peter Hettkamp <peter.hettkamp@htp-tel.de>
0007  * Copyright (C) 1999-2001 Ralph  Metzler & Marcus Metzler for convergence integrated media GmbH
0008  * Copyright (C) 1998,1999 Christian Theiss <mistert@rz.fh-augsburg.de>
0009  */
0010 
0011 #ifndef DVB_BT8XX_H
0012 #define DVB_BT8XX_H
0013 
0014 #include <linux/i2c.h>
0015 #include <linux/mutex.h>
0016 #include <media/dvbdev.h>
0017 #include <media/dvb_net.h>
0018 #include "bttv.h"
0019 #include "mt352.h"
0020 #include "sp887x.h"
0021 #include "dst_common.h"
0022 #include "nxt6000.h"
0023 #include "cx24110.h"
0024 #include "or51211.h"
0025 #include "lgdt330x.h"
0026 #include "zl10353.h"
0027 #include "tuner-simple.h"
0028 
0029 struct dvb_bt8xx_card {
0030     struct mutex lock;
0031     int nfeeds;
0032     char card_name[32];
0033     struct dvb_adapter dvb_adapter;
0034     struct bt878 *bt;
0035     unsigned int bttv_nr;
0036     struct dvb_demux demux;
0037     struct dmxdev dmxdev;
0038     struct dmx_frontend fe_hw;
0039     struct dmx_frontend fe_mem;
0040     u32 gpio_mode;
0041     u32 op_sync_orin;
0042     u32 irq_err_ignore;
0043     struct i2c_adapter *i2c_adapter;
0044     struct dvb_net dvbnet;
0045 
0046     struct dvb_frontend* fe;
0047 };
0048 
0049 #endif /* DVB_BT8XX_H */