blob: 3e1c472092ab238af0e26e1ef89917b220477aa7 [file] [log] [blame]
Johannes Stezenbach2add87a2005-05-16 21:54:10 -07001/*
2 * This file is part of linux driver the digital TV devices equipped with B2C2 FlexcopII(b)/III
3 *
4 * flexcop-common.h - common header file for device-specific source files also.
5 *
6 * see flexcop.c for copyright information.
7 */
8#ifndef __FLEXCOP_COMMON_H__
9#define __FLEXCOP_COMMON_H__
10
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070011#include <linux/pci.h>
Ingo Molnar3593cab2006-02-07 06:49:14 -020012#include <linux/mutex.h>
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070013
14#include "flexcop-reg.h"
15
16#include "dmxdev.h"
17#include "dvb_demux.h"
18#include "dvb_filter.h"
19#include "dvb_net.h"
20#include "dvb_frontend.h"
21
22#define FC_MAX_FEED 256
23
24#ifndef FC_LOG_PREFIX
25#warning please define a log prefix for your file, using a default one
26#define FC_LOG_PREFIX "b2c2-undef"
27#endif
28
29/* Steal from usb.h */
30#undef err
Uwe Bugla1589a992009-03-29 07:46:58 -030031#define err(format, arg...) \
32 printk(KERN_ERR FC_LOG_PREFIX ": " format "\n" , ## arg)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070033#undef info
Uwe Bugla1589a992009-03-29 07:46:58 -030034#define info(format, arg...) \
35 printk(KERN_INFO FC_LOG_PREFIX ": " format "\n" , ## arg)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070036#undef warn
Uwe Bugla1589a992009-03-29 07:46:58 -030037#define warn(format, arg...) \
38 printk(KERN_WARNING FC_LOG_PREFIX ": " format "\n" , ## arg)
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070039
40struct flexcop_dma {
41 struct pci_dev *pdev;
42
43 u8 *cpu_addr0;
44 dma_addr_t dma_addr0;
45 u8 *cpu_addr1;
46 dma_addr_t dma_addr1;
47 u32 size; /* size of each address in bytes */
48};
49
Patrick Boettcher6394cf52008-03-29 20:49:57 -030050struct flexcop_i2c_adapter {
51 struct flexcop_device *fc;
52 struct i2c_adapter i2c_adap;
53
54 u8 no_base_addr;
55 flexcop_i2c_port_t port;
56};
57
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070058/* Control structure for data definitions that are common to
59 * the B2C2-based PCI and USB devices.
60 */
61struct flexcop_device {
62 /* general */
63 struct device *dev; /* for firmware_class */
64
65#define FC_STATE_DVB_INIT 0x01
66#define FC_STATE_I2C_INIT 0x02
67#define FC_STATE_FE_INIT 0x04
68 int init_state;
69
70 /* device information */
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070071 int has_32_hw_pid_filter;
72 flexcop_revision_t rev;
73 flexcop_device_type_t dev_type;
74 flexcop_bus_t bus_type;
75
76 /* dvb stuff */
77 struct dvb_adapter dvb_adapter;
78 struct dvb_frontend *fe;
79 struct dvb_net dvbnet;
80 struct dvb_demux demux;
81 struct dmxdev dmxdev;
82 struct dmx_frontend hw_frontend;
83 struct dmx_frontend mem_frontend;
84 int (*fe_sleep) (struct dvb_frontend *);
85
Patrick Boettcher6394cf52008-03-29 20:49:57 -030086 struct flexcop_i2c_adapter fc_i2c_adap[3];
Ingo Molnar3593cab2006-02-07 06:49:14 -020087 struct mutex i2c_mutex;
Johannes Stezenbach59a7ad62005-05-16 21:54:16 -070088 struct module *owner;
89
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070090 /* options and status */
Johannes Stezenbachc4ee3fd2005-05-16 21:54:15 -070091 int extra_feedcount;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070092 int feedcount;
93 int pid_filtering;
Johannes Stezenbachc4ee3fd2005-05-16 21:54:15 -070094 int fullts_streaming_state;
Johannes Stezenbach2add87a2005-05-16 21:54:10 -070095
96 /* bus specific callbacks */
Uwe Bugla1589a992009-03-29 07:46:58 -030097 flexcop_ibi_value(*read_ibi_reg) (struct flexcop_device *,
98 flexcop_ibi_register);
99 int (*write_ibi_reg) (struct flexcop_device *,
100 flexcop_ibi_register, flexcop_ibi_value);
101 int (*i2c_request) (struct flexcop_i2c_adapter *,
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300102 flexcop_access_op_t, u8 chipaddr, u8 addr, u8 *buf, u16 len);
Uwe Bugla1589a992009-03-29 07:46:58 -0300103 int (*stream_control) (struct flexcop_device *, int);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700104 int (*get_mac_addr) (struct flexcop_device *fc, int extended);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700105 void *bus_specific;
106};
107
108/* exported prototypes */
109
110/* from flexcop.c */
111void flexcop_pass_dmx_data(struct flexcop_device *fc, u8 *buf, u32 len);
112void flexcop_pass_dmx_packets(struct flexcop_device *fc, u8 *buf, u32 no);
113
114struct flexcop_device *flexcop_device_kmalloc(size_t bus_specific_len);
Uwe Bugla1589a992009-03-29 07:46:58 -0300115void flexcop_device_kfree(struct flexcop_device *);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700116
Uwe Bugla1589a992009-03-29 07:46:58 -0300117int flexcop_device_initialize(struct flexcop_device *);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700118void flexcop_device_exit(struct flexcop_device *fc);
Patrick Boettcher64221be2005-07-07 17:57:49 -0700119void flexcop_reset_block_300(struct flexcop_device *fc);
120
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700121/* from flexcop-dma.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300122int flexcop_dma_allocate(struct pci_dev *pdev,
123 struct flexcop_dma *dma, u32 size);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700124void flexcop_dma_free(struct flexcop_dma *dma);
125
Uwe Bugla1589a992009-03-29 07:46:58 -0300126int flexcop_dma_control_timer_irq(struct flexcop_device *fc,
127 flexcop_dma_index_t no, int onoff);
128int flexcop_dma_control_size_irq(struct flexcop_device *fc,
129 flexcop_dma_index_t no, int onoff);
130int flexcop_dma_config(struct flexcop_device *fc, struct flexcop_dma *dma,
131 flexcop_dma_index_t dma_idx);
132int flexcop_dma_xfer_control(struct flexcop_device *fc,
133 flexcop_dma_index_t dma_idx, flexcop_dma_addr_index_t index,
134 int onoff);
135int flexcop_dma_config_timer(struct flexcop_device *fc,
136 flexcop_dma_index_t dma_idx, u8 cycles);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700137
138/* from flexcop-eeprom.c */
139/* the PCI part uses this call to get the MAC address, the USB part has its own */
140int flexcop_eeprom_check_mac_addr(struct flexcop_device *fc, int extended);
141
142/* from flexcop-i2c.c */
143/* the PCI part uses this a i2c_request callback, whereas the usb part has its own
144 * one. We have it in flexcop-i2c.c, because it is going via the actual
145 * I2C-channel of the flexcop.
146 */
Patrick Boettcher6394cf52008-03-29 20:49:57 -0300147int flexcop_i2c_request(struct flexcop_i2c_adapter*, flexcop_access_op_t,
148 u8 chipaddr, u8 addr, u8 *buf, u16 len);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700149
150/* from flexcop-sram.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300151int flexcop_sram_set_dest(struct flexcop_device *fc, flexcop_sram_dest_t dest,
152 flexcop_sram_dest_target_t target);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700153void flexcop_wan_set_speed(struct flexcop_device *fc, flexcop_wan_speed_t s);
Uwe Bugla1589a992009-03-29 07:46:58 -0300154void flexcop_sram_ctrl(struct flexcop_device *fc,
155 int usb_wan, int sramdma, int maximumfill);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700156
157/* global prototypes for the flexcop-chip */
158/* from flexcop-fe-tuner.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300159int flexcop_frontend_init(struct flexcop_device *fc);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700160void flexcop_frontend_exit(struct flexcop_device *fc);
161
162/* from flexcop-i2c.c */
163int flexcop_i2c_init(struct flexcop_device *fc);
164void flexcop_i2c_exit(struct flexcop_device *fc);
165
166/* from flexcop-sram.c */
167int flexcop_sram_init(struct flexcop_device *fc);
168
169/* from flexcop-misc.c */
170void flexcop_determine_revision(struct flexcop_device *fc);
Uwe Bugla1589a992009-03-29 07:46:58 -0300171void flexcop_device_name(struct flexcop_device *fc,
172 const char *prefix, const char *suffix);
173void flexcop_dump_reg(struct flexcop_device *fc,
174 flexcop_ibi_register reg, int num);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700175
176/* from flexcop-hw-filter.c */
Uwe Bugla1589a992009-03-29 07:46:58 -0300177int flexcop_pid_feed_control(struct flexcop_device *fc,
178 struct dvb_demux_feed *dvbdmxfeed, int onoff);
Johannes Stezenbach2add87a2005-05-16 21:54:10 -0700179void flexcop_hw_filter_init(struct flexcop_device *fc);
180
181void flexcop_smc_ctrl(struct flexcop_device *fc, int onoff);
182
183void flexcop_set_mac_filter(struct flexcop_device *fc, u8 mac[6]);
184void flexcop_mac_filter_ctrl(struct flexcop_device *fc, int onoff);
185
186#endif