blob: 437912e49824a5be554ad0bc262e3b057f339b41 [file] [log] [blame]
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07001/*
Patrick Boettcherd66b94b2009-05-20 05:08:26 -03002 * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
3 * flexcop-common.h - common header file for device-specific source files
4 * see flexcop.c for copyright information
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07005 */
6#ifndef __FLEXCOP_COMMON_H__
7#define __FLEXCOP_COMMON_H__
8
Alexey Dobriyana6b7a402011-06-06 10:43:46 +00009#include <linux/interrupt.h>
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070010#include <linux/pci.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020011#include <linux/mutex.h>
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070012
13#include "flexcop-reg.h"
14
15#include "dmxdev.h"
16#include "dvb_demux.h"
17#include "dvb_filter.h"
18#include "dvb_net.h"
19#include "dvb_frontend.h"
20
21#define FC_MAX_FEED 256
22
23#ifndef FC_LOG_PREFIX
24#warning please define a log prefix for your file, using a default one
25#define FC_LOG_PREFIX "b2c2-undef"
26#endif
27
28/* Steal from usb.h */
29#undef err
Uwe Bugla1589a992009-03-29 07:46:58 -030030#define err(format, arg...) \
31 printk(KERN_ERR FC_LOG_PREFIX ": " format "\n" , ## arg)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070032#undef info
Uwe Bugla1589a992009-03-29 07:46:58 -030033#define info(format, arg...) \
34 printk(KERN_INFO FC_LOG_PREFIX ": " format "\n" , ## arg)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070035#undef warn
Uwe Bugla1589a992009-03-29 07:46:58 -030036#define warn(format, arg...) \
37 printk(KERN_WARNING FC_LOG_PREFIX ": " format "\n" , ## arg)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070038
39struct flexcop_dma {
40 struct pci_dev *pdev;
41
42 u8 *cpu_addr0;
43 dma_addr_t dma_addr0;
44 u8 *cpu_addr1;
45 dma_addr_t dma_addr1;
46 u32 size; /* size of each address in bytes */
47};
48
Patrick Boettcher6394cf52008-03-29 20:49:57 -030049struct flexcop_i2c_adapter {
50 struct flexcop_device *fc;
51 struct i2c_adapter i2c_adap;
52
53 u8 no_base_addr;
54 flexcop_i2c_port_t port;
55};
56
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070057/* Control structure for data definitions that are common to
58 * the B2C2-based PCI and USB devices.
59 */
60struct flexcop_device {
61 /* general */
62 struct device *dev; /* for firmware_class */
63
64#define FC_STATE_DVB_INIT 0x01
65#define FC_STATE_I2C_INIT 0x02
66#define FC_STATE_FE_INIT 0x04
67 int init_state;
68
69 /* device information */
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070070 int has_32_hw_pid_filter;
71 flexcop_revision_t rev;
72 flexcop_device_type_t dev_type;
73 flexcop_bus_t bus_type;
74
75 /* dvb stuff */
76 struct dvb_adapter dvb_adapter;
77 struct dvb_frontend *fe;
78 struct dvb_net dvbnet;
79 struct dvb_demux demux;
80 struct dmxdev dmxdev;
81 struct dmx_frontend hw_frontend;
82 struct dmx_frontend mem_frontend;
83 int (*fe_sleep) (struct dvb_frontend *);
84
Patrick Boettcher6394cf52008-03-29 20:49:57 -030085 struct flexcop_i2c_adapter fc_i2c_adap[3];
Ingo Molnar3593cab2006-02-07 06:49:14 -020086 struct mutex i2c_mutex;
Johannes Stezenbach59a7ad62005-05-16 21:54:16 -070087 struct module *owner;
88
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070089 /* options and status */
Johannes Stezenbachc4ee3fd2005-05-16 21:54:15 -070090 int extra_feedcount;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070091 int feedcount;
92 int pid_filtering;
Johannes Stezenbachc4ee3fd2005-05-16 21:54:15 -070093 int fullts_streaming_state;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070094
95 /* bus specific callbacks */
Uwe Bugla1589a992009-03-29 07:46:58 -030096 flexcop_ibi_value(*read_ibi_reg) (struct flexcop_device *,
97 flexcop_ibi_register);
98 int (*write_ibi_reg) (struct flexcop_device *,
99 flexcop_ibi_register, flexcop_ibi_value);
100 int (*i2c_request) (struct flexcop_i2c_adapter *,
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300101 flexcop_access_op_t, u8 chipaddr, u8 addr, u8 *buf, u16 len);
Uwe Bugla1589a992009-03-29 07:46:58 -0300102 int (*stream_control) (struct flexcop_device *, int);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700103 int (*get_mac_addr) (struct flexcop_device *fc, int extended);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700104 void *bus_specific;
105};
106
107/* exported prototypes */
108
109/* from flexcop.c */
110void flexcop_pass_dmx_data(struct flexcop_device *fc, u8 *buf, u32 len);
111void flexcop_pass_dmx_packets(struct flexcop_device *fc, u8 *buf, u32 no);
112
113struct flexcop_device *flexcop_device_kmalloc(size_t bus_specific_len);
Uwe Bugla1589a992009-03-29 07:46:58 -0300114void flexcop_device_kfree(struct flexcop_device *);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700115
Uwe Bugla1589a992009-03-29 07:46:58 -0300116int flexcop_device_initialize(struct flexcop_device *);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700117void flexcop_device_exit(struct flexcop_device *fc);
Patrick Boettcher64221be2005-07-07 17:57:49 -0700118void flexcop_reset_block_300(struct flexcop_device *fc);
119
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700120/* from flexcop-dma.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300121int flexcop_dma_allocate(struct pci_dev *pdev,
122 struct flexcop_dma *dma, u32 size);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700123void flexcop_dma_free(struct flexcop_dma *dma);
124
Uwe Bugla1589a992009-03-29 07:46:58 -0300125int flexcop_dma_control_timer_irq(struct flexcop_device *fc,
126 flexcop_dma_index_t no, int onoff);
127int flexcop_dma_control_size_irq(struct flexcop_device *fc,
128 flexcop_dma_index_t no, int onoff);
129int flexcop_dma_config(struct flexcop_device *fc, struct flexcop_dma *dma,
130 flexcop_dma_index_t dma_idx);
131int flexcop_dma_xfer_control(struct flexcop_device *fc,
132 flexcop_dma_index_t dma_idx, flexcop_dma_addr_index_t index,
133 int onoff);
134int flexcop_dma_config_timer(struct flexcop_device *fc,
135 flexcop_dma_index_t dma_idx, u8 cycles);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700136
137/* from flexcop-eeprom.c */
138/* the PCI part uses this call to get the MAC address, the USB part has its own */
139int flexcop_eeprom_check_mac_addr(struct flexcop_device *fc, int extended);
140
141/* from flexcop-i2c.c */
142/* the PCI part uses this a i2c_request callback, whereas the usb part has its own
143 * one. We have it in flexcop-i2c.c, because it is going via the actual
144 * I2C-channel of the flexcop.
145 */
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300146int flexcop_i2c_request(struct flexcop_i2c_adapter*, flexcop_access_op_t,
147 u8 chipaddr, u8 addr, u8 *buf, u16 len);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700148
149/* from flexcop-sram.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300150int flexcop_sram_set_dest(struct flexcop_device *fc, flexcop_sram_dest_t dest,
151 flexcop_sram_dest_target_t target);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700152void flexcop_wan_set_speed(struct flexcop_device *fc, flexcop_wan_speed_t s);
Uwe Bugla1589a992009-03-29 07:46:58 -0300153void flexcop_sram_ctrl(struct flexcop_device *fc,
154 int usb_wan, int sramdma, int maximumfill);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700155
156/* global prototypes for the flexcop-chip */
157/* from flexcop-fe-tuner.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300158int flexcop_frontend_init(struct flexcop_device *fc);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700159void flexcop_frontend_exit(struct flexcop_device *fc);
160
161/* from flexcop-i2c.c */
162int flexcop_i2c_init(struct flexcop_device *fc);
163void flexcop_i2c_exit(struct flexcop_device *fc);
164
165/* from flexcop-sram.c */
166int flexcop_sram_init(struct flexcop_device *fc);
167
168/* from flexcop-misc.c */
169void flexcop_determine_revision(struct flexcop_device *fc);
Uwe Bugla1589a992009-03-29 07:46:58 -0300170void flexcop_device_name(struct flexcop_device *fc,
171 const char *prefix, const char *suffix);
172void flexcop_dump_reg(struct flexcop_device *fc,
173 flexcop_ibi_register reg, int num);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700174
175/* from flexcop-hw-filter.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300176int flexcop_pid_feed_control(struct flexcop_device *fc,
177 struct dvb_demux_feed *dvbdmxfeed, int onoff);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700178void flexcop_hw_filter_init(struct flexcop_device *fc);
179
180void flexcop_smc_ctrl(struct flexcop_device *fc, int onoff);
181
182void flexcop_set_mac_filter(struct flexcop_device *fc, u8 mac[6]);
183void flexcop_mac_filter_ctrl(struct flexcop_device *fc, int onoff);
184
185#endif