aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/b2c2/flexcop-common.h
diff options
context:
space:
mode:
authorJohannes Stezenbach <js@linuxtv.org>2005-05-17 00:54:10 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-17 10:59:24 -0400
commit2add87a95068d6457d4e5824d0417d39007665a4 (patch)
treef2aa0373421b0bd78ce900a41fa5a72b853e66de /drivers/media/dvb/b2c2/flexcop-common.h
parent1ec359729960f7896db8f642454e603d22519d20 (diff)
[PATCH] dvb: b2c2/flexcop driver refactoring part 2: add modular Flexcop driver
b2c2/flexcop driver refactoring to support PCI and USB based cards part 2: add modular Flexcop driver Signed-off-by: Patrick Boettcher <pb@linuxtv.org> Signed-off-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/dvb/b2c2/flexcop-common.h')
-rw-r--r--drivers/media/dvb/b2c2/flexcop-common.h161
1 files changed, 161 insertions, 0 deletions
diff --git a/drivers/media/dvb/b2c2/flexcop-common.h b/drivers/media/dvb/b2c2/flexcop-common.h
new file mode 100644
index 000000000000..82b7f8fa7b9c
--- /dev/null
+++ b/drivers/media/dvb/b2c2/flexcop-common.h
@@ -0,0 +1,161 @@
1/*
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
11#include <linux/config.h>
12#include <linux/pci.h>
13
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
31#define err(format, arg...) printk(KERN_ERR FC_LOG_PREFIX ": " format "\n" , ## arg)
32#undef info
33#define info(format, arg...) printk(KERN_INFO FC_LOG_PREFIX ": " format "\n" , ## arg)
34#undef warn
35#define warn(format, arg...) printk(KERN_WARNING FC_LOG_PREFIX ": " format "\n" , ## arg)
36
37struct flexcop_dma {
38 struct pci_dev *pdev;
39
40 u8 *cpu_addr0;
41 dma_addr_t dma_addr0;
42 u8 *cpu_addr1;
43 dma_addr_t dma_addr1;
44 u32 size; /* size of each address in bytes */
45};
46
47/* Control structure for data definitions that are common to
48 * the B2C2-based PCI and USB devices.
49 */
50struct flexcop_device {
51 /* general */
52 struct device *dev; /* for firmware_class */
53
54#define FC_STATE_DVB_INIT 0x01
55#define FC_STATE_I2C_INIT 0x02
56#define FC_STATE_FE_INIT 0x04
57 int init_state;
58
59 /* device information */
60 u8 mac_address[6];
61 int has_32_hw_pid_filter;
62 flexcop_revision_t rev;
63 flexcop_device_type_t dev_type;
64 flexcop_bus_t bus_type;
65
66 /* dvb stuff */
67 struct dvb_adapter dvb_adapter;
68 struct dvb_frontend *fe;
69 struct dvb_net dvbnet;
70 struct dvb_demux demux;
71 struct dmxdev dmxdev;
72 struct dmx_frontend hw_frontend;
73 struct dmx_frontend mem_frontend;
74 int (*fe_sleep) (struct dvb_frontend *);
75
76 struct i2c_adapter i2c_adap;
77 struct semaphore i2c_sem;
78
79 /* options and status */
80 int feedcount;
81 int pid_filtering;
82
83 /* bus specific callbacks */
84 flexcop_ibi_value (*read_ibi_reg) (struct flexcop_device *, flexcop_ibi_register);
85 int (*write_ibi_reg) (struct flexcop_device *, flexcop_ibi_register, flexcop_ibi_value);
86
87
88 int (*i2c_request) (struct flexcop_device*, flexcop_access_op_t, flexcop_i2c_port_t, u8 chipaddr, u8 addr, u8 *buf, u16 len);
89 int (*stream_control) (struct flexcop_device*, int);
90
91 int (*get_mac_addr) (struct flexcop_device *fc, int extended);
92
93 void *bus_specific;
94};
95
96/* exported prototypes */
97
98/* from flexcop.c */
99void flexcop_pass_dmx_data(struct flexcop_device *fc, u8 *buf, u32 len);
100void flexcop_pass_dmx_packets(struct flexcop_device *fc, u8 *buf, u32 no);
101
102struct flexcop_device *flexcop_device_kmalloc(size_t bus_specific_len);
103void flexcop_device_kfree(struct flexcop_device*);
104
105int flexcop_device_initialize(struct flexcop_device*);
106void flexcop_device_exit(struct flexcop_device *fc);
107
108/* from flexcop-dma.c */
109int flexcop_dma_allocate(struct pci_dev *pdev, struct flexcop_dma *dma, u32 size);
110void flexcop_dma_free(struct flexcop_dma *dma);
111
112int flexcop_dma_control_timer_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff);
113int flexcop_dma_control_size_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff);
114int flexcop_dma_control_packet_irq(struct flexcop_device *fc, flexcop_dma_index_t no, int onoff);
115int flexcop_dma_config(struct flexcop_device *fc, struct flexcop_dma *dma, flexcop_dma_index_t dma_idx,flexcop_dma_addr_index_t index);
116int flexcop_dma_config_timer(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 cycles);
117int flexcop_dma_config_packet_count(struct flexcop_device *fc, flexcop_dma_index_t dma_idx, u8 packets);
118
119/* from flexcop-eeprom.c */
120/* the PCI part uses this call to get the MAC address, the USB part has its own */
121int flexcop_eeprom_check_mac_addr(struct flexcop_device *fc, int extended);
122
123/* from flexcop-i2c.c */
124/* the PCI part uses this a i2c_request callback, whereas the usb part has its own
125 * one. We have it in flexcop-i2c.c, because it is going via the actual
126 * I2C-channel of the flexcop.
127 */
128int flexcop_i2c_request(struct flexcop_device*, flexcop_access_op_t,
129 flexcop_i2c_port_t, u8 chipaddr, u8 addr, u8 *buf, u16 len);
130
131/* from flexcop-sram.c */
132int flexcop_sram_set_dest(struct flexcop_device *fc, flexcop_sram_dest_t dest, flexcop_sram_dest_target_t target);
133void flexcop_wan_set_speed(struct flexcop_device *fc, flexcop_wan_speed_t s);
134void flexcop_sram_ctrl(struct flexcop_device *fc, int usb_wan, int sramdma, int maximumfill);
135
136/* global prototypes for the flexcop-chip */
137/* from flexcop-fe-tuner.c */
138int flexcop_frontend_init(struct flexcop_device *card);
139void flexcop_frontend_exit(struct flexcop_device *fc);
140
141/* from flexcop-i2c.c */
142int flexcop_i2c_init(struct flexcop_device *fc);
143void flexcop_i2c_exit(struct flexcop_device *fc);
144
145/* from flexcop-sram.c */
146int flexcop_sram_init(struct flexcop_device *fc);
147
148/* from flexcop-misc.c */
149void flexcop_determine_revision(struct flexcop_device *fc);
150void flexcop_device_name(struct flexcop_device *fc,const char *prefix,const char *suffix);
151
152/* from flexcop-hw-filter.c */
153int flexcop_pid_feed_control(struct flexcop_device *fc, struct dvb_demux_feed *dvbdmxfeed, int onoff);
154void flexcop_hw_filter_init(struct flexcop_device *fc);
155
156void flexcop_smc_ctrl(struct flexcop_device *fc, int onoff);
157
158void flexcop_set_mac_filter(struct flexcop_device *fc, u8 mac[6]);
159void flexcop_mac_filter_ctrl(struct flexcop_device *fc, int onoff);
160
161#endif